@utaba/deep-memory-storage-cosmosdb 0.17.0 → 0.19.0

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/index.d.cts CHANGED
@@ -181,11 +181,11 @@ declare class CosmosDbProvider implements StorageProvider, GraphTraversalProvide
181
181
  *
182
182
  * The server-side step direction is fixed to `'both'` (catches every edge
183
183
  * in either direction). The directional + bidirectional filter is applied
184
- * client-side per hop — i.e. `direction: 'outbound'` includes inbound edges
184
+ * client-side per hop — i.e. `direction: 'out'` includes inbound edges
185
185
  * where `bidirectional` is true. The CosmosDB Gremlin compiler does not
186
186
  * natively express the `union(outE, inE.has(bidirectional))` shape that
187
187
  * would push this filter server-side, so it stays client-side; the
188
- * observable contract (which edges count toward "outbound" given
188
+ * observable contract (which edges count toward `'out'` given
189
189
  * bidirectionality) is preserved.
190
190
  *
191
191
  * Round-trips per call: `options.depth` (one per layer). The previous BFS
package/dist/index.d.ts CHANGED
@@ -181,11 +181,11 @@ declare class CosmosDbProvider implements StorageProvider, GraphTraversalProvide
181
181
  *
182
182
  * The server-side step direction is fixed to `'both'` (catches every edge
183
183
  * in either direction). The directional + bidirectional filter is applied
184
- * client-side per hop — i.e. `direction: 'outbound'` includes inbound edges
184
+ * client-side per hop — i.e. `direction: 'out'` includes inbound edges
185
185
  * where `bidirectional` is true. The CosmosDB Gremlin compiler does not
186
186
  * natively express the `union(outE, inE.has(bidirectional))` shape that
187
187
  * would push this filter server-side, so it stays client-side; the
188
- * observable contract (which edges count toward "outbound" given
188
+ * observable contract (which edges count toward `'out'` given
189
189
  * bidirectionality) is preserved.
190
190
  *
191
191
  * Round-trips per call: `options.depth` (one per layer). The previous BFS