@dreamboard-games/sdk 0.2.0 → 0.2.1-alpha.1
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/{ThemeProvider-fy0_QzgO.d.ts → ThemeProvider-BBMVT3KG.d.ts} +1 -1
- package/dist/attributes-BeRyboMS.d.ts +279 -0
- package/dist/browser-interaction.d.ts +708 -0
- package/dist/browser-interaction.js +106 -0
- package/dist/browser-interaction.js.map +1 -0
- package/dist/{bundle-TIZcw8LB.d.ts → bundle-CDd5FKeD.d.ts} +3 -1
- package/dist/{chunk-U5C6BONG.js → chunk-326PGVAA.js} +2 -2
- package/dist/{chunk-VFTAA4WO.js → chunk-MKXPVOUT.js} +4 -2
- package/dist/chunk-MKXPVOUT.js.map +1 -0
- package/dist/{chunk-GKKBPPSW.js → chunk-MZNVHMJ5.js} +4 -4
- package/dist/{chunk-KAELH4KC.js → chunk-NKCRKGR2.js} +2 -2
- package/dist/{chunk-WN74KVNY.js → chunk-PEI3FIL2.js} +2 -2
- package/dist/chunk-PEI3FIL2.js.map +1 -0
- package/dist/chunk-QLG6VEMW.js +1691 -0
- package/dist/chunk-QLG6VEMW.js.map +1 -0
- package/dist/{chunk-WYPQ3GG5.js → chunk-WG4JQL3S.js} +4 -1
- package/dist/{chunk-WYPQ3GG5.js.map → chunk-WG4JQL3S.js.map} +1 -1
- package/dist/{chunk-7YAHLYBR.js → chunk-XV6D3ET4.js} +8 -4
- package/dist/{chunk-7YAHLYBR.js.map → chunk-XV6D3ET4.js.map} +1 -1
- package/dist/{chunk-TDSWKVZ4.js → chunk-ZABVH7AO.js} +1236 -17
- package/dist/chunk-ZABVH7AO.js.map +1 -0
- package/dist/{components-D5ZRE2Hl.d.ts → components-BoiVSYqx.d.ts} +1 -1
- package/dist/generated/runtime/primitives.d.ts +5 -4
- package/dist/generated/runtime/primitives.js +4 -3
- package/dist/generated/runtime-api.d.ts +1 -1
- package/dist/generated/runtime.d.ts +5 -4
- package/dist/generated/runtime.js +7 -6
- package/dist/generated/workspace-contract.d.ts +5 -4
- package/dist/generated/workspace-contract.js +6 -5
- package/dist/{hex-board-view-D_07hO6O.d.ts → hex-board-view-1iAyJRFn.d.ts} +1 -0
- package/dist/index.js +1 -1
- package/dist/infrastructure/reducer-bundle-abi.d.ts +113 -113
- package/dist/infrastructure/reducer-bundle-abi.js +1 -1
- package/dist/package-set.d.ts +2 -2
- package/dist/package-set.js +1 -1
- package/dist/reducer.d.ts +1 -1
- package/dist/reducer.js +305 -12
- package/dist/reducer.js.map +1 -1
- package/dist/runtime/primitives.d.ts +6 -5
- package/dist/runtime/primitives.js +4 -3
- package/dist/runtime/workspace-contract.d.ts +6 -5
- package/dist/runtime/workspace-contract.js +6 -5
- package/dist/{runtime-api-DWxvTr-O.d.ts → runtime-api-CPLm_XDG.d.ts} +6 -0
- package/dist/runtime.d.ts +5 -4
- package/dist/runtime.js +6 -5
- package/dist/testing.d.ts +2 -2
- package/dist/ui/components.d.ts +2 -2
- package/dist/ui/components.js +1 -1
- package/dist/{ui-contract-iQfTtUSL.d.ts → ui-contract-rzKBwOLC.d.ts} +5 -3
- package/dist/ui.d.ts +5 -5
- package/dist/ui.js +2 -2
- package/package.json +15 -9
- package/src/browser-interaction/attributes.ts +211 -0
- package/src/browser-interaction/canonical.ts +77 -0
- package/src/browser-interaction/constants.ts +77 -0
- package/src/browser-interaction/effects.ts +176 -0
- package/src/browser-interaction/index.ts +111 -0
- package/src/browser-interaction/normalize.ts +997 -0
- package/src/browser-interaction/registry.ts +70 -0
- package/src/browser-interaction/resolve.ts +596 -0
- package/src/browser-interaction/schemas.ts +152 -0
- package/src/browser-interaction/types.ts +304 -0
- package/src/browser-interaction.ts +1 -0
- package/src/generated/reducer-contract/wire.ts +1 -1
- package/src/generated/reducer-contract/zod.ts +3 -1
- package/src/package-set.ts +1 -1
- package/src/reducer/bundle/ingress-bundle.ts +1 -1
- package/src/reducer/bundle/trusted/interaction-types.ts +3 -0
- package/src/reducer/bundle/trusted/projection-builder.ts +337 -13
- package/src/reducer/ingress/input-codec.ts +1 -1
- package/src/reducer/ingress/session-codec.ts +1 -1
- package/src/runtime-internal/components/InteractionForm.tsx +345 -7
- package/src/runtime-internal/components/PluginRuntime.tsx +2 -0
- package/src/runtime-internal/components/board/target-layer.ts +2 -0
- package/src/runtime-internal/context/PluginStateContext.tsx +41 -0
- package/src/runtime-internal/hooks/useBoardInteractions.ts +73 -11
- package/src/runtime-internal/primitives/board.tsx +71 -0
- package/src/runtime-internal/primitives/interaction.tsx +160 -1
- package/src/runtime-internal/types/plugin-state.ts +6 -0
- package/src/runtime-internal/utils/browser-interaction-effects.ts +240 -0
- package/src/runtime-internal/utils/interaction-draft-digest.ts +252 -0
- package/src/runtime-internal/utils/semantic-projection-digest.ts +407 -0
- package/src/ui/components/board/HexGrid.tsx +3 -0
- package/src/ui/components/board/target-layer.ts +1 -0
- package/dist/chunk-TDSWKVZ4.js.map +0 -1
- package/dist/chunk-VFTAA4WO.js.map +0 -1
- package/dist/chunk-WN74KVNY.js.map +0 -1
- /package/dist/{chunk-U5C6BONG.js.map → chunk-326PGVAA.js.map} +0 -0
- /package/dist/{chunk-GKKBPPSW.js.map → chunk-MZNVHMJ5.js.map} +0 -0
- /package/dist/{chunk-KAELH4KC.js.map → chunk-NKCRKGR2.js.map} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { M as MaybePromise, R as ReducerBundleContract, w as ReducerWire } from '../bundle-
|
|
1
|
+
export { M as MaybePromise, R as ReducerBundleContract, w as ReducerWire } from '../bundle-CDd5FKeD.js';
|
|
2
2
|
export { m as materializeManifestTable } from '../manifest-contract-BNHVGFtU.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import '../index-BwqPQtBu.js';
|
|
@@ -12,14 +12,14 @@ declare const REDUCER_CONTRACT_VERSION: "0.2.0";
|
|
|
12
12
|
|
|
13
13
|
declare const ReducerContractVersionSchema: z.ZodString;
|
|
14
14
|
declare const EffectIdSchema: z.ZodString;
|
|
15
|
-
declare const JsonValueSchema: z.
|
|
15
|
+
declare const JsonValueSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
16
16
|
declare const ContinuationTokenSchema: z.ZodObject<{
|
|
17
17
|
id: z.ZodString;
|
|
18
|
-
data: z.
|
|
18
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
19
19
|
}, z.core.$strict>;
|
|
20
20
|
declare const ContinuationMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21
21
|
id: z.ZodString;
|
|
22
|
-
data: z.
|
|
22
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
23
23
|
}, z.core.$strict>>;
|
|
24
24
|
declare const ReducerSetupSelectionSchema: z.ZodObject<{
|
|
25
25
|
profileId: z.ZodString;
|
|
@@ -38,14 +38,14 @@ declare const ReducerFlowStateSchema: z.ZodObject<{
|
|
|
38
38
|
}, z.core.$strict>;
|
|
39
39
|
declare const RuntimeSimultaneousSubmissionSchema: z.ZodObject<{
|
|
40
40
|
interactionId: z.ZodString;
|
|
41
|
-
params: z.
|
|
41
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
42
42
|
}, z.core.$strict>;
|
|
43
43
|
declare const RuntimeSimultaneousCurrentSchema: z.ZodObject<{
|
|
44
44
|
phaseName: z.ZodString;
|
|
45
45
|
actors: z.ZodArray<z.ZodString>;
|
|
46
46
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47
47
|
interactionId: z.ZodString;
|
|
48
|
-
params: z.
|
|
48
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
49
49
|
}, z.core.$strict>>;
|
|
50
50
|
}, z.core.$strict>;
|
|
51
51
|
declare const RuntimeSimultaneousStateSchema: z.ZodObject<{
|
|
@@ -54,7 +54,7 @@ declare const RuntimeSimultaneousStateSchema: z.ZodObject<{
|
|
|
54
54
|
actors: z.ZodArray<z.ZodString>;
|
|
55
55
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
56
56
|
interactionId: z.ZodString;
|
|
57
|
-
params: z.
|
|
57
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
58
58
|
}, z.core.$strict>>;
|
|
59
59
|
}, z.core.$strict>, z.ZodNull]>;
|
|
60
60
|
}, z.core.$strict>;
|
|
@@ -78,7 +78,7 @@ declare const ReducerRuntimeStateSchema: z.ZodObject<{
|
|
|
78
78
|
actors: z.ZodArray<z.ZodString>;
|
|
79
79
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
80
80
|
interactionId: z.ZodString;
|
|
81
|
-
params: z.
|
|
81
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
82
82
|
}, z.core.$strict>>;
|
|
83
83
|
}, z.core.$strict>, z.ZodNull]>;
|
|
84
84
|
}, z.core.$strict>;
|
|
@@ -88,31 +88,31 @@ declare const ReducerRuntimeStateSchema: z.ZodObject<{
|
|
|
88
88
|
}, z.core.$strict>, z.ZodNull]>;
|
|
89
89
|
}, z.core.$strict>;
|
|
90
90
|
declare const ReducerDomainStateSchema: z.ZodObject<{
|
|
91
|
-
table: z.
|
|
92
|
-
publicState: z.
|
|
93
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
94
|
-
hiddenState: z.
|
|
91
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
92
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
93
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
94
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
95
95
|
flow: z.ZodObject<{
|
|
96
96
|
currentPhase: z.ZodString;
|
|
97
97
|
turn: z.ZodNumber;
|
|
98
98
|
round: z.ZodNumber;
|
|
99
99
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
100
100
|
}, z.core.$strict>;
|
|
101
|
-
phase: z.
|
|
101
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
102
102
|
}, z.core.$strict>;
|
|
103
103
|
declare const ReducerSessionStateSchema: z.ZodObject<{
|
|
104
104
|
domain: z.ZodObject<{
|
|
105
|
-
table: z.
|
|
106
|
-
publicState: z.
|
|
107
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
108
|
-
hiddenState: z.
|
|
105
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
106
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
107
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
108
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
109
109
|
flow: z.ZodObject<{
|
|
110
110
|
currentPhase: z.ZodString;
|
|
111
111
|
turn: z.ZodNumber;
|
|
112
112
|
round: z.ZodNumber;
|
|
113
113
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
114
114
|
}, z.core.$strict>;
|
|
115
|
-
phase: z.
|
|
115
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
116
116
|
}, z.core.$strict>;
|
|
117
117
|
runtime: z.ZodObject<{
|
|
118
118
|
rng: z.ZodObject<{
|
|
@@ -130,7 +130,7 @@ declare const ReducerSessionStateSchema: z.ZodObject<{
|
|
|
130
130
|
actors: z.ZodArray<z.ZodString>;
|
|
131
131
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
132
132
|
interactionId: z.ZodString;
|
|
133
|
-
params: z.
|
|
133
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
134
134
|
}, z.core.$strict>>;
|
|
135
135
|
}, z.core.$strict>, z.ZodNull]>;
|
|
136
136
|
}, z.core.$strict>;
|
|
@@ -144,13 +144,13 @@ declare const GameInputInteractionSchema: z.ZodObject<{
|
|
|
144
144
|
kind: z.ZodLiteral<"interaction">;
|
|
145
145
|
playerId: z.ZodString;
|
|
146
146
|
interactionId: z.ZodString;
|
|
147
|
-
params: z.
|
|
147
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
148
148
|
}, z.core.$strict>;
|
|
149
149
|
declare const GameInputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
150
150
|
kind: z.ZodLiteral<"interaction">;
|
|
151
151
|
playerId: z.ZodString;
|
|
152
152
|
interactionId: z.ZodString;
|
|
153
|
-
params: z.
|
|
153
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
154
154
|
}, z.core.$strict>], "kind">;
|
|
155
155
|
declare const EffectTransitionSchema: z.ZodObject<{
|
|
156
156
|
effectId: z.ZodString;
|
|
@@ -197,7 +197,7 @@ declare const ReducerInputValidationResultSchema: z.ZodObject<{
|
|
|
197
197
|
message: z.ZodOptional<z.ZodString>;
|
|
198
198
|
}, z.core.$strict>;
|
|
199
199
|
declare const InitializeRequestSchema: z.ZodObject<{
|
|
200
|
-
table: z.
|
|
200
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
201
201
|
playerIds: z.ZodArray<z.ZodString>;
|
|
202
202
|
rngSeed: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
203
203
|
setup: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -208,17 +208,17 @@ declare const InitializeRequestSchema: z.ZodObject<{
|
|
|
208
208
|
declare const InitializePhaseRequestSchema: z.ZodObject<{
|
|
209
209
|
state: z.ZodObject<{
|
|
210
210
|
domain: z.ZodObject<{
|
|
211
|
-
table: z.
|
|
212
|
-
publicState: z.
|
|
213
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
214
|
-
hiddenState: z.
|
|
211
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
212
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
213
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
214
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
215
215
|
flow: z.ZodObject<{
|
|
216
216
|
currentPhase: z.ZodString;
|
|
217
217
|
turn: z.ZodNumber;
|
|
218
218
|
round: z.ZodNumber;
|
|
219
219
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
220
220
|
}, z.core.$strict>;
|
|
221
|
-
phase: z.
|
|
221
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
222
222
|
}, z.core.$strict>;
|
|
223
223
|
runtime: z.ZodObject<{
|
|
224
224
|
rng: z.ZodObject<{
|
|
@@ -236,7 +236,7 @@ declare const InitializePhaseRequestSchema: z.ZodObject<{
|
|
|
236
236
|
actors: z.ZodArray<z.ZodString>;
|
|
237
237
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
238
238
|
interactionId: z.ZodString;
|
|
239
|
-
params: z.
|
|
239
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
240
240
|
}, z.core.$strict>>;
|
|
241
241
|
}, z.core.$strict>, z.ZodNull]>;
|
|
242
242
|
}, z.core.$strict>;
|
|
@@ -251,17 +251,17 @@ declare const InitializePhaseRequestSchema: z.ZodObject<{
|
|
|
251
251
|
declare const ValidateInputRequestSchema: z.ZodObject<{
|
|
252
252
|
state: z.ZodObject<{
|
|
253
253
|
domain: z.ZodObject<{
|
|
254
|
-
table: z.
|
|
255
|
-
publicState: z.
|
|
256
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
257
|
-
hiddenState: z.
|
|
254
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
255
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
256
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
257
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
258
258
|
flow: z.ZodObject<{
|
|
259
259
|
currentPhase: z.ZodString;
|
|
260
260
|
turn: z.ZodNumber;
|
|
261
261
|
round: z.ZodNumber;
|
|
262
262
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
263
263
|
}, z.core.$strict>;
|
|
264
|
-
phase: z.
|
|
264
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
265
265
|
}, z.core.$strict>;
|
|
266
266
|
runtime: z.ZodObject<{
|
|
267
267
|
rng: z.ZodObject<{
|
|
@@ -279,7 +279,7 @@ declare const ValidateInputRequestSchema: z.ZodObject<{
|
|
|
279
279
|
actors: z.ZodArray<z.ZodString>;
|
|
280
280
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
281
281
|
interactionId: z.ZodString;
|
|
282
|
-
params: z.
|
|
282
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
283
283
|
}, z.core.$strict>>;
|
|
284
284
|
}, z.core.$strict>, z.ZodNull]>;
|
|
285
285
|
}, z.core.$strict>;
|
|
@@ -293,23 +293,23 @@ declare const ValidateInputRequestSchema: z.ZodObject<{
|
|
|
293
293
|
kind: z.ZodLiteral<"interaction">;
|
|
294
294
|
playerId: z.ZodString;
|
|
295
295
|
interactionId: z.ZodString;
|
|
296
|
-
params: z.
|
|
296
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
297
297
|
}, z.core.$strict>], "kind">;
|
|
298
298
|
}, z.core.$strict>;
|
|
299
299
|
declare const ReduceRequestSchema: z.ZodObject<{
|
|
300
300
|
state: z.ZodObject<{
|
|
301
301
|
domain: z.ZodObject<{
|
|
302
|
-
table: z.
|
|
303
|
-
publicState: z.
|
|
304
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
305
|
-
hiddenState: z.
|
|
302
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
303
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
304
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
305
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
306
306
|
flow: z.ZodObject<{
|
|
307
307
|
currentPhase: z.ZodString;
|
|
308
308
|
turn: z.ZodNumber;
|
|
309
309
|
round: z.ZodNumber;
|
|
310
310
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
311
311
|
}, z.core.$strict>;
|
|
312
|
-
phase: z.
|
|
312
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
313
313
|
}, z.core.$strict>;
|
|
314
314
|
runtime: z.ZodObject<{
|
|
315
315
|
rng: z.ZodObject<{
|
|
@@ -327,7 +327,7 @@ declare const ReduceRequestSchema: z.ZodObject<{
|
|
|
327
327
|
actors: z.ZodArray<z.ZodString>;
|
|
328
328
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
329
329
|
interactionId: z.ZodString;
|
|
330
|
-
params: z.
|
|
330
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
331
331
|
}, z.core.$strict>>;
|
|
332
332
|
}, z.core.$strict>, z.ZodNull]>;
|
|
333
333
|
}, z.core.$strict>;
|
|
@@ -341,23 +341,23 @@ declare const ReduceRequestSchema: z.ZodObject<{
|
|
|
341
341
|
kind: z.ZodLiteral<"interaction">;
|
|
342
342
|
playerId: z.ZodString;
|
|
343
343
|
interactionId: z.ZodString;
|
|
344
|
-
params: z.
|
|
344
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
345
345
|
}, z.core.$strict>], "kind">;
|
|
346
346
|
}, z.core.$strict>;
|
|
347
347
|
declare const DispatchRequestSchema: z.ZodObject<{
|
|
348
348
|
state: z.ZodObject<{
|
|
349
349
|
domain: z.ZodObject<{
|
|
350
|
-
table: z.
|
|
351
|
-
publicState: z.
|
|
352
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
353
|
-
hiddenState: z.
|
|
350
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
351
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
352
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
353
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
354
354
|
flow: z.ZodObject<{
|
|
355
355
|
currentPhase: z.ZodString;
|
|
356
356
|
turn: z.ZodNumber;
|
|
357
357
|
round: z.ZodNumber;
|
|
358
358
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
359
359
|
}, z.core.$strict>;
|
|
360
|
-
phase: z.
|
|
360
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
361
361
|
}, z.core.$strict>;
|
|
362
362
|
runtime: z.ZodObject<{
|
|
363
363
|
rng: z.ZodObject<{
|
|
@@ -375,7 +375,7 @@ declare const DispatchRequestSchema: z.ZodObject<{
|
|
|
375
375
|
actors: z.ZodArray<z.ZodString>;
|
|
376
376
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
377
377
|
interactionId: z.ZodString;
|
|
378
|
-
params: z.
|
|
378
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
379
379
|
}, z.core.$strict>>;
|
|
380
380
|
}, z.core.$strict>, z.ZodNull]>;
|
|
381
381
|
}, z.core.$strict>;
|
|
@@ -389,7 +389,7 @@ declare const DispatchRequestSchema: z.ZodObject<{
|
|
|
389
389
|
kind: z.ZodLiteral<"interaction">;
|
|
390
390
|
playerId: z.ZodString;
|
|
391
391
|
interactionId: z.ZodString;
|
|
392
|
-
params: z.
|
|
392
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
393
393
|
}, z.core.$strict>], "kind">;
|
|
394
394
|
}, z.core.$strict>;
|
|
395
395
|
declare const ReduceResultRejectSchema: z.ZodObject<{
|
|
@@ -401,17 +401,17 @@ declare const ReduceResultAcceptSchema: z.ZodObject<{
|
|
|
401
401
|
kind: z.ZodLiteral<"accept">;
|
|
402
402
|
state: z.ZodObject<{
|
|
403
403
|
domain: z.ZodObject<{
|
|
404
|
-
table: z.
|
|
405
|
-
publicState: z.
|
|
406
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
407
|
-
hiddenState: z.
|
|
404
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
405
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
406
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
407
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
408
408
|
flow: z.ZodObject<{
|
|
409
409
|
currentPhase: z.ZodString;
|
|
410
410
|
turn: z.ZodNumber;
|
|
411
411
|
round: z.ZodNumber;
|
|
412
412
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
413
413
|
}, z.core.$strict>;
|
|
414
|
-
phase: z.
|
|
414
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
415
415
|
}, z.core.$strict>;
|
|
416
416
|
runtime: z.ZodObject<{
|
|
417
417
|
rng: z.ZodObject<{
|
|
@@ -429,7 +429,7 @@ declare const ReduceResultAcceptSchema: z.ZodObject<{
|
|
|
429
429
|
actors: z.ZodArray<z.ZodString>;
|
|
430
430
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
431
431
|
interactionId: z.ZodString;
|
|
432
|
-
params: z.
|
|
432
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
433
433
|
}, z.core.$strict>>;
|
|
434
434
|
}, z.core.$strict>, z.ZodNull]>;
|
|
435
435
|
}, z.core.$strict>;
|
|
@@ -459,7 +459,7 @@ declare const ReduceResultAcceptSchema: z.ZodObject<{
|
|
|
459
459
|
}, z.core.$strict>], "type">>;
|
|
460
460
|
continuations: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
461
461
|
id: z.ZodString;
|
|
462
|
-
data: z.
|
|
462
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
463
463
|
}, z.core.$strict>>;
|
|
464
464
|
}, z.core.$strict>;
|
|
465
465
|
declare const ReduceResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -470,17 +470,17 @@ declare const ReduceResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
470
470
|
kind: z.ZodLiteral<"accept">;
|
|
471
471
|
state: z.ZodObject<{
|
|
472
472
|
domain: z.ZodObject<{
|
|
473
|
-
table: z.
|
|
474
|
-
publicState: z.
|
|
475
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
476
|
-
hiddenState: z.
|
|
473
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
474
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
475
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
476
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
477
477
|
flow: z.ZodObject<{
|
|
478
478
|
currentPhase: z.ZodString;
|
|
479
479
|
turn: z.ZodNumber;
|
|
480
480
|
round: z.ZodNumber;
|
|
481
481
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
482
482
|
}, z.core.$strict>;
|
|
483
|
-
phase: z.
|
|
483
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
484
484
|
}, z.core.$strict>;
|
|
485
485
|
runtime: z.ZodObject<{
|
|
486
486
|
rng: z.ZodObject<{
|
|
@@ -498,7 +498,7 @@ declare const ReduceResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
498
498
|
actors: z.ZodArray<z.ZodString>;
|
|
499
499
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
500
500
|
interactionId: z.ZodString;
|
|
501
|
-
params: z.
|
|
501
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
502
502
|
}, z.core.$strict>>;
|
|
503
503
|
}, z.core.$strict>, z.ZodNull]>;
|
|
504
504
|
}, z.core.$strict>;
|
|
@@ -528,7 +528,7 @@ declare const ReduceResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
528
528
|
}, z.core.$strict>], "type">>;
|
|
529
529
|
continuations: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
530
530
|
id: z.ZodString;
|
|
531
|
-
data: z.
|
|
531
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
532
532
|
}, z.core.$strict>>;
|
|
533
533
|
}, z.core.$strict>], "kind">;
|
|
534
534
|
declare const DispatchTraceAcceptedClientInputSchema: z.ZodObject<{
|
|
@@ -537,7 +537,7 @@ declare const DispatchTraceAcceptedClientInputSchema: z.ZodObject<{
|
|
|
537
537
|
kind: z.ZodLiteral<"interaction">;
|
|
538
538
|
playerId: z.ZodString;
|
|
539
539
|
interactionId: z.ZodString;
|
|
540
|
-
params: z.
|
|
540
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
541
541
|
}, z.core.$strict>], "kind">;
|
|
542
542
|
}, z.core.$strict>;
|
|
543
543
|
declare const DispatchTraceAppliedEffectSchema: z.ZodObject<{
|
|
@@ -562,7 +562,7 @@ declare const DispatchTraceAppliedEffectSchema: z.ZodObject<{
|
|
|
562
562
|
}, z.core.$strict>], "type">;
|
|
563
563
|
continuation: z.ZodOptional<z.ZodObject<{
|
|
564
564
|
id: z.ZodString;
|
|
565
|
-
data: z.
|
|
565
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
566
566
|
}, z.core.$strict>>;
|
|
567
567
|
}, z.core.$strict>;
|
|
568
568
|
declare const DispatchTraceRngConsumptionSchema: z.ZodObject<{
|
|
@@ -576,7 +576,7 @@ declare const DispatchTraceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
576
576
|
kind: z.ZodLiteral<"interaction">;
|
|
577
577
|
playerId: z.ZodString;
|
|
578
578
|
interactionId: z.ZodString;
|
|
579
|
-
params: z.
|
|
579
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
580
580
|
}, z.core.$strict>], "kind">;
|
|
581
581
|
}, z.core.$strict>, z.ZodObject<{
|
|
582
582
|
kind: z.ZodLiteral<"appliedEffect">;
|
|
@@ -600,7 +600,7 @@ declare const DispatchTraceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
600
600
|
}, z.core.$strict>], "type">;
|
|
601
601
|
continuation: z.ZodOptional<z.ZodObject<{
|
|
602
602
|
id: z.ZodString;
|
|
603
|
-
data: z.
|
|
603
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
604
604
|
}, z.core.$strict>>;
|
|
605
605
|
}, z.core.$strict>, z.ZodObject<{
|
|
606
606
|
kind: z.ZodLiteral<"rngConsumption">;
|
|
@@ -616,17 +616,17 @@ declare const DispatchResultAcceptSchema: z.ZodObject<{
|
|
|
616
616
|
kind: z.ZodLiteral<"accept">;
|
|
617
617
|
state: z.ZodObject<{
|
|
618
618
|
domain: z.ZodObject<{
|
|
619
|
-
table: z.
|
|
620
|
-
publicState: z.
|
|
621
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
622
|
-
hiddenState: z.
|
|
619
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
620
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
621
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
622
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
623
623
|
flow: z.ZodObject<{
|
|
624
624
|
currentPhase: z.ZodString;
|
|
625
625
|
turn: z.ZodNumber;
|
|
626
626
|
round: z.ZodNumber;
|
|
627
627
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
628
628
|
}, z.core.$strict>;
|
|
629
|
-
phase: z.
|
|
629
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
630
630
|
}, z.core.$strict>;
|
|
631
631
|
runtime: z.ZodObject<{
|
|
632
632
|
rng: z.ZodObject<{
|
|
@@ -644,7 +644,7 @@ declare const DispatchResultAcceptSchema: z.ZodObject<{
|
|
|
644
644
|
actors: z.ZodArray<z.ZodString>;
|
|
645
645
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
646
646
|
interactionId: z.ZodString;
|
|
647
|
-
params: z.
|
|
647
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
648
648
|
}, z.core.$strict>>;
|
|
649
649
|
}, z.core.$strict>, z.ZodNull]>;
|
|
650
650
|
}, z.core.$strict>;
|
|
@@ -660,7 +660,7 @@ declare const DispatchResultAcceptSchema: z.ZodObject<{
|
|
|
660
660
|
kind: z.ZodLiteral<"interaction">;
|
|
661
661
|
playerId: z.ZodString;
|
|
662
662
|
interactionId: z.ZodString;
|
|
663
|
-
params: z.
|
|
663
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
664
664
|
}, z.core.$strict>], "kind">;
|
|
665
665
|
}, z.core.$strict>, z.ZodObject<{
|
|
666
666
|
kind: z.ZodLiteral<"appliedEffect">;
|
|
@@ -684,7 +684,7 @@ declare const DispatchResultAcceptSchema: z.ZodObject<{
|
|
|
684
684
|
}, z.core.$strict>], "type">;
|
|
685
685
|
continuation: z.ZodOptional<z.ZodObject<{
|
|
686
686
|
id: z.ZodString;
|
|
687
|
-
data: z.
|
|
687
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
688
688
|
}, z.core.$strict>>;
|
|
689
689
|
}, z.core.$strict>, z.ZodObject<{
|
|
690
690
|
kind: z.ZodLiteral<"rngConsumption">;
|
|
@@ -700,17 +700,17 @@ declare const DispatchResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
700
700
|
kind: z.ZodLiteral<"accept">;
|
|
701
701
|
state: z.ZodObject<{
|
|
702
702
|
domain: z.ZodObject<{
|
|
703
|
-
table: z.
|
|
704
|
-
publicState: z.
|
|
705
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
706
|
-
hiddenState: z.
|
|
703
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
704
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
705
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
706
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
707
707
|
flow: z.ZodObject<{
|
|
708
708
|
currentPhase: z.ZodString;
|
|
709
709
|
turn: z.ZodNumber;
|
|
710
710
|
round: z.ZodNumber;
|
|
711
711
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
712
712
|
}, z.core.$strict>;
|
|
713
|
-
phase: z.
|
|
713
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
714
714
|
}, z.core.$strict>;
|
|
715
715
|
runtime: z.ZodObject<{
|
|
716
716
|
rng: z.ZodObject<{
|
|
@@ -728,7 +728,7 @@ declare const DispatchResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
728
728
|
actors: z.ZodArray<z.ZodString>;
|
|
729
729
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
730
730
|
interactionId: z.ZodString;
|
|
731
|
-
params: z.
|
|
731
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
732
732
|
}, z.core.$strict>>;
|
|
733
733
|
}, z.core.$strict>, z.ZodNull]>;
|
|
734
734
|
}, z.core.$strict>;
|
|
@@ -744,7 +744,7 @@ declare const DispatchResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
744
744
|
kind: z.ZodLiteral<"interaction">;
|
|
745
745
|
playerId: z.ZodString;
|
|
746
746
|
interactionId: z.ZodString;
|
|
747
|
-
params: z.
|
|
747
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
748
748
|
}, z.core.$strict>], "kind">;
|
|
749
749
|
}, z.core.$strict>, z.ZodObject<{
|
|
750
750
|
kind: z.ZodLiteral<"appliedEffect">;
|
|
@@ -768,7 +768,7 @@ declare const DispatchResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
768
768
|
}, z.core.$strict>], "type">;
|
|
769
769
|
continuation: z.ZodOptional<z.ZodObject<{
|
|
770
770
|
id: z.ZodString;
|
|
771
|
-
data: z.
|
|
771
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
772
772
|
}, z.core.$strict>>;
|
|
773
773
|
}, z.core.$strict>, z.ZodObject<{
|
|
774
774
|
kind: z.ZodLiteral<"rngConsumption">;
|
|
@@ -783,7 +783,7 @@ declare const ReducerRuntimeLogEntryAcceptedClientInputSchema: z.ZodObject<{
|
|
|
783
783
|
kind: z.ZodLiteral<"interaction">;
|
|
784
784
|
playerId: z.ZodString;
|
|
785
785
|
interactionId: z.ZodString;
|
|
786
|
-
params: z.
|
|
786
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
787
787
|
}, z.core.$strict>], "kind">;
|
|
788
788
|
}, z.core.$strict>;
|
|
789
789
|
declare const ReducerRuntimeLogEntryAppliedEffectSchema: z.ZodObject<{
|
|
@@ -809,7 +809,7 @@ declare const ReducerRuntimeLogEntryAppliedEffectSchema: z.ZodObject<{
|
|
|
809
809
|
}, z.core.$strict>], "type">;
|
|
810
810
|
continuation: z.ZodUnion<readonly [z.ZodObject<{
|
|
811
811
|
id: z.ZodString;
|
|
812
|
-
data: z.
|
|
812
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
813
813
|
}, z.core.$strict>, z.ZodNull]>;
|
|
814
814
|
}, z.core.$strict>;
|
|
815
815
|
declare const ReducerRuntimeLogEntryRngConsumptionSchema: z.ZodObject<{
|
|
@@ -823,17 +823,17 @@ declare const ReducerRuntimeLogEntryStateCommitSchema: z.ZodObject<{
|
|
|
823
823
|
version: z.ZodNumber;
|
|
824
824
|
state: z.ZodObject<{
|
|
825
825
|
domain: z.ZodObject<{
|
|
826
|
-
table: z.
|
|
827
|
-
publicState: z.
|
|
828
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
829
|
-
hiddenState: z.
|
|
826
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
827
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
828
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
829
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
830
830
|
flow: z.ZodObject<{
|
|
831
831
|
currentPhase: z.ZodString;
|
|
832
832
|
turn: z.ZodNumber;
|
|
833
833
|
round: z.ZodNumber;
|
|
834
834
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
835
835
|
}, z.core.$strict>;
|
|
836
|
-
phase: z.
|
|
836
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
837
837
|
}, z.core.$strict>;
|
|
838
838
|
runtime: z.ZodObject<{
|
|
839
839
|
rng: z.ZodObject<{
|
|
@@ -851,7 +851,7 @@ declare const ReducerRuntimeLogEntryStateCommitSchema: z.ZodObject<{
|
|
|
851
851
|
actors: z.ZodArray<z.ZodString>;
|
|
852
852
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
853
853
|
interactionId: z.ZodString;
|
|
854
|
-
params: z.
|
|
854
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
855
855
|
}, z.core.$strict>>;
|
|
856
856
|
}, z.core.$strict>, z.ZodNull]>;
|
|
857
857
|
}, z.core.$strict>;
|
|
@@ -869,7 +869,7 @@ declare const ReducerRuntimeLogEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
869
869
|
kind: z.ZodLiteral<"interaction">;
|
|
870
870
|
playerId: z.ZodString;
|
|
871
871
|
interactionId: z.ZodString;
|
|
872
|
-
params: z.
|
|
872
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
873
873
|
}, z.core.$strict>], "kind">;
|
|
874
874
|
}, z.core.$strict>, z.ZodObject<{
|
|
875
875
|
kind: z.ZodLiteral<"appliedEffect">;
|
|
@@ -894,7 +894,7 @@ declare const ReducerRuntimeLogEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
894
894
|
}, z.core.$strict>], "type">;
|
|
895
895
|
continuation: z.ZodUnion<readonly [z.ZodObject<{
|
|
896
896
|
id: z.ZodString;
|
|
897
|
-
data: z.
|
|
897
|
+
data: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
898
898
|
}, z.core.$strict>, z.ZodNull]>;
|
|
899
899
|
}, z.core.$strict>, z.ZodObject<{
|
|
900
900
|
kind: z.ZodLiteral<"rngConsumption">;
|
|
@@ -906,17 +906,17 @@ declare const ReducerRuntimeLogEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
906
906
|
version: z.ZodNumber;
|
|
907
907
|
state: z.ZodObject<{
|
|
908
908
|
domain: z.ZodObject<{
|
|
909
|
-
table: z.
|
|
910
|
-
publicState: z.
|
|
911
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
912
|
-
hiddenState: z.
|
|
909
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
910
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
911
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
912
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
913
913
|
flow: z.ZodObject<{
|
|
914
914
|
currentPhase: z.ZodString;
|
|
915
915
|
turn: z.ZodNumber;
|
|
916
916
|
round: z.ZodNumber;
|
|
917
917
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
918
918
|
}, z.core.$strict>;
|
|
919
|
-
phase: z.
|
|
919
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
920
920
|
}, z.core.$strict>;
|
|
921
921
|
runtime: z.ZodObject<{
|
|
922
922
|
rng: z.ZodObject<{
|
|
@@ -934,7 +934,7 @@ declare const ReducerRuntimeLogEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
934
934
|
actors: z.ZodArray<z.ZodString>;
|
|
935
935
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
936
936
|
interactionId: z.ZodString;
|
|
937
|
-
params: z.
|
|
937
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
938
938
|
}, z.core.$strict>>;
|
|
939
939
|
}, z.core.$strict>, z.ZodNull]>;
|
|
940
940
|
}, z.core.$strict>;
|
|
@@ -946,9 +946,9 @@ declare const ReducerRuntimeLogEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
946
946
|
}, z.core.$strict>;
|
|
947
947
|
}, z.core.$strict>], "kind">;
|
|
948
948
|
declare const SeatProjectionSchema: z.ZodObject<{
|
|
949
|
-
view: z.ZodOptional<z.
|
|
950
|
-
availableInteractionRefs: z.ZodOptional<z.
|
|
951
|
-
zones: z.ZodOptional<z.
|
|
949
|
+
view: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
950
|
+
availableInteractionRefs: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
951
|
+
zones: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
952
952
|
}, z.core.$strict>;
|
|
953
953
|
declare const SimultaneousPhaseProjectionSchema: z.ZodObject<{
|
|
954
954
|
phaseName: z.ZodString;
|
|
@@ -967,27 +967,27 @@ declare const SeatProjectionBundleSchema: z.ZodObject<{
|
|
|
967
967
|
sealedPlayerIds: z.ZodArray<z.ZodString>;
|
|
968
968
|
pendingPlayerIds: z.ZodArray<z.ZodString>;
|
|
969
969
|
}, z.core.$strict>, z.ZodNull]>>;
|
|
970
|
-
interactionsByRef: z.ZodOptional<z.
|
|
970
|
+
interactionsByRef: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
971
971
|
seats: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
972
|
-
view: z.ZodOptional<z.
|
|
973
|
-
availableInteractionRefs: z.ZodOptional<z.
|
|
974
|
-
zones: z.ZodOptional<z.
|
|
972
|
+
view: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
973
|
+
availableInteractionRefs: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
974
|
+
zones: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
975
975
|
}, z.core.$strict>>;
|
|
976
976
|
}, z.core.$strict>;
|
|
977
977
|
declare const ProjectSeatsDynamicRequestSchema: z.ZodObject<{
|
|
978
978
|
state: z.ZodObject<{
|
|
979
979
|
domain: z.ZodObject<{
|
|
980
|
-
table: z.
|
|
981
|
-
publicState: z.
|
|
982
|
-
privateState: z.ZodRecord<z.ZodString, z.
|
|
983
|
-
hiddenState: z.
|
|
980
|
+
table: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
981
|
+
publicState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
982
|
+
privateState: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
983
|
+
hiddenState: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
984
984
|
flow: z.ZodObject<{
|
|
985
985
|
currentPhase: z.ZodString;
|
|
986
986
|
turn: z.ZodNumber;
|
|
987
987
|
round: z.ZodNumber;
|
|
988
988
|
activePlayers: z.ZodArray<z.ZodString>;
|
|
989
989
|
}, z.core.$strict>;
|
|
990
|
-
phase: z.
|
|
990
|
+
phase: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
991
991
|
}, z.core.$strict>;
|
|
992
992
|
runtime: z.ZodObject<{
|
|
993
993
|
rng: z.ZodObject<{
|
|
@@ -1005,7 +1005,7 @@ declare const ProjectSeatsDynamicRequestSchema: z.ZodObject<{
|
|
|
1005
1005
|
actors: z.ZodArray<z.ZodString>;
|
|
1006
1006
|
submissions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1007
1007
|
interactionId: z.ZodString;
|
|
1008
|
-
params: z.
|
|
1008
|
+
params: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
1009
1009
|
}, z.core.$strict>>;
|
|
1010
1010
|
}, z.core.$strict>, z.ZodNull]>;
|
|
1011
1011
|
}, z.core.$strict>;
|
|
@@ -1023,7 +1023,7 @@ declare const ProjectSeatsDynamicRequestSchema: z.ZodObject<{
|
|
|
1023
1023
|
}>, z.ZodNull]>>;
|
|
1024
1024
|
}, z.core.$strict>;
|
|
1025
1025
|
declare const BoardStaticProjectionSchema: z.ZodObject<{
|
|
1026
|
-
view: z.
|
|
1026
|
+
view: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
1027
1027
|
hash: z.ZodString;
|
|
1028
1028
|
manifestVersion: z.ZodString;
|
|
1029
1029
|
}, z.core.$strict>;
|