@camstack/types 1.2.39 → 1.2.40
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.
|
@@ -1657,7 +1657,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1657
1657
|
timestamp: z.ZodNumber;
|
|
1658
1658
|
score: z.ZodNumber;
|
|
1659
1659
|
}, z.core.$strip>>>, import("./capability-definition.js").CapabilityMethodKind>;
|
|
1660
|
-
readonly wipeObjectEmbeddings: import("./capability-definition.js").CapabilityMethodSchema<z.
|
|
1660
|
+
readonly wipeObjectEmbeddings: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
1661
1661
|
deleted: z.ZodNumber;
|
|
1662
1662
|
}, z.core.$strip>, "mutation">;
|
|
1663
1663
|
readonly rebuildObjectEmbeddings: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
|
|
@@ -1671,7 +1671,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1671
1671
|
started: z.ZodBoolean;
|
|
1672
1672
|
alreadyRunning: z.ZodBoolean;
|
|
1673
1673
|
}, z.core.$strip>, "mutation">;
|
|
1674
|
-
readonly getObjectEmbeddingRebuildStatus: import("./capability-definition.js").CapabilityMethodSchema<z.
|
|
1674
|
+
readonly getObjectEmbeddingRebuildStatus: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
1675
1675
|
running: z.ZodBoolean;
|
|
1676
1676
|
scanned: z.ZodNumber;
|
|
1677
1677
|
rebuilt: z.ZodNumber;
|
|
@@ -4814,8 +4814,8 @@ export type AppRouter = TrpcCoreRouter<{
|
|
|
4814
4814
|
}>;
|
|
4815
4815
|
wipeObjectEmbeddings: TRPCMutationProcedure<{
|
|
4816
4816
|
input: {
|
|
4817
|
-
|
|
4818
|
-
}
|
|
4817
|
+
[x: string]: unknown;
|
|
4818
|
+
} & z.input<typeof pipelineAnalyticsCapability.methods.wipeObjectEmbeddings.input>;
|
|
4819
4819
|
output: z.infer<typeof pipelineAnalyticsCapability.methods.wipeObjectEmbeddings.output>;
|
|
4820
4820
|
meta: object;
|
|
4821
4821
|
}>;
|
|
@@ -4828,8 +4828,8 @@ export type AppRouter = TrpcCoreRouter<{
|
|
|
4828
4828
|
}>;
|
|
4829
4829
|
getObjectEmbeddingRebuildStatus: TRPCQueryProcedure<{
|
|
4830
4830
|
input: {
|
|
4831
|
-
|
|
4832
|
-
}
|
|
4831
|
+
[x: string]: unknown;
|
|
4832
|
+
} & z.input<typeof pipelineAnalyticsCapability.methods.getObjectEmbeddingRebuildStatus.input>;
|
|
4833
4833
|
output: z.infer<typeof pipelineAnalyticsCapability.methods.getObjectEmbeddingRebuildStatus.output>;
|
|
4834
4834
|
meta: object;
|
|
4835
4835
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -12044,7 +12044,7 @@ var pipelineAnalyticsCapability = {
|
|
|
12044
12044
|
* `minScore`, sorted descending by score.
|
|
12045
12045
|
*/
|
|
12046
12046
|
searchObjectEvents: require_sleep.method(SearchObjectEventsInput, zod.z.array(ScoredObjectEventSchema).readonly()),
|
|
12047
|
-
wipeObjectEmbeddings: require_sleep.method(zod.z.
|
|
12047
|
+
wipeObjectEmbeddings: require_sleep.method(zod.z.object({}), WipeObjectEmbeddingsResultSchema, {
|
|
12048
12048
|
kind: "mutation",
|
|
12049
12049
|
auth: "admin"
|
|
12050
12050
|
}),
|
|
@@ -12052,7 +12052,7 @@ var pipelineAnalyticsCapability = {
|
|
|
12052
12052
|
kind: "mutation",
|
|
12053
12053
|
auth: "admin"
|
|
12054
12054
|
}),
|
|
12055
|
-
getObjectEmbeddingRebuildStatus: require_sleep.method(zod.z.
|
|
12055
|
+
getObjectEmbeddingRebuildStatus: require_sleep.method(zod.z.object({}), RebuildStatusSchema)
|
|
12056
12056
|
},
|
|
12057
12057
|
events: {
|
|
12058
12058
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -12043,7 +12043,7 @@ var pipelineAnalyticsCapability = {
|
|
|
12043
12043
|
* `minScore`, sorted descending by score.
|
|
12044
12044
|
*/
|
|
12045
12045
|
searchObjectEvents: method(SearchObjectEventsInput, z.array(ScoredObjectEventSchema).readonly()),
|
|
12046
|
-
wipeObjectEmbeddings: method(z.
|
|
12046
|
+
wipeObjectEmbeddings: method(z.object({}), WipeObjectEmbeddingsResultSchema, {
|
|
12047
12047
|
kind: "mutation",
|
|
12048
12048
|
auth: "admin"
|
|
12049
12049
|
}),
|
|
@@ -12051,7 +12051,7 @@ var pipelineAnalyticsCapability = {
|
|
|
12051
12051
|
kind: "mutation",
|
|
12052
12052
|
auth: "admin"
|
|
12053
12053
|
}),
|
|
12054
|
-
getObjectEmbeddingRebuildStatus: method(z.
|
|
12054
|
+
getObjectEmbeddingRebuildStatus: method(z.object({}), RebuildStatusSchema)
|
|
12055
12055
|
},
|
|
12056
12056
|
events: {
|
|
12057
12057
|
/**
|