@opengeni/api-router 2.13.0-canary.2 → 3.0.0-canary.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/app.js CHANGED
@@ -24,7 +24,7 @@ import {
24
24
  withDefaultEnabledCapabilityMcpTools,
25
25
  workflowIdForSession,
26
26
  workspaceActorContextExempt
27
- } from "./chunk-K2NU4KRK.js";
27
+ } from "./chunk-7IAWEYBH.js";
28
28
  export {
29
29
  API_MAX_REQUEST_BODY_BYTES,
30
30
  allowedCorsOrigin,
@@ -0,0 +1,27 @@
1
+ import { z } from "zod";
2
+ declare const Cursor: z.ZodObject<{
3
+ version: z.ZodLiteral<1>;
4
+ snapshotAt: z.ZodString;
5
+ expiresAt: z.ZodNumber;
6
+ after: z.ZodObject<{
7
+ key: z.ZodString;
8
+ kind: z.ZodEnum<{
9
+ document: "document";
10
+ file: "file";
11
+ image: "image";
12
+ presentation: "presentation";
13
+ site: "site";
14
+ spreadsheet: "spreadsheet";
15
+ }>;
16
+ id: z.ZodString;
17
+ }, z.core.$strict>;
18
+ }, z.core.$strict>;
19
+ export type ArtifactCatalogCursor = z.infer<typeof Cursor>;
20
+ /** Encrypted as well as authenticated: a scan frontier may name a denied row.
21
+ * Binding includes principal, workspace, owner context, permissions and filters.
22
+ */
23
+ export declare function artifactCatalogCursorCodec(secret: string, binding: string): {
24
+ encode(value: ArtifactCatalogCursor): string;
25
+ decode(value: string): ArtifactCatalogCursor;
26
+ };
27
+ export {};