@auto-engineer/narrative 0.11.13 → 0.11.14
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/src/data-narrative-builders.d.ts +7 -5
- package/dist/src/data-narrative-builders.d.ts.map +1 -1
- package/dist/src/data-narrative-builders.js +19 -1
- package/dist/src/data-narrative-builders.js.map +1 -1
- package/dist/src/getNarratives.specs.js +227 -0
- package/dist/src/getNarratives.specs.js.map +1 -1
- package/dist/src/model-to-narrative.specs.js +385 -1
- package/dist/src/model-to-narrative.specs.js.map +1 -1
- package/dist/src/schema.d.ts +398 -199
- package/dist/src/schema.d.ts.map +1 -1
- package/dist/src/schema.js +8 -1
- package/dist/src/schema.js.map +1 -1
- package/dist/src/transformers/model-to-narrative/generators/flow.d.ts.map +1 -1
- package/dist/src/transformers/model-to-narrative/generators/flow.js +49 -12
- package/dist/src/transformers/model-to-narrative/generators/flow.js.map +1 -1
- package/dist/src/types.d.ts +6 -8
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/data-narrative-builders.ts +41 -9
- package/src/getNarratives.specs.ts +260 -0
- package/src/model-to-narrative.specs.ts +397 -1
- package/src/schema.ts +12 -1
- package/src/transformers/model-to-narrative/generators/flow.ts +85 -26
- package/src/types.ts +7 -9
package/dist/src/schema.d.ts
CHANGED
|
@@ -83,15 +83,18 @@ export declare const DestinationSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
83
83
|
export declare const OriginSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
84
84
|
type: z.ZodLiteral<"projection">;
|
|
85
85
|
name: z.ZodString;
|
|
86
|
-
idField: z.ZodString
|
|
86
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
87
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
87
88
|
}, "strip", z.ZodTypeAny, {
|
|
88
89
|
type: "projection";
|
|
89
90
|
name: string;
|
|
90
|
-
|
|
91
|
+
singleton?: boolean | undefined;
|
|
92
|
+
idField?: string | string[] | undefined;
|
|
91
93
|
}, {
|
|
92
94
|
type: "projection";
|
|
93
95
|
name: string;
|
|
94
|
-
|
|
96
|
+
singleton?: boolean | undefined;
|
|
97
|
+
idField?: string | string[] | undefined;
|
|
95
98
|
}>, z.ZodObject<{
|
|
96
99
|
type: z.ZodLiteral<"readModel">;
|
|
97
100
|
name: z.ZodString;
|
|
@@ -223,15 +226,18 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
223
226
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
224
227
|
type: z.ZodLiteral<"projection">;
|
|
225
228
|
name: z.ZodString;
|
|
226
|
-
idField: z.ZodString
|
|
229
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
230
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
227
231
|
}, "strip", z.ZodTypeAny, {
|
|
228
232
|
type: "projection";
|
|
229
233
|
name: string;
|
|
230
|
-
|
|
234
|
+
singleton?: boolean | undefined;
|
|
235
|
+
idField?: string | string[] | undefined;
|
|
231
236
|
}, {
|
|
232
237
|
type: "projection";
|
|
233
238
|
name: string;
|
|
234
|
-
|
|
239
|
+
singleton?: boolean | undefined;
|
|
240
|
+
idField?: string | string[] | undefined;
|
|
235
241
|
}>, z.ZodObject<{
|
|
236
242
|
type: z.ZodLiteral<"readModel">;
|
|
237
243
|
name: z.ZodString;
|
|
@@ -286,7 +292,8 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
286
292
|
origin: {
|
|
287
293
|
type: "projection";
|
|
288
294
|
name: string;
|
|
289
|
-
|
|
295
|
+
singleton?: boolean | undefined;
|
|
296
|
+
idField?: string | string[] | undefined;
|
|
290
297
|
} | {
|
|
291
298
|
type: "readModel";
|
|
292
299
|
name: string;
|
|
@@ -313,7 +320,8 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
313
320
|
origin: {
|
|
314
321
|
type: "projection";
|
|
315
322
|
name: string;
|
|
316
|
-
|
|
323
|
+
singleton?: boolean | undefined;
|
|
324
|
+
idField?: string | string[] | undefined;
|
|
317
325
|
} | {
|
|
318
326
|
type: "readModel";
|
|
319
327
|
name: string;
|
|
@@ -366,7 +374,8 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
366
374
|
origin: {
|
|
367
375
|
type: "projection";
|
|
368
376
|
name: string;
|
|
369
|
-
|
|
377
|
+
singleton?: boolean | undefined;
|
|
378
|
+
idField?: string | string[] | undefined;
|
|
370
379
|
} | {
|
|
371
380
|
type: "readModel";
|
|
372
381
|
name: string;
|
|
@@ -419,7 +428,8 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
419
428
|
origin: {
|
|
420
429
|
type: "projection";
|
|
421
430
|
name: string;
|
|
422
|
-
|
|
431
|
+
singleton?: boolean | undefined;
|
|
432
|
+
idField?: string | string[] | undefined;
|
|
423
433
|
} | {
|
|
424
434
|
type: "readModel";
|
|
425
435
|
name: string;
|
|
@@ -456,15 +466,18 @@ declare const DataSourceSchema: z.ZodObject<{
|
|
|
456
466
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
457
467
|
type: z.ZodLiteral<"projection">;
|
|
458
468
|
name: z.ZodString;
|
|
459
|
-
idField: z.ZodString
|
|
469
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
470
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
460
471
|
}, "strip", z.ZodTypeAny, {
|
|
461
472
|
type: "projection";
|
|
462
473
|
name: string;
|
|
463
|
-
|
|
474
|
+
singleton?: boolean | undefined;
|
|
475
|
+
idField?: string | string[] | undefined;
|
|
464
476
|
}, {
|
|
465
477
|
type: "projection";
|
|
466
478
|
name: string;
|
|
467
|
-
|
|
479
|
+
singleton?: boolean | undefined;
|
|
480
|
+
idField?: string | string[] | undefined;
|
|
468
481
|
}>, z.ZodObject<{
|
|
469
482
|
type: z.ZodLiteral<"readModel">;
|
|
470
483
|
name: z.ZodString;
|
|
@@ -519,7 +532,8 @@ declare const DataSourceSchema: z.ZodObject<{
|
|
|
519
532
|
origin: {
|
|
520
533
|
type: "projection";
|
|
521
534
|
name: string;
|
|
522
|
-
|
|
535
|
+
singleton?: boolean | undefined;
|
|
536
|
+
idField?: string | string[] | undefined;
|
|
523
537
|
} | {
|
|
524
538
|
type: "readModel";
|
|
525
539
|
name: string;
|
|
@@ -546,7 +560,8 @@ declare const DataSourceSchema: z.ZodObject<{
|
|
|
546
560
|
origin: {
|
|
547
561
|
type: "projection";
|
|
548
562
|
name: string;
|
|
549
|
-
|
|
563
|
+
singleton?: boolean | undefined;
|
|
564
|
+
idField?: string | string[] | undefined;
|
|
550
565
|
} | {
|
|
551
566
|
type: "readModel";
|
|
552
567
|
name: string;
|
|
@@ -2060,15 +2075,18 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2060
2075
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2061
2076
|
type: z.ZodLiteral<"projection">;
|
|
2062
2077
|
name: z.ZodString;
|
|
2063
|
-
idField: z.ZodString
|
|
2078
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
2079
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
2064
2080
|
}, "strip", z.ZodTypeAny, {
|
|
2065
2081
|
type: "projection";
|
|
2066
2082
|
name: string;
|
|
2067
|
-
|
|
2083
|
+
singleton?: boolean | undefined;
|
|
2084
|
+
idField?: string | string[] | undefined;
|
|
2068
2085
|
}, {
|
|
2069
2086
|
type: "projection";
|
|
2070
2087
|
name: string;
|
|
2071
|
-
|
|
2088
|
+
singleton?: boolean | undefined;
|
|
2089
|
+
idField?: string | string[] | undefined;
|
|
2072
2090
|
}>, z.ZodObject<{
|
|
2073
2091
|
type: z.ZodLiteral<"readModel">;
|
|
2074
2092
|
name: z.ZodString;
|
|
@@ -2123,7 +2141,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2123
2141
|
origin: {
|
|
2124
2142
|
type: "projection";
|
|
2125
2143
|
name: string;
|
|
2126
|
-
|
|
2144
|
+
singleton?: boolean | undefined;
|
|
2145
|
+
idField?: string | string[] | undefined;
|
|
2127
2146
|
} | {
|
|
2128
2147
|
type: "readModel";
|
|
2129
2148
|
name: string;
|
|
@@ -2150,7 +2169,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2150
2169
|
origin: {
|
|
2151
2170
|
type: "projection";
|
|
2152
2171
|
name: string;
|
|
2153
|
-
|
|
2172
|
+
singleton?: boolean | undefined;
|
|
2173
|
+
idField?: string | string[] | undefined;
|
|
2154
2174
|
} | {
|
|
2155
2175
|
type: "readModel";
|
|
2156
2176
|
name: string;
|
|
@@ -2203,7 +2223,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2203
2223
|
origin: {
|
|
2204
2224
|
type: "projection";
|
|
2205
2225
|
name: string;
|
|
2206
|
-
|
|
2226
|
+
singleton?: boolean | undefined;
|
|
2227
|
+
idField?: string | string[] | undefined;
|
|
2207
2228
|
} | {
|
|
2208
2229
|
type: "readModel";
|
|
2209
2230
|
name: string;
|
|
@@ -2256,7 +2277,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2256
2277
|
origin: {
|
|
2257
2278
|
type: "projection";
|
|
2258
2279
|
name: string;
|
|
2259
|
-
|
|
2280
|
+
singleton?: boolean | undefined;
|
|
2281
|
+
idField?: string | string[] | undefined;
|
|
2260
2282
|
} | {
|
|
2261
2283
|
type: "readModel";
|
|
2262
2284
|
name: string;
|
|
@@ -2780,7 +2802,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2780
2802
|
origin: {
|
|
2781
2803
|
type: "projection";
|
|
2782
2804
|
name: string;
|
|
2783
|
-
|
|
2805
|
+
singleton?: boolean | undefined;
|
|
2806
|
+
idField?: string | string[] | undefined;
|
|
2784
2807
|
} | {
|
|
2785
2808
|
type: "readModel";
|
|
2786
2809
|
name: string;
|
|
@@ -2888,7 +2911,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2888
2911
|
origin: {
|
|
2889
2912
|
type: "projection";
|
|
2890
2913
|
name: string;
|
|
2891
|
-
|
|
2914
|
+
singleton?: boolean | undefined;
|
|
2915
|
+
idField?: string | string[] | undefined;
|
|
2892
2916
|
} | {
|
|
2893
2917
|
type: "readModel";
|
|
2894
2918
|
name: string;
|
|
@@ -3007,7 +3031,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
3007
3031
|
origin: {
|
|
3008
3032
|
type: "projection";
|
|
3009
3033
|
name: string;
|
|
3010
|
-
|
|
3034
|
+
singleton?: boolean | undefined;
|
|
3035
|
+
idField?: string | string[] | undefined;
|
|
3011
3036
|
} | {
|
|
3012
3037
|
type: "readModel";
|
|
3013
3038
|
name: string;
|
|
@@ -3132,7 +3157,8 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
3132
3157
|
origin: {
|
|
3133
3158
|
type: "projection";
|
|
3134
3159
|
name: string;
|
|
3135
|
-
|
|
3160
|
+
singleton?: boolean | undefined;
|
|
3161
|
+
idField?: string | string[] | undefined;
|
|
3136
3162
|
} | {
|
|
3137
3163
|
type: "readModel";
|
|
3138
3164
|
name: string;
|
|
@@ -3214,15 +3240,18 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3214
3240
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3215
3241
|
type: z.ZodLiteral<"projection">;
|
|
3216
3242
|
name: z.ZodString;
|
|
3217
|
-
idField: z.ZodString
|
|
3243
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
3244
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
3218
3245
|
}, "strip", z.ZodTypeAny, {
|
|
3219
3246
|
type: "projection";
|
|
3220
3247
|
name: string;
|
|
3221
|
-
|
|
3248
|
+
singleton?: boolean | undefined;
|
|
3249
|
+
idField?: string | string[] | undefined;
|
|
3222
3250
|
}, {
|
|
3223
3251
|
type: "projection";
|
|
3224
3252
|
name: string;
|
|
3225
|
-
|
|
3253
|
+
singleton?: boolean | undefined;
|
|
3254
|
+
idField?: string | string[] | undefined;
|
|
3226
3255
|
}>, z.ZodObject<{
|
|
3227
3256
|
type: z.ZodLiteral<"readModel">;
|
|
3228
3257
|
name: z.ZodString;
|
|
@@ -3277,7 +3306,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3277
3306
|
origin: {
|
|
3278
3307
|
type: "projection";
|
|
3279
3308
|
name: string;
|
|
3280
|
-
|
|
3309
|
+
singleton?: boolean | undefined;
|
|
3310
|
+
idField?: string | string[] | undefined;
|
|
3281
3311
|
} | {
|
|
3282
3312
|
type: "readModel";
|
|
3283
3313
|
name: string;
|
|
@@ -3304,7 +3334,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3304
3334
|
origin: {
|
|
3305
3335
|
type: "projection";
|
|
3306
3336
|
name: string;
|
|
3307
|
-
|
|
3337
|
+
singleton?: boolean | undefined;
|
|
3338
|
+
idField?: string | string[] | undefined;
|
|
3308
3339
|
} | {
|
|
3309
3340
|
type: "readModel";
|
|
3310
3341
|
name: string;
|
|
@@ -3802,7 +3833,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3802
3833
|
origin: {
|
|
3803
3834
|
type: "projection";
|
|
3804
3835
|
name: string;
|
|
3805
|
-
|
|
3836
|
+
singleton?: boolean | undefined;
|
|
3837
|
+
idField?: string | string[] | undefined;
|
|
3806
3838
|
} | {
|
|
3807
3839
|
type: "readModel";
|
|
3808
3840
|
name: string;
|
|
@@ -3884,7 +3916,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3884
3916
|
origin: {
|
|
3885
3917
|
type: "projection";
|
|
3886
3918
|
name: string;
|
|
3887
|
-
|
|
3919
|
+
singleton?: boolean | undefined;
|
|
3920
|
+
idField?: string | string[] | undefined;
|
|
3888
3921
|
} | {
|
|
3889
3922
|
type: "readModel";
|
|
3890
3923
|
name: string;
|
|
@@ -3977,7 +4010,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
3977
4010
|
origin: {
|
|
3978
4011
|
type: "projection";
|
|
3979
4012
|
name: string;
|
|
3980
|
-
|
|
4013
|
+
singleton?: boolean | undefined;
|
|
4014
|
+
idField?: string | string[] | undefined;
|
|
3981
4015
|
} | {
|
|
3982
4016
|
type: "readModel";
|
|
3983
4017
|
name: string;
|
|
@@ -4076,7 +4110,8 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
4076
4110
|
origin: {
|
|
4077
4111
|
type: "projection";
|
|
4078
4112
|
name: string;
|
|
4079
|
-
|
|
4113
|
+
singleton?: boolean | undefined;
|
|
4114
|
+
idField?: string | string[] | undefined;
|
|
4080
4115
|
} | {
|
|
4081
4116
|
type: "readModel";
|
|
4082
4117
|
name: string;
|
|
@@ -4202,15 +4237,18 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4202
4237
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4203
4238
|
type: z.ZodLiteral<"projection">;
|
|
4204
4239
|
name: z.ZodString;
|
|
4205
|
-
idField: z.ZodString
|
|
4240
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
4241
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
4206
4242
|
}, "strip", z.ZodTypeAny, {
|
|
4207
4243
|
type: "projection";
|
|
4208
4244
|
name: string;
|
|
4209
|
-
|
|
4245
|
+
singleton?: boolean | undefined;
|
|
4246
|
+
idField?: string | string[] | undefined;
|
|
4210
4247
|
}, {
|
|
4211
4248
|
type: "projection";
|
|
4212
4249
|
name: string;
|
|
4213
|
-
|
|
4250
|
+
singleton?: boolean | undefined;
|
|
4251
|
+
idField?: string | string[] | undefined;
|
|
4214
4252
|
}>, z.ZodObject<{
|
|
4215
4253
|
type: z.ZodLiteral<"readModel">;
|
|
4216
4254
|
name: z.ZodString;
|
|
@@ -4265,7 +4303,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4265
4303
|
origin: {
|
|
4266
4304
|
type: "projection";
|
|
4267
4305
|
name: string;
|
|
4268
|
-
|
|
4306
|
+
singleton?: boolean | undefined;
|
|
4307
|
+
idField?: string | string[] | undefined;
|
|
4269
4308
|
} | {
|
|
4270
4309
|
type: "readModel";
|
|
4271
4310
|
name: string;
|
|
@@ -4292,7 +4331,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4292
4331
|
origin: {
|
|
4293
4332
|
type: "projection";
|
|
4294
4333
|
name: string;
|
|
4295
|
-
|
|
4334
|
+
singleton?: boolean | undefined;
|
|
4335
|
+
idField?: string | string[] | undefined;
|
|
4296
4336
|
} | {
|
|
4297
4337
|
type: "readModel";
|
|
4298
4338
|
name: string;
|
|
@@ -4345,7 +4385,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4345
4385
|
origin: {
|
|
4346
4386
|
type: "projection";
|
|
4347
4387
|
name: string;
|
|
4348
|
-
|
|
4388
|
+
singleton?: boolean | undefined;
|
|
4389
|
+
idField?: string | string[] | undefined;
|
|
4349
4390
|
} | {
|
|
4350
4391
|
type: "readModel";
|
|
4351
4392
|
name: string;
|
|
@@ -4398,7 +4439,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4398
4439
|
origin: {
|
|
4399
4440
|
type: "projection";
|
|
4400
4441
|
name: string;
|
|
4401
|
-
|
|
4442
|
+
singleton?: boolean | undefined;
|
|
4443
|
+
idField?: string | string[] | undefined;
|
|
4402
4444
|
} | {
|
|
4403
4445
|
type: "readModel";
|
|
4404
4446
|
name: string;
|
|
@@ -4434,15 +4476,18 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4434
4476
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4435
4477
|
type: z.ZodLiteral<"projection">;
|
|
4436
4478
|
name: z.ZodString;
|
|
4437
|
-
idField: z.ZodString
|
|
4479
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
4480
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
4438
4481
|
}, "strip", z.ZodTypeAny, {
|
|
4439
4482
|
type: "projection";
|
|
4440
4483
|
name: string;
|
|
4441
|
-
|
|
4484
|
+
singleton?: boolean | undefined;
|
|
4485
|
+
idField?: string | string[] | undefined;
|
|
4442
4486
|
}, {
|
|
4443
4487
|
type: "projection";
|
|
4444
4488
|
name: string;
|
|
4445
|
-
|
|
4489
|
+
singleton?: boolean | undefined;
|
|
4490
|
+
idField?: string | string[] | undefined;
|
|
4446
4491
|
}>, z.ZodObject<{
|
|
4447
4492
|
type: z.ZodLiteral<"readModel">;
|
|
4448
4493
|
name: z.ZodString;
|
|
@@ -4497,7 +4542,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4497
4542
|
origin: {
|
|
4498
4543
|
type: "projection";
|
|
4499
4544
|
name: string;
|
|
4500
|
-
|
|
4545
|
+
singleton?: boolean | undefined;
|
|
4546
|
+
idField?: string | string[] | undefined;
|
|
4501
4547
|
} | {
|
|
4502
4548
|
type: "readModel";
|
|
4503
4549
|
name: string;
|
|
@@ -4524,7 +4570,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4524
4570
|
origin: {
|
|
4525
4571
|
type: "projection";
|
|
4526
4572
|
name: string;
|
|
4527
|
-
|
|
4573
|
+
singleton?: boolean | undefined;
|
|
4574
|
+
idField?: string | string[] | undefined;
|
|
4528
4575
|
} | {
|
|
4529
4576
|
type: "readModel";
|
|
4530
4577
|
name: string;
|
|
@@ -5021,7 +5068,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5021
5068
|
origin: {
|
|
5022
5069
|
type: "projection";
|
|
5023
5070
|
name: string;
|
|
5024
|
-
|
|
5071
|
+
singleton?: boolean | undefined;
|
|
5072
|
+
idField?: string | string[] | undefined;
|
|
5025
5073
|
} | {
|
|
5026
5074
|
type: "readModel";
|
|
5027
5075
|
name: string;
|
|
@@ -5073,7 +5121,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5073
5121
|
origin: {
|
|
5074
5122
|
type: "projection";
|
|
5075
5123
|
name: string;
|
|
5076
|
-
|
|
5124
|
+
singleton?: boolean | undefined;
|
|
5125
|
+
idField?: string | string[] | undefined;
|
|
5077
5126
|
} | {
|
|
5078
5127
|
type: "readModel";
|
|
5079
5128
|
name: string;
|
|
@@ -5156,7 +5205,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5156
5205
|
origin: {
|
|
5157
5206
|
type: "projection";
|
|
5158
5207
|
name: string;
|
|
5159
|
-
|
|
5208
|
+
singleton?: boolean | undefined;
|
|
5209
|
+
idField?: string | string[] | undefined;
|
|
5160
5210
|
} | {
|
|
5161
5211
|
type: "readModel";
|
|
5162
5212
|
name: string;
|
|
@@ -5208,7 +5258,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5208
5258
|
origin: {
|
|
5209
5259
|
type: "projection";
|
|
5210
5260
|
name: string;
|
|
5211
|
-
|
|
5261
|
+
singleton?: boolean | undefined;
|
|
5262
|
+
idField?: string | string[] | undefined;
|
|
5212
5263
|
} | {
|
|
5213
5264
|
type: "readModel";
|
|
5214
5265
|
name: string;
|
|
@@ -5295,7 +5346,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5295
5346
|
origin: {
|
|
5296
5347
|
type: "projection";
|
|
5297
5348
|
name: string;
|
|
5298
|
-
|
|
5349
|
+
singleton?: boolean | undefined;
|
|
5350
|
+
idField?: string | string[] | undefined;
|
|
5299
5351
|
} | {
|
|
5300
5352
|
type: "readModel";
|
|
5301
5353
|
name: string;
|
|
@@ -5347,7 +5399,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5347
5399
|
origin: {
|
|
5348
5400
|
type: "projection";
|
|
5349
5401
|
name: string;
|
|
5350
|
-
|
|
5402
|
+
singleton?: boolean | undefined;
|
|
5403
|
+
idField?: string | string[] | undefined;
|
|
5351
5404
|
} | {
|
|
5352
5405
|
type: "readModel";
|
|
5353
5406
|
name: string;
|
|
@@ -5439,7 +5492,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5439
5492
|
origin: {
|
|
5440
5493
|
type: "projection";
|
|
5441
5494
|
name: string;
|
|
5442
|
-
|
|
5495
|
+
singleton?: boolean | undefined;
|
|
5496
|
+
idField?: string | string[] | undefined;
|
|
5443
5497
|
} | {
|
|
5444
5498
|
type: "readModel";
|
|
5445
5499
|
name: string;
|
|
@@ -5491,7 +5545,8 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
5491
5545
|
origin: {
|
|
5492
5546
|
type: "projection";
|
|
5493
5547
|
name: string;
|
|
5494
|
-
|
|
5548
|
+
singleton?: boolean | undefined;
|
|
5549
|
+
idField?: string | string[] | undefined;
|
|
5495
5550
|
} | {
|
|
5496
5551
|
type: "readModel";
|
|
5497
5552
|
name: string;
|
|
@@ -5709,15 +5764,18 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5709
5764
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5710
5765
|
type: z.ZodLiteral<"projection">;
|
|
5711
5766
|
name: z.ZodString;
|
|
5712
|
-
idField: z.ZodString
|
|
5767
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
5768
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
5713
5769
|
}, "strip", z.ZodTypeAny, {
|
|
5714
5770
|
type: "projection";
|
|
5715
5771
|
name: string;
|
|
5716
|
-
|
|
5772
|
+
singleton?: boolean | undefined;
|
|
5773
|
+
idField?: string | string[] | undefined;
|
|
5717
5774
|
}, {
|
|
5718
5775
|
type: "projection";
|
|
5719
5776
|
name: string;
|
|
5720
|
-
|
|
5777
|
+
singleton?: boolean | undefined;
|
|
5778
|
+
idField?: string | string[] | undefined;
|
|
5721
5779
|
}>, z.ZodObject<{
|
|
5722
5780
|
type: z.ZodLiteral<"readModel">;
|
|
5723
5781
|
name: z.ZodString;
|
|
@@ -5772,7 +5830,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5772
5830
|
origin: {
|
|
5773
5831
|
type: "projection";
|
|
5774
5832
|
name: string;
|
|
5775
|
-
|
|
5833
|
+
singleton?: boolean | undefined;
|
|
5834
|
+
idField?: string | string[] | undefined;
|
|
5776
5835
|
} | {
|
|
5777
5836
|
type: "readModel";
|
|
5778
5837
|
name: string;
|
|
@@ -5799,7 +5858,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5799
5858
|
origin: {
|
|
5800
5859
|
type: "projection";
|
|
5801
5860
|
name: string;
|
|
5802
|
-
|
|
5861
|
+
singleton?: boolean | undefined;
|
|
5862
|
+
idField?: string | string[] | undefined;
|
|
5803
5863
|
} | {
|
|
5804
5864
|
type: "readModel";
|
|
5805
5865
|
name: string;
|
|
@@ -5852,7 +5912,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5852
5912
|
origin: {
|
|
5853
5913
|
type: "projection";
|
|
5854
5914
|
name: string;
|
|
5855
|
-
|
|
5915
|
+
singleton?: boolean | undefined;
|
|
5916
|
+
idField?: string | string[] | undefined;
|
|
5856
5917
|
} | {
|
|
5857
5918
|
type: "readModel";
|
|
5858
5919
|
name: string;
|
|
@@ -5905,7 +5966,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5905
5966
|
origin: {
|
|
5906
5967
|
type: "projection";
|
|
5907
5968
|
name: string;
|
|
5908
|
-
|
|
5969
|
+
singleton?: boolean | undefined;
|
|
5970
|
+
idField?: string | string[] | undefined;
|
|
5909
5971
|
} | {
|
|
5910
5972
|
type: "readModel";
|
|
5911
5973
|
name: string;
|
|
@@ -6429,7 +6491,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6429
6491
|
origin: {
|
|
6430
6492
|
type: "projection";
|
|
6431
6493
|
name: string;
|
|
6432
|
-
|
|
6494
|
+
singleton?: boolean | undefined;
|
|
6495
|
+
idField?: string | string[] | undefined;
|
|
6433
6496
|
} | {
|
|
6434
6497
|
type: "readModel";
|
|
6435
6498
|
name: string;
|
|
@@ -6537,7 +6600,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6537
6600
|
origin: {
|
|
6538
6601
|
type: "projection";
|
|
6539
6602
|
name: string;
|
|
6540
|
-
|
|
6603
|
+
singleton?: boolean | undefined;
|
|
6604
|
+
idField?: string | string[] | undefined;
|
|
6541
6605
|
} | {
|
|
6542
6606
|
type: "readModel";
|
|
6543
6607
|
name: string;
|
|
@@ -6656,7 +6720,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6656
6720
|
origin: {
|
|
6657
6721
|
type: "projection";
|
|
6658
6722
|
name: string;
|
|
6659
|
-
|
|
6723
|
+
singleton?: boolean | undefined;
|
|
6724
|
+
idField?: string | string[] | undefined;
|
|
6660
6725
|
} | {
|
|
6661
6726
|
type: "readModel";
|
|
6662
6727
|
name: string;
|
|
@@ -6781,7 +6846,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6781
6846
|
origin: {
|
|
6782
6847
|
type: "projection";
|
|
6783
6848
|
name: string;
|
|
6784
|
-
|
|
6849
|
+
singleton?: boolean | undefined;
|
|
6850
|
+
idField?: string | string[] | undefined;
|
|
6785
6851
|
} | {
|
|
6786
6852
|
type: "readModel";
|
|
6787
6853
|
name: string;
|
|
@@ -6862,15 +6928,18 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6862
6928
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6863
6929
|
type: z.ZodLiteral<"projection">;
|
|
6864
6930
|
name: z.ZodString;
|
|
6865
|
-
idField: z.ZodString
|
|
6931
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
6932
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
6866
6933
|
}, "strip", z.ZodTypeAny, {
|
|
6867
6934
|
type: "projection";
|
|
6868
6935
|
name: string;
|
|
6869
|
-
|
|
6936
|
+
singleton?: boolean | undefined;
|
|
6937
|
+
idField?: string | string[] | undefined;
|
|
6870
6938
|
}, {
|
|
6871
6939
|
type: "projection";
|
|
6872
6940
|
name: string;
|
|
6873
|
-
|
|
6941
|
+
singleton?: boolean | undefined;
|
|
6942
|
+
idField?: string | string[] | undefined;
|
|
6874
6943
|
}>, z.ZodObject<{
|
|
6875
6944
|
type: z.ZodLiteral<"readModel">;
|
|
6876
6945
|
name: z.ZodString;
|
|
@@ -6925,7 +6994,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6925
6994
|
origin: {
|
|
6926
6995
|
type: "projection";
|
|
6927
6996
|
name: string;
|
|
6928
|
-
|
|
6997
|
+
singleton?: boolean | undefined;
|
|
6998
|
+
idField?: string | string[] | undefined;
|
|
6929
6999
|
} | {
|
|
6930
7000
|
type: "readModel";
|
|
6931
7001
|
name: string;
|
|
@@ -6952,7 +7022,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6952
7022
|
origin: {
|
|
6953
7023
|
type: "projection";
|
|
6954
7024
|
name: string;
|
|
6955
|
-
|
|
7025
|
+
singleton?: boolean | undefined;
|
|
7026
|
+
idField?: string | string[] | undefined;
|
|
6956
7027
|
} | {
|
|
6957
7028
|
type: "readModel";
|
|
6958
7029
|
name: string;
|
|
@@ -7450,7 +7521,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7450
7521
|
origin: {
|
|
7451
7522
|
type: "projection";
|
|
7452
7523
|
name: string;
|
|
7453
|
-
|
|
7524
|
+
singleton?: boolean | undefined;
|
|
7525
|
+
idField?: string | string[] | undefined;
|
|
7454
7526
|
} | {
|
|
7455
7527
|
type: "readModel";
|
|
7456
7528
|
name: string;
|
|
@@ -7532,7 +7604,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7532
7604
|
origin: {
|
|
7533
7605
|
type: "projection";
|
|
7534
7606
|
name: string;
|
|
7535
|
-
|
|
7607
|
+
singleton?: boolean | undefined;
|
|
7608
|
+
idField?: string | string[] | undefined;
|
|
7536
7609
|
} | {
|
|
7537
7610
|
type: "readModel";
|
|
7538
7611
|
name: string;
|
|
@@ -7625,7 +7698,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7625
7698
|
origin: {
|
|
7626
7699
|
type: "projection";
|
|
7627
7700
|
name: string;
|
|
7628
|
-
|
|
7701
|
+
singleton?: boolean | undefined;
|
|
7702
|
+
idField?: string | string[] | undefined;
|
|
7629
7703
|
} | {
|
|
7630
7704
|
type: "readModel";
|
|
7631
7705
|
name: string;
|
|
@@ -7724,7 +7798,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7724
7798
|
origin: {
|
|
7725
7799
|
type: "projection";
|
|
7726
7800
|
name: string;
|
|
7727
|
-
|
|
7801
|
+
singleton?: boolean | undefined;
|
|
7802
|
+
idField?: string | string[] | undefined;
|
|
7728
7803
|
} | {
|
|
7729
7804
|
type: "readModel";
|
|
7730
7805
|
name: string;
|
|
@@ -7849,15 +7924,18 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7849
7924
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7850
7925
|
type: z.ZodLiteral<"projection">;
|
|
7851
7926
|
name: z.ZodString;
|
|
7852
|
-
idField: z.ZodString
|
|
7927
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
7928
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
7853
7929
|
}, "strip", z.ZodTypeAny, {
|
|
7854
7930
|
type: "projection";
|
|
7855
7931
|
name: string;
|
|
7856
|
-
|
|
7932
|
+
singleton?: boolean | undefined;
|
|
7933
|
+
idField?: string | string[] | undefined;
|
|
7857
7934
|
}, {
|
|
7858
7935
|
type: "projection";
|
|
7859
7936
|
name: string;
|
|
7860
|
-
|
|
7937
|
+
singleton?: boolean | undefined;
|
|
7938
|
+
idField?: string | string[] | undefined;
|
|
7861
7939
|
}>, z.ZodObject<{
|
|
7862
7940
|
type: z.ZodLiteral<"readModel">;
|
|
7863
7941
|
name: z.ZodString;
|
|
@@ -7912,7 +7990,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7912
7990
|
origin: {
|
|
7913
7991
|
type: "projection";
|
|
7914
7992
|
name: string;
|
|
7915
|
-
|
|
7993
|
+
singleton?: boolean | undefined;
|
|
7994
|
+
idField?: string | string[] | undefined;
|
|
7916
7995
|
} | {
|
|
7917
7996
|
type: "readModel";
|
|
7918
7997
|
name: string;
|
|
@@ -7939,7 +8018,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7939
8018
|
origin: {
|
|
7940
8019
|
type: "projection";
|
|
7941
8020
|
name: string;
|
|
7942
|
-
|
|
8021
|
+
singleton?: boolean | undefined;
|
|
8022
|
+
idField?: string | string[] | undefined;
|
|
7943
8023
|
} | {
|
|
7944
8024
|
type: "readModel";
|
|
7945
8025
|
name: string;
|
|
@@ -7992,7 +8072,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7992
8072
|
origin: {
|
|
7993
8073
|
type: "projection";
|
|
7994
8074
|
name: string;
|
|
7995
|
-
|
|
8075
|
+
singleton?: boolean | undefined;
|
|
8076
|
+
idField?: string | string[] | undefined;
|
|
7996
8077
|
} | {
|
|
7997
8078
|
type: "readModel";
|
|
7998
8079
|
name: string;
|
|
@@ -8045,7 +8126,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8045
8126
|
origin: {
|
|
8046
8127
|
type: "projection";
|
|
8047
8128
|
name: string;
|
|
8048
|
-
|
|
8129
|
+
singleton?: boolean | undefined;
|
|
8130
|
+
idField?: string | string[] | undefined;
|
|
8049
8131
|
} | {
|
|
8050
8132
|
type: "readModel";
|
|
8051
8133
|
name: string;
|
|
@@ -8081,15 +8163,18 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8081
8163
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8082
8164
|
type: z.ZodLiteral<"projection">;
|
|
8083
8165
|
name: z.ZodString;
|
|
8084
|
-
idField: z.ZodString
|
|
8166
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
8167
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
8085
8168
|
}, "strip", z.ZodTypeAny, {
|
|
8086
8169
|
type: "projection";
|
|
8087
8170
|
name: string;
|
|
8088
|
-
|
|
8171
|
+
singleton?: boolean | undefined;
|
|
8172
|
+
idField?: string | string[] | undefined;
|
|
8089
8173
|
}, {
|
|
8090
8174
|
type: "projection";
|
|
8091
8175
|
name: string;
|
|
8092
|
-
|
|
8176
|
+
singleton?: boolean | undefined;
|
|
8177
|
+
idField?: string | string[] | undefined;
|
|
8093
8178
|
}>, z.ZodObject<{
|
|
8094
8179
|
type: z.ZodLiteral<"readModel">;
|
|
8095
8180
|
name: z.ZodString;
|
|
@@ -8144,7 +8229,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8144
8229
|
origin: {
|
|
8145
8230
|
type: "projection";
|
|
8146
8231
|
name: string;
|
|
8147
|
-
|
|
8232
|
+
singleton?: boolean | undefined;
|
|
8233
|
+
idField?: string | string[] | undefined;
|
|
8148
8234
|
} | {
|
|
8149
8235
|
type: "readModel";
|
|
8150
8236
|
name: string;
|
|
@@ -8171,7 +8257,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8171
8257
|
origin: {
|
|
8172
8258
|
type: "projection";
|
|
8173
8259
|
name: string;
|
|
8174
|
-
|
|
8260
|
+
singleton?: boolean | undefined;
|
|
8261
|
+
idField?: string | string[] | undefined;
|
|
8175
8262
|
} | {
|
|
8176
8263
|
type: "readModel";
|
|
8177
8264
|
name: string;
|
|
@@ -8668,7 +8755,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8668
8755
|
origin: {
|
|
8669
8756
|
type: "projection";
|
|
8670
8757
|
name: string;
|
|
8671
|
-
|
|
8758
|
+
singleton?: boolean | undefined;
|
|
8759
|
+
idField?: string | string[] | undefined;
|
|
8672
8760
|
} | {
|
|
8673
8761
|
type: "readModel";
|
|
8674
8762
|
name: string;
|
|
@@ -8720,7 +8808,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8720
8808
|
origin: {
|
|
8721
8809
|
type: "projection";
|
|
8722
8810
|
name: string;
|
|
8723
|
-
|
|
8811
|
+
singleton?: boolean | undefined;
|
|
8812
|
+
idField?: string | string[] | undefined;
|
|
8724
8813
|
} | {
|
|
8725
8814
|
type: "readModel";
|
|
8726
8815
|
name: string;
|
|
@@ -8803,7 +8892,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8803
8892
|
origin: {
|
|
8804
8893
|
type: "projection";
|
|
8805
8894
|
name: string;
|
|
8806
|
-
|
|
8895
|
+
singleton?: boolean | undefined;
|
|
8896
|
+
idField?: string | string[] | undefined;
|
|
8807
8897
|
} | {
|
|
8808
8898
|
type: "readModel";
|
|
8809
8899
|
name: string;
|
|
@@ -8855,7 +8945,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8855
8945
|
origin: {
|
|
8856
8946
|
type: "projection";
|
|
8857
8947
|
name: string;
|
|
8858
|
-
|
|
8948
|
+
singleton?: boolean | undefined;
|
|
8949
|
+
idField?: string | string[] | undefined;
|
|
8859
8950
|
} | {
|
|
8860
8951
|
type: "readModel";
|
|
8861
8952
|
name: string;
|
|
@@ -8942,7 +9033,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8942
9033
|
origin: {
|
|
8943
9034
|
type: "projection";
|
|
8944
9035
|
name: string;
|
|
8945
|
-
|
|
9036
|
+
singleton?: boolean | undefined;
|
|
9037
|
+
idField?: string | string[] | undefined;
|
|
8946
9038
|
} | {
|
|
8947
9039
|
type: "readModel";
|
|
8948
9040
|
name: string;
|
|
@@ -8994,7 +9086,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8994
9086
|
origin: {
|
|
8995
9087
|
type: "projection";
|
|
8996
9088
|
name: string;
|
|
8997
|
-
|
|
9089
|
+
singleton?: boolean | undefined;
|
|
9090
|
+
idField?: string | string[] | undefined;
|
|
8998
9091
|
} | {
|
|
8999
9092
|
type: "readModel";
|
|
9000
9093
|
name: string;
|
|
@@ -9086,7 +9179,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9086
9179
|
origin: {
|
|
9087
9180
|
type: "projection";
|
|
9088
9181
|
name: string;
|
|
9089
|
-
|
|
9182
|
+
singleton?: boolean | undefined;
|
|
9183
|
+
idField?: string | string[] | undefined;
|
|
9090
9184
|
} | {
|
|
9091
9185
|
type: "readModel";
|
|
9092
9186
|
name: string;
|
|
@@ -9138,7 +9232,8 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9138
9232
|
origin: {
|
|
9139
9233
|
type: "projection";
|
|
9140
9234
|
name: string;
|
|
9141
|
-
|
|
9235
|
+
singleton?: boolean | undefined;
|
|
9236
|
+
idField?: string | string[] | undefined;
|
|
9142
9237
|
} | {
|
|
9143
9238
|
type: "readModel";
|
|
9144
9239
|
name: string;
|
|
@@ -9359,15 +9454,18 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9359
9454
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9360
9455
|
type: z.ZodLiteral<"projection">;
|
|
9361
9456
|
name: z.ZodString;
|
|
9362
|
-
idField: z.ZodString
|
|
9457
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
9458
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
9363
9459
|
}, "strip", z.ZodTypeAny, {
|
|
9364
9460
|
type: "projection";
|
|
9365
9461
|
name: string;
|
|
9366
|
-
|
|
9462
|
+
singleton?: boolean | undefined;
|
|
9463
|
+
idField?: string | string[] | undefined;
|
|
9367
9464
|
}, {
|
|
9368
9465
|
type: "projection";
|
|
9369
9466
|
name: string;
|
|
9370
|
-
|
|
9467
|
+
singleton?: boolean | undefined;
|
|
9468
|
+
idField?: string | string[] | undefined;
|
|
9371
9469
|
}>, z.ZodObject<{
|
|
9372
9470
|
type: z.ZodLiteral<"readModel">;
|
|
9373
9471
|
name: z.ZodString;
|
|
@@ -9422,7 +9520,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9422
9520
|
origin: {
|
|
9423
9521
|
type: "projection";
|
|
9424
9522
|
name: string;
|
|
9425
|
-
|
|
9523
|
+
singleton?: boolean | undefined;
|
|
9524
|
+
idField?: string | string[] | undefined;
|
|
9426
9525
|
} | {
|
|
9427
9526
|
type: "readModel";
|
|
9428
9527
|
name: string;
|
|
@@ -9449,7 +9548,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9449
9548
|
origin: {
|
|
9450
9549
|
type: "projection";
|
|
9451
9550
|
name: string;
|
|
9452
|
-
|
|
9551
|
+
singleton?: boolean | undefined;
|
|
9552
|
+
idField?: string | string[] | undefined;
|
|
9453
9553
|
} | {
|
|
9454
9554
|
type: "readModel";
|
|
9455
9555
|
name: string;
|
|
@@ -9502,7 +9602,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9502
9602
|
origin: {
|
|
9503
9603
|
type: "projection";
|
|
9504
9604
|
name: string;
|
|
9505
|
-
|
|
9605
|
+
singleton?: boolean | undefined;
|
|
9606
|
+
idField?: string | string[] | undefined;
|
|
9506
9607
|
} | {
|
|
9507
9608
|
type: "readModel";
|
|
9508
9609
|
name: string;
|
|
@@ -9555,7 +9656,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9555
9656
|
origin: {
|
|
9556
9657
|
type: "projection";
|
|
9557
9658
|
name: string;
|
|
9558
|
-
|
|
9659
|
+
singleton?: boolean | undefined;
|
|
9660
|
+
idField?: string | string[] | undefined;
|
|
9559
9661
|
} | {
|
|
9560
9662
|
type: "readModel";
|
|
9561
9663
|
name: string;
|
|
@@ -10079,7 +10181,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10079
10181
|
origin: {
|
|
10080
10182
|
type: "projection";
|
|
10081
10183
|
name: string;
|
|
10082
|
-
|
|
10184
|
+
singleton?: boolean | undefined;
|
|
10185
|
+
idField?: string | string[] | undefined;
|
|
10083
10186
|
} | {
|
|
10084
10187
|
type: "readModel";
|
|
10085
10188
|
name: string;
|
|
@@ -10187,7 +10290,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10187
10290
|
origin: {
|
|
10188
10291
|
type: "projection";
|
|
10189
10292
|
name: string;
|
|
10190
|
-
|
|
10293
|
+
singleton?: boolean | undefined;
|
|
10294
|
+
idField?: string | string[] | undefined;
|
|
10191
10295
|
} | {
|
|
10192
10296
|
type: "readModel";
|
|
10193
10297
|
name: string;
|
|
@@ -10306,7 +10410,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10306
10410
|
origin: {
|
|
10307
10411
|
type: "projection";
|
|
10308
10412
|
name: string;
|
|
10309
|
-
|
|
10413
|
+
singleton?: boolean | undefined;
|
|
10414
|
+
idField?: string | string[] | undefined;
|
|
10310
10415
|
} | {
|
|
10311
10416
|
type: "readModel";
|
|
10312
10417
|
name: string;
|
|
@@ -10431,7 +10536,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10431
10536
|
origin: {
|
|
10432
10537
|
type: "projection";
|
|
10433
10538
|
name: string;
|
|
10434
|
-
|
|
10539
|
+
singleton?: boolean | undefined;
|
|
10540
|
+
idField?: string | string[] | undefined;
|
|
10435
10541
|
} | {
|
|
10436
10542
|
type: "readModel";
|
|
10437
10543
|
name: string;
|
|
@@ -10512,15 +10618,18 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10512
10618
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10513
10619
|
type: z.ZodLiteral<"projection">;
|
|
10514
10620
|
name: z.ZodString;
|
|
10515
|
-
idField: z.ZodString
|
|
10621
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
10622
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
10516
10623
|
}, "strip", z.ZodTypeAny, {
|
|
10517
10624
|
type: "projection";
|
|
10518
10625
|
name: string;
|
|
10519
|
-
|
|
10626
|
+
singleton?: boolean | undefined;
|
|
10627
|
+
idField?: string | string[] | undefined;
|
|
10520
10628
|
}, {
|
|
10521
10629
|
type: "projection";
|
|
10522
10630
|
name: string;
|
|
10523
|
-
|
|
10631
|
+
singleton?: boolean | undefined;
|
|
10632
|
+
idField?: string | string[] | undefined;
|
|
10524
10633
|
}>, z.ZodObject<{
|
|
10525
10634
|
type: z.ZodLiteral<"readModel">;
|
|
10526
10635
|
name: z.ZodString;
|
|
@@ -10575,7 +10684,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10575
10684
|
origin: {
|
|
10576
10685
|
type: "projection";
|
|
10577
10686
|
name: string;
|
|
10578
|
-
|
|
10687
|
+
singleton?: boolean | undefined;
|
|
10688
|
+
idField?: string | string[] | undefined;
|
|
10579
10689
|
} | {
|
|
10580
10690
|
type: "readModel";
|
|
10581
10691
|
name: string;
|
|
@@ -10602,7 +10712,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
10602
10712
|
origin: {
|
|
10603
10713
|
type: "projection";
|
|
10604
10714
|
name: string;
|
|
10605
|
-
|
|
10715
|
+
singleton?: boolean | undefined;
|
|
10716
|
+
idField?: string | string[] | undefined;
|
|
10606
10717
|
} | {
|
|
10607
10718
|
type: "readModel";
|
|
10608
10719
|
name: string;
|
|
@@ -11100,7 +11211,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11100
11211
|
origin: {
|
|
11101
11212
|
type: "projection";
|
|
11102
11213
|
name: string;
|
|
11103
|
-
|
|
11214
|
+
singleton?: boolean | undefined;
|
|
11215
|
+
idField?: string | string[] | undefined;
|
|
11104
11216
|
} | {
|
|
11105
11217
|
type: "readModel";
|
|
11106
11218
|
name: string;
|
|
@@ -11182,7 +11294,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11182
11294
|
origin: {
|
|
11183
11295
|
type: "projection";
|
|
11184
11296
|
name: string;
|
|
11185
|
-
|
|
11297
|
+
singleton?: boolean | undefined;
|
|
11298
|
+
idField?: string | string[] | undefined;
|
|
11186
11299
|
} | {
|
|
11187
11300
|
type: "readModel";
|
|
11188
11301
|
name: string;
|
|
@@ -11275,7 +11388,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11275
11388
|
origin: {
|
|
11276
11389
|
type: "projection";
|
|
11277
11390
|
name: string;
|
|
11278
|
-
|
|
11391
|
+
singleton?: boolean | undefined;
|
|
11392
|
+
idField?: string | string[] | undefined;
|
|
11279
11393
|
} | {
|
|
11280
11394
|
type: "readModel";
|
|
11281
11395
|
name: string;
|
|
@@ -11374,7 +11488,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11374
11488
|
origin: {
|
|
11375
11489
|
type: "projection";
|
|
11376
11490
|
name: string;
|
|
11377
|
-
|
|
11491
|
+
singleton?: boolean | undefined;
|
|
11492
|
+
idField?: string | string[] | undefined;
|
|
11378
11493
|
} | {
|
|
11379
11494
|
type: "readModel";
|
|
11380
11495
|
name: string;
|
|
@@ -11499,15 +11614,18 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11499
11614
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11500
11615
|
type: z.ZodLiteral<"projection">;
|
|
11501
11616
|
name: z.ZodString;
|
|
11502
|
-
idField: z.ZodString
|
|
11617
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
11618
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
11503
11619
|
}, "strip", z.ZodTypeAny, {
|
|
11504
11620
|
type: "projection";
|
|
11505
11621
|
name: string;
|
|
11506
|
-
|
|
11622
|
+
singleton?: boolean | undefined;
|
|
11623
|
+
idField?: string | string[] | undefined;
|
|
11507
11624
|
}, {
|
|
11508
11625
|
type: "projection";
|
|
11509
11626
|
name: string;
|
|
11510
|
-
|
|
11627
|
+
singleton?: boolean | undefined;
|
|
11628
|
+
idField?: string | string[] | undefined;
|
|
11511
11629
|
}>, z.ZodObject<{
|
|
11512
11630
|
type: z.ZodLiteral<"readModel">;
|
|
11513
11631
|
name: z.ZodString;
|
|
@@ -11562,7 +11680,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11562
11680
|
origin: {
|
|
11563
11681
|
type: "projection";
|
|
11564
11682
|
name: string;
|
|
11565
|
-
|
|
11683
|
+
singleton?: boolean | undefined;
|
|
11684
|
+
idField?: string | string[] | undefined;
|
|
11566
11685
|
} | {
|
|
11567
11686
|
type: "readModel";
|
|
11568
11687
|
name: string;
|
|
@@ -11589,7 +11708,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11589
11708
|
origin: {
|
|
11590
11709
|
type: "projection";
|
|
11591
11710
|
name: string;
|
|
11592
|
-
|
|
11711
|
+
singleton?: boolean | undefined;
|
|
11712
|
+
idField?: string | string[] | undefined;
|
|
11593
11713
|
} | {
|
|
11594
11714
|
type: "readModel";
|
|
11595
11715
|
name: string;
|
|
@@ -11642,7 +11762,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11642
11762
|
origin: {
|
|
11643
11763
|
type: "projection";
|
|
11644
11764
|
name: string;
|
|
11645
|
-
|
|
11765
|
+
singleton?: boolean | undefined;
|
|
11766
|
+
idField?: string | string[] | undefined;
|
|
11646
11767
|
} | {
|
|
11647
11768
|
type: "readModel";
|
|
11648
11769
|
name: string;
|
|
@@ -11695,7 +11816,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11695
11816
|
origin: {
|
|
11696
11817
|
type: "projection";
|
|
11697
11818
|
name: string;
|
|
11698
|
-
|
|
11819
|
+
singleton?: boolean | undefined;
|
|
11820
|
+
idField?: string | string[] | undefined;
|
|
11699
11821
|
} | {
|
|
11700
11822
|
type: "readModel";
|
|
11701
11823
|
name: string;
|
|
@@ -11731,15 +11853,18 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11731
11853
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11732
11854
|
type: z.ZodLiteral<"projection">;
|
|
11733
11855
|
name: z.ZodString;
|
|
11734
|
-
idField: z.ZodString
|
|
11856
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
11857
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
11735
11858
|
}, "strip", z.ZodTypeAny, {
|
|
11736
11859
|
type: "projection";
|
|
11737
11860
|
name: string;
|
|
11738
|
-
|
|
11861
|
+
singleton?: boolean | undefined;
|
|
11862
|
+
idField?: string | string[] | undefined;
|
|
11739
11863
|
}, {
|
|
11740
11864
|
type: "projection";
|
|
11741
11865
|
name: string;
|
|
11742
|
-
|
|
11866
|
+
singleton?: boolean | undefined;
|
|
11867
|
+
idField?: string | string[] | undefined;
|
|
11743
11868
|
}>, z.ZodObject<{
|
|
11744
11869
|
type: z.ZodLiteral<"readModel">;
|
|
11745
11870
|
name: z.ZodString;
|
|
@@ -11794,7 +11919,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11794
11919
|
origin: {
|
|
11795
11920
|
type: "projection";
|
|
11796
11921
|
name: string;
|
|
11797
|
-
|
|
11922
|
+
singleton?: boolean | undefined;
|
|
11923
|
+
idField?: string | string[] | undefined;
|
|
11798
11924
|
} | {
|
|
11799
11925
|
type: "readModel";
|
|
11800
11926
|
name: string;
|
|
@@ -11821,7 +11947,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
11821
11947
|
origin: {
|
|
11822
11948
|
type: "projection";
|
|
11823
11949
|
name: string;
|
|
11824
|
-
|
|
11950
|
+
singleton?: boolean | undefined;
|
|
11951
|
+
idField?: string | string[] | undefined;
|
|
11825
11952
|
} | {
|
|
11826
11953
|
type: "readModel";
|
|
11827
11954
|
name: string;
|
|
@@ -12318,7 +12445,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12318
12445
|
origin: {
|
|
12319
12446
|
type: "projection";
|
|
12320
12447
|
name: string;
|
|
12321
|
-
|
|
12448
|
+
singleton?: boolean | undefined;
|
|
12449
|
+
idField?: string | string[] | undefined;
|
|
12322
12450
|
} | {
|
|
12323
12451
|
type: "readModel";
|
|
12324
12452
|
name: string;
|
|
@@ -12370,7 +12498,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12370
12498
|
origin: {
|
|
12371
12499
|
type: "projection";
|
|
12372
12500
|
name: string;
|
|
12373
|
-
|
|
12501
|
+
singleton?: boolean | undefined;
|
|
12502
|
+
idField?: string | string[] | undefined;
|
|
12374
12503
|
} | {
|
|
12375
12504
|
type: "readModel";
|
|
12376
12505
|
name: string;
|
|
@@ -12453,7 +12582,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12453
12582
|
origin: {
|
|
12454
12583
|
type: "projection";
|
|
12455
12584
|
name: string;
|
|
12456
|
-
|
|
12585
|
+
singleton?: boolean | undefined;
|
|
12586
|
+
idField?: string | string[] | undefined;
|
|
12457
12587
|
} | {
|
|
12458
12588
|
type: "readModel";
|
|
12459
12589
|
name: string;
|
|
@@ -12505,7 +12635,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12505
12635
|
origin: {
|
|
12506
12636
|
type: "projection";
|
|
12507
12637
|
name: string;
|
|
12508
|
-
|
|
12638
|
+
singleton?: boolean | undefined;
|
|
12639
|
+
idField?: string | string[] | undefined;
|
|
12509
12640
|
} | {
|
|
12510
12641
|
type: "readModel";
|
|
12511
12642
|
name: string;
|
|
@@ -12592,7 +12723,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12592
12723
|
origin: {
|
|
12593
12724
|
type: "projection";
|
|
12594
12725
|
name: string;
|
|
12595
|
-
|
|
12726
|
+
singleton?: boolean | undefined;
|
|
12727
|
+
idField?: string | string[] | undefined;
|
|
12596
12728
|
} | {
|
|
12597
12729
|
type: "readModel";
|
|
12598
12730
|
name: string;
|
|
@@ -12644,7 +12776,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12644
12776
|
origin: {
|
|
12645
12777
|
type: "projection";
|
|
12646
12778
|
name: string;
|
|
12647
|
-
|
|
12779
|
+
singleton?: boolean | undefined;
|
|
12780
|
+
idField?: string | string[] | undefined;
|
|
12648
12781
|
} | {
|
|
12649
12782
|
type: "readModel";
|
|
12650
12783
|
name: string;
|
|
@@ -12736,7 +12869,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12736
12869
|
origin: {
|
|
12737
12870
|
type: "projection";
|
|
12738
12871
|
name: string;
|
|
12739
|
-
|
|
12872
|
+
singleton?: boolean | undefined;
|
|
12873
|
+
idField?: string | string[] | undefined;
|
|
12740
12874
|
} | {
|
|
12741
12875
|
type: "readModel";
|
|
12742
12876
|
name: string;
|
|
@@ -12788,7 +12922,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12788
12922
|
origin: {
|
|
12789
12923
|
type: "projection";
|
|
12790
12924
|
name: string;
|
|
12791
|
-
|
|
12925
|
+
singleton?: boolean | undefined;
|
|
12926
|
+
idField?: string | string[] | undefined;
|
|
12792
12927
|
} | {
|
|
12793
12928
|
type: "readModel";
|
|
12794
12929
|
name: string;
|
|
@@ -12981,7 +13116,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
12981
13116
|
origin: {
|
|
12982
13117
|
type: "projection";
|
|
12983
13118
|
name: string;
|
|
12984
|
-
|
|
13119
|
+
singleton?: boolean | undefined;
|
|
13120
|
+
idField?: string | string[] | undefined;
|
|
12985
13121
|
} | {
|
|
12986
13122
|
type: "readModel";
|
|
12987
13123
|
name: string;
|
|
@@ -13081,7 +13217,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13081
13217
|
origin: {
|
|
13082
13218
|
type: "projection";
|
|
13083
13219
|
name: string;
|
|
13084
|
-
|
|
13220
|
+
singleton?: boolean | undefined;
|
|
13221
|
+
idField?: string | string[] | undefined;
|
|
13085
13222
|
} | {
|
|
13086
13223
|
type: "readModel";
|
|
13087
13224
|
name: string;
|
|
@@ -13172,7 +13309,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13172
13309
|
origin: {
|
|
13173
13310
|
type: "projection";
|
|
13174
13311
|
name: string;
|
|
13175
|
-
|
|
13312
|
+
singleton?: boolean | undefined;
|
|
13313
|
+
idField?: string | string[] | undefined;
|
|
13176
13314
|
} | {
|
|
13177
13315
|
type: "readModel";
|
|
13178
13316
|
name: string;
|
|
@@ -13224,7 +13362,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13224
13362
|
origin: {
|
|
13225
13363
|
type: "projection";
|
|
13226
13364
|
name: string;
|
|
13227
|
-
|
|
13365
|
+
singleton?: boolean | undefined;
|
|
13366
|
+
idField?: string | string[] | undefined;
|
|
13228
13367
|
} | {
|
|
13229
13368
|
type: "readModel";
|
|
13230
13369
|
name: string;
|
|
@@ -13370,7 +13509,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13370
13509
|
origin: {
|
|
13371
13510
|
type: "projection";
|
|
13372
13511
|
name: string;
|
|
13373
|
-
|
|
13512
|
+
singleton?: boolean | undefined;
|
|
13513
|
+
idField?: string | string[] | undefined;
|
|
13374
13514
|
} | {
|
|
13375
13515
|
type: "readModel";
|
|
13376
13516
|
name: string;
|
|
@@ -13470,7 +13610,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13470
13610
|
origin: {
|
|
13471
13611
|
type: "projection";
|
|
13472
13612
|
name: string;
|
|
13473
|
-
|
|
13613
|
+
singleton?: boolean | undefined;
|
|
13614
|
+
idField?: string | string[] | undefined;
|
|
13474
13615
|
} | {
|
|
13475
13616
|
type: "readModel";
|
|
13476
13617
|
name: string;
|
|
@@ -13561,7 +13702,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13561
13702
|
origin: {
|
|
13562
13703
|
type: "projection";
|
|
13563
13704
|
name: string;
|
|
13564
|
-
|
|
13705
|
+
singleton?: boolean | undefined;
|
|
13706
|
+
idField?: string | string[] | undefined;
|
|
13565
13707
|
} | {
|
|
13566
13708
|
type: "readModel";
|
|
13567
13709
|
name: string;
|
|
@@ -13613,7 +13755,8 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
13613
13755
|
origin: {
|
|
13614
13756
|
type: "projection";
|
|
13615
13757
|
name: string;
|
|
13616
|
-
|
|
13758
|
+
singleton?: boolean | undefined;
|
|
13759
|
+
idField?: string | string[] | undefined;
|
|
13617
13760
|
} | {
|
|
13618
13761
|
type: "readModel";
|
|
13619
13762
|
name: string;
|
|
@@ -14011,15 +14154,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14011
14154
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
14012
14155
|
type: z.ZodLiteral<"projection">;
|
|
14013
14156
|
name: z.ZodString;
|
|
14014
|
-
idField: z.ZodString
|
|
14157
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
14158
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
14015
14159
|
}, "strip", z.ZodTypeAny, {
|
|
14016
14160
|
type: "projection";
|
|
14017
14161
|
name: string;
|
|
14018
|
-
|
|
14162
|
+
singleton?: boolean | undefined;
|
|
14163
|
+
idField?: string | string[] | undefined;
|
|
14019
14164
|
}, {
|
|
14020
14165
|
type: "projection";
|
|
14021
14166
|
name: string;
|
|
14022
|
-
|
|
14167
|
+
singleton?: boolean | undefined;
|
|
14168
|
+
idField?: string | string[] | undefined;
|
|
14023
14169
|
}>, z.ZodObject<{
|
|
14024
14170
|
type: z.ZodLiteral<"readModel">;
|
|
14025
14171
|
name: z.ZodString;
|
|
@@ -14074,7 +14220,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14074
14220
|
origin: {
|
|
14075
14221
|
type: "projection";
|
|
14076
14222
|
name: string;
|
|
14077
|
-
|
|
14223
|
+
singleton?: boolean | undefined;
|
|
14224
|
+
idField?: string | string[] | undefined;
|
|
14078
14225
|
} | {
|
|
14079
14226
|
type: "readModel";
|
|
14080
14227
|
name: string;
|
|
@@ -14101,7 +14248,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14101
14248
|
origin: {
|
|
14102
14249
|
type: "projection";
|
|
14103
14250
|
name: string;
|
|
14104
|
-
|
|
14251
|
+
singleton?: boolean | undefined;
|
|
14252
|
+
idField?: string | string[] | undefined;
|
|
14105
14253
|
} | {
|
|
14106
14254
|
type: "readModel";
|
|
14107
14255
|
name: string;
|
|
@@ -14154,7 +14302,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14154
14302
|
origin: {
|
|
14155
14303
|
type: "projection";
|
|
14156
14304
|
name: string;
|
|
14157
|
-
|
|
14305
|
+
singleton?: boolean | undefined;
|
|
14306
|
+
idField?: string | string[] | undefined;
|
|
14158
14307
|
} | {
|
|
14159
14308
|
type: "readModel";
|
|
14160
14309
|
name: string;
|
|
@@ -14207,7 +14356,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14207
14356
|
origin: {
|
|
14208
14357
|
type: "projection";
|
|
14209
14358
|
name: string;
|
|
14210
|
-
|
|
14359
|
+
singleton?: boolean | undefined;
|
|
14360
|
+
idField?: string | string[] | undefined;
|
|
14211
14361
|
} | {
|
|
14212
14362
|
type: "readModel";
|
|
14213
14363
|
name: string;
|
|
@@ -14731,7 +14881,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14731
14881
|
origin: {
|
|
14732
14882
|
type: "projection";
|
|
14733
14883
|
name: string;
|
|
14734
|
-
|
|
14884
|
+
singleton?: boolean | undefined;
|
|
14885
|
+
idField?: string | string[] | undefined;
|
|
14735
14886
|
} | {
|
|
14736
14887
|
type: "readModel";
|
|
14737
14888
|
name: string;
|
|
@@ -14839,7 +14990,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14839
14990
|
origin: {
|
|
14840
14991
|
type: "projection";
|
|
14841
14992
|
name: string;
|
|
14842
|
-
|
|
14993
|
+
singleton?: boolean | undefined;
|
|
14994
|
+
idField?: string | string[] | undefined;
|
|
14843
14995
|
} | {
|
|
14844
14996
|
type: "readModel";
|
|
14845
14997
|
name: string;
|
|
@@ -14958,7 +15110,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14958
15110
|
origin: {
|
|
14959
15111
|
type: "projection";
|
|
14960
15112
|
name: string;
|
|
14961
|
-
|
|
15113
|
+
singleton?: boolean | undefined;
|
|
15114
|
+
idField?: string | string[] | undefined;
|
|
14962
15115
|
} | {
|
|
14963
15116
|
type: "readModel";
|
|
14964
15117
|
name: string;
|
|
@@ -15083,7 +15236,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15083
15236
|
origin: {
|
|
15084
15237
|
type: "projection";
|
|
15085
15238
|
name: string;
|
|
15086
|
-
|
|
15239
|
+
singleton?: boolean | undefined;
|
|
15240
|
+
idField?: string | string[] | undefined;
|
|
15087
15241
|
} | {
|
|
15088
15242
|
type: "readModel";
|
|
15089
15243
|
name: string;
|
|
@@ -15164,15 +15318,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15164
15318
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
15165
15319
|
type: z.ZodLiteral<"projection">;
|
|
15166
15320
|
name: z.ZodString;
|
|
15167
|
-
idField: z.ZodString
|
|
15321
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
15322
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
15168
15323
|
}, "strip", z.ZodTypeAny, {
|
|
15169
15324
|
type: "projection";
|
|
15170
15325
|
name: string;
|
|
15171
|
-
|
|
15326
|
+
singleton?: boolean | undefined;
|
|
15327
|
+
idField?: string | string[] | undefined;
|
|
15172
15328
|
}, {
|
|
15173
15329
|
type: "projection";
|
|
15174
15330
|
name: string;
|
|
15175
|
-
|
|
15331
|
+
singleton?: boolean | undefined;
|
|
15332
|
+
idField?: string | string[] | undefined;
|
|
15176
15333
|
}>, z.ZodObject<{
|
|
15177
15334
|
type: z.ZodLiteral<"readModel">;
|
|
15178
15335
|
name: z.ZodString;
|
|
@@ -15227,7 +15384,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15227
15384
|
origin: {
|
|
15228
15385
|
type: "projection";
|
|
15229
15386
|
name: string;
|
|
15230
|
-
|
|
15387
|
+
singleton?: boolean | undefined;
|
|
15388
|
+
idField?: string | string[] | undefined;
|
|
15231
15389
|
} | {
|
|
15232
15390
|
type: "readModel";
|
|
15233
15391
|
name: string;
|
|
@@ -15254,7 +15412,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15254
15412
|
origin: {
|
|
15255
15413
|
type: "projection";
|
|
15256
15414
|
name: string;
|
|
15257
|
-
|
|
15415
|
+
singleton?: boolean | undefined;
|
|
15416
|
+
idField?: string | string[] | undefined;
|
|
15258
15417
|
} | {
|
|
15259
15418
|
type: "readModel";
|
|
15260
15419
|
name: string;
|
|
@@ -15752,7 +15911,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15752
15911
|
origin: {
|
|
15753
15912
|
type: "projection";
|
|
15754
15913
|
name: string;
|
|
15755
|
-
|
|
15914
|
+
singleton?: boolean | undefined;
|
|
15915
|
+
idField?: string | string[] | undefined;
|
|
15756
15916
|
} | {
|
|
15757
15917
|
type: "readModel";
|
|
15758
15918
|
name: string;
|
|
@@ -15834,7 +15994,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15834
15994
|
origin: {
|
|
15835
15995
|
type: "projection";
|
|
15836
15996
|
name: string;
|
|
15837
|
-
|
|
15997
|
+
singleton?: boolean | undefined;
|
|
15998
|
+
idField?: string | string[] | undefined;
|
|
15838
15999
|
} | {
|
|
15839
16000
|
type: "readModel";
|
|
15840
16001
|
name: string;
|
|
@@ -15927,7 +16088,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
15927
16088
|
origin: {
|
|
15928
16089
|
type: "projection";
|
|
15929
16090
|
name: string;
|
|
15930
|
-
|
|
16091
|
+
singleton?: boolean | undefined;
|
|
16092
|
+
idField?: string | string[] | undefined;
|
|
15931
16093
|
} | {
|
|
15932
16094
|
type: "readModel";
|
|
15933
16095
|
name: string;
|
|
@@ -16026,7 +16188,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16026
16188
|
origin: {
|
|
16027
16189
|
type: "projection";
|
|
16028
16190
|
name: string;
|
|
16029
|
-
|
|
16191
|
+
singleton?: boolean | undefined;
|
|
16192
|
+
idField?: string | string[] | undefined;
|
|
16030
16193
|
} | {
|
|
16031
16194
|
type: "readModel";
|
|
16032
16195
|
name: string;
|
|
@@ -16151,15 +16314,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16151
16314
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
16152
16315
|
type: z.ZodLiteral<"projection">;
|
|
16153
16316
|
name: z.ZodString;
|
|
16154
|
-
idField: z.ZodString
|
|
16317
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
16318
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
16155
16319
|
}, "strip", z.ZodTypeAny, {
|
|
16156
16320
|
type: "projection";
|
|
16157
16321
|
name: string;
|
|
16158
|
-
|
|
16322
|
+
singleton?: boolean | undefined;
|
|
16323
|
+
idField?: string | string[] | undefined;
|
|
16159
16324
|
}, {
|
|
16160
16325
|
type: "projection";
|
|
16161
16326
|
name: string;
|
|
16162
|
-
|
|
16327
|
+
singleton?: boolean | undefined;
|
|
16328
|
+
idField?: string | string[] | undefined;
|
|
16163
16329
|
}>, z.ZodObject<{
|
|
16164
16330
|
type: z.ZodLiteral<"readModel">;
|
|
16165
16331
|
name: z.ZodString;
|
|
@@ -16214,7 +16380,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16214
16380
|
origin: {
|
|
16215
16381
|
type: "projection";
|
|
16216
16382
|
name: string;
|
|
16217
|
-
|
|
16383
|
+
singleton?: boolean | undefined;
|
|
16384
|
+
idField?: string | string[] | undefined;
|
|
16218
16385
|
} | {
|
|
16219
16386
|
type: "readModel";
|
|
16220
16387
|
name: string;
|
|
@@ -16241,7 +16408,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16241
16408
|
origin: {
|
|
16242
16409
|
type: "projection";
|
|
16243
16410
|
name: string;
|
|
16244
|
-
|
|
16411
|
+
singleton?: boolean | undefined;
|
|
16412
|
+
idField?: string | string[] | undefined;
|
|
16245
16413
|
} | {
|
|
16246
16414
|
type: "readModel";
|
|
16247
16415
|
name: string;
|
|
@@ -16294,7 +16462,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16294
16462
|
origin: {
|
|
16295
16463
|
type: "projection";
|
|
16296
16464
|
name: string;
|
|
16297
|
-
|
|
16465
|
+
singleton?: boolean | undefined;
|
|
16466
|
+
idField?: string | string[] | undefined;
|
|
16298
16467
|
} | {
|
|
16299
16468
|
type: "readModel";
|
|
16300
16469
|
name: string;
|
|
@@ -16347,7 +16516,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16347
16516
|
origin: {
|
|
16348
16517
|
type: "projection";
|
|
16349
16518
|
name: string;
|
|
16350
|
-
|
|
16519
|
+
singleton?: boolean | undefined;
|
|
16520
|
+
idField?: string | string[] | undefined;
|
|
16351
16521
|
} | {
|
|
16352
16522
|
type: "readModel";
|
|
16353
16523
|
name: string;
|
|
@@ -16383,15 +16553,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16383
16553
|
origin: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
16384
16554
|
type: z.ZodLiteral<"projection">;
|
|
16385
16555
|
name: z.ZodString;
|
|
16386
|
-
idField: z.ZodString
|
|
16556
|
+
idField: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
16557
|
+
singleton: z.ZodOptional<z.ZodBoolean>;
|
|
16387
16558
|
}, "strip", z.ZodTypeAny, {
|
|
16388
16559
|
type: "projection";
|
|
16389
16560
|
name: string;
|
|
16390
|
-
|
|
16561
|
+
singleton?: boolean | undefined;
|
|
16562
|
+
idField?: string | string[] | undefined;
|
|
16391
16563
|
}, {
|
|
16392
16564
|
type: "projection";
|
|
16393
16565
|
name: string;
|
|
16394
|
-
|
|
16566
|
+
singleton?: boolean | undefined;
|
|
16567
|
+
idField?: string | string[] | undefined;
|
|
16395
16568
|
}>, z.ZodObject<{
|
|
16396
16569
|
type: z.ZodLiteral<"readModel">;
|
|
16397
16570
|
name: z.ZodString;
|
|
@@ -16446,7 +16619,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16446
16619
|
origin: {
|
|
16447
16620
|
type: "projection";
|
|
16448
16621
|
name: string;
|
|
16449
|
-
|
|
16622
|
+
singleton?: boolean | undefined;
|
|
16623
|
+
idField?: string | string[] | undefined;
|
|
16450
16624
|
} | {
|
|
16451
16625
|
type: "readModel";
|
|
16452
16626
|
name: string;
|
|
@@ -16473,7 +16647,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16473
16647
|
origin: {
|
|
16474
16648
|
type: "projection";
|
|
16475
16649
|
name: string;
|
|
16476
|
-
|
|
16650
|
+
singleton?: boolean | undefined;
|
|
16651
|
+
idField?: string | string[] | undefined;
|
|
16477
16652
|
} | {
|
|
16478
16653
|
type: "readModel";
|
|
16479
16654
|
name: string;
|
|
@@ -16970,7 +17145,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
16970
17145
|
origin: {
|
|
16971
17146
|
type: "projection";
|
|
16972
17147
|
name: string;
|
|
16973
|
-
|
|
17148
|
+
singleton?: boolean | undefined;
|
|
17149
|
+
idField?: string | string[] | undefined;
|
|
16974
17150
|
} | {
|
|
16975
17151
|
type: "readModel";
|
|
16976
17152
|
name: string;
|
|
@@ -17022,7 +17198,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17022
17198
|
origin: {
|
|
17023
17199
|
type: "projection";
|
|
17024
17200
|
name: string;
|
|
17025
|
-
|
|
17201
|
+
singleton?: boolean | undefined;
|
|
17202
|
+
idField?: string | string[] | undefined;
|
|
17026
17203
|
} | {
|
|
17027
17204
|
type: "readModel";
|
|
17028
17205
|
name: string;
|
|
@@ -17105,7 +17282,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17105
17282
|
origin: {
|
|
17106
17283
|
type: "projection";
|
|
17107
17284
|
name: string;
|
|
17108
|
-
|
|
17285
|
+
singleton?: boolean | undefined;
|
|
17286
|
+
idField?: string | string[] | undefined;
|
|
17109
17287
|
} | {
|
|
17110
17288
|
type: "readModel";
|
|
17111
17289
|
name: string;
|
|
@@ -17157,7 +17335,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17157
17335
|
origin: {
|
|
17158
17336
|
type: "projection";
|
|
17159
17337
|
name: string;
|
|
17160
|
-
|
|
17338
|
+
singleton?: boolean | undefined;
|
|
17339
|
+
idField?: string | string[] | undefined;
|
|
17161
17340
|
} | {
|
|
17162
17341
|
type: "readModel";
|
|
17163
17342
|
name: string;
|
|
@@ -17244,7 +17423,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17244
17423
|
origin: {
|
|
17245
17424
|
type: "projection";
|
|
17246
17425
|
name: string;
|
|
17247
|
-
|
|
17426
|
+
singleton?: boolean | undefined;
|
|
17427
|
+
idField?: string | string[] | undefined;
|
|
17248
17428
|
} | {
|
|
17249
17429
|
type: "readModel";
|
|
17250
17430
|
name: string;
|
|
@@ -17296,7 +17476,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17296
17476
|
origin: {
|
|
17297
17477
|
type: "projection";
|
|
17298
17478
|
name: string;
|
|
17299
|
-
|
|
17479
|
+
singleton?: boolean | undefined;
|
|
17480
|
+
idField?: string | string[] | undefined;
|
|
17300
17481
|
} | {
|
|
17301
17482
|
type: "readModel";
|
|
17302
17483
|
name: string;
|
|
@@ -17388,7 +17569,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17388
17569
|
origin: {
|
|
17389
17570
|
type: "projection";
|
|
17390
17571
|
name: string;
|
|
17391
|
-
|
|
17572
|
+
singleton?: boolean | undefined;
|
|
17573
|
+
idField?: string | string[] | undefined;
|
|
17392
17574
|
} | {
|
|
17393
17575
|
type: "readModel";
|
|
17394
17576
|
name: string;
|
|
@@ -17440,7 +17622,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17440
17622
|
origin: {
|
|
17441
17623
|
type: "projection";
|
|
17442
17624
|
name: string;
|
|
17443
|
-
|
|
17625
|
+
singleton?: boolean | undefined;
|
|
17626
|
+
idField?: string | string[] | undefined;
|
|
17444
17627
|
} | {
|
|
17445
17628
|
type: "readModel";
|
|
17446
17629
|
name: string;
|
|
@@ -17633,7 +17816,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17633
17816
|
origin: {
|
|
17634
17817
|
type: "projection";
|
|
17635
17818
|
name: string;
|
|
17636
|
-
|
|
17819
|
+
singleton?: boolean | undefined;
|
|
17820
|
+
idField?: string | string[] | undefined;
|
|
17637
17821
|
} | {
|
|
17638
17822
|
type: "readModel";
|
|
17639
17823
|
name: string;
|
|
@@ -17733,7 +17917,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17733
17917
|
origin: {
|
|
17734
17918
|
type: "projection";
|
|
17735
17919
|
name: string;
|
|
17736
|
-
|
|
17920
|
+
singleton?: boolean | undefined;
|
|
17921
|
+
idField?: string | string[] | undefined;
|
|
17737
17922
|
} | {
|
|
17738
17923
|
type: "readModel";
|
|
17739
17924
|
name: string;
|
|
@@ -17824,7 +18009,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17824
18009
|
origin: {
|
|
17825
18010
|
type: "projection";
|
|
17826
18011
|
name: string;
|
|
17827
|
-
|
|
18012
|
+
singleton?: boolean | undefined;
|
|
18013
|
+
idField?: string | string[] | undefined;
|
|
17828
18014
|
} | {
|
|
17829
18015
|
type: "readModel";
|
|
17830
18016
|
name: string;
|
|
@@ -17876,7 +18062,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
17876
18062
|
origin: {
|
|
17877
18063
|
type: "projection";
|
|
17878
18064
|
name: string;
|
|
17879
|
-
|
|
18065
|
+
singleton?: boolean | undefined;
|
|
18066
|
+
idField?: string | string[] | undefined;
|
|
17880
18067
|
} | {
|
|
17881
18068
|
type: "readModel";
|
|
17882
18069
|
name: string;
|
|
@@ -18022,7 +18209,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18022
18209
|
origin: {
|
|
18023
18210
|
type: "projection";
|
|
18024
18211
|
name: string;
|
|
18025
|
-
|
|
18212
|
+
singleton?: boolean | undefined;
|
|
18213
|
+
idField?: string | string[] | undefined;
|
|
18026
18214
|
} | {
|
|
18027
18215
|
type: "readModel";
|
|
18028
18216
|
name: string;
|
|
@@ -18122,7 +18310,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18122
18310
|
origin: {
|
|
18123
18311
|
type: "projection";
|
|
18124
18312
|
name: string;
|
|
18125
|
-
|
|
18313
|
+
singleton?: boolean | undefined;
|
|
18314
|
+
idField?: string | string[] | undefined;
|
|
18126
18315
|
} | {
|
|
18127
18316
|
type: "readModel";
|
|
18128
18317
|
name: string;
|
|
@@ -18213,7 +18402,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18213
18402
|
origin: {
|
|
18214
18403
|
type: "projection";
|
|
18215
18404
|
name: string;
|
|
18216
|
-
|
|
18405
|
+
singleton?: boolean | undefined;
|
|
18406
|
+
idField?: string | string[] | undefined;
|
|
18217
18407
|
} | {
|
|
18218
18408
|
type: "readModel";
|
|
18219
18409
|
name: string;
|
|
@@ -18265,7 +18455,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18265
18455
|
origin: {
|
|
18266
18456
|
type: "projection";
|
|
18267
18457
|
name: string;
|
|
18268
|
-
|
|
18458
|
+
singleton?: boolean | undefined;
|
|
18459
|
+
idField?: string | string[] | undefined;
|
|
18269
18460
|
} | {
|
|
18270
18461
|
type: "readModel";
|
|
18271
18462
|
name: string;
|
|
@@ -18608,7 +18799,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18608
18799
|
origin: {
|
|
18609
18800
|
type: "projection";
|
|
18610
18801
|
name: string;
|
|
18611
|
-
|
|
18802
|
+
singleton?: boolean | undefined;
|
|
18803
|
+
idField?: string | string[] | undefined;
|
|
18612
18804
|
} | {
|
|
18613
18805
|
type: "readModel";
|
|
18614
18806
|
name: string;
|
|
@@ -18708,7 +18900,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18708
18900
|
origin: {
|
|
18709
18901
|
type: "projection";
|
|
18710
18902
|
name: string;
|
|
18711
|
-
|
|
18903
|
+
singleton?: boolean | undefined;
|
|
18904
|
+
idField?: string | string[] | undefined;
|
|
18712
18905
|
} | {
|
|
18713
18906
|
type: "readModel";
|
|
18714
18907
|
name: string;
|
|
@@ -18799,7 +18992,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18799
18992
|
origin: {
|
|
18800
18993
|
type: "projection";
|
|
18801
18994
|
name: string;
|
|
18802
|
-
|
|
18995
|
+
singleton?: boolean | undefined;
|
|
18996
|
+
idField?: string | string[] | undefined;
|
|
18803
18997
|
} | {
|
|
18804
18998
|
type: "readModel";
|
|
18805
18999
|
name: string;
|
|
@@ -18851,7 +19045,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18851
19045
|
origin: {
|
|
18852
19046
|
type: "projection";
|
|
18853
19047
|
name: string;
|
|
18854
|
-
|
|
19048
|
+
singleton?: boolean | undefined;
|
|
19049
|
+
idField?: string | string[] | undefined;
|
|
18855
19050
|
} | {
|
|
18856
19051
|
type: "readModel";
|
|
18857
19052
|
name: string;
|
|
@@ -19049,7 +19244,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
19049
19244
|
origin: {
|
|
19050
19245
|
type: "projection";
|
|
19051
19246
|
name: string;
|
|
19052
|
-
|
|
19247
|
+
singleton?: boolean | undefined;
|
|
19248
|
+
idField?: string | string[] | undefined;
|
|
19053
19249
|
} | {
|
|
19054
19250
|
type: "readModel";
|
|
19055
19251
|
name: string;
|
|
@@ -19149,7 +19345,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
19149
19345
|
origin: {
|
|
19150
19346
|
type: "projection";
|
|
19151
19347
|
name: string;
|
|
19152
|
-
|
|
19348
|
+
singleton?: boolean | undefined;
|
|
19349
|
+
idField?: string | string[] | undefined;
|
|
19153
19350
|
} | {
|
|
19154
19351
|
type: "readModel";
|
|
19155
19352
|
name: string;
|
|
@@ -19240,7 +19437,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
19240
19437
|
origin: {
|
|
19241
19438
|
type: "projection";
|
|
19242
19439
|
name: string;
|
|
19243
|
-
|
|
19440
|
+
singleton?: boolean | undefined;
|
|
19441
|
+
idField?: string | string[] | undefined;
|
|
19244
19442
|
} | {
|
|
19245
19443
|
type: "readModel";
|
|
19246
19444
|
name: string;
|
|
@@ -19292,7 +19490,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
19292
19490
|
origin: {
|
|
19293
19491
|
type: "projection";
|
|
19294
19492
|
name: string;
|
|
19295
|
-
|
|
19493
|
+
singleton?: boolean | undefined;
|
|
19494
|
+
idField?: string | string[] | undefined;
|
|
19296
19495
|
} | {
|
|
19297
19496
|
type: "readModel";
|
|
19298
19497
|
name: string;
|