@syntrologie/runtime-sdk 2.4.0-canary.18 → 2.4.0-canary.19
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/actions/schema.d.ts +7256 -384
- package/dist/actions/schema.js +2 -2
- package/dist/actions/types.d.ts +7 -0
- package/dist/anchor/AnchorResolver.d.ts +18 -0
- package/dist/anchor/index.d.ts +2 -0
- package/dist/{chunk-LZLDT5DA.js → chunk-LR5AA5SE.js} +2 -2
- package/dist/{chunk-NR57IT54.js → chunk-LRN3K2VD.js} +282 -100
- package/dist/chunk-LRN3K2VD.js.map +7 -0
- package/dist/{chunk-4NYS7GAW.js → chunk-P5G4KT2U.js} +39 -6
- package/dist/chunk-P5G4KT2U.js.map +7 -0
- package/dist/config/schema.d.ts +448 -40
- package/dist/config/schema.js +1 -1
- package/dist/context/schema.d.ts +8 -8
- package/dist/decisions/schema.d.ts +424 -1408
- package/dist/decisions/schema.js +5 -1
- package/dist/decisions/types.d.ts +22 -0
- package/dist/events/registerConfigPredicates.d.ts +6 -10
- package/dist/events/schema.d.ts +8 -8
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -77
- package/dist/index.js.map +3 -3
- package/dist/overlays/schema.d.ts +22 -22
- package/dist/react.js +3 -3
- package/dist/runtime.d.ts +3 -0
- package/dist/smart-canvas.esm.js +36 -37
- package/dist/smart-canvas.esm.js.map +4 -4
- package/dist/smart-canvas.js +318 -177
- package/dist/smart-canvas.js.map +4 -4
- package/dist/smart-canvas.min.js +36 -37
- package/dist/smart-canvas.min.js.map +4 -4
- package/dist/version.d.ts +1 -1
- package/package.json +7 -7
- package/schema/canvas-config.schema.json +996 -56
- package/dist/chunk-4NYS7GAW.js.map +0 -7
- package/dist/chunk-NR57IT54.js.map +0 -7
- /package/dist/{chunk-LZLDT5DA.js.map → chunk-LR5AA5SE.js.map} +0 -0
package/dist/config/schema.js
CHANGED
package/dist/context/schema.d.ts
CHANGED
|
@@ -9,13 +9,13 @@ export declare const PageContextZ: z.ZodObject<{
|
|
|
9
9
|
locale: z.ZodOptional<z.ZodString>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
url: string;
|
|
12
|
-
routeId?: string | undefined;
|
|
13
12
|
title?: string | undefined;
|
|
13
|
+
routeId?: string | undefined;
|
|
14
14
|
locale?: string | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
url: string;
|
|
17
|
-
routeId?: string | undefined;
|
|
18
17
|
title?: string | undefined;
|
|
18
|
+
routeId?: string | undefined;
|
|
19
19
|
locale?: string | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
export declare const PageHistoryEntryZ: z.ZodObject<{
|
|
@@ -132,13 +132,13 @@ export declare const RuntimeContextZ: z.ZodObject<{
|
|
|
132
132
|
locale: z.ZodOptional<z.ZodString>;
|
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
|
134
134
|
url: string;
|
|
135
|
-
routeId?: string | undefined;
|
|
136
135
|
title?: string | undefined;
|
|
136
|
+
routeId?: string | undefined;
|
|
137
137
|
locale?: string | undefined;
|
|
138
138
|
}, {
|
|
139
139
|
url: string;
|
|
140
|
-
routeId?: string | undefined;
|
|
141
140
|
title?: string | undefined;
|
|
141
|
+
routeId?: string | undefined;
|
|
142
142
|
locale?: string | undefined;
|
|
143
143
|
}>;
|
|
144
144
|
session: z.ZodObject<{
|
|
@@ -228,8 +228,8 @@ export declare const RuntimeContextZ: z.ZodObject<{
|
|
|
228
228
|
};
|
|
229
229
|
page: {
|
|
230
230
|
url: string;
|
|
231
|
-
routeId?: string | undefined;
|
|
232
231
|
title?: string | undefined;
|
|
232
|
+
routeId?: string | undefined;
|
|
233
233
|
locale?: string | undefined;
|
|
234
234
|
};
|
|
235
235
|
session: {
|
|
@@ -259,8 +259,8 @@ export declare const RuntimeContextZ: z.ZodObject<{
|
|
|
259
259
|
};
|
|
260
260
|
page: {
|
|
261
261
|
url: string;
|
|
262
|
-
routeId?: string | undefined;
|
|
263
262
|
title?: string | undefined;
|
|
263
|
+
routeId?: string | undefined;
|
|
264
264
|
locale?: string | undefined;
|
|
265
265
|
};
|
|
266
266
|
session: {
|
|
@@ -294,8 +294,8 @@ export declare function validateRuntimeContext(data: unknown): z.SafeParseReturn
|
|
|
294
294
|
};
|
|
295
295
|
page: {
|
|
296
296
|
url: string;
|
|
297
|
-
routeId?: string | undefined;
|
|
298
297
|
title?: string | undefined;
|
|
298
|
+
routeId?: string | undefined;
|
|
299
299
|
locale?: string | undefined;
|
|
300
300
|
};
|
|
301
301
|
session: {
|
|
@@ -325,8 +325,8 @@ export declare function validateRuntimeContext(data: unknown): z.SafeParseReturn
|
|
|
325
325
|
};
|
|
326
326
|
page: {
|
|
327
327
|
url: string;
|
|
328
|
-
routeId?: string | undefined;
|
|
329
328
|
title?: string | undefined;
|
|
329
|
+
routeId?: string | undefined;
|
|
330
330
|
locale?: string | undefined;
|
|
331
331
|
};
|
|
332
332
|
session: {
|