@camstack/server 1.2.64 → 1.2.65
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.
|
@@ -5740,11 +5740,13 @@ function createCapRouter_pipelineAnalytics(getProvider, createRemoteProxy) {
|
|
|
5740
5740
|
return p.searchObjectEvents(methodInput);
|
|
5741
5741
|
}),
|
|
5742
5742
|
wipeObjectEmbeddings: trpc_middleware_js_1.adminProcedure
|
|
5743
|
-
.input(
|
|
5743
|
+
.input(types_80.pipelineAnalyticsCapability.methods.wipeObjectEmbeddings.input.loose())
|
|
5744
5744
|
.output(types_80.pipelineAnalyticsCapability.methods.wipeObjectEmbeddings.output)
|
|
5745
5745
|
.mutation(async ({ input, ctx }) => {
|
|
5746
|
-
const
|
|
5747
|
-
|
|
5746
|
+
const { nodeId, ...methodInput } = input;
|
|
5747
|
+
const p = resolveProvider('pipeline-analytics', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5748
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5749
|
+
return p.wipeObjectEmbeddings(methodInput);
|
|
5748
5750
|
}),
|
|
5749
5751
|
rebuildObjectEmbeddings: trpc_middleware_js_1.adminProcedure
|
|
5750
5752
|
.input(types_80.pipelineAnalyticsCapability.methods.rebuildObjectEmbeddings.input.loose())
|
|
@@ -5756,11 +5758,13 @@ function createCapRouter_pipelineAnalytics(getProvider, createRemoteProxy) {
|
|
|
5756
5758
|
return p.rebuildObjectEmbeddings(methodInput);
|
|
5757
5759
|
}),
|
|
5758
5760
|
getObjectEmbeddingRebuildStatus: trpc_middleware_js_1.protectedProcedure
|
|
5759
|
-
.input(
|
|
5761
|
+
.input(types_80.pipelineAnalyticsCapability.methods.getObjectEmbeddingRebuildStatus.input.loose())
|
|
5760
5762
|
.output(types_80.pipelineAnalyticsCapability.methods.getObjectEmbeddingRebuildStatus.output)
|
|
5761
5763
|
.query(async ({ input, ctx }) => {
|
|
5762
|
-
const
|
|
5763
|
-
|
|
5764
|
+
const { nodeId, ...methodInput } = input;
|
|
5765
|
+
const p = resolveProvider('pipeline-analytics', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5766
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5767
|
+
return p.getObjectEmbeddingRebuildStatus(methodInput);
|
|
5764
5768
|
}),
|
|
5765
5769
|
});
|
|
5766
5770
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.65",
|
|
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.
|
|
43
|
+
"@camstack/addon-post-analysis": "1.2.44",
|
|
44
44
|
"@camstack/sdk": "1.2.10",
|
|
45
45
|
"@camstack/shm-ring": "1.1.9",
|
|
46
|
-
"@camstack/system": "1.2.
|
|
47
|
-
"@camstack/types": "1.2.
|
|
46
|
+
"@camstack/system": "1.2.53",
|
|
47
|
+
"@camstack/types": "1.2.40",
|
|
48
48
|
"@camstack/ui-library": "1.2.29",
|
|
49
49
|
"@fastify/compress": "^9.0.0",
|
|
50
50
|
"@fastify/cookie": "^11.0.2",
|