@mongodb-js/mongodb-constants 0.8.6 → 0.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/filter.d.ts +68 -68
- package/dist/stage-operators.d.ts +117 -117
- package/dist/stage-operators.js +122 -122
- package/dist/stage-operators.js.map +1 -1
- package/package.json +2 -2
package/dist/filter.d.ts
CHANGED
|
@@ -1675,6 +1675,22 @@ export declare const ALL_CONSTANTS: ({
|
|
|
1675
1675
|
readonly description: "Automatically categorizes documents into a specified number of buckets, attempting even distribution if possible.";
|
|
1676
1676
|
readonly comment: "/**\n * groupBy: The expression to group by.\n * buckets: The desired number of buckets\n * output: {\n * outputN: Optional. The output object may contain a single or numerous field names used to accumulate values per bucket.\n * }\n * granularity: Optional number series\n */\n";
|
|
1677
1677
|
readonly snippet: "{\n groupBy: ${1:expression},\n buckets: ${2:number},\n output: {\n ${3:outputN}: ${4:accumulator}, ${5:...}\n },\n granularity: '${6:string}'\n}";
|
|
1678
|
+
} | {
|
|
1679
|
+
readonly name: "$changeStream";
|
|
1680
|
+
readonly value: "$changeStream";
|
|
1681
|
+
readonly label: "$changeStream";
|
|
1682
|
+
readonly outputStage: false;
|
|
1683
|
+
readonly fullScan: false;
|
|
1684
|
+
readonly firstStage: true;
|
|
1685
|
+
readonly score: 1;
|
|
1686
|
+
readonly env: readonly ["atlas", "on-prem"];
|
|
1687
|
+
readonly meta: "stage";
|
|
1688
|
+
readonly version: "4.2.0";
|
|
1689
|
+
readonly apiVersions: readonly [1];
|
|
1690
|
+
readonly namespaces: readonly ["db"];
|
|
1691
|
+
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
1692
|
+
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
1693
|
+
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
1678
1694
|
} | {
|
|
1679
1695
|
readonly name: "$collStats";
|
|
1680
1696
|
readonly value: "$collStats";
|
|
@@ -1707,6 +1723,22 @@ export declare const ALL_CONSTANTS: ({
|
|
|
1707
1723
|
readonly description: "Returns a count of the number of documents at this stage of the aggregation pipeline.";
|
|
1708
1724
|
readonly comment: "/**\n * Provide the field name for the count.\n */\n";
|
|
1709
1725
|
readonly snippet: "'${1:string}'";
|
|
1726
|
+
} | {
|
|
1727
|
+
readonly name: "$currentOp";
|
|
1728
|
+
readonly value: "$currentOp";
|
|
1729
|
+
readonly label: "$currentOp";
|
|
1730
|
+
readonly outputStage: false;
|
|
1731
|
+
readonly fullScan: false;
|
|
1732
|
+
readonly firstStage: true;
|
|
1733
|
+
readonly score: 1;
|
|
1734
|
+
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
1735
|
+
readonly meta: "stage";
|
|
1736
|
+
readonly version: "3.6.0";
|
|
1737
|
+
readonly apiVersions: readonly [1];
|
|
1738
|
+
readonly namespaces: readonly ["db"];
|
|
1739
|
+
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
1740
|
+
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
1741
|
+
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
1710
1742
|
} | {
|
|
1711
1743
|
readonly name: "$densify";
|
|
1712
1744
|
readonly value: "$densify";
|
|
@@ -1851,6 +1883,22 @@ export declare const ALL_CONSTANTS: ({
|
|
|
1851
1883
|
readonly description: "Limits the number of documents that flow into subsequent stages.";
|
|
1852
1884
|
readonly comment: "/**\n * Provide the number of documents to limit.\n */\n";
|
|
1853
1885
|
readonly snippet: "${1:number}";
|
|
1886
|
+
} | {
|
|
1887
|
+
readonly name: "$listLocalSessions";
|
|
1888
|
+
readonly value: "$listLocalSessions";
|
|
1889
|
+
readonly label: "$listLocalSessions";
|
|
1890
|
+
readonly outputStage: false;
|
|
1891
|
+
readonly fullScan: false;
|
|
1892
|
+
readonly firstStage: true;
|
|
1893
|
+
readonly score: 1;
|
|
1894
|
+
readonly env: readonly ["atlas", "on-prem"];
|
|
1895
|
+
readonly meta: "stage";
|
|
1896
|
+
readonly version: "3.6.0";
|
|
1897
|
+
readonly apiVersions: readonly [1];
|
|
1898
|
+
readonly namespaces: readonly ["db"];
|
|
1899
|
+
readonly description: "Lists the sessions cached in memory by the mongod or mongos instance.";
|
|
1900
|
+
readonly comment: "/**\n * users: Optional list of users for which local sessions need to be returned.\n * allUsers: Optional boolean value to specify whether to return local sessions for all users or not.\n */\n";
|
|
1901
|
+
readonly snippet: "{\n allUsers: ${1:false},\n users: [\n { user: '${2:string}', db: '${3:string}' }\n ]\n}";
|
|
1854
1902
|
} | {
|
|
1855
1903
|
readonly name: "$lookup";
|
|
1856
1904
|
readonly value: "$lookup";
|
|
@@ -1980,37 +2028,37 @@ export declare const ALL_CONSTANTS: ({
|
|
|
1980
2028
|
readonly comment: "/**\n * expression: Any valid expression that\n * evaluates to $$DESCEND, $$PRUNE, or $$KEEP.\n */\n";
|
|
1981
2029
|
readonly snippet: "{\n ${1:expression}\n}";
|
|
1982
2030
|
} | {
|
|
1983
|
-
readonly name: "$
|
|
1984
|
-
readonly value: "$
|
|
1985
|
-
readonly label: "$
|
|
2031
|
+
readonly name: "$replaceRoot";
|
|
2032
|
+
readonly value: "$replaceRoot";
|
|
2033
|
+
readonly label: "$replaceRoot";
|
|
1986
2034
|
readonly outputStage: false;
|
|
1987
2035
|
readonly fullScan: false;
|
|
1988
2036
|
readonly firstStage: false;
|
|
1989
2037
|
readonly score: 1;
|
|
1990
2038
|
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
1991
2039
|
readonly meta: "stage";
|
|
1992
|
-
readonly version: "4.
|
|
2040
|
+
readonly version: "3.4.0";
|
|
1993
2041
|
readonly apiVersions: readonly [1];
|
|
1994
2042
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
1995
2043
|
readonly description: "Replaces a document with the specified embedded document.";
|
|
1996
2044
|
readonly comment: "/**\n * replacementDocument: A document or string.\n */\n";
|
|
1997
|
-
readonly snippet: "{\n
|
|
2045
|
+
readonly snippet: "{\n newRoot: ${1:replacementDocument}\n}";
|
|
1998
2046
|
} | {
|
|
1999
|
-
readonly name: "$
|
|
2000
|
-
readonly value: "$
|
|
2001
|
-
readonly label: "$
|
|
2047
|
+
readonly name: "$replaceWith";
|
|
2048
|
+
readonly value: "$replaceWith";
|
|
2049
|
+
readonly label: "$replaceWith";
|
|
2002
2050
|
readonly outputStage: false;
|
|
2003
2051
|
readonly fullScan: false;
|
|
2004
2052
|
readonly firstStage: false;
|
|
2005
2053
|
readonly score: 1;
|
|
2006
2054
|
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
2007
2055
|
readonly meta: "stage";
|
|
2008
|
-
readonly version: "
|
|
2056
|
+
readonly version: "4.2.0";
|
|
2009
2057
|
readonly apiVersions: readonly [1];
|
|
2010
2058
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
2011
2059
|
readonly description: "Replaces a document with the specified embedded document.";
|
|
2012
2060
|
readonly comment: "/**\n * replacementDocument: A document or string.\n */\n";
|
|
2013
|
-
readonly snippet: "{\n
|
|
2061
|
+
readonly snippet: "{\n newWith: ${1:replacementDocument}\n}";
|
|
2014
2062
|
} | {
|
|
2015
2063
|
readonly name: "$sample";
|
|
2016
2064
|
readonly value: "$sample";
|
|
@@ -2059,22 +2107,6 @@ export declare const ALL_CONSTANTS: ({
|
|
|
2059
2107
|
readonly description: "Performs a full-text search on the specified field(s) and gets back only the generated search meta data from a query.";
|
|
2060
2108
|
readonly comment: "/**\n * index: The name of the Search index.\n * count: The count of the results.\n * facet: {\n * operator: Analyzed search, with required fields of query and path, can either be replaced with the name of a valid operator.\n * facets: {\n * stringFacet: Narrows search results based on unique string values, with required fields of type and path.\n * numberFacet: Narrows search results by breaking them up into separate ranges of numbers, with required fields of type, path, and boundaries.\n * dateFacet: Narrows search results by breaking them up into separate ranges of dates, with required fields of type, path, and boundaries.\n * }\n * }\n */\n";
|
|
2061
2109
|
readonly snippet: "{\n index: ${1:string},\n facet: {\n operator: {\n text: {\n query: ${2:string},\n path: ${3:string}\n }\n },\n facets: {\n ${4:stringFacet}: {\n type: ${5:string},\n path: ${6:string},\n numBuckets: ${7:integer}\n },\n numberFacet: {\n type: 'number',\n path: ${8:string},\n boundaries: [${9:lowerbound}, ${10:upperbound}, ...],\n default: ${11:string}\n }\n }\n }\n}";
|
|
2062
|
-
} | {
|
|
2063
|
-
readonly name: "$vectorSearch";
|
|
2064
|
-
readonly value: "$vectorSearch";
|
|
2065
|
-
readonly label: "$vectorSearch";
|
|
2066
|
-
readonly outputStage: false;
|
|
2067
|
-
readonly fullScan: false;
|
|
2068
|
-
readonly firstStage: true;
|
|
2069
|
-
readonly score: 1;
|
|
2070
|
-
readonly env: readonly ["atlas"];
|
|
2071
|
-
readonly meta: "stage";
|
|
2072
|
-
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
2073
|
-
readonly apiVersions: readonly [];
|
|
2074
|
-
readonly namespaces: readonly ["coll"];
|
|
2075
|
-
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
2076
|
-
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
2077
|
-
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
2078
2110
|
} | {
|
|
2079
2111
|
readonly name: "$set";
|
|
2080
2112
|
readonly value: "$set";
|
|
@@ -2204,53 +2236,21 @@ export declare const ALL_CONSTANTS: ({
|
|
|
2204
2236
|
readonly comment: "/**\n * path: Path to the array field.\n * includeArrayIndex: Optional name for index.\n * preserveNullAndEmptyArrays: Optional\n * toggle to unwind null and empty values.\n */\n";
|
|
2205
2237
|
readonly snippet: "{\n path: ${1:path},\n includeArrayIndex: '${2:string}',\n preserveNullAndEmptyArrays: ${3:boolean}\n}";
|
|
2206
2238
|
} | {
|
|
2207
|
-
readonly name: "$
|
|
2208
|
-
readonly value: "$
|
|
2209
|
-
readonly label: "$
|
|
2210
|
-
readonly outputStage: false;
|
|
2211
|
-
readonly fullScan: false;
|
|
2212
|
-
readonly firstStage: true;
|
|
2213
|
-
readonly score: 1;
|
|
2214
|
-
readonly env: readonly ["atlas", "on-prem"];
|
|
2215
|
-
readonly meta: "stage";
|
|
2216
|
-
readonly version: "4.2.0";
|
|
2217
|
-
readonly apiVersions: readonly [1];
|
|
2218
|
-
readonly namespaces: readonly ["db"];
|
|
2219
|
-
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
2220
|
-
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
2221
|
-
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
2222
|
-
} | {
|
|
2223
|
-
readonly name: "$currentOp";
|
|
2224
|
-
readonly value: "$currentOp";
|
|
2225
|
-
readonly label: "$currentOp";
|
|
2226
|
-
readonly outputStage: false;
|
|
2227
|
-
readonly fullScan: false;
|
|
2228
|
-
readonly firstStage: true;
|
|
2229
|
-
readonly score: 1;
|
|
2230
|
-
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
2231
|
-
readonly meta: "stage";
|
|
2232
|
-
readonly version: "3.6.0";
|
|
2233
|
-
readonly apiVersions: readonly [1];
|
|
2234
|
-
readonly namespaces: readonly ["db"];
|
|
2235
|
-
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
2236
|
-
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
2237
|
-
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
2238
|
-
} | {
|
|
2239
|
-
readonly name: "$listLocalSessions";
|
|
2240
|
-
readonly value: "$listLocalSessions";
|
|
2241
|
-
readonly label: "$listLocalSessions";
|
|
2239
|
+
readonly name: "$vectorSearch";
|
|
2240
|
+
readonly value: "$vectorSearch";
|
|
2241
|
+
readonly label: "$vectorSearch";
|
|
2242
2242
|
readonly outputStage: false;
|
|
2243
2243
|
readonly fullScan: false;
|
|
2244
2244
|
readonly firstStage: true;
|
|
2245
2245
|
readonly score: 1;
|
|
2246
|
-
readonly env: readonly ["atlas"
|
|
2246
|
+
readonly env: readonly ["atlas"];
|
|
2247
2247
|
readonly meta: "stage";
|
|
2248
|
-
readonly version: "
|
|
2249
|
-
readonly apiVersions: readonly [
|
|
2250
|
-
readonly namespaces: readonly ["
|
|
2251
|
-
readonly description: "
|
|
2252
|
-
readonly comment: "/**\n *
|
|
2253
|
-
readonly snippet: "{\n
|
|
2248
|
+
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
2249
|
+
readonly apiVersions: readonly [];
|
|
2250
|
+
readonly namespaces: readonly ["coll"];
|
|
2251
|
+
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
2252
|
+
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
2253
|
+
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
2254
2254
|
} | {
|
|
2255
2255
|
readonly name: "$$NOW";
|
|
2256
2256
|
readonly value: "$$NOW";
|
|
@@ -46,6 +46,22 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
46
46
|
readonly description: "Automatically categorizes documents into a specified number of buckets, attempting even distribution if possible.";
|
|
47
47
|
readonly comment: "/**\n * groupBy: The expression to group by.\n * buckets: The desired number of buckets\n * output: {\n * outputN: Optional. The output object may contain a single or numerous field names used to accumulate values per bucket.\n * }\n * granularity: Optional number series\n */\n";
|
|
48
48
|
readonly snippet: "{\n groupBy: ${1:expression},\n buckets: ${2:number},\n output: {\n ${3:outputN}: ${4:accumulator}, ${5:...}\n },\n granularity: '${6:string}'\n}";
|
|
49
|
+
}, {
|
|
50
|
+
readonly name: "$changeStream";
|
|
51
|
+
readonly value: "$changeStream";
|
|
52
|
+
readonly label: "$changeStream";
|
|
53
|
+
readonly outputStage: false;
|
|
54
|
+
readonly fullScan: false;
|
|
55
|
+
readonly firstStage: true;
|
|
56
|
+
readonly score: 1;
|
|
57
|
+
readonly env: readonly ["atlas", "on-prem"];
|
|
58
|
+
readonly meta: "stage";
|
|
59
|
+
readonly version: "4.2.0";
|
|
60
|
+
readonly apiVersions: readonly [1];
|
|
61
|
+
readonly namespaces: readonly ["db"];
|
|
62
|
+
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
63
|
+
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
64
|
+
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
49
65
|
}, {
|
|
50
66
|
readonly name: "$collStats";
|
|
51
67
|
readonly value: "$collStats";
|
|
@@ -78,6 +94,22 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
78
94
|
readonly description: "Returns a count of the number of documents at this stage of the aggregation pipeline.";
|
|
79
95
|
readonly comment: "/**\n * Provide the field name for the count.\n */\n";
|
|
80
96
|
readonly snippet: "'${1:string}'";
|
|
97
|
+
}, {
|
|
98
|
+
readonly name: "$currentOp";
|
|
99
|
+
readonly value: "$currentOp";
|
|
100
|
+
readonly label: "$currentOp";
|
|
101
|
+
readonly outputStage: false;
|
|
102
|
+
readonly fullScan: false;
|
|
103
|
+
readonly firstStage: true;
|
|
104
|
+
readonly score: 1;
|
|
105
|
+
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
106
|
+
readonly meta: "stage";
|
|
107
|
+
readonly version: "3.6.0";
|
|
108
|
+
readonly apiVersions: readonly [1];
|
|
109
|
+
readonly namespaces: readonly ["db"];
|
|
110
|
+
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
111
|
+
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
112
|
+
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
81
113
|
}, {
|
|
82
114
|
readonly name: "$densify";
|
|
83
115
|
readonly value: "$densify";
|
|
@@ -222,6 +254,22 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
222
254
|
readonly description: "Limits the number of documents that flow into subsequent stages.";
|
|
223
255
|
readonly comment: "/**\n * Provide the number of documents to limit.\n */\n";
|
|
224
256
|
readonly snippet: "${1:number}";
|
|
257
|
+
}, {
|
|
258
|
+
readonly name: "$listLocalSessions";
|
|
259
|
+
readonly value: "$listLocalSessions";
|
|
260
|
+
readonly label: "$listLocalSessions";
|
|
261
|
+
readonly outputStage: false;
|
|
262
|
+
readonly fullScan: false;
|
|
263
|
+
readonly firstStage: true;
|
|
264
|
+
readonly score: 1;
|
|
265
|
+
readonly env: readonly ["atlas", "on-prem"];
|
|
266
|
+
readonly meta: "stage";
|
|
267
|
+
readonly version: "3.6.0";
|
|
268
|
+
readonly apiVersions: readonly [1];
|
|
269
|
+
readonly namespaces: readonly ["db"];
|
|
270
|
+
readonly description: "Lists the sessions cached in memory by the mongod or mongos instance.";
|
|
271
|
+
readonly comment: "/**\n * users: Optional list of users for which local sessions need to be returned.\n * allUsers: Optional boolean value to specify whether to return local sessions for all users or not.\n */\n";
|
|
272
|
+
readonly snippet: "{\n allUsers: ${1:false},\n users: [\n { user: '${2:string}', db: '${3:string}' }\n ]\n}";
|
|
225
273
|
}, {
|
|
226
274
|
readonly name: "$lookup";
|
|
227
275
|
readonly value: "$lookup";
|
|
@@ -351,37 +399,37 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
351
399
|
readonly comment: "/**\n * expression: Any valid expression that\n * evaluates to $$DESCEND, $$PRUNE, or $$KEEP.\n */\n";
|
|
352
400
|
readonly snippet: "{\n ${1:expression}\n}";
|
|
353
401
|
}, {
|
|
354
|
-
readonly name: "$
|
|
355
|
-
readonly value: "$
|
|
356
|
-
readonly label: "$
|
|
402
|
+
readonly name: "$replaceRoot";
|
|
403
|
+
readonly value: "$replaceRoot";
|
|
404
|
+
readonly label: "$replaceRoot";
|
|
357
405
|
readonly outputStage: false;
|
|
358
406
|
readonly fullScan: false;
|
|
359
407
|
readonly firstStage: false;
|
|
360
408
|
readonly score: 1;
|
|
361
409
|
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
362
410
|
readonly meta: "stage";
|
|
363
|
-
readonly version: "4.
|
|
411
|
+
readonly version: "3.4.0";
|
|
364
412
|
readonly apiVersions: readonly [1];
|
|
365
413
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
366
414
|
readonly description: "Replaces a document with the specified embedded document.";
|
|
367
415
|
readonly comment: "/**\n * replacementDocument: A document or string.\n */\n";
|
|
368
|
-
readonly snippet: "{\n
|
|
416
|
+
readonly snippet: "{\n newRoot: ${1:replacementDocument}\n}";
|
|
369
417
|
}, {
|
|
370
|
-
readonly name: "$
|
|
371
|
-
readonly value: "$
|
|
372
|
-
readonly label: "$
|
|
418
|
+
readonly name: "$replaceWith";
|
|
419
|
+
readonly value: "$replaceWith";
|
|
420
|
+
readonly label: "$replaceWith";
|
|
373
421
|
readonly outputStage: false;
|
|
374
422
|
readonly fullScan: false;
|
|
375
423
|
readonly firstStage: false;
|
|
376
424
|
readonly score: 1;
|
|
377
425
|
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
378
426
|
readonly meta: "stage";
|
|
379
|
-
readonly version: "
|
|
427
|
+
readonly version: "4.2.0";
|
|
380
428
|
readonly apiVersions: readonly [1];
|
|
381
429
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
382
430
|
readonly description: "Replaces a document with the specified embedded document.";
|
|
383
431
|
readonly comment: "/**\n * replacementDocument: A document or string.\n */\n";
|
|
384
|
-
readonly snippet: "{\n
|
|
432
|
+
readonly snippet: "{\n newWith: ${1:replacementDocument}\n}";
|
|
385
433
|
}, {
|
|
386
434
|
readonly name: "$sample";
|
|
387
435
|
readonly value: "$sample";
|
|
@@ -430,22 +478,6 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
430
478
|
readonly description: "Performs a full-text search on the specified field(s) and gets back only the generated search meta data from a query.";
|
|
431
479
|
readonly comment: "/**\n * index: The name of the Search index.\n * count: The count of the results.\n * facet: {\n * operator: Analyzed search, with required fields of query and path, can either be replaced with the name of a valid operator.\n * facets: {\n * stringFacet: Narrows search results based on unique string values, with required fields of type and path.\n * numberFacet: Narrows search results by breaking them up into separate ranges of numbers, with required fields of type, path, and boundaries.\n * dateFacet: Narrows search results by breaking them up into separate ranges of dates, with required fields of type, path, and boundaries.\n * }\n * }\n */\n";
|
|
432
480
|
readonly snippet: "{\n index: ${1:string},\n facet: {\n operator: {\n text: {\n query: ${2:string},\n path: ${3:string}\n }\n },\n facets: {\n ${4:stringFacet}: {\n type: ${5:string},\n path: ${6:string},\n numBuckets: ${7:integer}\n },\n numberFacet: {\n type: 'number',\n path: ${8:string},\n boundaries: [${9:lowerbound}, ${10:upperbound}, ...],\n default: ${11:string}\n }\n }\n }\n}";
|
|
433
|
-
}, {
|
|
434
|
-
readonly name: "$vectorSearch";
|
|
435
|
-
readonly value: "$vectorSearch";
|
|
436
|
-
readonly label: "$vectorSearch";
|
|
437
|
-
readonly outputStage: false;
|
|
438
|
-
readonly fullScan: false;
|
|
439
|
-
readonly firstStage: true;
|
|
440
|
-
readonly score: 1;
|
|
441
|
-
readonly env: readonly ["atlas"];
|
|
442
|
-
readonly meta: "stage";
|
|
443
|
-
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
444
|
-
readonly apiVersions: readonly [];
|
|
445
|
-
readonly namespaces: readonly ["coll"];
|
|
446
|
-
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
447
|
-
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
448
|
-
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
449
481
|
}, {
|
|
450
482
|
readonly name: "$set";
|
|
451
483
|
readonly value: "$set";
|
|
@@ -575,55 +607,23 @@ declare const STAGE_OPERATORS: readonly [{
|
|
|
575
607
|
readonly comment: "/**\n * path: Path to the array field.\n * includeArrayIndex: Optional name for index.\n * preserveNullAndEmptyArrays: Optional\n * toggle to unwind null and empty values.\n */\n";
|
|
576
608
|
readonly snippet: "{\n path: ${1:path},\n includeArrayIndex: '${2:string}',\n preserveNullAndEmptyArrays: ${3:boolean}\n}";
|
|
577
609
|
}, {
|
|
578
|
-
readonly name: "$
|
|
579
|
-
readonly value: "$
|
|
580
|
-
readonly label: "$
|
|
581
|
-
readonly outputStage: false;
|
|
582
|
-
readonly fullScan: false;
|
|
583
|
-
readonly firstStage: true;
|
|
584
|
-
readonly score: 1;
|
|
585
|
-
readonly env: readonly ["atlas", "on-prem"];
|
|
586
|
-
readonly meta: "stage";
|
|
587
|
-
readonly version: "4.2.0";
|
|
588
|
-
readonly apiVersions: readonly [1];
|
|
589
|
-
readonly namespaces: readonly ["db"];
|
|
590
|
-
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
591
|
-
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
592
|
-
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
593
|
-
}, {
|
|
594
|
-
readonly name: "$currentOp";
|
|
595
|
-
readonly value: "$currentOp";
|
|
596
|
-
readonly label: "$currentOp";
|
|
597
|
-
readonly outputStage: false;
|
|
598
|
-
readonly fullScan: false;
|
|
599
|
-
readonly firstStage: true;
|
|
600
|
-
readonly score: 1;
|
|
601
|
-
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
602
|
-
readonly meta: "stage";
|
|
603
|
-
readonly version: "3.6.0";
|
|
604
|
-
readonly apiVersions: readonly [1];
|
|
605
|
-
readonly namespaces: readonly ["db"];
|
|
606
|
-
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
607
|
-
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
608
|
-
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
609
|
-
}, {
|
|
610
|
-
readonly name: "$listLocalSessions";
|
|
611
|
-
readonly value: "$listLocalSessions";
|
|
612
|
-
readonly label: "$listLocalSessions";
|
|
610
|
+
readonly name: "$vectorSearch";
|
|
611
|
+
readonly value: "$vectorSearch";
|
|
612
|
+
readonly label: "$vectorSearch";
|
|
613
613
|
readonly outputStage: false;
|
|
614
614
|
readonly fullScan: false;
|
|
615
615
|
readonly firstStage: true;
|
|
616
616
|
readonly score: 1;
|
|
617
|
-
readonly env: readonly ["atlas"
|
|
617
|
+
readonly env: readonly ["atlas"];
|
|
618
618
|
readonly meta: "stage";
|
|
619
|
-
readonly version: "
|
|
620
|
-
readonly apiVersions: readonly [
|
|
621
|
-
readonly namespaces: readonly ["
|
|
622
|
-
readonly description: "
|
|
623
|
-
readonly comment: "/**\n *
|
|
624
|
-
readonly snippet: "{\n
|
|
619
|
+
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
620
|
+
readonly apiVersions: readonly [];
|
|
621
|
+
readonly namespaces: readonly ["coll"];
|
|
622
|
+
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
623
|
+
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
624
|
+
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
625
625
|
}];
|
|
626
|
-
declare const STAGE_OPERATOR_NAMES: ("$count" | "$addFields" | "$bucket" | "$bucketAuto" | "$collStats" | "$densify" | "$documents" | "$facet" | "$fill" | "$geoNear" | "$graphLookup" | "$group" | "$indexStats" | "$limit" | "$lookup" | "$match" | "$merge" | "$out" | "$project" | "$redact" | "$
|
|
626
|
+
declare const STAGE_OPERATOR_NAMES: ("$count" | "$addFields" | "$bucket" | "$bucketAuto" | "$changeStream" | "$collStats" | "$currentOp" | "$densify" | "$documents" | "$facet" | "$fill" | "$geoNear" | "$graphLookup" | "$group" | "$indexStats" | "$limit" | "$listLocalSessions" | "$lookup" | "$match" | "$merge" | "$out" | "$project" | "$redact" | "$replaceRoot" | "$replaceWith" | "$sample" | "$search" | "$searchMeta" | "$set" | "$setWindowFields" | "$skip" | "$sort" | "$sortByCount" | "$unionWith" | "$unset" | "$unwind" | "$vectorSearch")[];
|
|
627
627
|
declare const OUT_STAGES: ({
|
|
628
628
|
readonly name: "$merge";
|
|
629
629
|
readonly value: "$merge";
|
|
@@ -739,6 +739,22 @@ declare const FULL_SCAN_STAGES: ({
|
|
|
739
739
|
readonly snippet: "{\n _id: ${1:expression},\n ${2:fieldN}: {\n ${3:accumulatorN}: ${4:expressionN}\n }\n}";
|
|
740
740
|
})[];
|
|
741
741
|
declare const REQUIRED_AS_FIRST_STAGE: ({
|
|
742
|
+
readonly name: "$changeStream";
|
|
743
|
+
readonly value: "$changeStream";
|
|
744
|
+
readonly label: "$changeStream";
|
|
745
|
+
readonly outputStage: false;
|
|
746
|
+
readonly fullScan: false;
|
|
747
|
+
readonly firstStage: true;
|
|
748
|
+
readonly score: 1;
|
|
749
|
+
readonly env: readonly ["atlas", "on-prem"];
|
|
750
|
+
readonly meta: "stage";
|
|
751
|
+
readonly version: "4.2.0";
|
|
752
|
+
readonly apiVersions: readonly [1];
|
|
753
|
+
readonly namespaces: readonly ["db"];
|
|
754
|
+
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
755
|
+
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
756
|
+
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
757
|
+
} | {
|
|
742
758
|
readonly name: "$collStats";
|
|
743
759
|
readonly value: "$collStats";
|
|
744
760
|
readonly label: "$collStats";
|
|
@@ -754,6 +770,22 @@ declare const REQUIRED_AS_FIRST_STAGE: ({
|
|
|
754
770
|
readonly description: "Returns statistics regarding a collection or view.";
|
|
755
771
|
readonly comment: "/**\n * histograms: Optional latency histograms.\n * storageStats: Optional storage stats.\n */\n";
|
|
756
772
|
readonly snippet: "{\n latencyStats: {\n histograms: ${1:boolean}\n },\n storageStats: {${2:}},\n}";
|
|
773
|
+
} | {
|
|
774
|
+
readonly name: "$currentOp";
|
|
775
|
+
readonly value: "$currentOp";
|
|
776
|
+
readonly label: "$currentOp";
|
|
777
|
+
readonly outputStage: false;
|
|
778
|
+
readonly fullScan: false;
|
|
779
|
+
readonly firstStage: true;
|
|
780
|
+
readonly score: 1;
|
|
781
|
+
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
782
|
+
readonly meta: "stage";
|
|
783
|
+
readonly version: "3.6.0";
|
|
784
|
+
readonly apiVersions: readonly [1];
|
|
785
|
+
readonly namespaces: readonly ["db"];
|
|
786
|
+
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
787
|
+
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
788
|
+
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
757
789
|
} | {
|
|
758
790
|
readonly name: "$documents";
|
|
759
791
|
readonly value: "$documents";
|
|
@@ -786,54 +818,6 @@ declare const REQUIRED_AS_FIRST_STAGE: ({
|
|
|
786
818
|
readonly description: "Returns statistics regarding the use of each index for the collection.";
|
|
787
819
|
readonly comment: "/**\n * No parameters.\n */\n";
|
|
788
820
|
readonly snippet: "{}";
|
|
789
|
-
} | {
|
|
790
|
-
readonly name: "$vectorSearch";
|
|
791
|
-
readonly value: "$vectorSearch";
|
|
792
|
-
readonly label: "$vectorSearch";
|
|
793
|
-
readonly outputStage: false;
|
|
794
|
-
readonly fullScan: false;
|
|
795
|
-
readonly firstStage: true;
|
|
796
|
-
readonly score: 1;
|
|
797
|
-
readonly env: readonly ["atlas"];
|
|
798
|
-
readonly meta: "stage";
|
|
799
|
-
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
800
|
-
readonly apiVersions: readonly [];
|
|
801
|
-
readonly namespaces: readonly ["coll"];
|
|
802
|
-
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
803
|
-
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
804
|
-
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
805
|
-
} | {
|
|
806
|
-
readonly name: "$changeStream";
|
|
807
|
-
readonly value: "$changeStream";
|
|
808
|
-
readonly label: "$changeStream";
|
|
809
|
-
readonly outputStage: false;
|
|
810
|
-
readonly fullScan: false;
|
|
811
|
-
readonly firstStage: true;
|
|
812
|
-
readonly score: 1;
|
|
813
|
-
readonly env: readonly ["atlas", "on-prem"];
|
|
814
|
-
readonly meta: "stage";
|
|
815
|
-
readonly version: "4.2.0";
|
|
816
|
-
readonly apiVersions: readonly [1];
|
|
817
|
-
readonly namespaces: readonly ["db"];
|
|
818
|
-
readonly description: "Returns a Change Stream cursor for the collection.";
|
|
819
|
-
readonly comment: "/**\n * allChangesForCluster: Optional boolean to include all changes in the cluster.\n * fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).\n * fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.\n * resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.\n * showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).\n * startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.\n * startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.\n */\n";
|
|
820
|
-
readonly snippet: "{\n allChangesForCluster: ${1:boolean},\n fullDocument: '${2:string}',\n fullDocumentBeforeChange: '${3:string}',\n resumeAfter: ${4:resumeToken},\n showExpandedEvents: ${5:boolean},\n startAfter: ${6:resumeToken},\n startAtOperationTime: ${7:time},\n}";
|
|
821
|
-
} | {
|
|
822
|
-
readonly name: "$currentOp";
|
|
823
|
-
readonly value: "$currentOp";
|
|
824
|
-
readonly label: "$currentOp";
|
|
825
|
-
readonly outputStage: false;
|
|
826
|
-
readonly fullScan: false;
|
|
827
|
-
readonly firstStage: true;
|
|
828
|
-
readonly score: 1;
|
|
829
|
-
readonly env: readonly ["atlas", "adl", "on-prem"];
|
|
830
|
-
readonly meta: "stage";
|
|
831
|
-
readonly version: "3.6.0";
|
|
832
|
-
readonly apiVersions: readonly [1];
|
|
833
|
-
readonly namespaces: readonly ["db"];
|
|
834
|
-
readonly description: "Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.";
|
|
835
|
-
readonly comment: "/**\n * allUsers: Optional boolean value to specify whether to return operations for all users or not.\n * idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.\n * idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.\n * idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.\n * localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.\n * backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.\n */\n";
|
|
836
|
-
readonly snippet: "{\n allUsers: ${1:false},\n idleConnections: ${2:false},\n idleCursors: ${3:false},\n idleSessions: ${4:true},\n localOps: ${5:false},\n backtrace: ${6:false},\n}";
|
|
837
821
|
} | {
|
|
838
822
|
readonly name: "$listLocalSessions";
|
|
839
823
|
readonly value: "$listLocalSessions";
|
|
@@ -850,6 +834,22 @@ declare const REQUIRED_AS_FIRST_STAGE: ({
|
|
|
850
834
|
readonly description: "Lists the sessions cached in memory by the mongod or mongos instance.";
|
|
851
835
|
readonly comment: "/**\n * users: Optional list of users for which local sessions need to be returned.\n * allUsers: Optional boolean value to specify whether to return local sessions for all users or not.\n */\n";
|
|
852
836
|
readonly snippet: "{\n allUsers: ${1:false},\n users: [\n { user: '${2:string}', db: '${3:string}' }\n ]\n}";
|
|
837
|
+
} | {
|
|
838
|
+
readonly name: "$vectorSearch";
|
|
839
|
+
readonly value: "$vectorSearch";
|
|
840
|
+
readonly label: "$vectorSearch";
|
|
841
|
+
readonly outputStage: false;
|
|
842
|
+
readonly fullScan: false;
|
|
843
|
+
readonly firstStage: true;
|
|
844
|
+
readonly score: 1;
|
|
845
|
+
readonly env: readonly ["atlas"];
|
|
846
|
+
readonly meta: "stage";
|
|
847
|
+
readonly version: ">=6.0.10 <7.0.0 || >=7.0.2";
|
|
848
|
+
readonly apiVersions: readonly [];
|
|
849
|
+
readonly namespaces: readonly ["coll"];
|
|
850
|
+
readonly description: "Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.";
|
|
851
|
+
readonly comment: "/**\n * queryVector: Array of numbers of BSON types `int` or `double` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)\n * path: The field to search. (Required)\n * numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (`limit`) to increase accuracy. (Required)\n * index: Name of the Atlas Search index to use. (Required)\n * limit: Number (of type `int` only) of documents to return in the results. (Required)\n * filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)\n */\n";
|
|
852
|
+
readonly snippet: "{\n queryVector: [${1:dimension1}, ${2:dimension2}, ...],\n path: ${3:string},\n numCandidates: ${4:numCandidates},\n index: ${5:string},\n limit: ${6:limit},\n filter: {${7:expression}}\n}";
|
|
853
853
|
})[];
|
|
854
854
|
export { STAGE_OPERATORS, STAGE_OPERATOR_NAMES, OUT_STAGES, FULL_SCAN_STAGES, REQUIRED_AS_FIRST_STAGE, };
|
|
855
855
|
//# sourceMappingURL=stage-operators.d.ts.map
|
package/dist/stage-operators.js
CHANGED
|
@@ -89,6 +89,40 @@ const STAGE_OPERATORS = [
|
|
|
89
89
|
\${3:outputN}: \${4:accumulator}, \${5:...}
|
|
90
90
|
},
|
|
91
91
|
granularity: '\${6:string}'
|
|
92
|
+
}`,
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: '$changeStream',
|
|
96
|
+
value: '$changeStream',
|
|
97
|
+
label: '$changeStream',
|
|
98
|
+
outputStage: false,
|
|
99
|
+
fullScan: false,
|
|
100
|
+
firstStage: true,
|
|
101
|
+
score: 1,
|
|
102
|
+
env: [env_1.ATLAS, env_1.ON_PREM],
|
|
103
|
+
meta: 'stage',
|
|
104
|
+
version: '4.2.0',
|
|
105
|
+
apiVersions: [1],
|
|
106
|
+
namespaces: [ns_1.DATABASE],
|
|
107
|
+
description: 'Returns a Change Stream cursor for the collection.',
|
|
108
|
+
comment: `/**
|
|
109
|
+
* allChangesForCluster: Optional boolean to include all changes in the cluster.
|
|
110
|
+
* fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).
|
|
111
|
+
* fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.
|
|
112
|
+
* resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.
|
|
113
|
+
* showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).
|
|
114
|
+
* startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.
|
|
115
|
+
* startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.
|
|
116
|
+
*/
|
|
117
|
+
`,
|
|
118
|
+
snippet: `{
|
|
119
|
+
allChangesForCluster: \${1:boolean},
|
|
120
|
+
fullDocument: '\${2:string}',
|
|
121
|
+
fullDocumentBeforeChange: '\${3:string}',
|
|
122
|
+
resumeAfter: \${4:resumeToken},
|
|
123
|
+
showExpandedEvents: \${5:boolean},
|
|
124
|
+
startAfter: \${6:resumeToken},
|
|
125
|
+
startAtOperationTime: \${7:time},
|
|
92
126
|
}`,
|
|
93
127
|
},
|
|
94
128
|
{
|
|
@@ -137,6 +171,38 @@ const STAGE_OPERATORS = [
|
|
|
137
171
|
`,
|
|
138
172
|
snippet: `'\${1:string}'`,
|
|
139
173
|
},
|
|
174
|
+
{
|
|
175
|
+
name: '$currentOp',
|
|
176
|
+
value: '$currentOp',
|
|
177
|
+
label: '$currentOp',
|
|
178
|
+
outputStage: false,
|
|
179
|
+
fullScan: false,
|
|
180
|
+
firstStage: true,
|
|
181
|
+
score: 1,
|
|
182
|
+
env: [env_1.ATLAS, env_1.ADL, env_1.ON_PREM],
|
|
183
|
+
meta: 'stage',
|
|
184
|
+
version: '3.6.0',
|
|
185
|
+
apiVersions: [1],
|
|
186
|
+
namespaces: [ns_1.DATABASE],
|
|
187
|
+
description: 'Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.',
|
|
188
|
+
comment: `/**
|
|
189
|
+
* allUsers: Optional boolean value to specify whether to return operations for all users or not.
|
|
190
|
+
* idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.
|
|
191
|
+
* idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.
|
|
192
|
+
* idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.
|
|
193
|
+
* localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.
|
|
194
|
+
* backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.
|
|
195
|
+
*/
|
|
196
|
+
`,
|
|
197
|
+
snippet: `{
|
|
198
|
+
allUsers: \${1:false},
|
|
199
|
+
idleConnections: \${2:false},
|
|
200
|
+
idleCursors: \${3:false},
|
|
201
|
+
idleSessions: \${4:true},
|
|
202
|
+
localOps: \${5:false},
|
|
203
|
+
backtrace: \${6:false},
|
|
204
|
+
}`,
|
|
205
|
+
},
|
|
140
206
|
{
|
|
141
207
|
name: '$densify',
|
|
142
208
|
value: '$densify',
|
|
@@ -385,6 +451,32 @@ const STAGE_OPERATORS = [
|
|
|
385
451
|
`,
|
|
386
452
|
snippet: '${1:number}',
|
|
387
453
|
},
|
|
454
|
+
{
|
|
455
|
+
name: '$listLocalSessions',
|
|
456
|
+
value: '$listLocalSessions',
|
|
457
|
+
label: '$listLocalSessions',
|
|
458
|
+
outputStage: false,
|
|
459
|
+
fullScan: false,
|
|
460
|
+
firstStage: true,
|
|
461
|
+
score: 1,
|
|
462
|
+
env: [env_1.ATLAS, env_1.ON_PREM],
|
|
463
|
+
meta: 'stage',
|
|
464
|
+
version: '3.6.0',
|
|
465
|
+
apiVersions: [1],
|
|
466
|
+
namespaces: [ns_1.DATABASE],
|
|
467
|
+
description: 'Lists the sessions cached in memory by the mongod or mongos instance.',
|
|
468
|
+
comment: `/**
|
|
469
|
+
* users: Optional list of users for which local sessions need to be returned.
|
|
470
|
+
* allUsers: Optional boolean value to specify whether to return local sessions for all users or not.
|
|
471
|
+
*/
|
|
472
|
+
`,
|
|
473
|
+
snippet: `{
|
|
474
|
+
allUsers: \${1:false},
|
|
475
|
+
users: [
|
|
476
|
+
{ user: '\${2:string}', db: '\${3:string}' }
|
|
477
|
+
]
|
|
478
|
+
}`,
|
|
479
|
+
},
|
|
388
480
|
{
|
|
389
481
|
name: '$lookup',
|
|
390
482
|
value: '$lookup',
|
|
@@ -614,16 +706,16 @@ const STAGE_OPERATORS = [
|
|
|
614
706
|
}`,
|
|
615
707
|
},
|
|
616
708
|
{
|
|
617
|
-
name: '$
|
|
618
|
-
value: '$
|
|
619
|
-
label: '$
|
|
709
|
+
name: '$replaceRoot',
|
|
710
|
+
value: '$replaceRoot',
|
|
711
|
+
label: '$replaceRoot',
|
|
620
712
|
outputStage: false,
|
|
621
713
|
fullScan: false,
|
|
622
714
|
firstStage: false,
|
|
623
715
|
score: 1,
|
|
624
716
|
env: [env_1.ATLAS, env_1.ADL, env_1.ON_PREM],
|
|
625
717
|
meta: 'stage',
|
|
626
|
-
version: '4.
|
|
718
|
+
version: '3.4.0',
|
|
627
719
|
apiVersions: [1],
|
|
628
720
|
namespaces: [...ns_1.ANY_NAMESPACE],
|
|
629
721
|
description: 'Replaces a document with the specified embedded document.',
|
|
@@ -632,20 +724,20 @@ const STAGE_OPERATORS = [
|
|
|
632
724
|
*/
|
|
633
725
|
`,
|
|
634
726
|
snippet: `{
|
|
635
|
-
|
|
727
|
+
newRoot: \${1:replacementDocument}
|
|
636
728
|
}`,
|
|
637
729
|
},
|
|
638
730
|
{
|
|
639
|
-
name: '$
|
|
640
|
-
value: '$
|
|
641
|
-
label: '$
|
|
731
|
+
name: '$replaceWith',
|
|
732
|
+
value: '$replaceWith',
|
|
733
|
+
label: '$replaceWith',
|
|
642
734
|
outputStage: false,
|
|
643
735
|
fullScan: false,
|
|
644
736
|
firstStage: false,
|
|
645
737
|
score: 1,
|
|
646
738
|
env: [env_1.ATLAS, env_1.ADL, env_1.ON_PREM],
|
|
647
739
|
meta: 'stage',
|
|
648
|
-
version: '
|
|
740
|
+
version: '4.2.0',
|
|
649
741
|
apiVersions: [1],
|
|
650
742
|
namespaces: [...ns_1.ANY_NAMESPACE],
|
|
651
743
|
description: 'Replaces a document with the specified embedded document.',
|
|
@@ -654,7 +746,7 @@ const STAGE_OPERATORS = [
|
|
|
654
746
|
*/
|
|
655
747
|
`,
|
|
656
748
|
snippet: `{
|
|
657
|
-
|
|
749
|
+
newWith: \${1:replacementDocument}
|
|
658
750
|
}`,
|
|
659
751
|
},
|
|
660
752
|
{
|
|
@@ -761,38 +853,6 @@ const STAGE_OPERATORS = [
|
|
|
761
853
|
}
|
|
762
854
|
}
|
|
763
855
|
}
|
|
764
|
-
}`,
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
name: '$vectorSearch',
|
|
768
|
-
value: '$vectorSearch',
|
|
769
|
-
label: '$vectorSearch',
|
|
770
|
-
outputStage: false,
|
|
771
|
-
fullScan: false,
|
|
772
|
-
firstStage: true,
|
|
773
|
-
score: 1,
|
|
774
|
-
env: [env_1.ATLAS],
|
|
775
|
-
meta: 'stage',
|
|
776
|
-
version: '>=6.0.10 <7.0.0 || >=7.0.2',
|
|
777
|
-
apiVersions: [],
|
|
778
|
-
namespaces: [ns_1.COLLECTION],
|
|
779
|
-
description: 'Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.',
|
|
780
|
-
comment: `/**
|
|
781
|
-
* queryVector: Array of numbers of BSON types \`int\` or \`double\` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)
|
|
782
|
-
* path: The field to search. (Required)
|
|
783
|
-
* numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (\`limit\`) to increase accuracy. (Required)
|
|
784
|
-
* index: Name of the Atlas Search index to use. (Required)
|
|
785
|
-
* limit: Number (of type \`int\` only) of documents to return in the results. (Required)
|
|
786
|
-
* filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)
|
|
787
|
-
*/
|
|
788
|
-
`,
|
|
789
|
-
snippet: `{
|
|
790
|
-
queryVector: [\${1:dimension1}, \${2:dimension2}, ...],
|
|
791
|
-
path: \${3:string},
|
|
792
|
-
numCandidates: \${4:numCandidates},
|
|
793
|
-
index: \${5:string},
|
|
794
|
-
limit: \${6:limit},
|
|
795
|
-
filter: {\${7:expression}}
|
|
796
856
|
}`,
|
|
797
857
|
},
|
|
798
858
|
{
|
|
@@ -1000,95 +1060,35 @@ const STAGE_OPERATORS = [
|
|
|
1000
1060
|
}`,
|
|
1001
1061
|
},
|
|
1002
1062
|
{
|
|
1003
|
-
name: '$
|
|
1004
|
-
value: '$
|
|
1005
|
-
label: '$
|
|
1006
|
-
outputStage: false,
|
|
1007
|
-
fullScan: false,
|
|
1008
|
-
firstStage: true,
|
|
1009
|
-
score: 1,
|
|
1010
|
-
env: [env_1.ATLAS, env_1.ON_PREM],
|
|
1011
|
-
meta: 'stage',
|
|
1012
|
-
version: '4.2.0',
|
|
1013
|
-
apiVersions: [1],
|
|
1014
|
-
namespaces: [ns_1.DATABASE],
|
|
1015
|
-
description: 'Returns a Change Stream cursor for the collection.',
|
|
1016
|
-
comment: `/**
|
|
1017
|
-
* allChangesForCluster: Optional boolean to include all changes in the cluster.
|
|
1018
|
-
* fullDocument: Optional value to request a copy of full document when modified by update operations (Introduced in 6.0).
|
|
1019
|
-
* fullDocumentBeforeChange: Value to configure whether to return a full document before the change or not.
|
|
1020
|
-
* resumeAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with startAfter or startAtOperationTime fields.
|
|
1021
|
-
* showExpandedEvents: Specifies whether to include additional change events, such as such as DDL and index operations (Introduced in 6.0).
|
|
1022
|
-
* startAfter: Specifies a resume token as the logical starting point for the change stream. Cannot be used with resumeAfter or startAtOperationTime fields.
|
|
1023
|
-
* startAtOperationTime: Specifies a time as the logical starting point for the change stream. Cannot be used with resumeAfter or startAfter fields.
|
|
1024
|
-
*/
|
|
1025
|
-
`,
|
|
1026
|
-
snippet: `{
|
|
1027
|
-
allChangesForCluster: \${1:boolean},
|
|
1028
|
-
fullDocument: '\${2:string}',
|
|
1029
|
-
fullDocumentBeforeChange: '\${3:string}',
|
|
1030
|
-
resumeAfter: \${4:resumeToken},
|
|
1031
|
-
showExpandedEvents: \${5:boolean},
|
|
1032
|
-
startAfter: \${6:resumeToken},
|
|
1033
|
-
startAtOperationTime: \${7:time},
|
|
1034
|
-
}`,
|
|
1035
|
-
},
|
|
1036
|
-
{
|
|
1037
|
-
name: '$currentOp',
|
|
1038
|
-
value: '$currentOp',
|
|
1039
|
-
label: '$currentOp',
|
|
1040
|
-
outputStage: false,
|
|
1041
|
-
fullScan: false,
|
|
1042
|
-
firstStage: true,
|
|
1043
|
-
score: 1,
|
|
1044
|
-
env: [env_1.ATLAS, env_1.ADL, env_1.ON_PREM],
|
|
1045
|
-
meta: 'stage',
|
|
1046
|
-
version: '3.6.0',
|
|
1047
|
-
apiVersions: [1],
|
|
1048
|
-
namespaces: [ns_1.DATABASE],
|
|
1049
|
-
description: 'Returns a cursor over information on active and/or dormant operations for the MongoDB deployment as well as inactive sessions that are holding locks as part of a transaction.',
|
|
1050
|
-
comment: `/**
|
|
1051
|
-
* allUsers: Optional boolean value to specify whether to return operations for all users or not.
|
|
1052
|
-
* idleConnections: Optional boolean value to specify whether to return all operations including idle connections or not.
|
|
1053
|
-
* idleCursors: Optional boolean value to specify whether to report on cursors that are idle or not.
|
|
1054
|
-
* idleSessions: Optional boolean value to specify whether to report on dormant sessions or not.
|
|
1055
|
-
* localOps: Optional boolean value to specify whether to report on operations running locally on targetted mongos or not.
|
|
1056
|
-
* backtrace: Optional boolean value to specify whether callstack information is returned as part of the waitingForLatch output field.
|
|
1057
|
-
*/
|
|
1058
|
-
`,
|
|
1059
|
-
snippet: `{
|
|
1060
|
-
allUsers: \${1:false},
|
|
1061
|
-
idleConnections: \${2:false},
|
|
1062
|
-
idleCursors: \${3:false},
|
|
1063
|
-
idleSessions: \${4:true},
|
|
1064
|
-
localOps: \${5:false},
|
|
1065
|
-
backtrace: \${6:false},
|
|
1066
|
-
}`,
|
|
1067
|
-
},
|
|
1068
|
-
{
|
|
1069
|
-
name: '$listLocalSessions',
|
|
1070
|
-
value: '$listLocalSessions',
|
|
1071
|
-
label: '$listLocalSessions',
|
|
1063
|
+
name: '$vectorSearch',
|
|
1064
|
+
value: '$vectorSearch',
|
|
1065
|
+
label: '$vectorSearch',
|
|
1072
1066
|
outputStage: false,
|
|
1073
1067
|
fullScan: false,
|
|
1074
1068
|
firstStage: true,
|
|
1075
1069
|
score: 1,
|
|
1076
|
-
env: [env_1.ATLAS
|
|
1070
|
+
env: [env_1.ATLAS],
|
|
1077
1071
|
meta: 'stage',
|
|
1078
|
-
version: '
|
|
1079
|
-
apiVersions: [
|
|
1080
|
-
namespaces: [ns_1.
|
|
1081
|
-
description: '
|
|
1072
|
+
version: '>=6.0.10 <7.0.0 || >=7.0.2',
|
|
1073
|
+
apiVersions: [],
|
|
1074
|
+
namespaces: [ns_1.COLLECTION],
|
|
1075
|
+
description: 'Performs a kNN search on a vector in the specified field or fields. The field that you want to search must be covered by an Atlas Search index of type `vectorEmbedding`.',
|
|
1082
1076
|
comment: `/**
|
|
1083
|
-
*
|
|
1084
|
-
*
|
|
1077
|
+
* queryVector: Array of numbers of BSON types \`int\` or \`double\` that represent the query vector. The array size must match the number of vector dimensions specified in the index for the field. (Required)
|
|
1078
|
+
* path: The field to search. (Required)
|
|
1079
|
+
* numCandidates: Number of nearest neighbors to use during the search. You can specify a number higher than the number of documents to return (\`limit\`) to increase accuracy. (Required)
|
|
1080
|
+
* index: Name of the Atlas Search index to use. (Required)
|
|
1081
|
+
* limit: Number (of type \`int\` only) of documents to return in the results. (Required)
|
|
1082
|
+
* filter: Any MongoDB Query Language (MQL) match expression that compares an indexed field with a boolean, number (not decimals), or string to use as a prefilter. (Optional)
|
|
1085
1083
|
*/
|
|
1086
1084
|
`,
|
|
1087
1085
|
snippet: `{
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1086
|
+
queryVector: [\${1:dimension1}, \${2:dimension2}, ...],
|
|
1087
|
+
path: \${3:string},
|
|
1088
|
+
numCandidates: \${4:numCandidates},
|
|
1089
|
+
index: \${5:string},
|
|
1090
|
+
limit: \${6:limit},
|
|
1091
|
+
filter: {\${7:expression}}
|
|
1092
1092
|
}`,
|
|
1093
1093
|
},
|
|
1094
1094
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stage-operators.js","sourceRoot":"","sources":["../src/stage-operators.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"stage-operators.js","sourceRoot":"","sources":["../src/stage-operators.ts"],"names":[],"mappings":";;;AACA,+BAA4C;AAE5C,6BAKc;AAuBd,MAAM,eAAe,GAAG;IACtB;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,iHAAiH;QACnH,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,IAAI;QACd,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,4FAA4F;QAC9F,OAAO,EAAE;;;;;;;;CAQZ;QACG,OAAO,EAAE;;;;;;;EAOX;KACC;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,aAAa;QACpB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,IAAI;QACd,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,mHAAmH;QACrH,OAAO,EAAE;;;;;;;;CAQZ;QACG,OAAO,EAAE;;;;;;;EAOX;KACC;IACD;QACE,IAAI,EAAE,eAAe;QACrB,KAAK,EAAE,eAAe;QACtB,KAAK,EAAE,eAAe;QACtB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,aAAO,CAAC;QACrB,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,aAAQ,CAAC;QACtB,WAAW,EAAE,oDAAoD;QACjE,OAAO,EAAE;;;;;;;;;CASZ;QACG,OAAO,EAAE;;;;;;;;EAQX;KACC;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,EAAE;QACf,UAAU,EAAE,CAAC,GAAG,6BAAwB,CAAC;QACzC,WAAW,EAAE,oDAAoD;QACjE,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;;;;EAKX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,uFAAuF;QACzF,OAAO,EAAE;;;CAGZ;QAEG,OAAO,EAAE,gBAAgB;KAC1B;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,aAAQ,CAAC;QACtB,WAAW,EACT,gLAAgL;QAClL,OAAO,EAAE;;;;;;;;CAQZ;QACG,OAAO,EAAE;;;;;;;EAOX;KACC;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,8GAA8G;QAChH,OAAO,EAAE;;;;;;;;;CASZ;QACG,OAAO,EAAE;;;;;;;;EAQX;KACC;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,aAAQ,CAAC;QACtB,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,4DAA4D;QACzE,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,2DAA2D;QACxE,OAAO,EAAE;;;;;;;CAOZ;QACG,OAAO,EAAE;;;;;;;;;EASX;KACC;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,6DAA6D;QAC1E,OAAO,EAAE;;;;;;;;;CASZ;QACG,OAAO,EAAE;;;;;;;;EAQX;KACC;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE;;;;;;;;;;CAUZ;QACG,OAAO,EAAE;;;;;;;;;EASX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,IAAI;QACd,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,6CAA6C;QAC1D,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;;;;EAKX;KACC;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,aAAa;QACpB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,EAAE;QACf,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,wEAAwE;QAC1E,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE,IAAI;KACd;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,kEAAkE;QACpE,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE,aAAa;KACvB;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,KAAK,EAAE,oBAAoB;QAC3B,KAAK,EAAE,oBAAoB;QAC3B,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,aAAO,CAAC;QACrB,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,aAAQ,CAAC;QACtB,WAAW,EACT,uEAAuE;QACzE,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;;;;EAKX;KACC;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,0CAA0C;QACvD,OAAO,EAAE;;;;;;;;CAQZ;QACG,OAAO,EAAE;;;;;EAKX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,oGAAoG;QACtG,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,IAAI;QACjB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,aAAO,CAAC;QACrB,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,QAAQ;QACjB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,6FAA6F;QAC/F,OAAO,EAAE;;;;;;;CAOZ;QACG,OAAO,EAAE;;;;;;EAMX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,IAAI;QACjB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,SAAG,CAAC;QACV,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,6FAA6F;QAC/F,OAAO,EAAE;;;;;;;CAOZ;QACG,OAAO,EAAE;;;;;;;;;;;;;EAaX;KACC;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,MAAM;QACb,WAAW,EAAE,IAAI;QACjB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,aAAO,CAAC;QACrB,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,kEAAkE;QACpE,OAAO,EAAE;;;CAGZ;QAEG,OAAO,EAAE,gBAAgB;KAC1B;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,MAAM;QACb,WAAW,EAAE,IAAI;QACjB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,SAAG,CAAC;QACV,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,mEAAmE;QACrE,OAAO,EAAE;;;;;;;;;;;;;CAaZ;QACG,OAAO,EAAE;;;;;;;;;;;;;EAaX;KACC;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,qKAAqK;QACvK,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,iGAAiG;QACnG,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,2DAA2D;QACxE,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,2DAA2D;QACxE,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,6BAAwB,CAAC;QACzC,WAAW,EACT,oEAAoE;QACtE,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,CAAC;QACZ,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,QAAQ;QACjB,WAAW,EAAE,EAAE;QACf,UAAU,EAAE,CAAC,eAAU,CAAC;QACxB,WAAW,EAAE,wDAAwD;QACrE,OAAO,EAAE;;;;;;;;;CASZ;QACG,OAAO,EAAE;;;;;;EAMX;KACC;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,aAAa;QACpB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,CAAC;QACZ,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,EAAE;QACf,UAAU,EAAE,CAAC,eAAU,CAAC;QACxB,WAAW,EACT,uHAAuH;QACzH,OAAO,EAAE;;;;;;;;;;;;CAYZ;QACG,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;EAuBX;KACC;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,MAAM;QACb,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,wIAAwI;QAC1I,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,kBAAkB;QACzB,KAAK,EAAE,kBAAkB;QACzB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,sHAAsH;QACxH,OAAO,EAAE;;;;;;;;;;;;;;CAcZ;QACG,OAAO,EAAE;;;;;;;;;;;;;;EAcX;KACC;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,2EAA2E;QAC7E,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE,aAAa;KACvB;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,qEAAqE;QACvE,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,sIAAsI;QACxI,OAAO,EAAE;;;CAGZ;QACG,OAAO,EAAE;;EAEX;KACC;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,wDAAwD;QACrE,OAAO,EAAE;;;;CAIZ;QACG,OAAO,EAAE;;;EAGX;KACC;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,QAAQ;QACf,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EAAE,2CAA2C;QACxD,OAAO,EAAE;;;;CAIZ;QAEG,OAAO,EAAE,gBAAgB;KAC1B;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,KAAK;QACjB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,EAAE,SAAG,EAAE,aAAO,CAAC;QAC1B,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,CAAC,CAAC,CAAC;QAChB,UAAU,EAAE,CAAC,GAAG,kBAAa,CAAC;QAC9B,WAAW,EACT,gEAAgE;QAClE,OAAO,EAAE;;;;;;CAMZ;QACG,OAAO,EAAE;;;;EAIX;KACC;IACD;QACE,IAAI,EAAE,eAAe;QACrB,KAAK,EAAE,eAAe;QACtB,KAAK,EAAE,eAAe;QACtB,WAAW,EAAE,KAAK;QAClB,QAAQ,EAAE,KAAK;QACf,UAAU,EAAE,IAAI;QAChB,KAAK,EAAE,CAAC;QACR,GAAG,EAAE,CAAC,WAAK,CAAC;QACZ,IAAI,EAAE,OAAO;QACb,OAAO,EAAE,4BAA4B;QACrC,WAAW,EAAE,EAAE;QACf,UAAU,EAAE,CAAC,eAAU,CAAC;QACxB,WAAW,EACT,2KAA2K;QAC7K,OAAO,EAAE;;;;;;;;CAQZ;QACG,OAAO,EAAE;;;;;;;EAOX;KACC;CACO,CAAC;AA2BT,0CAAe;AAxBjB,CAAC,SAAS,yBAAyB,CAAC,UAAoC;AAIxE,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC;AAKpB,MAAM,oBAAoB,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AAgBhE,oDAAoB;AAdtB,MAAM,UAAU,GAAG,eAAe,CAAC,MAAM,CACvC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,WAAW,CACuC,CAAC;AAapE,gCAAU;AAXZ,MAAM,gBAAgB,GAAG,eAAe,CAAC,MAAM,CAC7C,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,QAAQ,CACuC,CAAC;AAUjE,4CAAgB;AARlB,MAAM,uBAAuB,GAAG,eAAe,CAAC,MAAM,CACpD,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,UAAU,CACuC,CAAC;AAOnE,0DAAuB"}
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"email": "compass@mongodb.com"
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/mongodb-js/devtools-shared",
|
|
16
|
-
"version": "0.8.
|
|
16
|
+
"version": "0.8.7",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
19
|
"url": "https://github.com/mongodb-js/devtools-shared.git"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"semver": "^7.5.4"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "0976b0f598e732484d7b87338847d9491a2911bf"
|
|
72
72
|
}
|