Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
amanrao23 committed May 17, 2024
1 parent 8c83a8a commit b0e7808
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sdk/cosmosdb/cosmos/review/cosmos.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,6 @@ export interface IndexingPolicy {
indexingMode?: keyof typeof IndexingMode;
// (undocumented)
spatialIndexes?: SpatialIndex[];
// (undocumented)
vectorIndexes?: VectorIndex[];
}

Expand Down Expand Up @@ -1608,7 +1607,6 @@ export interface QueryInfo {
groupByAliasToAggregateType: GroupByAliasToAggregateType;
// (undocumented)
groupByExpressions?: GroupByExpressions;
// (undocumented)
hasNonStreamingOrderBy: boolean;
// (undocumented)
hasSelectValue: boolean;
Expand Down
1 change: 1 addition & 0 deletions sdk/cosmosdb/cosmos/src/documents/IndexingPolicy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface IndexingPolicy {
/** An array of {@link IncludedPath} represents the paths to be excluded for indexing. */
excludedPaths?: IndexedPath[];
spatialIndexes?: SpatialIndex[];
/** An array of {@link VectorIndex} represents the vector index paths to be included for indexing. */
vectorIndexes?: VectorIndex[];
}

Expand Down
3 changes: 3 additions & 0 deletions sdk/cosmosdb/cosmos/src/request/ErrorResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ export interface QueryInfo {
rewrittenQuery?: any;
distinctType: string;
hasSelectValue: boolean;
/**
* determines whether the query is of non streaming orderby type.
*/
hasNonStreamingOrderBy: boolean;
}

Expand Down

0 comments on commit b0e7808

Please sign in to comment.