@auto-engineer/narrative 0.19.0 → 0.19.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/src/data-narrative-builders.d.ts +13 -8
- package/dist/src/data-narrative-builders.d.ts.map +1 -1
- package/dist/src/data-narrative-builders.js +47 -20
- package/dist/src/data-narrative-builders.js.map +1 -1
- package/dist/src/id/addAutoIds.d.ts.map +1 -1
- package/dist/src/id/addAutoIds.js +18 -0
- package/dist/src/id/addAutoIds.js.map +1 -1
- package/dist/src/id/hasAllIds.d.ts.map +1 -1
- package/dist/src/id/hasAllIds.js +13 -1
- package/dist/src/id/hasAllIds.js.map +1 -1
- package/dist/src/schema.d.ts +231 -0
- package/dist/src/schema.d.ts.map +1 -1
- package/dist/src/schema.js +2 -0
- 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 +10 -5
- package/dist/src/transformers/model-to-narrative/generators/flow.js.map +1 -1
- package/dist/src/types.d.ts +2 -0
- package/dist/src/types.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/data-narrative-builders.ts +57 -20
- package/src/getNarratives.specs.ts +69 -0
- package/src/id/addAutoIds.specs.ts +268 -0
- package/src/id/addAutoIds.ts +19 -0
- package/src/id/hasAllIds.specs.ts +223 -0
- package/src/id/hasAllIds.ts +13 -1
- package/src/model-to-narrative.specs.ts +176 -0
- package/src/schema.ts +2 -0
- package/src/transformers/model-to-narrative/generators/flow.ts +16 -4
- package/src/types.ts +2 -0
package/dist/src/schema.d.ts
CHANGED
|
@@ -209,6 +209,7 @@ export declare const OriginSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
209
209
|
systems: string[];
|
|
210
210
|
}>]>;
|
|
211
211
|
declare const DataSinkSchema: z.ZodObject<{
|
|
212
|
+
id: z.ZodOptional<z.ZodString>;
|
|
212
213
|
target: z.ZodObject<{
|
|
213
214
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
214
215
|
name: z.ZodString;
|
|
@@ -280,6 +281,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
280
281
|
transform: z.ZodOptional<z.ZodString>;
|
|
281
282
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
282
283
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
284
|
+
id: z.ZodOptional<z.ZodString>;
|
|
283
285
|
target: z.ZodObject<{
|
|
284
286
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
285
287
|
name: z.ZodString;
|
|
@@ -379,6 +381,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
379
381
|
type: "integration";
|
|
380
382
|
systems: string[];
|
|
381
383
|
};
|
|
384
|
+
id?: string | undefined;
|
|
382
385
|
transform?: string | undefined;
|
|
383
386
|
_additionalInstructions?: string | undefined;
|
|
384
387
|
}, {
|
|
@@ -407,6 +410,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
407
410
|
type: "integration";
|
|
408
411
|
systems: string[];
|
|
409
412
|
};
|
|
413
|
+
id?: string | undefined;
|
|
410
414
|
transform?: string | undefined;
|
|
411
415
|
_additionalInstructions?: string | undefined;
|
|
412
416
|
}>>>;
|
|
@@ -433,6 +437,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
433
437
|
type: "topic";
|
|
434
438
|
name: string;
|
|
435
439
|
};
|
|
440
|
+
id?: string | undefined;
|
|
436
441
|
transform?: string | undefined;
|
|
437
442
|
_additionalInstructions?: string | undefined;
|
|
438
443
|
_withState?: {
|
|
@@ -461,6 +466,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
461
466
|
type: "integration";
|
|
462
467
|
systems: string[];
|
|
463
468
|
};
|
|
469
|
+
id?: string | undefined;
|
|
464
470
|
transform?: string | undefined;
|
|
465
471
|
_additionalInstructions?: string | undefined;
|
|
466
472
|
} | undefined;
|
|
@@ -487,6 +493,7 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
487
493
|
type: "topic";
|
|
488
494
|
name: string;
|
|
489
495
|
};
|
|
496
|
+
id?: string | undefined;
|
|
490
497
|
transform?: string | undefined;
|
|
491
498
|
_additionalInstructions?: string | undefined;
|
|
492
499
|
_withState?: {
|
|
@@ -515,11 +522,13 @@ declare const DataSinkSchema: z.ZodObject<{
|
|
|
515
522
|
type: "integration";
|
|
516
523
|
systems: string[];
|
|
517
524
|
};
|
|
525
|
+
id?: string | undefined;
|
|
518
526
|
transform?: string | undefined;
|
|
519
527
|
_additionalInstructions?: string | undefined;
|
|
520
528
|
} | undefined;
|
|
521
529
|
}>;
|
|
522
530
|
declare const DataSourceSchema: z.ZodObject<{
|
|
531
|
+
id: z.ZodOptional<z.ZodString>;
|
|
523
532
|
target: z.ZodObject<{
|
|
524
533
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
525
534
|
name: z.ZodString;
|
|
@@ -619,6 +628,7 @@ declare const DataSourceSchema: z.ZodObject<{
|
|
|
619
628
|
type: "integration";
|
|
620
629
|
systems: string[];
|
|
621
630
|
};
|
|
631
|
+
id?: string | undefined;
|
|
622
632
|
transform?: string | undefined;
|
|
623
633
|
_additionalInstructions?: string | undefined;
|
|
624
634
|
}, {
|
|
@@ -647,6 +657,7 @@ declare const DataSourceSchema: z.ZodObject<{
|
|
|
647
657
|
type: "integration";
|
|
648
658
|
systems: string[];
|
|
649
659
|
};
|
|
660
|
+
id?: string | undefined;
|
|
650
661
|
transform?: string | undefined;
|
|
651
662
|
_additionalInstructions?: string | undefined;
|
|
652
663
|
}>;
|
|
@@ -1542,6 +1553,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1542
1553
|
server: z.ZodObject<{
|
|
1543
1554
|
description: z.ZodString;
|
|
1544
1555
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1556
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1545
1557
|
target: z.ZodObject<{
|
|
1546
1558
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
1547
1559
|
name: z.ZodString;
|
|
@@ -1613,6 +1625,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1613
1625
|
transform: z.ZodOptional<z.ZodString>;
|
|
1614
1626
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
1615
1627
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
1628
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1616
1629
|
target: z.ZodObject<{
|
|
1617
1630
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
1618
1631
|
name: z.ZodString;
|
|
@@ -1712,6 +1725,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1712
1725
|
type: "integration";
|
|
1713
1726
|
systems: string[];
|
|
1714
1727
|
};
|
|
1728
|
+
id?: string | undefined;
|
|
1715
1729
|
transform?: string | undefined;
|
|
1716
1730
|
_additionalInstructions?: string | undefined;
|
|
1717
1731
|
}, {
|
|
@@ -1740,6 +1754,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1740
1754
|
type: "integration";
|
|
1741
1755
|
systems: string[];
|
|
1742
1756
|
};
|
|
1757
|
+
id?: string | undefined;
|
|
1743
1758
|
transform?: string | undefined;
|
|
1744
1759
|
_additionalInstructions?: string | undefined;
|
|
1745
1760
|
}>>>;
|
|
@@ -1766,6 +1781,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1766
1781
|
type: "topic";
|
|
1767
1782
|
name: string;
|
|
1768
1783
|
};
|
|
1784
|
+
id?: string | undefined;
|
|
1769
1785
|
transform?: string | undefined;
|
|
1770
1786
|
_additionalInstructions?: string | undefined;
|
|
1771
1787
|
_withState?: {
|
|
@@ -1794,6 +1810,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1794
1810
|
type: "integration";
|
|
1795
1811
|
systems: string[];
|
|
1796
1812
|
};
|
|
1813
|
+
id?: string | undefined;
|
|
1797
1814
|
transform?: string | undefined;
|
|
1798
1815
|
_additionalInstructions?: string | undefined;
|
|
1799
1816
|
} | undefined;
|
|
@@ -1820,6 +1837,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1820
1837
|
type: "topic";
|
|
1821
1838
|
name: string;
|
|
1822
1839
|
};
|
|
1840
|
+
id?: string | undefined;
|
|
1823
1841
|
transform?: string | undefined;
|
|
1824
1842
|
_additionalInstructions?: string | undefined;
|
|
1825
1843
|
_withState?: {
|
|
@@ -1848,6 +1866,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
1848
1866
|
type: "integration";
|
|
1849
1867
|
systems: string[];
|
|
1850
1868
|
};
|
|
1869
|
+
id?: string | undefined;
|
|
1851
1870
|
transform?: string | undefined;
|
|
1852
1871
|
_additionalInstructions?: string | undefined;
|
|
1853
1872
|
} | undefined;
|
|
@@ -2081,6 +2100,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2081
2100
|
type: "topic";
|
|
2082
2101
|
name: string;
|
|
2083
2102
|
};
|
|
2103
|
+
id?: string | undefined;
|
|
2084
2104
|
transform?: string | undefined;
|
|
2085
2105
|
_additionalInstructions?: string | undefined;
|
|
2086
2106
|
_withState?: {
|
|
@@ -2109,6 +2129,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2109
2129
|
type: "integration";
|
|
2110
2130
|
systems: string[];
|
|
2111
2131
|
};
|
|
2132
|
+
id?: string | undefined;
|
|
2112
2133
|
transform?: string | undefined;
|
|
2113
2134
|
_additionalInstructions?: string | undefined;
|
|
2114
2135
|
} | undefined;
|
|
@@ -2164,6 +2185,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2164
2185
|
type: "topic";
|
|
2165
2186
|
name: string;
|
|
2166
2187
|
};
|
|
2188
|
+
id?: string | undefined;
|
|
2167
2189
|
transform?: string | undefined;
|
|
2168
2190
|
_additionalInstructions?: string | undefined;
|
|
2169
2191
|
_withState?: {
|
|
@@ -2192,6 +2214,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2192
2214
|
type: "integration";
|
|
2193
2215
|
systems: string[];
|
|
2194
2216
|
};
|
|
2217
|
+
id?: string | undefined;
|
|
2195
2218
|
transform?: string | undefined;
|
|
2196
2219
|
_additionalInstructions?: string | undefined;
|
|
2197
2220
|
} | undefined;
|
|
@@ -2254,6 +2277,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2254
2277
|
type: "topic";
|
|
2255
2278
|
name: string;
|
|
2256
2279
|
};
|
|
2280
|
+
id?: string | undefined;
|
|
2257
2281
|
transform?: string | undefined;
|
|
2258
2282
|
_additionalInstructions?: string | undefined;
|
|
2259
2283
|
_withState?: {
|
|
@@ -2282,6 +2306,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2282
2306
|
type: "integration";
|
|
2283
2307
|
systems: string[];
|
|
2284
2308
|
};
|
|
2309
|
+
id?: string | undefined;
|
|
2285
2310
|
transform?: string | undefined;
|
|
2286
2311
|
_additionalInstructions?: string | undefined;
|
|
2287
2312
|
} | undefined;
|
|
@@ -2350,6 +2375,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2350
2375
|
type: "topic";
|
|
2351
2376
|
name: string;
|
|
2352
2377
|
};
|
|
2378
|
+
id?: string | undefined;
|
|
2353
2379
|
transform?: string | undefined;
|
|
2354
2380
|
_additionalInstructions?: string | undefined;
|
|
2355
2381
|
_withState?: {
|
|
@@ -2378,6 +2404,7 @@ declare const CommandSliceSchema: z.ZodObject<{
|
|
|
2378
2404
|
type: "integration";
|
|
2379
2405
|
systems: string[];
|
|
2380
2406
|
};
|
|
2407
|
+
id?: string | undefined;
|
|
2381
2408
|
transform?: string | undefined;
|
|
2382
2409
|
_additionalInstructions?: string | undefined;
|
|
2383
2410
|
} | undefined;
|
|
@@ -2410,6 +2437,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2410
2437
|
server: z.ZodObject<{
|
|
2411
2438
|
description: z.ZodString;
|
|
2412
2439
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2440
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2413
2441
|
target: z.ZodObject<{
|
|
2414
2442
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
2415
2443
|
name: z.ZodString;
|
|
@@ -2509,6 +2537,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2509
2537
|
type: "integration";
|
|
2510
2538
|
systems: string[];
|
|
2511
2539
|
};
|
|
2540
|
+
id?: string | undefined;
|
|
2512
2541
|
transform?: string | undefined;
|
|
2513
2542
|
_additionalInstructions?: string | undefined;
|
|
2514
2543
|
}, {
|
|
@@ -2537,6 +2566,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2537
2566
|
type: "integration";
|
|
2538
2567
|
systems: string[];
|
|
2539
2568
|
};
|
|
2569
|
+
id?: string | undefined;
|
|
2540
2570
|
transform?: string | undefined;
|
|
2541
2571
|
_additionalInstructions?: string | undefined;
|
|
2542
2572
|
}>, "many">>;
|
|
@@ -2772,6 +2802,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2772
2802
|
type: "integration";
|
|
2773
2803
|
systems: string[];
|
|
2774
2804
|
};
|
|
2805
|
+
id?: string | undefined;
|
|
2775
2806
|
transform?: string | undefined;
|
|
2776
2807
|
_additionalInstructions?: string | undefined;
|
|
2777
2808
|
}[] | undefined;
|
|
@@ -2829,6 +2860,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2829
2860
|
type: "integration";
|
|
2830
2861
|
systems: string[];
|
|
2831
2862
|
};
|
|
2863
|
+
id?: string | undefined;
|
|
2832
2864
|
transform?: string | undefined;
|
|
2833
2865
|
_additionalInstructions?: string | undefined;
|
|
2834
2866
|
}[] | undefined;
|
|
@@ -2893,6 +2925,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2893
2925
|
type: "integration";
|
|
2894
2926
|
systems: string[];
|
|
2895
2927
|
};
|
|
2928
|
+
id?: string | undefined;
|
|
2896
2929
|
transform?: string | undefined;
|
|
2897
2930
|
_additionalInstructions?: string | undefined;
|
|
2898
2931
|
}[] | undefined;
|
|
@@ -2963,6 +2996,7 @@ declare const QuerySliceSchema: z.ZodObject<{
|
|
|
2963
2996
|
type: "integration";
|
|
2964
2997
|
systems: string[];
|
|
2965
2998
|
};
|
|
2999
|
+
id?: string | undefined;
|
|
2966
3000
|
transform?: string | undefined;
|
|
2967
3001
|
_additionalInstructions?: string | undefined;
|
|
2968
3002
|
}[] | undefined;
|
|
@@ -2986,6 +3020,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
2986
3020
|
server: z.ZodObject<{
|
|
2987
3021
|
description: z.ZodOptional<z.ZodString>;
|
|
2988
3022
|
data: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3023
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2989
3024
|
target: z.ZodObject<{
|
|
2990
3025
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
2991
3026
|
name: z.ZodString;
|
|
@@ -3057,6 +3092,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3057
3092
|
transform: z.ZodOptional<z.ZodString>;
|
|
3058
3093
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
3059
3094
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
3095
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3060
3096
|
target: z.ZodObject<{
|
|
3061
3097
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
3062
3098
|
name: z.ZodString;
|
|
@@ -3156,6 +3192,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3156
3192
|
type: "integration";
|
|
3157
3193
|
systems: string[];
|
|
3158
3194
|
};
|
|
3195
|
+
id?: string | undefined;
|
|
3159
3196
|
transform?: string | undefined;
|
|
3160
3197
|
_additionalInstructions?: string | undefined;
|
|
3161
3198
|
}, {
|
|
@@ -3184,6 +3221,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3184
3221
|
type: "integration";
|
|
3185
3222
|
systems: string[];
|
|
3186
3223
|
};
|
|
3224
|
+
id?: string | undefined;
|
|
3187
3225
|
transform?: string | undefined;
|
|
3188
3226
|
_additionalInstructions?: string | undefined;
|
|
3189
3227
|
}>>>;
|
|
@@ -3210,6 +3248,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3210
3248
|
type: "topic";
|
|
3211
3249
|
name: string;
|
|
3212
3250
|
};
|
|
3251
|
+
id?: string | undefined;
|
|
3213
3252
|
transform?: string | undefined;
|
|
3214
3253
|
_additionalInstructions?: string | undefined;
|
|
3215
3254
|
_withState?: {
|
|
@@ -3238,6 +3277,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3238
3277
|
type: "integration";
|
|
3239
3278
|
systems: string[];
|
|
3240
3279
|
};
|
|
3280
|
+
id?: string | undefined;
|
|
3241
3281
|
transform?: string | undefined;
|
|
3242
3282
|
_additionalInstructions?: string | undefined;
|
|
3243
3283
|
} | undefined;
|
|
@@ -3264,6 +3304,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3264
3304
|
type: "topic";
|
|
3265
3305
|
name: string;
|
|
3266
3306
|
};
|
|
3307
|
+
id?: string | undefined;
|
|
3267
3308
|
transform?: string | undefined;
|
|
3268
3309
|
_additionalInstructions?: string | undefined;
|
|
3269
3310
|
_withState?: {
|
|
@@ -3292,10 +3333,12 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3292
3333
|
type: "integration";
|
|
3293
3334
|
systems: string[];
|
|
3294
3335
|
};
|
|
3336
|
+
id?: string | undefined;
|
|
3295
3337
|
transform?: string | undefined;
|
|
3296
3338
|
_additionalInstructions?: string | undefined;
|
|
3297
3339
|
} | undefined;
|
|
3298
3340
|
}>, z.ZodObject<{
|
|
3341
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3299
3342
|
target: z.ZodObject<{
|
|
3300
3343
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
3301
3344
|
name: z.ZodString;
|
|
@@ -3395,6 +3438,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3395
3438
|
type: "integration";
|
|
3396
3439
|
systems: string[];
|
|
3397
3440
|
};
|
|
3441
|
+
id?: string | undefined;
|
|
3398
3442
|
transform?: string | undefined;
|
|
3399
3443
|
_additionalInstructions?: string | undefined;
|
|
3400
3444
|
}, {
|
|
@@ -3423,6 +3467,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3423
3467
|
type: "integration";
|
|
3424
3468
|
systems: string[];
|
|
3425
3469
|
};
|
|
3470
|
+
id?: string | undefined;
|
|
3426
3471
|
transform?: string | undefined;
|
|
3427
3472
|
_additionalInstructions?: string | undefined;
|
|
3428
3473
|
}>]>, "many">>;
|
|
@@ -3657,6 +3702,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3657
3702
|
type: "integration";
|
|
3658
3703
|
systems: string[];
|
|
3659
3704
|
};
|
|
3705
|
+
id?: string | undefined;
|
|
3660
3706
|
transform?: string | undefined;
|
|
3661
3707
|
_additionalInstructions?: string | undefined;
|
|
3662
3708
|
} | {
|
|
@@ -3682,6 +3728,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3682
3728
|
type: "topic";
|
|
3683
3729
|
name: string;
|
|
3684
3730
|
};
|
|
3731
|
+
id?: string | undefined;
|
|
3685
3732
|
transform?: string | undefined;
|
|
3686
3733
|
_additionalInstructions?: string | undefined;
|
|
3687
3734
|
_withState?: {
|
|
@@ -3710,6 +3757,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3710
3757
|
type: "integration";
|
|
3711
3758
|
systems: string[];
|
|
3712
3759
|
};
|
|
3760
|
+
id?: string | undefined;
|
|
3713
3761
|
transform?: string | undefined;
|
|
3714
3762
|
_additionalInstructions?: string | undefined;
|
|
3715
3763
|
} | undefined;
|
|
@@ -3768,6 +3816,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3768
3816
|
type: "integration";
|
|
3769
3817
|
systems: string[];
|
|
3770
3818
|
};
|
|
3819
|
+
id?: string | undefined;
|
|
3771
3820
|
transform?: string | undefined;
|
|
3772
3821
|
_additionalInstructions?: string | undefined;
|
|
3773
3822
|
} | {
|
|
@@ -3793,6 +3842,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3793
3842
|
type: "topic";
|
|
3794
3843
|
name: string;
|
|
3795
3844
|
};
|
|
3845
|
+
id?: string | undefined;
|
|
3796
3846
|
transform?: string | undefined;
|
|
3797
3847
|
_additionalInstructions?: string | undefined;
|
|
3798
3848
|
_withState?: {
|
|
@@ -3821,6 +3871,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3821
3871
|
type: "integration";
|
|
3822
3872
|
systems: string[];
|
|
3823
3873
|
};
|
|
3874
|
+
id?: string | undefined;
|
|
3824
3875
|
transform?: string | undefined;
|
|
3825
3876
|
_additionalInstructions?: string | undefined;
|
|
3826
3877
|
} | undefined;
|
|
@@ -3883,6 +3934,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3883
3934
|
type: "integration";
|
|
3884
3935
|
systems: string[];
|
|
3885
3936
|
};
|
|
3937
|
+
id?: string | undefined;
|
|
3886
3938
|
transform?: string | undefined;
|
|
3887
3939
|
_additionalInstructions?: string | undefined;
|
|
3888
3940
|
} | {
|
|
@@ -3908,6 +3960,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3908
3960
|
type: "topic";
|
|
3909
3961
|
name: string;
|
|
3910
3962
|
};
|
|
3963
|
+
id?: string | undefined;
|
|
3911
3964
|
transform?: string | undefined;
|
|
3912
3965
|
_additionalInstructions?: string | undefined;
|
|
3913
3966
|
_withState?: {
|
|
@@ -3936,6 +3989,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
3936
3989
|
type: "integration";
|
|
3937
3990
|
systems: string[];
|
|
3938
3991
|
};
|
|
3992
|
+
id?: string | undefined;
|
|
3939
3993
|
transform?: string | undefined;
|
|
3940
3994
|
_additionalInstructions?: string | undefined;
|
|
3941
3995
|
} | undefined;
|
|
@@ -4003,6 +4057,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4003
4057
|
type: "integration";
|
|
4004
4058
|
systems: string[];
|
|
4005
4059
|
};
|
|
4060
|
+
id?: string | undefined;
|
|
4006
4061
|
transform?: string | undefined;
|
|
4007
4062
|
_additionalInstructions?: string | undefined;
|
|
4008
4063
|
} | {
|
|
@@ -4028,6 +4083,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4028
4083
|
type: "topic";
|
|
4029
4084
|
name: string;
|
|
4030
4085
|
};
|
|
4086
|
+
id?: string | undefined;
|
|
4031
4087
|
transform?: string | undefined;
|
|
4032
4088
|
_additionalInstructions?: string | undefined;
|
|
4033
4089
|
_withState?: {
|
|
@@ -4056,6 +4112,7 @@ declare const ReactSliceSchema: z.ZodObject<{
|
|
|
4056
4112
|
type: "integration";
|
|
4057
4113
|
systems: string[];
|
|
4058
4114
|
};
|
|
4115
|
+
id?: string | undefined;
|
|
4059
4116
|
transform?: string | undefined;
|
|
4060
4117
|
_additionalInstructions?: string | undefined;
|
|
4061
4118
|
} | undefined;
|
|
@@ -4127,6 +4184,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4127
4184
|
server: z.ZodObject<{
|
|
4128
4185
|
description: z.ZodString;
|
|
4129
4186
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4187
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4130
4188
|
target: z.ZodObject<{
|
|
4131
4189
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
4132
4190
|
name: z.ZodString;
|
|
@@ -4198,6 +4256,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4198
4256
|
transform: z.ZodOptional<z.ZodString>;
|
|
4199
4257
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
4200
4258
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
4259
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4201
4260
|
target: z.ZodObject<{
|
|
4202
4261
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
4203
4262
|
name: z.ZodString;
|
|
@@ -4297,6 +4356,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4297
4356
|
type: "integration";
|
|
4298
4357
|
systems: string[];
|
|
4299
4358
|
};
|
|
4359
|
+
id?: string | undefined;
|
|
4300
4360
|
transform?: string | undefined;
|
|
4301
4361
|
_additionalInstructions?: string | undefined;
|
|
4302
4362
|
}, {
|
|
@@ -4325,6 +4385,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4325
4385
|
type: "integration";
|
|
4326
4386
|
systems: string[];
|
|
4327
4387
|
};
|
|
4388
|
+
id?: string | undefined;
|
|
4328
4389
|
transform?: string | undefined;
|
|
4329
4390
|
_additionalInstructions?: string | undefined;
|
|
4330
4391
|
}>>>;
|
|
@@ -4351,6 +4412,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4351
4412
|
type: "topic";
|
|
4352
4413
|
name: string;
|
|
4353
4414
|
};
|
|
4415
|
+
id?: string | undefined;
|
|
4354
4416
|
transform?: string | undefined;
|
|
4355
4417
|
_additionalInstructions?: string | undefined;
|
|
4356
4418
|
_withState?: {
|
|
@@ -4379,6 +4441,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4379
4441
|
type: "integration";
|
|
4380
4442
|
systems: string[];
|
|
4381
4443
|
};
|
|
4444
|
+
id?: string | undefined;
|
|
4382
4445
|
transform?: string | undefined;
|
|
4383
4446
|
_additionalInstructions?: string | undefined;
|
|
4384
4447
|
} | undefined;
|
|
@@ -4405,6 +4468,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4405
4468
|
type: "topic";
|
|
4406
4469
|
name: string;
|
|
4407
4470
|
};
|
|
4471
|
+
id?: string | undefined;
|
|
4408
4472
|
transform?: string | undefined;
|
|
4409
4473
|
_additionalInstructions?: string | undefined;
|
|
4410
4474
|
_withState?: {
|
|
@@ -4433,6 +4497,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4433
4497
|
type: "integration";
|
|
4434
4498
|
systems: string[];
|
|
4435
4499
|
};
|
|
4500
|
+
id?: string | undefined;
|
|
4436
4501
|
transform?: string | undefined;
|
|
4437
4502
|
_additionalInstructions?: string | undefined;
|
|
4438
4503
|
} | undefined;
|
|
@@ -4666,6 +4731,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4666
4731
|
type: "topic";
|
|
4667
4732
|
name: string;
|
|
4668
4733
|
};
|
|
4734
|
+
id?: string | undefined;
|
|
4669
4735
|
transform?: string | undefined;
|
|
4670
4736
|
_additionalInstructions?: string | undefined;
|
|
4671
4737
|
_withState?: {
|
|
@@ -4694,6 +4760,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4694
4760
|
type: "integration";
|
|
4695
4761
|
systems: string[];
|
|
4696
4762
|
};
|
|
4763
|
+
id?: string | undefined;
|
|
4697
4764
|
transform?: string | undefined;
|
|
4698
4765
|
_additionalInstructions?: string | undefined;
|
|
4699
4766
|
} | undefined;
|
|
@@ -4749,6 +4816,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4749
4816
|
type: "topic";
|
|
4750
4817
|
name: string;
|
|
4751
4818
|
};
|
|
4819
|
+
id?: string | undefined;
|
|
4752
4820
|
transform?: string | undefined;
|
|
4753
4821
|
_additionalInstructions?: string | undefined;
|
|
4754
4822
|
_withState?: {
|
|
@@ -4777,6 +4845,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4777
4845
|
type: "integration";
|
|
4778
4846
|
systems: string[];
|
|
4779
4847
|
};
|
|
4848
|
+
id?: string | undefined;
|
|
4780
4849
|
transform?: string | undefined;
|
|
4781
4850
|
_additionalInstructions?: string | undefined;
|
|
4782
4851
|
} | undefined;
|
|
@@ -4839,6 +4908,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4839
4908
|
type: "topic";
|
|
4840
4909
|
name: string;
|
|
4841
4910
|
};
|
|
4911
|
+
id?: string | undefined;
|
|
4842
4912
|
transform?: string | undefined;
|
|
4843
4913
|
_additionalInstructions?: string | undefined;
|
|
4844
4914
|
_withState?: {
|
|
@@ -4867,6 +4937,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4867
4937
|
type: "integration";
|
|
4868
4938
|
systems: string[];
|
|
4869
4939
|
};
|
|
4940
|
+
id?: string | undefined;
|
|
4870
4941
|
transform?: string | undefined;
|
|
4871
4942
|
_additionalInstructions?: string | undefined;
|
|
4872
4943
|
} | undefined;
|
|
@@ -4935,6 +5006,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4935
5006
|
type: "topic";
|
|
4936
5007
|
name: string;
|
|
4937
5008
|
};
|
|
5009
|
+
id?: string | undefined;
|
|
4938
5010
|
transform?: string | undefined;
|
|
4939
5011
|
_additionalInstructions?: string | undefined;
|
|
4940
5012
|
_withState?: {
|
|
@@ -4963,6 +5035,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4963
5035
|
type: "integration";
|
|
4964
5036
|
systems: string[];
|
|
4965
5037
|
};
|
|
5038
|
+
id?: string | undefined;
|
|
4966
5039
|
transform?: string | undefined;
|
|
4967
5040
|
_additionalInstructions?: string | undefined;
|
|
4968
5041
|
} | undefined;
|
|
@@ -4994,6 +5067,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4994
5067
|
server: z.ZodObject<{
|
|
4995
5068
|
description: z.ZodString;
|
|
4996
5069
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5070
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4997
5071
|
target: z.ZodObject<{
|
|
4998
5072
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
4999
5073
|
name: z.ZodString;
|
|
@@ -5093,6 +5167,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5093
5167
|
type: "integration";
|
|
5094
5168
|
systems: string[];
|
|
5095
5169
|
};
|
|
5170
|
+
id?: string | undefined;
|
|
5096
5171
|
transform?: string | undefined;
|
|
5097
5172
|
_additionalInstructions?: string | undefined;
|
|
5098
5173
|
}, {
|
|
@@ -5121,6 +5196,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5121
5196
|
type: "integration";
|
|
5122
5197
|
systems: string[];
|
|
5123
5198
|
};
|
|
5199
|
+
id?: string | undefined;
|
|
5124
5200
|
transform?: string | undefined;
|
|
5125
5201
|
_additionalInstructions?: string | undefined;
|
|
5126
5202
|
}>, "many">>;
|
|
@@ -5356,6 +5432,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5356
5432
|
type: "integration";
|
|
5357
5433
|
systems: string[];
|
|
5358
5434
|
};
|
|
5435
|
+
id?: string | undefined;
|
|
5359
5436
|
transform?: string | undefined;
|
|
5360
5437
|
_additionalInstructions?: string | undefined;
|
|
5361
5438
|
}[] | undefined;
|
|
@@ -5413,6 +5490,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5413
5490
|
type: "integration";
|
|
5414
5491
|
systems: string[];
|
|
5415
5492
|
};
|
|
5493
|
+
id?: string | undefined;
|
|
5416
5494
|
transform?: string | undefined;
|
|
5417
5495
|
_additionalInstructions?: string | undefined;
|
|
5418
5496
|
}[] | undefined;
|
|
@@ -5477,6 +5555,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5477
5555
|
type: "integration";
|
|
5478
5556
|
systems: string[];
|
|
5479
5557
|
};
|
|
5558
|
+
id?: string | undefined;
|
|
5480
5559
|
transform?: string | undefined;
|
|
5481
5560
|
_additionalInstructions?: string | undefined;
|
|
5482
5561
|
}[] | undefined;
|
|
@@ -5547,6 +5626,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5547
5626
|
type: "integration";
|
|
5548
5627
|
systems: string[];
|
|
5549
5628
|
};
|
|
5629
|
+
id?: string | undefined;
|
|
5550
5630
|
transform?: string | undefined;
|
|
5551
5631
|
_additionalInstructions?: string | undefined;
|
|
5552
5632
|
}[] | undefined;
|
|
@@ -5569,6 +5649,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5569
5649
|
server: z.ZodObject<{
|
|
5570
5650
|
description: z.ZodOptional<z.ZodString>;
|
|
5571
5651
|
data: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
5652
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5572
5653
|
target: z.ZodObject<{
|
|
5573
5654
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
5574
5655
|
name: z.ZodString;
|
|
@@ -5640,6 +5721,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5640
5721
|
transform: z.ZodOptional<z.ZodString>;
|
|
5641
5722
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
5642
5723
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
5724
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5643
5725
|
target: z.ZodObject<{
|
|
5644
5726
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
5645
5727
|
name: z.ZodString;
|
|
@@ -5739,6 +5821,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5739
5821
|
type: "integration";
|
|
5740
5822
|
systems: string[];
|
|
5741
5823
|
};
|
|
5824
|
+
id?: string | undefined;
|
|
5742
5825
|
transform?: string | undefined;
|
|
5743
5826
|
_additionalInstructions?: string | undefined;
|
|
5744
5827
|
}, {
|
|
@@ -5767,6 +5850,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5767
5850
|
type: "integration";
|
|
5768
5851
|
systems: string[];
|
|
5769
5852
|
};
|
|
5853
|
+
id?: string | undefined;
|
|
5770
5854
|
transform?: string | undefined;
|
|
5771
5855
|
_additionalInstructions?: string | undefined;
|
|
5772
5856
|
}>>>;
|
|
@@ -5793,6 +5877,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5793
5877
|
type: "topic";
|
|
5794
5878
|
name: string;
|
|
5795
5879
|
};
|
|
5880
|
+
id?: string | undefined;
|
|
5796
5881
|
transform?: string | undefined;
|
|
5797
5882
|
_additionalInstructions?: string | undefined;
|
|
5798
5883
|
_withState?: {
|
|
@@ -5821,6 +5906,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5821
5906
|
type: "integration";
|
|
5822
5907
|
systems: string[];
|
|
5823
5908
|
};
|
|
5909
|
+
id?: string | undefined;
|
|
5824
5910
|
transform?: string | undefined;
|
|
5825
5911
|
_additionalInstructions?: string | undefined;
|
|
5826
5912
|
} | undefined;
|
|
@@ -5847,6 +5933,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5847
5933
|
type: "topic";
|
|
5848
5934
|
name: string;
|
|
5849
5935
|
};
|
|
5936
|
+
id?: string | undefined;
|
|
5850
5937
|
transform?: string | undefined;
|
|
5851
5938
|
_additionalInstructions?: string | undefined;
|
|
5852
5939
|
_withState?: {
|
|
@@ -5875,10 +5962,12 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5875
5962
|
type: "integration";
|
|
5876
5963
|
systems: string[];
|
|
5877
5964
|
};
|
|
5965
|
+
id?: string | undefined;
|
|
5878
5966
|
transform?: string | undefined;
|
|
5879
5967
|
_additionalInstructions?: string | undefined;
|
|
5880
5968
|
} | undefined;
|
|
5881
5969
|
}>, z.ZodObject<{
|
|
5970
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5882
5971
|
target: z.ZodObject<{
|
|
5883
5972
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
5884
5973
|
name: z.ZodString;
|
|
@@ -5978,6 +6067,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5978
6067
|
type: "integration";
|
|
5979
6068
|
systems: string[];
|
|
5980
6069
|
};
|
|
6070
|
+
id?: string | undefined;
|
|
5981
6071
|
transform?: string | undefined;
|
|
5982
6072
|
_additionalInstructions?: string | undefined;
|
|
5983
6073
|
}, {
|
|
@@ -6006,6 +6096,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6006
6096
|
type: "integration";
|
|
6007
6097
|
systems: string[];
|
|
6008
6098
|
};
|
|
6099
|
+
id?: string | undefined;
|
|
6009
6100
|
transform?: string | undefined;
|
|
6010
6101
|
_additionalInstructions?: string | undefined;
|
|
6011
6102
|
}>]>, "many">>;
|
|
@@ -6240,6 +6331,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6240
6331
|
type: "integration";
|
|
6241
6332
|
systems: string[];
|
|
6242
6333
|
};
|
|
6334
|
+
id?: string | undefined;
|
|
6243
6335
|
transform?: string | undefined;
|
|
6244
6336
|
_additionalInstructions?: string | undefined;
|
|
6245
6337
|
} | {
|
|
@@ -6265,6 +6357,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6265
6357
|
type: "topic";
|
|
6266
6358
|
name: string;
|
|
6267
6359
|
};
|
|
6360
|
+
id?: string | undefined;
|
|
6268
6361
|
transform?: string | undefined;
|
|
6269
6362
|
_additionalInstructions?: string | undefined;
|
|
6270
6363
|
_withState?: {
|
|
@@ -6293,6 +6386,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6293
6386
|
type: "integration";
|
|
6294
6387
|
systems: string[];
|
|
6295
6388
|
};
|
|
6389
|
+
id?: string | undefined;
|
|
6296
6390
|
transform?: string | undefined;
|
|
6297
6391
|
_additionalInstructions?: string | undefined;
|
|
6298
6392
|
} | undefined;
|
|
@@ -6351,6 +6445,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6351
6445
|
type: "integration";
|
|
6352
6446
|
systems: string[];
|
|
6353
6447
|
};
|
|
6448
|
+
id?: string | undefined;
|
|
6354
6449
|
transform?: string | undefined;
|
|
6355
6450
|
_additionalInstructions?: string | undefined;
|
|
6356
6451
|
} | {
|
|
@@ -6376,6 +6471,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6376
6471
|
type: "topic";
|
|
6377
6472
|
name: string;
|
|
6378
6473
|
};
|
|
6474
|
+
id?: string | undefined;
|
|
6379
6475
|
transform?: string | undefined;
|
|
6380
6476
|
_additionalInstructions?: string | undefined;
|
|
6381
6477
|
_withState?: {
|
|
@@ -6404,6 +6500,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6404
6500
|
type: "integration";
|
|
6405
6501
|
systems: string[];
|
|
6406
6502
|
};
|
|
6503
|
+
id?: string | undefined;
|
|
6407
6504
|
transform?: string | undefined;
|
|
6408
6505
|
_additionalInstructions?: string | undefined;
|
|
6409
6506
|
} | undefined;
|
|
@@ -6466,6 +6563,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6466
6563
|
type: "integration";
|
|
6467
6564
|
systems: string[];
|
|
6468
6565
|
};
|
|
6566
|
+
id?: string | undefined;
|
|
6469
6567
|
transform?: string | undefined;
|
|
6470
6568
|
_additionalInstructions?: string | undefined;
|
|
6471
6569
|
} | {
|
|
@@ -6491,6 +6589,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6491
6589
|
type: "topic";
|
|
6492
6590
|
name: string;
|
|
6493
6591
|
};
|
|
6592
|
+
id?: string | undefined;
|
|
6494
6593
|
transform?: string | undefined;
|
|
6495
6594
|
_additionalInstructions?: string | undefined;
|
|
6496
6595
|
_withState?: {
|
|
@@ -6519,6 +6618,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6519
6618
|
type: "integration";
|
|
6520
6619
|
systems: string[];
|
|
6521
6620
|
};
|
|
6621
|
+
id?: string | undefined;
|
|
6522
6622
|
transform?: string | undefined;
|
|
6523
6623
|
_additionalInstructions?: string | undefined;
|
|
6524
6624
|
} | undefined;
|
|
@@ -6586,6 +6686,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6586
6686
|
type: "integration";
|
|
6587
6687
|
systems: string[];
|
|
6588
6688
|
};
|
|
6689
|
+
id?: string | undefined;
|
|
6589
6690
|
transform?: string | undefined;
|
|
6590
6691
|
_additionalInstructions?: string | undefined;
|
|
6591
6692
|
} | {
|
|
@@ -6611,6 +6712,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6611
6712
|
type: "topic";
|
|
6612
6713
|
name: string;
|
|
6613
6714
|
};
|
|
6715
|
+
id?: string | undefined;
|
|
6614
6716
|
transform?: string | undefined;
|
|
6615
6717
|
_additionalInstructions?: string | undefined;
|
|
6616
6718
|
_withState?: {
|
|
@@ -6639,6 +6741,7 @@ declare const SliceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6639
6741
|
type: "integration";
|
|
6640
6742
|
systems: string[];
|
|
6641
6743
|
};
|
|
6744
|
+
id?: string | undefined;
|
|
6642
6745
|
transform?: string | undefined;
|
|
6643
6746
|
_additionalInstructions?: string | undefined;
|
|
6644
6747
|
} | undefined;
|
|
@@ -6713,6 +6816,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6713
6816
|
server: z.ZodObject<{
|
|
6714
6817
|
description: z.ZodString;
|
|
6715
6818
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6819
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6716
6820
|
target: z.ZodObject<{
|
|
6717
6821
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
6718
6822
|
name: z.ZodString;
|
|
@@ -6784,6 +6888,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6784
6888
|
transform: z.ZodOptional<z.ZodString>;
|
|
6785
6889
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
6786
6890
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
6891
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6787
6892
|
target: z.ZodObject<{
|
|
6788
6893
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
6789
6894
|
name: z.ZodString;
|
|
@@ -6883,6 +6988,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6883
6988
|
type: "integration";
|
|
6884
6989
|
systems: string[];
|
|
6885
6990
|
};
|
|
6991
|
+
id?: string | undefined;
|
|
6886
6992
|
transform?: string | undefined;
|
|
6887
6993
|
_additionalInstructions?: string | undefined;
|
|
6888
6994
|
}, {
|
|
@@ -6911,6 +7017,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6911
7017
|
type: "integration";
|
|
6912
7018
|
systems: string[];
|
|
6913
7019
|
};
|
|
7020
|
+
id?: string | undefined;
|
|
6914
7021
|
transform?: string | undefined;
|
|
6915
7022
|
_additionalInstructions?: string | undefined;
|
|
6916
7023
|
}>>>;
|
|
@@ -6937,6 +7044,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6937
7044
|
type: "topic";
|
|
6938
7045
|
name: string;
|
|
6939
7046
|
};
|
|
7047
|
+
id?: string | undefined;
|
|
6940
7048
|
transform?: string | undefined;
|
|
6941
7049
|
_additionalInstructions?: string | undefined;
|
|
6942
7050
|
_withState?: {
|
|
@@ -6965,6 +7073,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6965
7073
|
type: "integration";
|
|
6966
7074
|
systems: string[];
|
|
6967
7075
|
};
|
|
7076
|
+
id?: string | undefined;
|
|
6968
7077
|
transform?: string | undefined;
|
|
6969
7078
|
_additionalInstructions?: string | undefined;
|
|
6970
7079
|
} | undefined;
|
|
@@ -6991,6 +7100,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
6991
7100
|
type: "topic";
|
|
6992
7101
|
name: string;
|
|
6993
7102
|
};
|
|
7103
|
+
id?: string | undefined;
|
|
6994
7104
|
transform?: string | undefined;
|
|
6995
7105
|
_additionalInstructions?: string | undefined;
|
|
6996
7106
|
_withState?: {
|
|
@@ -7019,6 +7129,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7019
7129
|
type: "integration";
|
|
7020
7130
|
systems: string[];
|
|
7021
7131
|
};
|
|
7132
|
+
id?: string | undefined;
|
|
7022
7133
|
transform?: string | undefined;
|
|
7023
7134
|
_additionalInstructions?: string | undefined;
|
|
7024
7135
|
} | undefined;
|
|
@@ -7252,6 +7363,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7252
7363
|
type: "topic";
|
|
7253
7364
|
name: string;
|
|
7254
7365
|
};
|
|
7366
|
+
id?: string | undefined;
|
|
7255
7367
|
transform?: string | undefined;
|
|
7256
7368
|
_additionalInstructions?: string | undefined;
|
|
7257
7369
|
_withState?: {
|
|
@@ -7280,6 +7392,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7280
7392
|
type: "integration";
|
|
7281
7393
|
systems: string[];
|
|
7282
7394
|
};
|
|
7395
|
+
id?: string | undefined;
|
|
7283
7396
|
transform?: string | undefined;
|
|
7284
7397
|
_additionalInstructions?: string | undefined;
|
|
7285
7398
|
} | undefined;
|
|
@@ -7335,6 +7448,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7335
7448
|
type: "topic";
|
|
7336
7449
|
name: string;
|
|
7337
7450
|
};
|
|
7451
|
+
id?: string | undefined;
|
|
7338
7452
|
transform?: string | undefined;
|
|
7339
7453
|
_additionalInstructions?: string | undefined;
|
|
7340
7454
|
_withState?: {
|
|
@@ -7363,6 +7477,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7363
7477
|
type: "integration";
|
|
7364
7478
|
systems: string[];
|
|
7365
7479
|
};
|
|
7480
|
+
id?: string | undefined;
|
|
7366
7481
|
transform?: string | undefined;
|
|
7367
7482
|
_additionalInstructions?: string | undefined;
|
|
7368
7483
|
} | undefined;
|
|
@@ -7425,6 +7540,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7425
7540
|
type: "topic";
|
|
7426
7541
|
name: string;
|
|
7427
7542
|
};
|
|
7543
|
+
id?: string | undefined;
|
|
7428
7544
|
transform?: string | undefined;
|
|
7429
7545
|
_additionalInstructions?: string | undefined;
|
|
7430
7546
|
_withState?: {
|
|
@@ -7453,6 +7569,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7453
7569
|
type: "integration";
|
|
7454
7570
|
systems: string[];
|
|
7455
7571
|
};
|
|
7572
|
+
id?: string | undefined;
|
|
7456
7573
|
transform?: string | undefined;
|
|
7457
7574
|
_additionalInstructions?: string | undefined;
|
|
7458
7575
|
} | undefined;
|
|
@@ -7521,6 +7638,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7521
7638
|
type: "topic";
|
|
7522
7639
|
name: string;
|
|
7523
7640
|
};
|
|
7641
|
+
id?: string | undefined;
|
|
7524
7642
|
transform?: string | undefined;
|
|
7525
7643
|
_additionalInstructions?: string | undefined;
|
|
7526
7644
|
_withState?: {
|
|
@@ -7549,6 +7667,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7549
7667
|
type: "integration";
|
|
7550
7668
|
systems: string[];
|
|
7551
7669
|
};
|
|
7670
|
+
id?: string | undefined;
|
|
7552
7671
|
transform?: string | undefined;
|
|
7553
7672
|
_additionalInstructions?: string | undefined;
|
|
7554
7673
|
} | undefined;
|
|
@@ -7580,6 +7699,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7580
7699
|
server: z.ZodObject<{
|
|
7581
7700
|
description: z.ZodString;
|
|
7582
7701
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7702
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7583
7703
|
target: z.ZodObject<{
|
|
7584
7704
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
7585
7705
|
name: z.ZodString;
|
|
@@ -7679,6 +7799,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7679
7799
|
type: "integration";
|
|
7680
7800
|
systems: string[];
|
|
7681
7801
|
};
|
|
7802
|
+
id?: string | undefined;
|
|
7682
7803
|
transform?: string | undefined;
|
|
7683
7804
|
_additionalInstructions?: string | undefined;
|
|
7684
7805
|
}, {
|
|
@@ -7707,6 +7828,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7707
7828
|
type: "integration";
|
|
7708
7829
|
systems: string[];
|
|
7709
7830
|
};
|
|
7831
|
+
id?: string | undefined;
|
|
7710
7832
|
transform?: string | undefined;
|
|
7711
7833
|
_additionalInstructions?: string | undefined;
|
|
7712
7834
|
}>, "many">>;
|
|
@@ -7942,6 +8064,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7942
8064
|
type: "integration";
|
|
7943
8065
|
systems: string[];
|
|
7944
8066
|
};
|
|
8067
|
+
id?: string | undefined;
|
|
7945
8068
|
transform?: string | undefined;
|
|
7946
8069
|
_additionalInstructions?: string | undefined;
|
|
7947
8070
|
}[] | undefined;
|
|
@@ -7999,6 +8122,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
7999
8122
|
type: "integration";
|
|
8000
8123
|
systems: string[];
|
|
8001
8124
|
};
|
|
8125
|
+
id?: string | undefined;
|
|
8002
8126
|
transform?: string | undefined;
|
|
8003
8127
|
_additionalInstructions?: string | undefined;
|
|
8004
8128
|
}[] | undefined;
|
|
@@ -8063,6 +8187,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8063
8187
|
type: "integration";
|
|
8064
8188
|
systems: string[];
|
|
8065
8189
|
};
|
|
8190
|
+
id?: string | undefined;
|
|
8066
8191
|
transform?: string | undefined;
|
|
8067
8192
|
_additionalInstructions?: string | undefined;
|
|
8068
8193
|
}[] | undefined;
|
|
@@ -8133,6 +8258,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8133
8258
|
type: "integration";
|
|
8134
8259
|
systems: string[];
|
|
8135
8260
|
};
|
|
8261
|
+
id?: string | undefined;
|
|
8136
8262
|
transform?: string | undefined;
|
|
8137
8263
|
_additionalInstructions?: string | undefined;
|
|
8138
8264
|
}[] | undefined;
|
|
@@ -8155,6 +8281,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8155
8281
|
server: z.ZodObject<{
|
|
8156
8282
|
description: z.ZodOptional<z.ZodString>;
|
|
8157
8283
|
data: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
8284
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8158
8285
|
target: z.ZodObject<{
|
|
8159
8286
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
8160
8287
|
name: z.ZodString;
|
|
@@ -8226,6 +8353,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8226
8353
|
transform: z.ZodOptional<z.ZodString>;
|
|
8227
8354
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
8228
8355
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
8356
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8229
8357
|
target: z.ZodObject<{
|
|
8230
8358
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
8231
8359
|
name: z.ZodString;
|
|
@@ -8325,6 +8453,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8325
8453
|
type: "integration";
|
|
8326
8454
|
systems: string[];
|
|
8327
8455
|
};
|
|
8456
|
+
id?: string | undefined;
|
|
8328
8457
|
transform?: string | undefined;
|
|
8329
8458
|
_additionalInstructions?: string | undefined;
|
|
8330
8459
|
}, {
|
|
@@ -8353,6 +8482,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8353
8482
|
type: "integration";
|
|
8354
8483
|
systems: string[];
|
|
8355
8484
|
};
|
|
8485
|
+
id?: string | undefined;
|
|
8356
8486
|
transform?: string | undefined;
|
|
8357
8487
|
_additionalInstructions?: string | undefined;
|
|
8358
8488
|
}>>>;
|
|
@@ -8379,6 +8509,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8379
8509
|
type: "topic";
|
|
8380
8510
|
name: string;
|
|
8381
8511
|
};
|
|
8512
|
+
id?: string | undefined;
|
|
8382
8513
|
transform?: string | undefined;
|
|
8383
8514
|
_additionalInstructions?: string | undefined;
|
|
8384
8515
|
_withState?: {
|
|
@@ -8407,6 +8538,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8407
8538
|
type: "integration";
|
|
8408
8539
|
systems: string[];
|
|
8409
8540
|
};
|
|
8541
|
+
id?: string | undefined;
|
|
8410
8542
|
transform?: string | undefined;
|
|
8411
8543
|
_additionalInstructions?: string | undefined;
|
|
8412
8544
|
} | undefined;
|
|
@@ -8433,6 +8565,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8433
8565
|
type: "topic";
|
|
8434
8566
|
name: string;
|
|
8435
8567
|
};
|
|
8568
|
+
id?: string | undefined;
|
|
8436
8569
|
transform?: string | undefined;
|
|
8437
8570
|
_additionalInstructions?: string | undefined;
|
|
8438
8571
|
_withState?: {
|
|
@@ -8461,10 +8594,12 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8461
8594
|
type: "integration";
|
|
8462
8595
|
systems: string[];
|
|
8463
8596
|
};
|
|
8597
|
+
id?: string | undefined;
|
|
8464
8598
|
transform?: string | undefined;
|
|
8465
8599
|
_additionalInstructions?: string | undefined;
|
|
8466
8600
|
} | undefined;
|
|
8467
8601
|
}>, z.ZodObject<{
|
|
8602
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8468
8603
|
target: z.ZodObject<{
|
|
8469
8604
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
8470
8605
|
name: z.ZodString;
|
|
@@ -8564,6 +8699,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8564
8699
|
type: "integration";
|
|
8565
8700
|
systems: string[];
|
|
8566
8701
|
};
|
|
8702
|
+
id?: string | undefined;
|
|
8567
8703
|
transform?: string | undefined;
|
|
8568
8704
|
_additionalInstructions?: string | undefined;
|
|
8569
8705
|
}, {
|
|
@@ -8592,6 +8728,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8592
8728
|
type: "integration";
|
|
8593
8729
|
systems: string[];
|
|
8594
8730
|
};
|
|
8731
|
+
id?: string | undefined;
|
|
8595
8732
|
transform?: string | undefined;
|
|
8596
8733
|
_additionalInstructions?: string | undefined;
|
|
8597
8734
|
}>]>, "many">>;
|
|
@@ -8826,6 +8963,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8826
8963
|
type: "integration";
|
|
8827
8964
|
systems: string[];
|
|
8828
8965
|
};
|
|
8966
|
+
id?: string | undefined;
|
|
8829
8967
|
transform?: string | undefined;
|
|
8830
8968
|
_additionalInstructions?: string | undefined;
|
|
8831
8969
|
} | {
|
|
@@ -8851,6 +8989,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8851
8989
|
type: "topic";
|
|
8852
8990
|
name: string;
|
|
8853
8991
|
};
|
|
8992
|
+
id?: string | undefined;
|
|
8854
8993
|
transform?: string | undefined;
|
|
8855
8994
|
_additionalInstructions?: string | undefined;
|
|
8856
8995
|
_withState?: {
|
|
@@ -8879,6 +9018,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8879
9018
|
type: "integration";
|
|
8880
9019
|
systems: string[];
|
|
8881
9020
|
};
|
|
9021
|
+
id?: string | undefined;
|
|
8882
9022
|
transform?: string | undefined;
|
|
8883
9023
|
_additionalInstructions?: string | undefined;
|
|
8884
9024
|
} | undefined;
|
|
@@ -8937,6 +9077,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8937
9077
|
type: "integration";
|
|
8938
9078
|
systems: string[];
|
|
8939
9079
|
};
|
|
9080
|
+
id?: string | undefined;
|
|
8940
9081
|
transform?: string | undefined;
|
|
8941
9082
|
_additionalInstructions?: string | undefined;
|
|
8942
9083
|
} | {
|
|
@@ -8962,6 +9103,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8962
9103
|
type: "topic";
|
|
8963
9104
|
name: string;
|
|
8964
9105
|
};
|
|
9106
|
+
id?: string | undefined;
|
|
8965
9107
|
transform?: string | undefined;
|
|
8966
9108
|
_additionalInstructions?: string | undefined;
|
|
8967
9109
|
_withState?: {
|
|
@@ -8990,6 +9132,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
8990
9132
|
type: "integration";
|
|
8991
9133
|
systems: string[];
|
|
8992
9134
|
};
|
|
9135
|
+
id?: string | undefined;
|
|
8993
9136
|
transform?: string | undefined;
|
|
8994
9137
|
_additionalInstructions?: string | undefined;
|
|
8995
9138
|
} | undefined;
|
|
@@ -9052,6 +9195,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9052
9195
|
type: "integration";
|
|
9053
9196
|
systems: string[];
|
|
9054
9197
|
};
|
|
9198
|
+
id?: string | undefined;
|
|
9055
9199
|
transform?: string | undefined;
|
|
9056
9200
|
_additionalInstructions?: string | undefined;
|
|
9057
9201
|
} | {
|
|
@@ -9077,6 +9221,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9077
9221
|
type: "topic";
|
|
9078
9222
|
name: string;
|
|
9079
9223
|
};
|
|
9224
|
+
id?: string | undefined;
|
|
9080
9225
|
transform?: string | undefined;
|
|
9081
9226
|
_additionalInstructions?: string | undefined;
|
|
9082
9227
|
_withState?: {
|
|
@@ -9105,6 +9250,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9105
9250
|
type: "integration";
|
|
9106
9251
|
systems: string[];
|
|
9107
9252
|
};
|
|
9253
|
+
id?: string | undefined;
|
|
9108
9254
|
transform?: string | undefined;
|
|
9109
9255
|
_additionalInstructions?: string | undefined;
|
|
9110
9256
|
} | undefined;
|
|
@@ -9172,6 +9318,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9172
9318
|
type: "integration";
|
|
9173
9319
|
systems: string[];
|
|
9174
9320
|
};
|
|
9321
|
+
id?: string | undefined;
|
|
9175
9322
|
transform?: string | undefined;
|
|
9176
9323
|
_additionalInstructions?: string | undefined;
|
|
9177
9324
|
} | {
|
|
@@ -9197,6 +9344,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9197
9344
|
type: "topic";
|
|
9198
9345
|
name: string;
|
|
9199
9346
|
};
|
|
9347
|
+
id?: string | undefined;
|
|
9200
9348
|
transform?: string | undefined;
|
|
9201
9349
|
_additionalInstructions?: string | undefined;
|
|
9202
9350
|
_withState?: {
|
|
@@ -9225,6 +9373,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9225
9373
|
type: "integration";
|
|
9226
9374
|
systems: string[];
|
|
9227
9375
|
};
|
|
9376
|
+
id?: string | undefined;
|
|
9228
9377
|
transform?: string | undefined;
|
|
9229
9378
|
_additionalInstructions?: string | undefined;
|
|
9230
9379
|
} | undefined;
|
|
@@ -9335,6 +9484,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9335
9484
|
type: "topic";
|
|
9336
9485
|
name: string;
|
|
9337
9486
|
};
|
|
9487
|
+
id?: string | undefined;
|
|
9338
9488
|
transform?: string | undefined;
|
|
9339
9489
|
_additionalInstructions?: string | undefined;
|
|
9340
9490
|
_withState?: {
|
|
@@ -9363,6 +9513,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9363
9513
|
type: "integration";
|
|
9364
9514
|
systems: string[];
|
|
9365
9515
|
};
|
|
9516
|
+
id?: string | undefined;
|
|
9366
9517
|
transform?: string | undefined;
|
|
9367
9518
|
_additionalInstructions?: string | undefined;
|
|
9368
9519
|
} | undefined;
|
|
@@ -9434,6 +9585,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9434
9585
|
type: "integration";
|
|
9435
9586
|
systems: string[];
|
|
9436
9587
|
};
|
|
9588
|
+
id?: string | undefined;
|
|
9437
9589
|
transform?: string | undefined;
|
|
9438
9590
|
_additionalInstructions?: string | undefined;
|
|
9439
9591
|
}[] | undefined;
|
|
@@ -9500,6 +9652,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9500
9652
|
type: "integration";
|
|
9501
9653
|
systems: string[];
|
|
9502
9654
|
};
|
|
9655
|
+
id?: string | undefined;
|
|
9503
9656
|
transform?: string | undefined;
|
|
9504
9657
|
_additionalInstructions?: string | undefined;
|
|
9505
9658
|
} | {
|
|
@@ -9525,6 +9678,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9525
9678
|
type: "topic";
|
|
9526
9679
|
name: string;
|
|
9527
9680
|
};
|
|
9681
|
+
id?: string | undefined;
|
|
9528
9682
|
transform?: string | undefined;
|
|
9529
9683
|
_additionalInstructions?: string | undefined;
|
|
9530
9684
|
_withState?: {
|
|
@@ -9553,6 +9707,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9553
9707
|
type: "integration";
|
|
9554
9708
|
systems: string[];
|
|
9555
9709
|
};
|
|
9710
|
+
id?: string | undefined;
|
|
9556
9711
|
transform?: string | undefined;
|
|
9557
9712
|
_additionalInstructions?: string | undefined;
|
|
9558
9713
|
} | undefined;
|
|
@@ -9638,6 +9793,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9638
9793
|
type: "topic";
|
|
9639
9794
|
name: string;
|
|
9640
9795
|
};
|
|
9796
|
+
id?: string | undefined;
|
|
9641
9797
|
transform?: string | undefined;
|
|
9642
9798
|
_additionalInstructions?: string | undefined;
|
|
9643
9799
|
_withState?: {
|
|
@@ -9666,6 +9822,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9666
9822
|
type: "integration";
|
|
9667
9823
|
systems: string[];
|
|
9668
9824
|
};
|
|
9825
|
+
id?: string | undefined;
|
|
9669
9826
|
transform?: string | undefined;
|
|
9670
9827
|
_additionalInstructions?: string | undefined;
|
|
9671
9828
|
} | undefined;
|
|
@@ -9737,6 +9894,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9737
9894
|
type: "integration";
|
|
9738
9895
|
systems: string[];
|
|
9739
9896
|
};
|
|
9897
|
+
id?: string | undefined;
|
|
9740
9898
|
transform?: string | undefined;
|
|
9741
9899
|
_additionalInstructions?: string | undefined;
|
|
9742
9900
|
}[] | undefined;
|
|
@@ -9803,6 +9961,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9803
9961
|
type: "integration";
|
|
9804
9962
|
systems: string[];
|
|
9805
9963
|
};
|
|
9964
|
+
id?: string | undefined;
|
|
9806
9965
|
transform?: string | undefined;
|
|
9807
9966
|
_additionalInstructions?: string | undefined;
|
|
9808
9967
|
} | {
|
|
@@ -9828,6 +9987,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9828
9987
|
type: "topic";
|
|
9829
9988
|
name: string;
|
|
9830
9989
|
};
|
|
9990
|
+
id?: string | undefined;
|
|
9831
9991
|
transform?: string | undefined;
|
|
9832
9992
|
_additionalInstructions?: string | undefined;
|
|
9833
9993
|
_withState?: {
|
|
@@ -9856,6 +10016,7 @@ declare const NarrativeSchema: z.ZodObject<{
|
|
|
9856
10016
|
type: "integration";
|
|
9857
10017
|
systems: string[];
|
|
9858
10018
|
};
|
|
10019
|
+
id?: string | undefined;
|
|
9859
10020
|
transform?: string | undefined;
|
|
9860
10021
|
_additionalInstructions?: string | undefined;
|
|
9861
10022
|
} | undefined;
|
|
@@ -10129,6 +10290,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10129
10290
|
server: z.ZodObject<{
|
|
10130
10291
|
description: z.ZodString;
|
|
10131
10292
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10293
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10132
10294
|
target: z.ZodObject<{
|
|
10133
10295
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
10134
10296
|
name: z.ZodString;
|
|
@@ -10200,6 +10362,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10200
10362
|
transform: z.ZodOptional<z.ZodString>;
|
|
10201
10363
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
10202
10364
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
10365
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10203
10366
|
target: z.ZodObject<{
|
|
10204
10367
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
10205
10368
|
name: z.ZodString;
|
|
@@ -10299,6 +10462,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10299
10462
|
type: "integration";
|
|
10300
10463
|
systems: string[];
|
|
10301
10464
|
};
|
|
10465
|
+
id?: string | undefined;
|
|
10302
10466
|
transform?: string | undefined;
|
|
10303
10467
|
_additionalInstructions?: string | undefined;
|
|
10304
10468
|
}, {
|
|
@@ -10327,6 +10491,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10327
10491
|
type: "integration";
|
|
10328
10492
|
systems: string[];
|
|
10329
10493
|
};
|
|
10494
|
+
id?: string | undefined;
|
|
10330
10495
|
transform?: string | undefined;
|
|
10331
10496
|
_additionalInstructions?: string | undefined;
|
|
10332
10497
|
}>>>;
|
|
@@ -10353,6 +10518,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10353
10518
|
type: "topic";
|
|
10354
10519
|
name: string;
|
|
10355
10520
|
};
|
|
10521
|
+
id?: string | undefined;
|
|
10356
10522
|
transform?: string | undefined;
|
|
10357
10523
|
_additionalInstructions?: string | undefined;
|
|
10358
10524
|
_withState?: {
|
|
@@ -10381,6 +10547,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10381
10547
|
type: "integration";
|
|
10382
10548
|
systems: string[];
|
|
10383
10549
|
};
|
|
10550
|
+
id?: string | undefined;
|
|
10384
10551
|
transform?: string | undefined;
|
|
10385
10552
|
_additionalInstructions?: string | undefined;
|
|
10386
10553
|
} | undefined;
|
|
@@ -10407,6 +10574,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10407
10574
|
type: "topic";
|
|
10408
10575
|
name: string;
|
|
10409
10576
|
};
|
|
10577
|
+
id?: string | undefined;
|
|
10410
10578
|
transform?: string | undefined;
|
|
10411
10579
|
_additionalInstructions?: string | undefined;
|
|
10412
10580
|
_withState?: {
|
|
@@ -10435,6 +10603,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10435
10603
|
type: "integration";
|
|
10436
10604
|
systems: string[];
|
|
10437
10605
|
};
|
|
10606
|
+
id?: string | undefined;
|
|
10438
10607
|
transform?: string | undefined;
|
|
10439
10608
|
_additionalInstructions?: string | undefined;
|
|
10440
10609
|
} | undefined;
|
|
@@ -10668,6 +10837,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10668
10837
|
type: "topic";
|
|
10669
10838
|
name: string;
|
|
10670
10839
|
};
|
|
10840
|
+
id?: string | undefined;
|
|
10671
10841
|
transform?: string | undefined;
|
|
10672
10842
|
_additionalInstructions?: string | undefined;
|
|
10673
10843
|
_withState?: {
|
|
@@ -10696,6 +10866,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10696
10866
|
type: "integration";
|
|
10697
10867
|
systems: string[];
|
|
10698
10868
|
};
|
|
10869
|
+
id?: string | undefined;
|
|
10699
10870
|
transform?: string | undefined;
|
|
10700
10871
|
_additionalInstructions?: string | undefined;
|
|
10701
10872
|
} | undefined;
|
|
@@ -10751,6 +10922,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10751
10922
|
type: "topic";
|
|
10752
10923
|
name: string;
|
|
10753
10924
|
};
|
|
10925
|
+
id?: string | undefined;
|
|
10754
10926
|
transform?: string | undefined;
|
|
10755
10927
|
_additionalInstructions?: string | undefined;
|
|
10756
10928
|
_withState?: {
|
|
@@ -10779,6 +10951,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10779
10951
|
type: "integration";
|
|
10780
10952
|
systems: string[];
|
|
10781
10953
|
};
|
|
10954
|
+
id?: string | undefined;
|
|
10782
10955
|
transform?: string | undefined;
|
|
10783
10956
|
_additionalInstructions?: string | undefined;
|
|
10784
10957
|
} | undefined;
|
|
@@ -10841,6 +11014,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10841
11014
|
type: "topic";
|
|
10842
11015
|
name: string;
|
|
10843
11016
|
};
|
|
11017
|
+
id?: string | undefined;
|
|
10844
11018
|
transform?: string | undefined;
|
|
10845
11019
|
_additionalInstructions?: string | undefined;
|
|
10846
11020
|
_withState?: {
|
|
@@ -10869,6 +11043,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10869
11043
|
type: "integration";
|
|
10870
11044
|
systems: string[];
|
|
10871
11045
|
};
|
|
11046
|
+
id?: string | undefined;
|
|
10872
11047
|
transform?: string | undefined;
|
|
10873
11048
|
_additionalInstructions?: string | undefined;
|
|
10874
11049
|
} | undefined;
|
|
@@ -10937,6 +11112,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10937
11112
|
type: "topic";
|
|
10938
11113
|
name: string;
|
|
10939
11114
|
};
|
|
11115
|
+
id?: string | undefined;
|
|
10940
11116
|
transform?: string | undefined;
|
|
10941
11117
|
_additionalInstructions?: string | undefined;
|
|
10942
11118
|
_withState?: {
|
|
@@ -10965,6 +11141,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10965
11141
|
type: "integration";
|
|
10966
11142
|
systems: string[];
|
|
10967
11143
|
};
|
|
11144
|
+
id?: string | undefined;
|
|
10968
11145
|
transform?: string | undefined;
|
|
10969
11146
|
_additionalInstructions?: string | undefined;
|
|
10970
11147
|
} | undefined;
|
|
@@ -10996,6 +11173,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
10996
11173
|
server: z.ZodObject<{
|
|
10997
11174
|
description: z.ZodString;
|
|
10998
11175
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11176
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10999
11177
|
target: z.ZodObject<{
|
|
11000
11178
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
11001
11179
|
name: z.ZodString;
|
|
@@ -11095,6 +11273,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11095
11273
|
type: "integration";
|
|
11096
11274
|
systems: string[];
|
|
11097
11275
|
};
|
|
11276
|
+
id?: string | undefined;
|
|
11098
11277
|
transform?: string | undefined;
|
|
11099
11278
|
_additionalInstructions?: string | undefined;
|
|
11100
11279
|
}, {
|
|
@@ -11123,6 +11302,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11123
11302
|
type: "integration";
|
|
11124
11303
|
systems: string[];
|
|
11125
11304
|
};
|
|
11305
|
+
id?: string | undefined;
|
|
11126
11306
|
transform?: string | undefined;
|
|
11127
11307
|
_additionalInstructions?: string | undefined;
|
|
11128
11308
|
}>, "many">>;
|
|
@@ -11358,6 +11538,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11358
11538
|
type: "integration";
|
|
11359
11539
|
systems: string[];
|
|
11360
11540
|
};
|
|
11541
|
+
id?: string | undefined;
|
|
11361
11542
|
transform?: string | undefined;
|
|
11362
11543
|
_additionalInstructions?: string | undefined;
|
|
11363
11544
|
}[] | undefined;
|
|
@@ -11415,6 +11596,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11415
11596
|
type: "integration";
|
|
11416
11597
|
systems: string[];
|
|
11417
11598
|
};
|
|
11599
|
+
id?: string | undefined;
|
|
11418
11600
|
transform?: string | undefined;
|
|
11419
11601
|
_additionalInstructions?: string | undefined;
|
|
11420
11602
|
}[] | undefined;
|
|
@@ -11479,6 +11661,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11479
11661
|
type: "integration";
|
|
11480
11662
|
systems: string[];
|
|
11481
11663
|
};
|
|
11664
|
+
id?: string | undefined;
|
|
11482
11665
|
transform?: string | undefined;
|
|
11483
11666
|
_additionalInstructions?: string | undefined;
|
|
11484
11667
|
}[] | undefined;
|
|
@@ -11549,6 +11732,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11549
11732
|
type: "integration";
|
|
11550
11733
|
systems: string[];
|
|
11551
11734
|
};
|
|
11735
|
+
id?: string | undefined;
|
|
11552
11736
|
transform?: string | undefined;
|
|
11553
11737
|
_additionalInstructions?: string | undefined;
|
|
11554
11738
|
}[] | undefined;
|
|
@@ -11571,6 +11755,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11571
11755
|
server: z.ZodObject<{
|
|
11572
11756
|
description: z.ZodOptional<z.ZodString>;
|
|
11573
11757
|
data: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
11758
|
+
id: z.ZodOptional<z.ZodString>;
|
|
11574
11759
|
target: z.ZodObject<{
|
|
11575
11760
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
11576
11761
|
name: z.ZodString;
|
|
@@ -11642,6 +11827,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11642
11827
|
transform: z.ZodOptional<z.ZodString>;
|
|
11643
11828
|
_additionalInstructions: z.ZodOptional<z.ZodString>;
|
|
11644
11829
|
_withState: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
11830
|
+
id: z.ZodOptional<z.ZodString>;
|
|
11645
11831
|
target: z.ZodObject<{
|
|
11646
11832
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
11647
11833
|
name: z.ZodString;
|
|
@@ -11741,6 +11927,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11741
11927
|
type: "integration";
|
|
11742
11928
|
systems: string[];
|
|
11743
11929
|
};
|
|
11930
|
+
id?: string | undefined;
|
|
11744
11931
|
transform?: string | undefined;
|
|
11745
11932
|
_additionalInstructions?: string | undefined;
|
|
11746
11933
|
}, {
|
|
@@ -11769,6 +11956,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11769
11956
|
type: "integration";
|
|
11770
11957
|
systems: string[];
|
|
11771
11958
|
};
|
|
11959
|
+
id?: string | undefined;
|
|
11772
11960
|
transform?: string | undefined;
|
|
11773
11961
|
_additionalInstructions?: string | undefined;
|
|
11774
11962
|
}>>>;
|
|
@@ -11795,6 +11983,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11795
11983
|
type: "topic";
|
|
11796
11984
|
name: string;
|
|
11797
11985
|
};
|
|
11986
|
+
id?: string | undefined;
|
|
11798
11987
|
transform?: string | undefined;
|
|
11799
11988
|
_additionalInstructions?: string | undefined;
|
|
11800
11989
|
_withState?: {
|
|
@@ -11823,6 +12012,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11823
12012
|
type: "integration";
|
|
11824
12013
|
systems: string[];
|
|
11825
12014
|
};
|
|
12015
|
+
id?: string | undefined;
|
|
11826
12016
|
transform?: string | undefined;
|
|
11827
12017
|
_additionalInstructions?: string | undefined;
|
|
11828
12018
|
} | undefined;
|
|
@@ -11849,6 +12039,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11849
12039
|
type: "topic";
|
|
11850
12040
|
name: string;
|
|
11851
12041
|
};
|
|
12042
|
+
id?: string | undefined;
|
|
11852
12043
|
transform?: string | undefined;
|
|
11853
12044
|
_additionalInstructions?: string | undefined;
|
|
11854
12045
|
_withState?: {
|
|
@@ -11877,10 +12068,12 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11877
12068
|
type: "integration";
|
|
11878
12069
|
systems: string[];
|
|
11879
12070
|
};
|
|
12071
|
+
id?: string | undefined;
|
|
11880
12072
|
transform?: string | undefined;
|
|
11881
12073
|
_additionalInstructions?: string | undefined;
|
|
11882
12074
|
} | undefined;
|
|
11883
12075
|
}>, z.ZodObject<{
|
|
12076
|
+
id: z.ZodOptional<z.ZodString>;
|
|
11884
12077
|
target: z.ZodObject<{
|
|
11885
12078
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
11886
12079
|
name: z.ZodString;
|
|
@@ -11980,6 +12173,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
11980
12173
|
type: "integration";
|
|
11981
12174
|
systems: string[];
|
|
11982
12175
|
};
|
|
12176
|
+
id?: string | undefined;
|
|
11983
12177
|
transform?: string | undefined;
|
|
11984
12178
|
_additionalInstructions?: string | undefined;
|
|
11985
12179
|
}, {
|
|
@@ -12008,6 +12202,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12008
12202
|
type: "integration";
|
|
12009
12203
|
systems: string[];
|
|
12010
12204
|
};
|
|
12205
|
+
id?: string | undefined;
|
|
12011
12206
|
transform?: string | undefined;
|
|
12012
12207
|
_additionalInstructions?: string | undefined;
|
|
12013
12208
|
}>]>, "many">>;
|
|
@@ -12242,6 +12437,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12242
12437
|
type: "integration";
|
|
12243
12438
|
systems: string[];
|
|
12244
12439
|
};
|
|
12440
|
+
id?: string | undefined;
|
|
12245
12441
|
transform?: string | undefined;
|
|
12246
12442
|
_additionalInstructions?: string | undefined;
|
|
12247
12443
|
} | {
|
|
@@ -12267,6 +12463,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12267
12463
|
type: "topic";
|
|
12268
12464
|
name: string;
|
|
12269
12465
|
};
|
|
12466
|
+
id?: string | undefined;
|
|
12270
12467
|
transform?: string | undefined;
|
|
12271
12468
|
_additionalInstructions?: string | undefined;
|
|
12272
12469
|
_withState?: {
|
|
@@ -12295,6 +12492,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12295
12492
|
type: "integration";
|
|
12296
12493
|
systems: string[];
|
|
12297
12494
|
};
|
|
12495
|
+
id?: string | undefined;
|
|
12298
12496
|
transform?: string | undefined;
|
|
12299
12497
|
_additionalInstructions?: string | undefined;
|
|
12300
12498
|
} | undefined;
|
|
@@ -12353,6 +12551,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12353
12551
|
type: "integration";
|
|
12354
12552
|
systems: string[];
|
|
12355
12553
|
};
|
|
12554
|
+
id?: string | undefined;
|
|
12356
12555
|
transform?: string | undefined;
|
|
12357
12556
|
_additionalInstructions?: string | undefined;
|
|
12358
12557
|
} | {
|
|
@@ -12378,6 +12577,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12378
12577
|
type: "topic";
|
|
12379
12578
|
name: string;
|
|
12380
12579
|
};
|
|
12580
|
+
id?: string | undefined;
|
|
12381
12581
|
transform?: string | undefined;
|
|
12382
12582
|
_additionalInstructions?: string | undefined;
|
|
12383
12583
|
_withState?: {
|
|
@@ -12406,6 +12606,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12406
12606
|
type: "integration";
|
|
12407
12607
|
systems: string[];
|
|
12408
12608
|
};
|
|
12609
|
+
id?: string | undefined;
|
|
12409
12610
|
transform?: string | undefined;
|
|
12410
12611
|
_additionalInstructions?: string | undefined;
|
|
12411
12612
|
} | undefined;
|
|
@@ -12468,6 +12669,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12468
12669
|
type: "integration";
|
|
12469
12670
|
systems: string[];
|
|
12470
12671
|
};
|
|
12672
|
+
id?: string | undefined;
|
|
12471
12673
|
transform?: string | undefined;
|
|
12472
12674
|
_additionalInstructions?: string | undefined;
|
|
12473
12675
|
} | {
|
|
@@ -12493,6 +12695,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12493
12695
|
type: "topic";
|
|
12494
12696
|
name: string;
|
|
12495
12697
|
};
|
|
12698
|
+
id?: string | undefined;
|
|
12496
12699
|
transform?: string | undefined;
|
|
12497
12700
|
_additionalInstructions?: string | undefined;
|
|
12498
12701
|
_withState?: {
|
|
@@ -12521,6 +12724,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12521
12724
|
type: "integration";
|
|
12522
12725
|
systems: string[];
|
|
12523
12726
|
};
|
|
12727
|
+
id?: string | undefined;
|
|
12524
12728
|
transform?: string | undefined;
|
|
12525
12729
|
_additionalInstructions?: string | undefined;
|
|
12526
12730
|
} | undefined;
|
|
@@ -12588,6 +12792,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12588
12792
|
type: "integration";
|
|
12589
12793
|
systems: string[];
|
|
12590
12794
|
};
|
|
12795
|
+
id?: string | undefined;
|
|
12591
12796
|
transform?: string | undefined;
|
|
12592
12797
|
_additionalInstructions?: string | undefined;
|
|
12593
12798
|
} | {
|
|
@@ -12613,6 +12818,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12613
12818
|
type: "topic";
|
|
12614
12819
|
name: string;
|
|
12615
12820
|
};
|
|
12821
|
+
id?: string | undefined;
|
|
12616
12822
|
transform?: string | undefined;
|
|
12617
12823
|
_additionalInstructions?: string | undefined;
|
|
12618
12824
|
_withState?: {
|
|
@@ -12641,6 +12847,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12641
12847
|
type: "integration";
|
|
12642
12848
|
systems: string[];
|
|
12643
12849
|
};
|
|
12850
|
+
id?: string | undefined;
|
|
12644
12851
|
transform?: string | undefined;
|
|
12645
12852
|
_additionalInstructions?: string | undefined;
|
|
12646
12853
|
} | undefined;
|
|
@@ -12751,6 +12958,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12751
12958
|
type: "topic";
|
|
12752
12959
|
name: string;
|
|
12753
12960
|
};
|
|
12961
|
+
id?: string | undefined;
|
|
12754
12962
|
transform?: string | undefined;
|
|
12755
12963
|
_additionalInstructions?: string | undefined;
|
|
12756
12964
|
_withState?: {
|
|
@@ -12779,6 +12987,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12779
12987
|
type: "integration";
|
|
12780
12988
|
systems: string[];
|
|
12781
12989
|
};
|
|
12990
|
+
id?: string | undefined;
|
|
12782
12991
|
transform?: string | undefined;
|
|
12783
12992
|
_additionalInstructions?: string | undefined;
|
|
12784
12993
|
} | undefined;
|
|
@@ -12850,6 +13059,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12850
13059
|
type: "integration";
|
|
12851
13060
|
systems: string[];
|
|
12852
13061
|
};
|
|
13062
|
+
id?: string | undefined;
|
|
12853
13063
|
transform?: string | undefined;
|
|
12854
13064
|
_additionalInstructions?: string | undefined;
|
|
12855
13065
|
}[] | undefined;
|
|
@@ -12916,6 +13126,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12916
13126
|
type: "integration";
|
|
12917
13127
|
systems: string[];
|
|
12918
13128
|
};
|
|
13129
|
+
id?: string | undefined;
|
|
12919
13130
|
transform?: string | undefined;
|
|
12920
13131
|
_additionalInstructions?: string | undefined;
|
|
12921
13132
|
} | {
|
|
@@ -12941,6 +13152,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12941
13152
|
type: "topic";
|
|
12942
13153
|
name: string;
|
|
12943
13154
|
};
|
|
13155
|
+
id?: string | undefined;
|
|
12944
13156
|
transform?: string | undefined;
|
|
12945
13157
|
_additionalInstructions?: string | undefined;
|
|
12946
13158
|
_withState?: {
|
|
@@ -12969,6 +13181,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
12969
13181
|
type: "integration";
|
|
12970
13182
|
systems: string[];
|
|
12971
13183
|
};
|
|
13184
|
+
id?: string | undefined;
|
|
12972
13185
|
transform?: string | undefined;
|
|
12973
13186
|
_additionalInstructions?: string | undefined;
|
|
12974
13187
|
} | undefined;
|
|
@@ -13054,6 +13267,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13054
13267
|
type: "topic";
|
|
13055
13268
|
name: string;
|
|
13056
13269
|
};
|
|
13270
|
+
id?: string | undefined;
|
|
13057
13271
|
transform?: string | undefined;
|
|
13058
13272
|
_additionalInstructions?: string | undefined;
|
|
13059
13273
|
_withState?: {
|
|
@@ -13082,6 +13296,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13082
13296
|
type: "integration";
|
|
13083
13297
|
systems: string[];
|
|
13084
13298
|
};
|
|
13299
|
+
id?: string | undefined;
|
|
13085
13300
|
transform?: string | undefined;
|
|
13086
13301
|
_additionalInstructions?: string | undefined;
|
|
13087
13302
|
} | undefined;
|
|
@@ -13153,6 +13368,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13153
13368
|
type: "integration";
|
|
13154
13369
|
systems: string[];
|
|
13155
13370
|
};
|
|
13371
|
+
id?: string | undefined;
|
|
13156
13372
|
transform?: string | undefined;
|
|
13157
13373
|
_additionalInstructions?: string | undefined;
|
|
13158
13374
|
}[] | undefined;
|
|
@@ -13219,6 +13435,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13219
13435
|
type: "integration";
|
|
13220
13436
|
systems: string[];
|
|
13221
13437
|
};
|
|
13438
|
+
id?: string | undefined;
|
|
13222
13439
|
transform?: string | undefined;
|
|
13223
13440
|
_additionalInstructions?: string | undefined;
|
|
13224
13441
|
} | {
|
|
@@ -13244,6 +13461,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13244
13461
|
type: "topic";
|
|
13245
13462
|
name: string;
|
|
13246
13463
|
};
|
|
13464
|
+
id?: string | undefined;
|
|
13247
13465
|
transform?: string | undefined;
|
|
13248
13466
|
_additionalInstructions?: string | undefined;
|
|
13249
13467
|
_withState?: {
|
|
@@ -13272,6 +13490,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13272
13490
|
type: "integration";
|
|
13273
13491
|
systems: string[];
|
|
13274
13492
|
};
|
|
13493
|
+
id?: string | undefined;
|
|
13275
13494
|
transform?: string | undefined;
|
|
13276
13495
|
_additionalInstructions?: string | undefined;
|
|
13277
13496
|
} | undefined;
|
|
@@ -13658,6 +13877,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13658
13877
|
type: "topic";
|
|
13659
13878
|
name: string;
|
|
13660
13879
|
};
|
|
13880
|
+
id?: string | undefined;
|
|
13661
13881
|
transform?: string | undefined;
|
|
13662
13882
|
_additionalInstructions?: string | undefined;
|
|
13663
13883
|
_withState?: {
|
|
@@ -13686,6 +13906,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13686
13906
|
type: "integration";
|
|
13687
13907
|
systems: string[];
|
|
13688
13908
|
};
|
|
13909
|
+
id?: string | undefined;
|
|
13689
13910
|
transform?: string | undefined;
|
|
13690
13911
|
_additionalInstructions?: string | undefined;
|
|
13691
13912
|
} | undefined;
|
|
@@ -13757,6 +13978,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13757
13978
|
type: "integration";
|
|
13758
13979
|
systems: string[];
|
|
13759
13980
|
};
|
|
13981
|
+
id?: string | undefined;
|
|
13760
13982
|
transform?: string | undefined;
|
|
13761
13983
|
_additionalInstructions?: string | undefined;
|
|
13762
13984
|
}[] | undefined;
|
|
@@ -13823,6 +14045,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13823
14045
|
type: "integration";
|
|
13824
14046
|
systems: string[];
|
|
13825
14047
|
};
|
|
14048
|
+
id?: string | undefined;
|
|
13826
14049
|
transform?: string | undefined;
|
|
13827
14050
|
_additionalInstructions?: string | undefined;
|
|
13828
14051
|
} | {
|
|
@@ -13848,6 +14071,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13848
14071
|
type: "topic";
|
|
13849
14072
|
name: string;
|
|
13850
14073
|
};
|
|
14074
|
+
id?: string | undefined;
|
|
13851
14075
|
transform?: string | undefined;
|
|
13852
14076
|
_additionalInstructions?: string | undefined;
|
|
13853
14077
|
_withState?: {
|
|
@@ -13876,6 +14100,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
13876
14100
|
type: "integration";
|
|
13877
14101
|
systems: string[];
|
|
13878
14102
|
};
|
|
14103
|
+
id?: string | undefined;
|
|
13879
14104
|
transform?: string | undefined;
|
|
13880
14105
|
_additionalInstructions?: string | undefined;
|
|
13881
14106
|
} | undefined;
|
|
@@ -14027,6 +14252,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14027
14252
|
type: "topic";
|
|
14028
14253
|
name: string;
|
|
14029
14254
|
};
|
|
14255
|
+
id?: string | undefined;
|
|
14030
14256
|
transform?: string | undefined;
|
|
14031
14257
|
_additionalInstructions?: string | undefined;
|
|
14032
14258
|
_withState?: {
|
|
@@ -14055,6 +14281,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14055
14281
|
type: "integration";
|
|
14056
14282
|
systems: string[];
|
|
14057
14283
|
};
|
|
14284
|
+
id?: string | undefined;
|
|
14058
14285
|
transform?: string | undefined;
|
|
14059
14286
|
_additionalInstructions?: string | undefined;
|
|
14060
14287
|
} | undefined;
|
|
@@ -14126,6 +14353,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14126
14353
|
type: "integration";
|
|
14127
14354
|
systems: string[];
|
|
14128
14355
|
};
|
|
14356
|
+
id?: string | undefined;
|
|
14129
14357
|
transform?: string | undefined;
|
|
14130
14358
|
_additionalInstructions?: string | undefined;
|
|
14131
14359
|
}[] | undefined;
|
|
@@ -14192,6 +14420,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14192
14420
|
type: "integration";
|
|
14193
14421
|
systems: string[];
|
|
14194
14422
|
};
|
|
14423
|
+
id?: string | undefined;
|
|
14195
14424
|
transform?: string | undefined;
|
|
14196
14425
|
_additionalInstructions?: string | undefined;
|
|
14197
14426
|
} | {
|
|
@@ -14217,6 +14446,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14217
14446
|
type: "topic";
|
|
14218
14447
|
name: string;
|
|
14219
14448
|
};
|
|
14449
|
+
id?: string | undefined;
|
|
14220
14450
|
transform?: string | undefined;
|
|
14221
14451
|
_additionalInstructions?: string | undefined;
|
|
14222
14452
|
_withState?: {
|
|
@@ -14245,6 +14475,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
14245
14475
|
type: "integration";
|
|
14246
14476
|
systems: string[];
|
|
14247
14477
|
};
|
|
14478
|
+
id?: string | undefined;
|
|
14248
14479
|
transform?: string | undefined;
|
|
14249
14480
|
_additionalInstructions?: string | undefined;
|
|
14250
14481
|
} | undefined;
|