@camstack/server 1.2.55 → 1.2.57

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.
@@ -8900,6 +8900,15 @@ function createCapRouter_vectorStore(getProvider, createRemoteProxy) {
8900
8900
  // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
8901
8901
  return p.query(methodInput);
8902
8902
  }),
8903
+ getByIds: trpc_middleware_js_1.protectedProcedure
8904
+ .input(types_115.vectorStoreCapability.methods.getByIds.input.loose())
8905
+ .output(types_115.vectorStoreCapability.methods.getByIds.output)
8906
+ .query(async ({ input, ctx }) => {
8907
+ const { nodeId, ...methodInput } = input;
8908
+ const p = resolveProvider('vector-store', nodeId, () => getProvider(ctx), createRemoteProxy);
8909
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
8910
+ return p.getByIds(methodInput);
8911
+ }),
8903
8912
  deleteByIds: trpc_middleware_js_1.protectedProcedure
8904
8913
  .input(types_115.vectorStoreCapability.methods.deleteByIds.input.loose())
8905
8914
  .output(types_115.vectorStoreCapability.methods.deleteByIds.output)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/server",
3
- "version": "1.2.55",
3
+ "version": "1.2.57",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -40,11 +40,11 @@
40
40
  "@camstack/addon-notifiers": "1.2.13",
41
41
  "@camstack/addon-pipeline": "1.2.41",
42
42
  "@camstack/addon-pipeline-orchestrator": "1.2.24",
43
- "@camstack/addon-post-analysis": "1.2.36",
43
+ "@camstack/addon-post-analysis": "1.2.38",
44
44
  "@camstack/sdk": "1.2.10",
45
45
  "@camstack/shm-ring": "1.1.9",
46
- "@camstack/system": "1.2.46",
47
- "@camstack/types": "1.2.35",
46
+ "@camstack/system": "1.2.48",
47
+ "@camstack/types": "1.2.36",
48
48
  "@camstack/ui-library": "1.2.27",
49
49
  "@fastify/compress": "^9.0.0",
50
50
  "@fastify/cookie": "^11.0.2",