@auto-engineer/narrative 1.157.0 → 1.158.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +6 -6
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +72 -0
- package/dist/src/fluent-builder.d.ts +9 -1
- package/dist/src/fluent-builder.d.ts.map +1 -1
- package/dist/src/fluent-builder.js +36 -0
- package/dist/src/fluent-builder.js.map +1 -1
- package/dist/src/id/addAutoIds.d.ts.map +1 -1
- package/dist/src/id/addAutoIds.js +14 -0
- package/dist/src/id/addAutoIds.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/loader/index.d.ts.map +1 -1
- package/dist/src/loader/index.js +2 -0
- package/dist/src/loader/index.js.map +1 -1
- package/dist/src/model-level-registry.d.ts +42 -0
- package/dist/src/model-level-registry.d.ts.map +1 -0
- package/dist/src/model-level-registry.js +42 -0
- package/dist/src/model-level-registry.js.map +1 -0
- package/dist/src/narrative-context.d.ts +2 -0
- package/dist/src/narrative-context.d.ts.map +1 -1
- package/dist/src/narrative-context.js +10 -0
- package/dist/src/narrative-context.js.map +1 -1
- package/dist/src/narrative.d.ts +16 -0
- package/dist/src/narrative.d.ts.map +1 -1
- package/dist/src/narrative.js +39 -1
- package/dist/src/narrative.js.map +1 -1
- package/dist/src/schema.d.ts +879 -1
- package/dist/src/schema.d.ts.map +1 -1
- package/dist/src/schema.js +45 -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 +45 -1
- package/dist/src/transformers/model-to-narrative/generators/flow.js.map +1 -1
- package/dist/src/transformers/model-to-narrative/generators/imports.d.ts +1 -1
- package/dist/src/transformers/model-to-narrative/generators/imports.d.ts.map +1 -1
- package/dist/src/transformers/model-to-narrative/generators/imports.js +6 -1
- package/dist/src/transformers/model-to-narrative/generators/imports.js.map +1 -1
- package/dist/src/transformers/model-to-narrative/generators/metadata.d.ts +10 -0
- package/dist/src/transformers/model-to-narrative/generators/metadata.d.ts.map +1 -0
- package/dist/src/transformers/model-to-narrative/generators/metadata.js +93 -0
- package/dist/src/transformers/model-to-narrative/generators/metadata.js.map +1 -0
- package/dist/src/transformers/model-to-narrative/index.d.ts.map +1 -1
- package/dist/src/transformers/model-to-narrative/index.js +21 -1
- package/dist/src/transformers/model-to-narrative/index.js.map +1 -1
- package/dist/src/transformers/narrative-to-model/assemble.d.ts +10 -2
- package/dist/src/transformers/narrative-to-model/assemble.d.ts.map +1 -1
- package/dist/src/transformers/narrative-to-model/assemble.js +47 -11
- package/dist/src/transformers/narrative-to-model/assemble.js.map +1 -1
- package/dist/src/transformers/narrative-to-model/index.d.ts.map +1 -1
- package/dist/src/transformers/narrative-to-model/index.js +9 -1
- package/dist/src/transformers/narrative-to-model/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/ketchup-plan.md +14 -4
- package/package.json +4 -4
- package/src/fluent-builder.specs.ts +60 -0
- package/src/fluent-builder.ts +53 -1
- package/src/id/addAutoIds.ts +15 -0
- package/src/index.ts +5 -0
- package/src/loader/index.ts +2 -0
- package/src/model-level-registry.specs.ts +217 -0
- package/src/model-level-registry.ts +60 -0
- package/src/model-to-narrative.specs.ts +102 -0
- package/src/narrative-context.ts +10 -0
- package/src/narrative.ts +48 -0
- package/src/schema.specs.ts +290 -0
- package/src/schema.ts +55 -0
- package/src/transformers/model-to-narrative/generators/flow.ts +52 -1
- package/src/transformers/model-to-narrative/generators/imports.ts +6 -1
- package/src/transformers/model-to-narrative/generators/metadata.specs.ts +40 -0
- package/src/transformers/model-to-narrative/generators/metadata.ts +140 -0
- package/src/transformers/model-to-narrative/index.ts +25 -2
- package/src/transformers/narrative-to-model/assemble.specs.ts +82 -0
- package/src/transformers/narrative-to-model/assemble.ts +61 -12
- package/src/transformers/narrative-to-model/index.ts +22 -1
package/dist/src/schema.d.ts
CHANGED
|
@@ -79,6 +79,33 @@ declare const IntegrationSchema: z.ZodObject<{
|
|
|
79
79
|
name: string;
|
|
80
80
|
description?: string | undefined;
|
|
81
81
|
}>;
|
|
82
|
+
declare const ActorSchema: z.ZodObject<{
|
|
83
|
+
name: z.ZodString;
|
|
84
|
+
kind: z.ZodEnum<["person", "system"]>;
|
|
85
|
+
description: z.ZodString;
|
|
86
|
+
}, "strip", z.ZodTypeAny, {
|
|
87
|
+
kind: "person" | "system";
|
|
88
|
+
name: string;
|
|
89
|
+
description: string;
|
|
90
|
+
}, {
|
|
91
|
+
kind: "person" | "system";
|
|
92
|
+
name: string;
|
|
93
|
+
description: string;
|
|
94
|
+
}>;
|
|
95
|
+
declare const EntitySchema: z.ZodObject<{
|
|
96
|
+
name: z.ZodString;
|
|
97
|
+
description: z.ZodString;
|
|
98
|
+
attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
name: string;
|
|
101
|
+
description: string;
|
|
102
|
+
attributes?: string[] | undefined;
|
|
103
|
+
}, {
|
|
104
|
+
name: string;
|
|
105
|
+
description: string;
|
|
106
|
+
attributes?: string[] | undefined;
|
|
107
|
+
}>;
|
|
108
|
+
declare const ImpactSchema: z.ZodEnum<["critical", "important", "nice-to-have"]>;
|
|
82
109
|
export declare const MessageTargetSchema: z.ZodObject<{
|
|
83
110
|
type: z.ZodEnum<["Event", "Command", "State"]>;
|
|
84
111
|
name: z.ZodString;
|
|
@@ -2241,6 +2268,22 @@ export declare const DesignSchema: z.ZodObject<{
|
|
|
2241
2268
|
originatingPrompt?: string | undefined;
|
|
2242
2269
|
} | undefined;
|
|
2243
2270
|
}>;
|
|
2271
|
+
export declare const ExitSchema: z.ZodObject<{
|
|
2272
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2273
|
+
label: z.ZodString;
|
|
2274
|
+
condition: z.ZodString;
|
|
2275
|
+
sceneId: z.ZodString;
|
|
2276
|
+
}, "strip", z.ZodTypeAny, {
|
|
2277
|
+
label: string;
|
|
2278
|
+
condition: string;
|
|
2279
|
+
sceneId: string;
|
|
2280
|
+
id?: string | undefined;
|
|
2281
|
+
}, {
|
|
2282
|
+
label: string;
|
|
2283
|
+
condition: string;
|
|
2284
|
+
sceneId: string;
|
|
2285
|
+
id?: string | undefined;
|
|
2286
|
+
}>;
|
|
2244
2287
|
declare const StepErrorSchema: z.ZodObject<{
|
|
2245
2288
|
type: z.ZodEnum<["IllegalStateError", "ValidationError", "NotFoundError"]>;
|
|
2246
2289
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2801,6 +2844,23 @@ declare const CommandMomentSchema: z.ZodObject<{
|
|
|
2801
2844
|
originatingPrompt?: string | undefined;
|
|
2802
2845
|
} | undefined;
|
|
2803
2846
|
}>>;
|
|
2847
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2848
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2849
|
+
label: z.ZodString;
|
|
2850
|
+
condition: z.ZodString;
|
|
2851
|
+
sceneId: z.ZodString;
|
|
2852
|
+
}, "strip", z.ZodTypeAny, {
|
|
2853
|
+
label: string;
|
|
2854
|
+
condition: string;
|
|
2855
|
+
sceneId: string;
|
|
2856
|
+
id?: string | undefined;
|
|
2857
|
+
}, {
|
|
2858
|
+
label: string;
|
|
2859
|
+
condition: string;
|
|
2860
|
+
sceneId: string;
|
|
2861
|
+
id?: string | undefined;
|
|
2862
|
+
}>, "many">>;
|
|
2863
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
2804
2864
|
} & {
|
|
2805
2865
|
type: z.ZodLiteral<"command">;
|
|
2806
2866
|
client: z.ZodObject<{
|
|
@@ -4199,6 +4259,13 @@ declare const CommandMomentSchema: z.ZodObject<{
|
|
|
4199
4259
|
originatingPrompt?: string | undefined;
|
|
4200
4260
|
} | undefined;
|
|
4201
4261
|
} | undefined;
|
|
4262
|
+
exits?: {
|
|
4263
|
+
label: string;
|
|
4264
|
+
condition: string;
|
|
4265
|
+
sceneId: string;
|
|
4266
|
+
id?: string | undefined;
|
|
4267
|
+
}[] | undefined;
|
|
4268
|
+
initiator?: string | undefined;
|
|
4202
4269
|
request?: string | undefined;
|
|
4203
4270
|
mappings?: {
|
|
4204
4271
|
target: {
|
|
@@ -4369,6 +4436,13 @@ declare const CommandMomentSchema: z.ZodObject<{
|
|
|
4369
4436
|
originatingPrompt?: string | undefined;
|
|
4370
4437
|
} | undefined;
|
|
4371
4438
|
} | undefined;
|
|
4439
|
+
exits?: {
|
|
4440
|
+
label: string;
|
|
4441
|
+
condition: string;
|
|
4442
|
+
sceneId: string;
|
|
4443
|
+
id?: string | undefined;
|
|
4444
|
+
}[] | undefined;
|
|
4445
|
+
initiator?: string | undefined;
|
|
4372
4446
|
request?: string | undefined;
|
|
4373
4447
|
mappings?: {
|
|
4374
4448
|
target: {
|
|
@@ -4416,6 +4490,23 @@ declare const QueryMomentSchema: z.ZodObject<{
|
|
|
4416
4490
|
originatingPrompt?: string | undefined;
|
|
4417
4491
|
} | undefined;
|
|
4418
4492
|
}>>;
|
|
4493
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4494
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4495
|
+
label: z.ZodString;
|
|
4496
|
+
condition: z.ZodString;
|
|
4497
|
+
sceneId: z.ZodString;
|
|
4498
|
+
}, "strip", z.ZodTypeAny, {
|
|
4499
|
+
label: string;
|
|
4500
|
+
condition: string;
|
|
4501
|
+
sceneId: string;
|
|
4502
|
+
id?: string | undefined;
|
|
4503
|
+
}, {
|
|
4504
|
+
label: string;
|
|
4505
|
+
condition: string;
|
|
4506
|
+
sceneId: string;
|
|
4507
|
+
id?: string | undefined;
|
|
4508
|
+
}>, "many">>;
|
|
4509
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
4419
4510
|
} & {
|
|
4420
4511
|
type: z.ZodLiteral<"query">;
|
|
4421
4512
|
client: z.ZodObject<{
|
|
@@ -5814,6 +5905,13 @@ declare const QueryMomentSchema: z.ZodObject<{
|
|
|
5814
5905
|
originatingPrompt?: string | undefined;
|
|
5815
5906
|
} | undefined;
|
|
5816
5907
|
} | undefined;
|
|
5908
|
+
exits?: {
|
|
5909
|
+
label: string;
|
|
5910
|
+
condition: string;
|
|
5911
|
+
sceneId: string;
|
|
5912
|
+
id?: string | undefined;
|
|
5913
|
+
}[] | undefined;
|
|
5914
|
+
initiator?: string | undefined;
|
|
5817
5915
|
request?: string | undefined;
|
|
5818
5916
|
mappings?: {
|
|
5819
5917
|
target: {
|
|
@@ -5984,6 +6082,13 @@ declare const QueryMomentSchema: z.ZodObject<{
|
|
|
5984
6082
|
originatingPrompt?: string | undefined;
|
|
5985
6083
|
} | undefined;
|
|
5986
6084
|
} | undefined;
|
|
6085
|
+
exits?: {
|
|
6086
|
+
label: string;
|
|
6087
|
+
condition: string;
|
|
6088
|
+
sceneId: string;
|
|
6089
|
+
id?: string | undefined;
|
|
6090
|
+
}[] | undefined;
|
|
6091
|
+
initiator?: string | undefined;
|
|
5987
6092
|
request?: string | undefined;
|
|
5988
6093
|
mappings?: {
|
|
5989
6094
|
target: {
|
|
@@ -6031,6 +6136,23 @@ declare const ReactMomentSchema: z.ZodObject<{
|
|
|
6031
6136
|
originatingPrompt?: string | undefined;
|
|
6032
6137
|
} | undefined;
|
|
6033
6138
|
}>>;
|
|
6139
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6140
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6141
|
+
label: z.ZodString;
|
|
6142
|
+
condition: z.ZodString;
|
|
6143
|
+
sceneId: z.ZodString;
|
|
6144
|
+
}, "strip", z.ZodTypeAny, {
|
|
6145
|
+
label: string;
|
|
6146
|
+
condition: string;
|
|
6147
|
+
sceneId: string;
|
|
6148
|
+
id?: string | undefined;
|
|
6149
|
+
}, {
|
|
6150
|
+
label: string;
|
|
6151
|
+
condition: string;
|
|
6152
|
+
sceneId: string;
|
|
6153
|
+
id?: string | undefined;
|
|
6154
|
+
}>, "many">>;
|
|
6155
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
6034
6156
|
} & {
|
|
6035
6157
|
type: z.ZodLiteral<"react">;
|
|
6036
6158
|
server: z.ZodObject<{
|
|
@@ -7293,6 +7415,13 @@ declare const ReactMomentSchema: z.ZodObject<{
|
|
|
7293
7415
|
originatingPrompt?: string | undefined;
|
|
7294
7416
|
} | undefined;
|
|
7295
7417
|
} | undefined;
|
|
7418
|
+
exits?: {
|
|
7419
|
+
label: string;
|
|
7420
|
+
condition: string;
|
|
7421
|
+
sceneId: string;
|
|
7422
|
+
id?: string | undefined;
|
|
7423
|
+
}[] | undefined;
|
|
7424
|
+
initiator?: string | undefined;
|
|
7296
7425
|
}, {
|
|
7297
7426
|
type: "react";
|
|
7298
7427
|
name: string;
|
|
@@ -7435,6 +7564,13 @@ declare const ReactMomentSchema: z.ZodObject<{
|
|
|
7435
7564
|
originatingPrompt?: string | undefined;
|
|
7436
7565
|
} | undefined;
|
|
7437
7566
|
} | undefined;
|
|
7567
|
+
exits?: {
|
|
7568
|
+
label: string;
|
|
7569
|
+
condition: string;
|
|
7570
|
+
sceneId: string;
|
|
7571
|
+
id?: string | undefined;
|
|
7572
|
+
}[] | undefined;
|
|
7573
|
+
initiator?: string | undefined;
|
|
7438
7574
|
}>;
|
|
7439
7575
|
declare const ExperienceMomentSchema: z.ZodObject<{
|
|
7440
7576
|
name: z.ZodString;
|
|
@@ -7468,6 +7604,23 @@ declare const ExperienceMomentSchema: z.ZodObject<{
|
|
|
7468
7604
|
originatingPrompt?: string | undefined;
|
|
7469
7605
|
} | undefined;
|
|
7470
7606
|
}>>;
|
|
7607
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7608
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7609
|
+
label: z.ZodString;
|
|
7610
|
+
condition: z.ZodString;
|
|
7611
|
+
sceneId: z.ZodString;
|
|
7612
|
+
}, "strip", z.ZodTypeAny, {
|
|
7613
|
+
label: string;
|
|
7614
|
+
condition: string;
|
|
7615
|
+
sceneId: string;
|
|
7616
|
+
id?: string | undefined;
|
|
7617
|
+
}, {
|
|
7618
|
+
label: string;
|
|
7619
|
+
condition: string;
|
|
7620
|
+
sceneId: string;
|
|
7621
|
+
id?: string | undefined;
|
|
7622
|
+
}>, "many">>;
|
|
7623
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
7471
7624
|
} & {
|
|
7472
7625
|
type: z.ZodLiteral<"experience">;
|
|
7473
7626
|
client: z.ZodObject<{
|
|
@@ -7567,6 +7720,13 @@ declare const ExperienceMomentSchema: z.ZodObject<{
|
|
|
7567
7720
|
originatingPrompt?: string | undefined;
|
|
7568
7721
|
} | undefined;
|
|
7569
7722
|
} | undefined;
|
|
7723
|
+
exits?: {
|
|
7724
|
+
label: string;
|
|
7725
|
+
condition: string;
|
|
7726
|
+
sceneId: string;
|
|
7727
|
+
id?: string | undefined;
|
|
7728
|
+
}[] | undefined;
|
|
7729
|
+
initiator?: string | undefined;
|
|
7570
7730
|
}, {
|
|
7571
7731
|
type: "experience";
|
|
7572
7732
|
name: string;
|
|
@@ -7596,6 +7756,13 @@ declare const ExperienceMomentSchema: z.ZodObject<{
|
|
|
7596
7756
|
originatingPrompt?: string | undefined;
|
|
7597
7757
|
} | undefined;
|
|
7598
7758
|
} | undefined;
|
|
7759
|
+
exits?: {
|
|
7760
|
+
label: string;
|
|
7761
|
+
condition: string;
|
|
7762
|
+
sceneId: string;
|
|
7763
|
+
id?: string | undefined;
|
|
7764
|
+
}[] | undefined;
|
|
7765
|
+
initiator?: string | undefined;
|
|
7599
7766
|
}>;
|
|
7600
7767
|
declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7601
7768
|
name: z.ZodString;
|
|
@@ -7629,6 +7796,23 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7629
7796
|
originatingPrompt?: string | undefined;
|
|
7630
7797
|
} | undefined;
|
|
7631
7798
|
}>>;
|
|
7799
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7800
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7801
|
+
label: z.ZodString;
|
|
7802
|
+
condition: z.ZodString;
|
|
7803
|
+
sceneId: z.ZodString;
|
|
7804
|
+
}, "strip", z.ZodTypeAny, {
|
|
7805
|
+
label: string;
|
|
7806
|
+
condition: string;
|
|
7807
|
+
sceneId: string;
|
|
7808
|
+
id?: string | undefined;
|
|
7809
|
+
}, {
|
|
7810
|
+
label: string;
|
|
7811
|
+
condition: string;
|
|
7812
|
+
sceneId: string;
|
|
7813
|
+
id?: string | undefined;
|
|
7814
|
+
}>, "many">>;
|
|
7815
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
7632
7816
|
} & {
|
|
7633
7817
|
type: z.ZodLiteral<"command">;
|
|
7634
7818
|
client: z.ZodObject<{
|
|
@@ -9027,6 +9211,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9027
9211
|
originatingPrompt?: string | undefined;
|
|
9028
9212
|
} | undefined;
|
|
9029
9213
|
} | undefined;
|
|
9214
|
+
exits?: {
|
|
9215
|
+
label: string;
|
|
9216
|
+
condition: string;
|
|
9217
|
+
sceneId: string;
|
|
9218
|
+
id?: string | undefined;
|
|
9219
|
+
}[] | undefined;
|
|
9220
|
+
initiator?: string | undefined;
|
|
9030
9221
|
request?: string | undefined;
|
|
9031
9222
|
mappings?: {
|
|
9032
9223
|
target: {
|
|
@@ -9197,6 +9388,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9197
9388
|
originatingPrompt?: string | undefined;
|
|
9198
9389
|
} | undefined;
|
|
9199
9390
|
} | undefined;
|
|
9391
|
+
exits?: {
|
|
9392
|
+
label: string;
|
|
9393
|
+
condition: string;
|
|
9394
|
+
sceneId: string;
|
|
9395
|
+
id?: string | undefined;
|
|
9396
|
+
}[] | undefined;
|
|
9397
|
+
initiator?: string | undefined;
|
|
9200
9398
|
request?: string | undefined;
|
|
9201
9399
|
mappings?: {
|
|
9202
9400
|
target: {
|
|
@@ -9243,6 +9441,23 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9243
9441
|
originatingPrompt?: string | undefined;
|
|
9244
9442
|
} | undefined;
|
|
9245
9443
|
}>>;
|
|
9444
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9445
|
+
id: z.ZodOptional<z.ZodString>;
|
|
9446
|
+
label: z.ZodString;
|
|
9447
|
+
condition: z.ZodString;
|
|
9448
|
+
sceneId: z.ZodString;
|
|
9449
|
+
}, "strip", z.ZodTypeAny, {
|
|
9450
|
+
label: string;
|
|
9451
|
+
condition: string;
|
|
9452
|
+
sceneId: string;
|
|
9453
|
+
id?: string | undefined;
|
|
9454
|
+
}, {
|
|
9455
|
+
label: string;
|
|
9456
|
+
condition: string;
|
|
9457
|
+
sceneId: string;
|
|
9458
|
+
id?: string | undefined;
|
|
9459
|
+
}>, "many">>;
|
|
9460
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
9246
9461
|
} & {
|
|
9247
9462
|
type: z.ZodLiteral<"query">;
|
|
9248
9463
|
client: z.ZodObject<{
|
|
@@ -10641,6 +10856,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10641
10856
|
originatingPrompt?: string | undefined;
|
|
10642
10857
|
} | undefined;
|
|
10643
10858
|
} | undefined;
|
|
10859
|
+
exits?: {
|
|
10860
|
+
label: string;
|
|
10861
|
+
condition: string;
|
|
10862
|
+
sceneId: string;
|
|
10863
|
+
id?: string | undefined;
|
|
10864
|
+
}[] | undefined;
|
|
10865
|
+
initiator?: string | undefined;
|
|
10644
10866
|
request?: string | undefined;
|
|
10645
10867
|
mappings?: {
|
|
10646
10868
|
target: {
|
|
@@ -10811,6 +11033,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10811
11033
|
originatingPrompt?: string | undefined;
|
|
10812
11034
|
} | undefined;
|
|
10813
11035
|
} | undefined;
|
|
11036
|
+
exits?: {
|
|
11037
|
+
label: string;
|
|
11038
|
+
condition: string;
|
|
11039
|
+
sceneId: string;
|
|
11040
|
+
id?: string | undefined;
|
|
11041
|
+
}[] | undefined;
|
|
11042
|
+
initiator?: string | undefined;
|
|
10814
11043
|
request?: string | undefined;
|
|
10815
11044
|
mappings?: {
|
|
10816
11045
|
target: {
|
|
@@ -10857,6 +11086,23 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10857
11086
|
originatingPrompt?: string | undefined;
|
|
10858
11087
|
} | undefined;
|
|
10859
11088
|
}>>;
|
|
11089
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11090
|
+
id: z.ZodOptional<z.ZodString>;
|
|
11091
|
+
label: z.ZodString;
|
|
11092
|
+
condition: z.ZodString;
|
|
11093
|
+
sceneId: z.ZodString;
|
|
11094
|
+
}, "strip", z.ZodTypeAny, {
|
|
11095
|
+
label: string;
|
|
11096
|
+
condition: string;
|
|
11097
|
+
sceneId: string;
|
|
11098
|
+
id?: string | undefined;
|
|
11099
|
+
}, {
|
|
11100
|
+
label: string;
|
|
11101
|
+
condition: string;
|
|
11102
|
+
sceneId: string;
|
|
11103
|
+
id?: string | undefined;
|
|
11104
|
+
}>, "many">>;
|
|
11105
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
10860
11106
|
} & {
|
|
10861
11107
|
type: z.ZodLiteral<"react">;
|
|
10862
11108
|
server: z.ZodObject<{
|
|
@@ -12119,6 +12365,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12119
12365
|
originatingPrompt?: string | undefined;
|
|
12120
12366
|
} | undefined;
|
|
12121
12367
|
} | undefined;
|
|
12368
|
+
exits?: {
|
|
12369
|
+
label: string;
|
|
12370
|
+
condition: string;
|
|
12371
|
+
sceneId: string;
|
|
12372
|
+
id?: string | undefined;
|
|
12373
|
+
}[] | undefined;
|
|
12374
|
+
initiator?: string | undefined;
|
|
12122
12375
|
}, {
|
|
12123
12376
|
type: "react";
|
|
12124
12377
|
name: string;
|
|
@@ -12261,6 +12514,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12261
12514
|
originatingPrompt?: string | undefined;
|
|
12262
12515
|
} | undefined;
|
|
12263
12516
|
} | undefined;
|
|
12517
|
+
exits?: {
|
|
12518
|
+
label: string;
|
|
12519
|
+
condition: string;
|
|
12520
|
+
sceneId: string;
|
|
12521
|
+
id?: string | undefined;
|
|
12522
|
+
}[] | undefined;
|
|
12523
|
+
initiator?: string | undefined;
|
|
12264
12524
|
}>, z.ZodObject<{
|
|
12265
12525
|
name: z.ZodString;
|
|
12266
12526
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12293,6 +12553,23 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12293
12553
|
originatingPrompt?: string | undefined;
|
|
12294
12554
|
} | undefined;
|
|
12295
12555
|
}>>;
|
|
12556
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12557
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12558
|
+
label: z.ZodString;
|
|
12559
|
+
condition: z.ZodString;
|
|
12560
|
+
sceneId: z.ZodString;
|
|
12561
|
+
}, "strip", z.ZodTypeAny, {
|
|
12562
|
+
label: string;
|
|
12563
|
+
condition: string;
|
|
12564
|
+
sceneId: string;
|
|
12565
|
+
id?: string | undefined;
|
|
12566
|
+
}, {
|
|
12567
|
+
label: string;
|
|
12568
|
+
condition: string;
|
|
12569
|
+
sceneId: string;
|
|
12570
|
+
id?: string | undefined;
|
|
12571
|
+
}>, "many">>;
|
|
12572
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
12296
12573
|
} & {
|
|
12297
12574
|
type: z.ZodLiteral<"experience">;
|
|
12298
12575
|
client: z.ZodObject<{
|
|
@@ -12392,6 +12669,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12392
12669
|
originatingPrompt?: string | undefined;
|
|
12393
12670
|
} | undefined;
|
|
12394
12671
|
} | undefined;
|
|
12672
|
+
exits?: {
|
|
12673
|
+
label: string;
|
|
12674
|
+
condition: string;
|
|
12675
|
+
sceneId: string;
|
|
12676
|
+
id?: string | undefined;
|
|
12677
|
+
}[] | undefined;
|
|
12678
|
+
initiator?: string | undefined;
|
|
12395
12679
|
}, {
|
|
12396
12680
|
type: "experience";
|
|
12397
12681
|
name: string;
|
|
@@ -12421,6 +12705,13 @@ declare const MomentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12421
12705
|
originatingPrompt?: string | undefined;
|
|
12422
12706
|
} | undefined;
|
|
12423
12707
|
} | undefined;
|
|
12708
|
+
exits?: {
|
|
12709
|
+
label: string;
|
|
12710
|
+
condition: string;
|
|
12711
|
+
sceneId: string;
|
|
12712
|
+
id?: string | undefined;
|
|
12713
|
+
}[] | undefined;
|
|
12714
|
+
initiator?: string | undefined;
|
|
12424
12715
|
}>]>;
|
|
12425
12716
|
export declare const SceneRouteSchema: z.ZodObject<{
|
|
12426
12717
|
type: z.ZodEnum<["dedicated", "nested", "no-route"]>;
|
|
@@ -12507,6 +12798,10 @@ export declare const NarrativeSchema: z.ZodObject<{
|
|
|
12507
12798
|
originatingPrompt?: string | undefined;
|
|
12508
12799
|
} | undefined;
|
|
12509
12800
|
}>>;
|
|
12801
|
+
outcome: z.ZodOptional<z.ZodString>;
|
|
12802
|
+
impact: z.ZodOptional<z.ZodEnum<["critical", "important", "nice-to-have"]>>;
|
|
12803
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
12804
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12510
12805
|
}, "strip", z.ZodTypeAny, {
|
|
12511
12806
|
name: string;
|
|
12512
12807
|
sceneIds: string[];
|
|
@@ -12520,6 +12815,10 @@ export declare const NarrativeSchema: z.ZodObject<{
|
|
|
12520
12815
|
} | undefined;
|
|
12521
12816
|
} | undefined;
|
|
12522
12817
|
actors?: string[] | undefined;
|
|
12818
|
+
outcome?: string | undefined;
|
|
12819
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
12820
|
+
requirements?: string | undefined;
|
|
12821
|
+
assumptions?: string[] | undefined;
|
|
12523
12822
|
}, {
|
|
12524
12823
|
name: string;
|
|
12525
12824
|
sceneIds: string[];
|
|
@@ -12533,6 +12832,10 @@ export declare const NarrativeSchema: z.ZodObject<{
|
|
|
12533
12832
|
} | undefined;
|
|
12534
12833
|
} | undefined;
|
|
12535
12834
|
actors?: string[] | undefined;
|
|
12835
|
+
outcome?: string | undefined;
|
|
12836
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
12837
|
+
requirements?: string | undefined;
|
|
12838
|
+
assumptions?: string[] | undefined;
|
|
12536
12839
|
}>;
|
|
12537
12840
|
declare const SceneSchema: z.ZodObject<{
|
|
12538
12841
|
name: z.ZodString;
|
|
@@ -12570,6 +12873,23 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
12570
12873
|
originatingPrompt?: string | undefined;
|
|
12571
12874
|
} | undefined;
|
|
12572
12875
|
}>>;
|
|
12876
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12877
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12878
|
+
label: z.ZodString;
|
|
12879
|
+
condition: z.ZodString;
|
|
12880
|
+
sceneId: z.ZodString;
|
|
12881
|
+
}, "strip", z.ZodTypeAny, {
|
|
12882
|
+
label: string;
|
|
12883
|
+
condition: string;
|
|
12884
|
+
sceneId: string;
|
|
12885
|
+
id?: string | undefined;
|
|
12886
|
+
}, {
|
|
12887
|
+
label: string;
|
|
12888
|
+
condition: string;
|
|
12889
|
+
sceneId: string;
|
|
12890
|
+
id?: string | undefined;
|
|
12891
|
+
}>, "many">>;
|
|
12892
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
12573
12893
|
} & {
|
|
12574
12894
|
type: z.ZodLiteral<"command">;
|
|
12575
12895
|
client: z.ZodObject<{
|
|
@@ -13968,6 +14288,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
13968
14288
|
originatingPrompt?: string | undefined;
|
|
13969
14289
|
} | undefined;
|
|
13970
14290
|
} | undefined;
|
|
14291
|
+
exits?: {
|
|
14292
|
+
label: string;
|
|
14293
|
+
condition: string;
|
|
14294
|
+
sceneId: string;
|
|
14295
|
+
id?: string | undefined;
|
|
14296
|
+
}[] | undefined;
|
|
14297
|
+
initiator?: string | undefined;
|
|
13971
14298
|
request?: string | undefined;
|
|
13972
14299
|
mappings?: {
|
|
13973
14300
|
target: {
|
|
@@ -14138,6 +14465,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
14138
14465
|
originatingPrompt?: string | undefined;
|
|
14139
14466
|
} | undefined;
|
|
14140
14467
|
} | undefined;
|
|
14468
|
+
exits?: {
|
|
14469
|
+
label: string;
|
|
14470
|
+
condition: string;
|
|
14471
|
+
sceneId: string;
|
|
14472
|
+
id?: string | undefined;
|
|
14473
|
+
}[] | undefined;
|
|
14474
|
+
initiator?: string | undefined;
|
|
14141
14475
|
request?: string | undefined;
|
|
14142
14476
|
mappings?: {
|
|
14143
14477
|
target: {
|
|
@@ -14184,6 +14518,23 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
14184
14518
|
originatingPrompt?: string | undefined;
|
|
14185
14519
|
} | undefined;
|
|
14186
14520
|
}>>;
|
|
14521
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14522
|
+
id: z.ZodOptional<z.ZodString>;
|
|
14523
|
+
label: z.ZodString;
|
|
14524
|
+
condition: z.ZodString;
|
|
14525
|
+
sceneId: z.ZodString;
|
|
14526
|
+
}, "strip", z.ZodTypeAny, {
|
|
14527
|
+
label: string;
|
|
14528
|
+
condition: string;
|
|
14529
|
+
sceneId: string;
|
|
14530
|
+
id?: string | undefined;
|
|
14531
|
+
}, {
|
|
14532
|
+
label: string;
|
|
14533
|
+
condition: string;
|
|
14534
|
+
sceneId: string;
|
|
14535
|
+
id?: string | undefined;
|
|
14536
|
+
}>, "many">>;
|
|
14537
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
14187
14538
|
} & {
|
|
14188
14539
|
type: z.ZodLiteral<"query">;
|
|
14189
14540
|
client: z.ZodObject<{
|
|
@@ -15582,6 +15933,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
15582
15933
|
originatingPrompt?: string | undefined;
|
|
15583
15934
|
} | undefined;
|
|
15584
15935
|
} | undefined;
|
|
15936
|
+
exits?: {
|
|
15937
|
+
label: string;
|
|
15938
|
+
condition: string;
|
|
15939
|
+
sceneId: string;
|
|
15940
|
+
id?: string | undefined;
|
|
15941
|
+
}[] | undefined;
|
|
15942
|
+
initiator?: string | undefined;
|
|
15585
15943
|
request?: string | undefined;
|
|
15586
15944
|
mappings?: {
|
|
15587
15945
|
target: {
|
|
@@ -15752,6 +16110,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
15752
16110
|
originatingPrompt?: string | undefined;
|
|
15753
16111
|
} | undefined;
|
|
15754
16112
|
} | undefined;
|
|
16113
|
+
exits?: {
|
|
16114
|
+
label: string;
|
|
16115
|
+
condition: string;
|
|
16116
|
+
sceneId: string;
|
|
16117
|
+
id?: string | undefined;
|
|
16118
|
+
}[] | undefined;
|
|
16119
|
+
initiator?: string | undefined;
|
|
15755
16120
|
request?: string | undefined;
|
|
15756
16121
|
mappings?: {
|
|
15757
16122
|
target: {
|
|
@@ -15798,6 +16163,23 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
15798
16163
|
originatingPrompt?: string | undefined;
|
|
15799
16164
|
} | undefined;
|
|
15800
16165
|
}>>;
|
|
16166
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16167
|
+
id: z.ZodOptional<z.ZodString>;
|
|
16168
|
+
label: z.ZodString;
|
|
16169
|
+
condition: z.ZodString;
|
|
16170
|
+
sceneId: z.ZodString;
|
|
16171
|
+
}, "strip", z.ZodTypeAny, {
|
|
16172
|
+
label: string;
|
|
16173
|
+
condition: string;
|
|
16174
|
+
sceneId: string;
|
|
16175
|
+
id?: string | undefined;
|
|
16176
|
+
}, {
|
|
16177
|
+
label: string;
|
|
16178
|
+
condition: string;
|
|
16179
|
+
sceneId: string;
|
|
16180
|
+
id?: string | undefined;
|
|
16181
|
+
}>, "many">>;
|
|
16182
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
15801
16183
|
} & {
|
|
15802
16184
|
type: z.ZodLiteral<"react">;
|
|
15803
16185
|
server: z.ZodObject<{
|
|
@@ -17060,6 +17442,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17060
17442
|
originatingPrompt?: string | undefined;
|
|
17061
17443
|
} | undefined;
|
|
17062
17444
|
} | undefined;
|
|
17445
|
+
exits?: {
|
|
17446
|
+
label: string;
|
|
17447
|
+
condition: string;
|
|
17448
|
+
sceneId: string;
|
|
17449
|
+
id?: string | undefined;
|
|
17450
|
+
}[] | undefined;
|
|
17451
|
+
initiator?: string | undefined;
|
|
17063
17452
|
}, {
|
|
17064
17453
|
type: "react";
|
|
17065
17454
|
name: string;
|
|
@@ -17202,6 +17591,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17202
17591
|
originatingPrompt?: string | undefined;
|
|
17203
17592
|
} | undefined;
|
|
17204
17593
|
} | undefined;
|
|
17594
|
+
exits?: {
|
|
17595
|
+
label: string;
|
|
17596
|
+
condition: string;
|
|
17597
|
+
sceneId: string;
|
|
17598
|
+
id?: string | undefined;
|
|
17599
|
+
}[] | undefined;
|
|
17600
|
+
initiator?: string | undefined;
|
|
17205
17601
|
}>, z.ZodObject<{
|
|
17206
17602
|
name: z.ZodString;
|
|
17207
17603
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -17234,6 +17630,23 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17234
17630
|
originatingPrompt?: string | undefined;
|
|
17235
17631
|
} | undefined;
|
|
17236
17632
|
}>>;
|
|
17633
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17634
|
+
id: z.ZodOptional<z.ZodString>;
|
|
17635
|
+
label: z.ZodString;
|
|
17636
|
+
condition: z.ZodString;
|
|
17637
|
+
sceneId: z.ZodString;
|
|
17638
|
+
}, "strip", z.ZodTypeAny, {
|
|
17639
|
+
label: string;
|
|
17640
|
+
condition: string;
|
|
17641
|
+
sceneId: string;
|
|
17642
|
+
id?: string | undefined;
|
|
17643
|
+
}, {
|
|
17644
|
+
label: string;
|
|
17645
|
+
condition: string;
|
|
17646
|
+
sceneId: string;
|
|
17647
|
+
id?: string | undefined;
|
|
17648
|
+
}>, "many">>;
|
|
17649
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
17237
17650
|
} & {
|
|
17238
17651
|
type: z.ZodLiteral<"experience">;
|
|
17239
17652
|
client: z.ZodObject<{
|
|
@@ -17333,6 +17746,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17333
17746
|
originatingPrompt?: string | undefined;
|
|
17334
17747
|
} | undefined;
|
|
17335
17748
|
} | undefined;
|
|
17749
|
+
exits?: {
|
|
17750
|
+
label: string;
|
|
17751
|
+
condition: string;
|
|
17752
|
+
sceneId: string;
|
|
17753
|
+
id?: string | undefined;
|
|
17754
|
+
}[] | undefined;
|
|
17755
|
+
initiator?: string | undefined;
|
|
17336
17756
|
}, {
|
|
17337
17757
|
type: "experience";
|
|
17338
17758
|
name: string;
|
|
@@ -17362,6 +17782,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17362
17782
|
originatingPrompt?: string | undefined;
|
|
17363
17783
|
} | undefined;
|
|
17364
17784
|
} | undefined;
|
|
17785
|
+
exits?: {
|
|
17786
|
+
label: string;
|
|
17787
|
+
condition: string;
|
|
17788
|
+
sceneId: string;
|
|
17789
|
+
id?: string | undefined;
|
|
17790
|
+
}[] | undefined;
|
|
17791
|
+
initiator?: string | undefined;
|
|
17365
17792
|
}>]>, "many">;
|
|
17366
17793
|
sourceFile: z.ZodOptional<z.ZodString>;
|
|
17367
17794
|
scene: z.ZodOptional<z.ZodObject<{
|
|
@@ -17427,6 +17854,8 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17427
17854
|
originatingPrompt?: string | undefined;
|
|
17428
17855
|
} | undefined;
|
|
17429
17856
|
}>>;
|
|
17857
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
17858
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17430
17859
|
}, "strip", z.ZodTypeAny, {
|
|
17431
17860
|
name: string;
|
|
17432
17861
|
moments: ({
|
|
@@ -17585,6 +18014,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17585
18014
|
originatingPrompt?: string | undefined;
|
|
17586
18015
|
} | undefined;
|
|
17587
18016
|
} | undefined;
|
|
18017
|
+
exits?: {
|
|
18018
|
+
label: string;
|
|
18019
|
+
condition: string;
|
|
18020
|
+
sceneId: string;
|
|
18021
|
+
id?: string | undefined;
|
|
18022
|
+
}[] | undefined;
|
|
18023
|
+
initiator?: string | undefined;
|
|
17588
18024
|
request?: string | undefined;
|
|
17589
18025
|
mappings?: {
|
|
17590
18026
|
target: {
|
|
@@ -17755,6 +18191,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17755
18191
|
originatingPrompt?: string | undefined;
|
|
17756
18192
|
} | undefined;
|
|
17757
18193
|
} | undefined;
|
|
18194
|
+
exits?: {
|
|
18195
|
+
label: string;
|
|
18196
|
+
condition: string;
|
|
18197
|
+
sceneId: string;
|
|
18198
|
+
id?: string | undefined;
|
|
18199
|
+
}[] | undefined;
|
|
18200
|
+
initiator?: string | undefined;
|
|
17758
18201
|
request?: string | undefined;
|
|
17759
18202
|
mappings?: {
|
|
17760
18203
|
target: {
|
|
@@ -17911,6 +18354,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17911
18354
|
originatingPrompt?: string | undefined;
|
|
17912
18355
|
} | undefined;
|
|
17913
18356
|
} | undefined;
|
|
18357
|
+
exits?: {
|
|
18358
|
+
label: string;
|
|
18359
|
+
condition: string;
|
|
18360
|
+
sceneId: string;
|
|
18361
|
+
id?: string | undefined;
|
|
18362
|
+
}[] | undefined;
|
|
18363
|
+
initiator?: string | undefined;
|
|
17914
18364
|
} | {
|
|
17915
18365
|
type: "experience";
|
|
17916
18366
|
name: string;
|
|
@@ -17940,6 +18390,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17940
18390
|
originatingPrompt?: string | undefined;
|
|
17941
18391
|
} | undefined;
|
|
17942
18392
|
} | undefined;
|
|
18393
|
+
exits?: {
|
|
18394
|
+
label: string;
|
|
18395
|
+
condition: string;
|
|
18396
|
+
sceneId: string;
|
|
18397
|
+
id?: string | undefined;
|
|
18398
|
+
}[] | undefined;
|
|
18399
|
+
initiator?: string | undefined;
|
|
17943
18400
|
})[];
|
|
17944
18401
|
sourceFile?: string | undefined;
|
|
17945
18402
|
description?: string | undefined;
|
|
@@ -17951,6 +18408,8 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
17951
18408
|
originatingPrompt?: string | undefined;
|
|
17952
18409
|
} | undefined;
|
|
17953
18410
|
} | undefined;
|
|
18411
|
+
requirements?: string | undefined;
|
|
18412
|
+
assumptions?: string[] | undefined;
|
|
17954
18413
|
scene?: {
|
|
17955
18414
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
17956
18415
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -18119,6 +18578,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
18119
18578
|
originatingPrompt?: string | undefined;
|
|
18120
18579
|
} | undefined;
|
|
18121
18580
|
} | undefined;
|
|
18581
|
+
exits?: {
|
|
18582
|
+
label: string;
|
|
18583
|
+
condition: string;
|
|
18584
|
+
sceneId: string;
|
|
18585
|
+
id?: string | undefined;
|
|
18586
|
+
}[] | undefined;
|
|
18587
|
+
initiator?: string | undefined;
|
|
18122
18588
|
request?: string | undefined;
|
|
18123
18589
|
mappings?: {
|
|
18124
18590
|
target: {
|
|
@@ -18289,6 +18755,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
18289
18755
|
originatingPrompt?: string | undefined;
|
|
18290
18756
|
} | undefined;
|
|
18291
18757
|
} | undefined;
|
|
18758
|
+
exits?: {
|
|
18759
|
+
label: string;
|
|
18760
|
+
condition: string;
|
|
18761
|
+
sceneId: string;
|
|
18762
|
+
id?: string | undefined;
|
|
18763
|
+
}[] | undefined;
|
|
18764
|
+
initiator?: string | undefined;
|
|
18292
18765
|
request?: string | undefined;
|
|
18293
18766
|
mappings?: {
|
|
18294
18767
|
target: {
|
|
@@ -18445,6 +18918,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
18445
18918
|
originatingPrompt?: string | undefined;
|
|
18446
18919
|
} | undefined;
|
|
18447
18920
|
} | undefined;
|
|
18921
|
+
exits?: {
|
|
18922
|
+
label: string;
|
|
18923
|
+
condition: string;
|
|
18924
|
+
sceneId: string;
|
|
18925
|
+
id?: string | undefined;
|
|
18926
|
+
}[] | undefined;
|
|
18927
|
+
initiator?: string | undefined;
|
|
18448
18928
|
} | {
|
|
18449
18929
|
type: "experience";
|
|
18450
18930
|
name: string;
|
|
@@ -18474,6 +18954,13 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
18474
18954
|
originatingPrompt?: string | undefined;
|
|
18475
18955
|
} | undefined;
|
|
18476
18956
|
} | undefined;
|
|
18957
|
+
exits?: {
|
|
18958
|
+
label: string;
|
|
18959
|
+
condition: string;
|
|
18960
|
+
sceneId: string;
|
|
18961
|
+
id?: string | undefined;
|
|
18962
|
+
}[] | undefined;
|
|
18963
|
+
initiator?: string | undefined;
|
|
18477
18964
|
})[];
|
|
18478
18965
|
sourceFile?: string | undefined;
|
|
18479
18966
|
description?: string | undefined;
|
|
@@ -18485,6 +18972,8 @@ declare const SceneSchema: z.ZodObject<{
|
|
|
18485
18972
|
originatingPrompt?: string | undefined;
|
|
18486
18973
|
} | undefined;
|
|
18487
18974
|
} | undefined;
|
|
18975
|
+
requirements?: string | undefined;
|
|
18976
|
+
assumptions?: string[] | undefined;
|
|
18488
18977
|
scene?: {
|
|
18489
18978
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
18490
18979
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -18516,16 +19005,25 @@ export declare const NarrativePlanningSchema: z.ZodObject<{
|
|
|
18516
19005
|
description: z.ZodOptional<z.ZodString>;
|
|
18517
19006
|
actors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18518
19007
|
sceneNames: z.ZodArray<z.ZodString, "many">;
|
|
19008
|
+
outcome: z.ZodOptional<z.ZodString>;
|
|
19009
|
+
impact: z.ZodOptional<z.ZodEnum<["critical", "important", "nice-to-have"]>>;
|
|
19010
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18519
19011
|
}, "strip", z.ZodTypeAny, {
|
|
18520
19012
|
name: string;
|
|
18521
19013
|
sceneNames: string[];
|
|
18522
19014
|
description?: string | undefined;
|
|
18523
19015
|
actors?: string[] | undefined;
|
|
19016
|
+
outcome?: string | undefined;
|
|
19017
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
19018
|
+
assumptions?: string[] | undefined;
|
|
18524
19019
|
}, {
|
|
18525
19020
|
name: string;
|
|
18526
19021
|
sceneNames: string[];
|
|
18527
19022
|
description?: string | undefined;
|
|
18528
19023
|
actors?: string[] | undefined;
|
|
19024
|
+
outcome?: string | undefined;
|
|
19025
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
19026
|
+
assumptions?: string[] | undefined;
|
|
18529
19027
|
}>, "many">;
|
|
18530
19028
|
scenes: z.ZodArray<z.ZodObject<{
|
|
18531
19029
|
name: z.ZodString;
|
|
@@ -18540,6 +19038,34 @@ export declare const NarrativePlanningSchema: z.ZodObject<{
|
|
|
18540
19038
|
description?: string | undefined;
|
|
18541
19039
|
id?: string | undefined;
|
|
18542
19040
|
}>, "many">;
|
|
19041
|
+
actors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19042
|
+
name: z.ZodString;
|
|
19043
|
+
kind: z.ZodEnum<["person", "system"]>;
|
|
19044
|
+
description: z.ZodString;
|
|
19045
|
+
}, "strip", z.ZodTypeAny, {
|
|
19046
|
+
kind: "person" | "system";
|
|
19047
|
+
name: string;
|
|
19048
|
+
description: string;
|
|
19049
|
+
}, {
|
|
19050
|
+
kind: "person" | "system";
|
|
19051
|
+
name: string;
|
|
19052
|
+
description: string;
|
|
19053
|
+
}>, "many">>;
|
|
19054
|
+
entities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19055
|
+
name: z.ZodString;
|
|
19056
|
+
description: z.ZodString;
|
|
19057
|
+
attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19058
|
+
}, "strip", z.ZodTypeAny, {
|
|
19059
|
+
name: string;
|
|
19060
|
+
description: string;
|
|
19061
|
+
attributes?: string[] | undefined;
|
|
19062
|
+
}, {
|
|
19063
|
+
name: string;
|
|
19064
|
+
description: string;
|
|
19065
|
+
attributes?: string[] | undefined;
|
|
19066
|
+
}>, "many">>;
|
|
19067
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19068
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
18543
19069
|
}, "strip", z.ZodTypeAny, {
|
|
18544
19070
|
variant: "narrative-planning";
|
|
18545
19071
|
narratives: {
|
|
@@ -18547,12 +19073,27 @@ export declare const NarrativePlanningSchema: z.ZodObject<{
|
|
|
18547
19073
|
sceneNames: string[];
|
|
18548
19074
|
description?: string | undefined;
|
|
18549
19075
|
actors?: string[] | undefined;
|
|
19076
|
+
outcome?: string | undefined;
|
|
19077
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
19078
|
+
assumptions?: string[] | undefined;
|
|
18550
19079
|
}[];
|
|
18551
19080
|
scenes: {
|
|
18552
19081
|
name: string;
|
|
18553
19082
|
description?: string | undefined;
|
|
18554
19083
|
id?: string | undefined;
|
|
18555
19084
|
}[];
|
|
19085
|
+
actors?: {
|
|
19086
|
+
kind: "person" | "system";
|
|
19087
|
+
name: string;
|
|
19088
|
+
description: string;
|
|
19089
|
+
}[] | undefined;
|
|
19090
|
+
requirements?: string | undefined;
|
|
19091
|
+
assumptions?: string[] | undefined;
|
|
19092
|
+
entities?: {
|
|
19093
|
+
name: string;
|
|
19094
|
+
description: string;
|
|
19095
|
+
attributes?: string[] | undefined;
|
|
19096
|
+
}[] | undefined;
|
|
18556
19097
|
}, {
|
|
18557
19098
|
variant: "narrative-planning";
|
|
18558
19099
|
narratives: {
|
|
@@ -18560,12 +19101,27 @@ export declare const NarrativePlanningSchema: z.ZodObject<{
|
|
|
18560
19101
|
sceneNames: string[];
|
|
18561
19102
|
description?: string | undefined;
|
|
18562
19103
|
actors?: string[] | undefined;
|
|
19104
|
+
outcome?: string | undefined;
|
|
19105
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
19106
|
+
assumptions?: string[] | undefined;
|
|
18563
19107
|
}[];
|
|
18564
19108
|
scenes: {
|
|
18565
19109
|
name: string;
|
|
18566
19110
|
description?: string | undefined;
|
|
18567
19111
|
id?: string | undefined;
|
|
18568
19112
|
}[];
|
|
19113
|
+
actors?: {
|
|
19114
|
+
kind: "person" | "system";
|
|
19115
|
+
name: string;
|
|
19116
|
+
description: string;
|
|
19117
|
+
}[] | undefined;
|
|
19118
|
+
requirements?: string | undefined;
|
|
19119
|
+
assumptions?: string[] | undefined;
|
|
19120
|
+
entities?: {
|
|
19121
|
+
name: string;
|
|
19122
|
+
description: string;
|
|
19123
|
+
attributes?: string[] | undefined;
|
|
19124
|
+
}[] | undefined;
|
|
18569
19125
|
}>;
|
|
18570
19126
|
export declare const SceneNamesSchema: z.ZodObject<{
|
|
18571
19127
|
variant: z.ZodLiteral<"scene-names">;
|
|
@@ -18825,6 +19381,23 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
18825
19381
|
originatingPrompt?: string | undefined;
|
|
18826
19382
|
} | undefined;
|
|
18827
19383
|
}>>;
|
|
19384
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19385
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19386
|
+
label: z.ZodString;
|
|
19387
|
+
condition: z.ZodString;
|
|
19388
|
+
sceneId: z.ZodString;
|
|
19389
|
+
}, "strip", z.ZodTypeAny, {
|
|
19390
|
+
label: string;
|
|
19391
|
+
condition: string;
|
|
19392
|
+
sceneId: string;
|
|
19393
|
+
id?: string | undefined;
|
|
19394
|
+
}, {
|
|
19395
|
+
label: string;
|
|
19396
|
+
condition: string;
|
|
19397
|
+
sceneId: string;
|
|
19398
|
+
id?: string | undefined;
|
|
19399
|
+
}>, "many">>;
|
|
19400
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
18828
19401
|
} & {
|
|
18829
19402
|
type: z.ZodLiteral<"command">;
|
|
18830
19403
|
client: z.ZodObject<{
|
|
@@ -20223,6 +20796,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
20223
20796
|
originatingPrompt?: string | undefined;
|
|
20224
20797
|
} | undefined;
|
|
20225
20798
|
} | undefined;
|
|
20799
|
+
exits?: {
|
|
20800
|
+
label: string;
|
|
20801
|
+
condition: string;
|
|
20802
|
+
sceneId: string;
|
|
20803
|
+
id?: string | undefined;
|
|
20804
|
+
}[] | undefined;
|
|
20805
|
+
initiator?: string | undefined;
|
|
20226
20806
|
request?: string | undefined;
|
|
20227
20807
|
mappings?: {
|
|
20228
20808
|
target: {
|
|
@@ -20393,6 +20973,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
20393
20973
|
originatingPrompt?: string | undefined;
|
|
20394
20974
|
} | undefined;
|
|
20395
20975
|
} | undefined;
|
|
20976
|
+
exits?: {
|
|
20977
|
+
label: string;
|
|
20978
|
+
condition: string;
|
|
20979
|
+
sceneId: string;
|
|
20980
|
+
id?: string | undefined;
|
|
20981
|
+
}[] | undefined;
|
|
20982
|
+
initiator?: string | undefined;
|
|
20396
20983
|
request?: string | undefined;
|
|
20397
20984
|
mappings?: {
|
|
20398
20985
|
target: {
|
|
@@ -20439,6 +21026,23 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
20439
21026
|
originatingPrompt?: string | undefined;
|
|
20440
21027
|
} | undefined;
|
|
20441
21028
|
}>>;
|
|
21029
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21030
|
+
id: z.ZodOptional<z.ZodString>;
|
|
21031
|
+
label: z.ZodString;
|
|
21032
|
+
condition: z.ZodString;
|
|
21033
|
+
sceneId: z.ZodString;
|
|
21034
|
+
}, "strip", z.ZodTypeAny, {
|
|
21035
|
+
label: string;
|
|
21036
|
+
condition: string;
|
|
21037
|
+
sceneId: string;
|
|
21038
|
+
id?: string | undefined;
|
|
21039
|
+
}, {
|
|
21040
|
+
label: string;
|
|
21041
|
+
condition: string;
|
|
21042
|
+
sceneId: string;
|
|
21043
|
+
id?: string | undefined;
|
|
21044
|
+
}>, "many">>;
|
|
21045
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
20442
21046
|
} & {
|
|
20443
21047
|
type: z.ZodLiteral<"query">;
|
|
20444
21048
|
client: z.ZodObject<{
|
|
@@ -21837,6 +22441,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
21837
22441
|
originatingPrompt?: string | undefined;
|
|
21838
22442
|
} | undefined;
|
|
21839
22443
|
} | undefined;
|
|
22444
|
+
exits?: {
|
|
22445
|
+
label: string;
|
|
22446
|
+
condition: string;
|
|
22447
|
+
sceneId: string;
|
|
22448
|
+
id?: string | undefined;
|
|
22449
|
+
}[] | undefined;
|
|
22450
|
+
initiator?: string | undefined;
|
|
21840
22451
|
request?: string | undefined;
|
|
21841
22452
|
mappings?: {
|
|
21842
22453
|
target: {
|
|
@@ -22007,6 +22618,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
22007
22618
|
originatingPrompt?: string | undefined;
|
|
22008
22619
|
} | undefined;
|
|
22009
22620
|
} | undefined;
|
|
22621
|
+
exits?: {
|
|
22622
|
+
label: string;
|
|
22623
|
+
condition: string;
|
|
22624
|
+
sceneId: string;
|
|
22625
|
+
id?: string | undefined;
|
|
22626
|
+
}[] | undefined;
|
|
22627
|
+
initiator?: string | undefined;
|
|
22010
22628
|
request?: string | undefined;
|
|
22011
22629
|
mappings?: {
|
|
22012
22630
|
target: {
|
|
@@ -22053,6 +22671,23 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
22053
22671
|
originatingPrompt?: string | undefined;
|
|
22054
22672
|
} | undefined;
|
|
22055
22673
|
}>>;
|
|
22674
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22675
|
+
id: z.ZodOptional<z.ZodString>;
|
|
22676
|
+
label: z.ZodString;
|
|
22677
|
+
condition: z.ZodString;
|
|
22678
|
+
sceneId: z.ZodString;
|
|
22679
|
+
}, "strip", z.ZodTypeAny, {
|
|
22680
|
+
label: string;
|
|
22681
|
+
condition: string;
|
|
22682
|
+
sceneId: string;
|
|
22683
|
+
id?: string | undefined;
|
|
22684
|
+
}, {
|
|
22685
|
+
label: string;
|
|
22686
|
+
condition: string;
|
|
22687
|
+
sceneId: string;
|
|
22688
|
+
id?: string | undefined;
|
|
22689
|
+
}>, "many">>;
|
|
22690
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
22056
22691
|
} & {
|
|
22057
22692
|
type: z.ZodLiteral<"react">;
|
|
22058
22693
|
server: z.ZodObject<{
|
|
@@ -23315,6 +23950,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23315
23950
|
originatingPrompt?: string | undefined;
|
|
23316
23951
|
} | undefined;
|
|
23317
23952
|
} | undefined;
|
|
23953
|
+
exits?: {
|
|
23954
|
+
label: string;
|
|
23955
|
+
condition: string;
|
|
23956
|
+
sceneId: string;
|
|
23957
|
+
id?: string | undefined;
|
|
23958
|
+
}[] | undefined;
|
|
23959
|
+
initiator?: string | undefined;
|
|
23318
23960
|
}, {
|
|
23319
23961
|
type: "react";
|
|
23320
23962
|
name: string;
|
|
@@ -23457,6 +24099,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23457
24099
|
originatingPrompt?: string | undefined;
|
|
23458
24100
|
} | undefined;
|
|
23459
24101
|
} | undefined;
|
|
24102
|
+
exits?: {
|
|
24103
|
+
label: string;
|
|
24104
|
+
condition: string;
|
|
24105
|
+
sceneId: string;
|
|
24106
|
+
id?: string | undefined;
|
|
24107
|
+
}[] | undefined;
|
|
24108
|
+
initiator?: string | undefined;
|
|
23460
24109
|
}>, z.ZodObject<{
|
|
23461
24110
|
name: z.ZodString;
|
|
23462
24111
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -23489,6 +24138,23 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23489
24138
|
originatingPrompt?: string | undefined;
|
|
23490
24139
|
} | undefined;
|
|
23491
24140
|
}>>;
|
|
24141
|
+
exits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24142
|
+
id: z.ZodOptional<z.ZodString>;
|
|
24143
|
+
label: z.ZodString;
|
|
24144
|
+
condition: z.ZodString;
|
|
24145
|
+
sceneId: z.ZodString;
|
|
24146
|
+
}, "strip", z.ZodTypeAny, {
|
|
24147
|
+
label: string;
|
|
24148
|
+
condition: string;
|
|
24149
|
+
sceneId: string;
|
|
24150
|
+
id?: string | undefined;
|
|
24151
|
+
}, {
|
|
24152
|
+
label: string;
|
|
24153
|
+
condition: string;
|
|
24154
|
+
sceneId: string;
|
|
24155
|
+
id?: string | undefined;
|
|
24156
|
+
}>, "many">>;
|
|
24157
|
+
initiator: z.ZodOptional<z.ZodString>;
|
|
23492
24158
|
} & {
|
|
23493
24159
|
type: z.ZodLiteral<"experience">;
|
|
23494
24160
|
client: z.ZodObject<{
|
|
@@ -23588,6 +24254,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23588
24254
|
originatingPrompt?: string | undefined;
|
|
23589
24255
|
} | undefined;
|
|
23590
24256
|
} | undefined;
|
|
24257
|
+
exits?: {
|
|
24258
|
+
label: string;
|
|
24259
|
+
condition: string;
|
|
24260
|
+
sceneId: string;
|
|
24261
|
+
id?: string | undefined;
|
|
24262
|
+
}[] | undefined;
|
|
24263
|
+
initiator?: string | undefined;
|
|
23591
24264
|
}, {
|
|
23592
24265
|
type: "experience";
|
|
23593
24266
|
name: string;
|
|
@@ -23617,6 +24290,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23617
24290
|
originatingPrompt?: string | undefined;
|
|
23618
24291
|
} | undefined;
|
|
23619
24292
|
} | undefined;
|
|
24293
|
+
exits?: {
|
|
24294
|
+
label: string;
|
|
24295
|
+
condition: string;
|
|
24296
|
+
sceneId: string;
|
|
24297
|
+
id?: string | undefined;
|
|
24298
|
+
}[] | undefined;
|
|
24299
|
+
initiator?: string | undefined;
|
|
23620
24300
|
}>]>, "many">;
|
|
23621
24301
|
sourceFile: z.ZodOptional<z.ZodString>;
|
|
23622
24302
|
scene: z.ZodOptional<z.ZodObject<{
|
|
@@ -23682,6 +24362,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23682
24362
|
originatingPrompt?: string | undefined;
|
|
23683
24363
|
} | undefined;
|
|
23684
24364
|
}>>;
|
|
24365
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
24366
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23685
24367
|
}, "strip", z.ZodTypeAny, {
|
|
23686
24368
|
name: string;
|
|
23687
24369
|
moments: ({
|
|
@@ -23840,6 +24522,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
23840
24522
|
originatingPrompt?: string | undefined;
|
|
23841
24523
|
} | undefined;
|
|
23842
24524
|
} | undefined;
|
|
24525
|
+
exits?: {
|
|
24526
|
+
label: string;
|
|
24527
|
+
condition: string;
|
|
24528
|
+
sceneId: string;
|
|
24529
|
+
id?: string | undefined;
|
|
24530
|
+
}[] | undefined;
|
|
24531
|
+
initiator?: string | undefined;
|
|
23843
24532
|
request?: string | undefined;
|
|
23844
24533
|
mappings?: {
|
|
23845
24534
|
target: {
|
|
@@ -24010,6 +24699,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24010
24699
|
originatingPrompt?: string | undefined;
|
|
24011
24700
|
} | undefined;
|
|
24012
24701
|
} | undefined;
|
|
24702
|
+
exits?: {
|
|
24703
|
+
label: string;
|
|
24704
|
+
condition: string;
|
|
24705
|
+
sceneId: string;
|
|
24706
|
+
id?: string | undefined;
|
|
24707
|
+
}[] | undefined;
|
|
24708
|
+
initiator?: string | undefined;
|
|
24013
24709
|
request?: string | undefined;
|
|
24014
24710
|
mappings?: {
|
|
24015
24711
|
target: {
|
|
@@ -24166,6 +24862,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24166
24862
|
originatingPrompt?: string | undefined;
|
|
24167
24863
|
} | undefined;
|
|
24168
24864
|
} | undefined;
|
|
24865
|
+
exits?: {
|
|
24866
|
+
label: string;
|
|
24867
|
+
condition: string;
|
|
24868
|
+
sceneId: string;
|
|
24869
|
+
id?: string | undefined;
|
|
24870
|
+
}[] | undefined;
|
|
24871
|
+
initiator?: string | undefined;
|
|
24169
24872
|
} | {
|
|
24170
24873
|
type: "experience";
|
|
24171
24874
|
name: string;
|
|
@@ -24195,6 +24898,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24195
24898
|
originatingPrompt?: string | undefined;
|
|
24196
24899
|
} | undefined;
|
|
24197
24900
|
} | undefined;
|
|
24901
|
+
exits?: {
|
|
24902
|
+
label: string;
|
|
24903
|
+
condition: string;
|
|
24904
|
+
sceneId: string;
|
|
24905
|
+
id?: string | undefined;
|
|
24906
|
+
}[] | undefined;
|
|
24907
|
+
initiator?: string | undefined;
|
|
24198
24908
|
})[];
|
|
24199
24909
|
sourceFile?: string | undefined;
|
|
24200
24910
|
description?: string | undefined;
|
|
@@ -24206,6 +24916,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24206
24916
|
originatingPrompt?: string | undefined;
|
|
24207
24917
|
} | undefined;
|
|
24208
24918
|
} | undefined;
|
|
24919
|
+
requirements?: string | undefined;
|
|
24920
|
+
assumptions?: string[] | undefined;
|
|
24209
24921
|
scene?: {
|
|
24210
24922
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
24211
24923
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -24374,6 +25086,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24374
25086
|
originatingPrompt?: string | undefined;
|
|
24375
25087
|
} | undefined;
|
|
24376
25088
|
} | undefined;
|
|
25089
|
+
exits?: {
|
|
25090
|
+
label: string;
|
|
25091
|
+
condition: string;
|
|
25092
|
+
sceneId: string;
|
|
25093
|
+
id?: string | undefined;
|
|
25094
|
+
}[] | undefined;
|
|
25095
|
+
initiator?: string | undefined;
|
|
24377
25096
|
request?: string | undefined;
|
|
24378
25097
|
mappings?: {
|
|
24379
25098
|
target: {
|
|
@@ -24544,6 +25263,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24544
25263
|
originatingPrompt?: string | undefined;
|
|
24545
25264
|
} | undefined;
|
|
24546
25265
|
} | undefined;
|
|
25266
|
+
exits?: {
|
|
25267
|
+
label: string;
|
|
25268
|
+
condition: string;
|
|
25269
|
+
sceneId: string;
|
|
25270
|
+
id?: string | undefined;
|
|
25271
|
+
}[] | undefined;
|
|
25272
|
+
initiator?: string | undefined;
|
|
24547
25273
|
request?: string | undefined;
|
|
24548
25274
|
mappings?: {
|
|
24549
25275
|
target: {
|
|
@@ -24700,6 +25426,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24700
25426
|
originatingPrompt?: string | undefined;
|
|
24701
25427
|
} | undefined;
|
|
24702
25428
|
} | undefined;
|
|
25429
|
+
exits?: {
|
|
25430
|
+
label: string;
|
|
25431
|
+
condition: string;
|
|
25432
|
+
sceneId: string;
|
|
25433
|
+
id?: string | undefined;
|
|
25434
|
+
}[] | undefined;
|
|
25435
|
+
initiator?: string | undefined;
|
|
24703
25436
|
} | {
|
|
24704
25437
|
type: "experience";
|
|
24705
25438
|
name: string;
|
|
@@ -24729,6 +25462,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24729
25462
|
originatingPrompt?: string | undefined;
|
|
24730
25463
|
} | undefined;
|
|
24731
25464
|
} | undefined;
|
|
25465
|
+
exits?: {
|
|
25466
|
+
label: string;
|
|
25467
|
+
condition: string;
|
|
25468
|
+
sceneId: string;
|
|
25469
|
+
id?: string | undefined;
|
|
25470
|
+
}[] | undefined;
|
|
25471
|
+
initiator?: string | undefined;
|
|
24732
25472
|
})[];
|
|
24733
25473
|
sourceFile?: string | undefined;
|
|
24734
25474
|
description?: string | undefined;
|
|
@@ -24740,6 +25480,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
24740
25480
|
originatingPrompt?: string | undefined;
|
|
24741
25481
|
} | undefined;
|
|
24742
25482
|
} | undefined;
|
|
25483
|
+
requirements?: string | undefined;
|
|
25484
|
+
assumptions?: string[] | undefined;
|
|
24743
25485
|
scene?: {
|
|
24744
25486
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
24745
25487
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -25092,6 +25834,10 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25092
25834
|
originatingPrompt?: string | undefined;
|
|
25093
25835
|
} | undefined;
|
|
25094
25836
|
}>>;
|
|
25837
|
+
outcome: z.ZodOptional<z.ZodString>;
|
|
25838
|
+
impact: z.ZodOptional<z.ZodEnum<["critical", "important", "nice-to-have"]>>;
|
|
25839
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
25840
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25095
25841
|
}, "strip", z.ZodTypeAny, {
|
|
25096
25842
|
name: string;
|
|
25097
25843
|
sceneIds: string[];
|
|
@@ -25105,6 +25851,10 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25105
25851
|
} | undefined;
|
|
25106
25852
|
} | undefined;
|
|
25107
25853
|
actors?: string[] | undefined;
|
|
25854
|
+
outcome?: string | undefined;
|
|
25855
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
25856
|
+
requirements?: string | undefined;
|
|
25857
|
+
assumptions?: string[] | undefined;
|
|
25108
25858
|
}, {
|
|
25109
25859
|
name: string;
|
|
25110
25860
|
sceneIds: string[];
|
|
@@ -25118,6 +25868,10 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25118
25868
|
} | undefined;
|
|
25119
25869
|
} | undefined;
|
|
25120
25870
|
actors?: string[] | undefined;
|
|
25871
|
+
outcome?: string | undefined;
|
|
25872
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
25873
|
+
requirements?: string | undefined;
|
|
25874
|
+
assumptions?: string[] | undefined;
|
|
25121
25875
|
}>, "many">;
|
|
25122
25876
|
design: z.ZodOptional<z.ZodObject<{
|
|
25123
25877
|
imageAsset: z.ZodOptional<z.ZodObject<{
|
|
@@ -25183,6 +25937,34 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25183
25937
|
template: string;
|
|
25184
25938
|
}[] | undefined;
|
|
25185
25939
|
}>>;
|
|
25940
|
+
actors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25941
|
+
name: z.ZodString;
|
|
25942
|
+
kind: z.ZodEnum<["person", "system"]>;
|
|
25943
|
+
description: z.ZodString;
|
|
25944
|
+
}, "strip", z.ZodTypeAny, {
|
|
25945
|
+
kind: "person" | "system";
|
|
25946
|
+
name: string;
|
|
25947
|
+
description: string;
|
|
25948
|
+
}, {
|
|
25949
|
+
kind: "person" | "system";
|
|
25950
|
+
name: string;
|
|
25951
|
+
description: string;
|
|
25952
|
+
}>, "many">>;
|
|
25953
|
+
entities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25954
|
+
name: z.ZodString;
|
|
25955
|
+
description: z.ZodString;
|
|
25956
|
+
attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25957
|
+
}, "strip", z.ZodTypeAny, {
|
|
25958
|
+
name: string;
|
|
25959
|
+
description: string;
|
|
25960
|
+
attributes?: string[] | undefined;
|
|
25961
|
+
}, {
|
|
25962
|
+
name: string;
|
|
25963
|
+
description: string;
|
|
25964
|
+
attributes?: string[] | undefined;
|
|
25965
|
+
}>, "many">>;
|
|
25966
|
+
assumptions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25967
|
+
requirements: z.ZodOptional<z.ZodString>;
|
|
25186
25968
|
}, "strip", z.ZodTypeAny, {
|
|
25187
25969
|
messages: ({
|
|
25188
25970
|
type: "command";
|
|
@@ -25256,6 +26038,10 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25256
26038
|
} | undefined;
|
|
25257
26039
|
} | undefined;
|
|
25258
26040
|
actors?: string[] | undefined;
|
|
26041
|
+
outcome?: string | undefined;
|
|
26042
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
26043
|
+
requirements?: string | undefined;
|
|
26044
|
+
assumptions?: string[] | undefined;
|
|
25259
26045
|
}[];
|
|
25260
26046
|
scenes: {
|
|
25261
26047
|
name: string;
|
|
@@ -25415,6 +26201,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25415
26201
|
originatingPrompt?: string | undefined;
|
|
25416
26202
|
} | undefined;
|
|
25417
26203
|
} | undefined;
|
|
26204
|
+
exits?: {
|
|
26205
|
+
label: string;
|
|
26206
|
+
condition: string;
|
|
26207
|
+
sceneId: string;
|
|
26208
|
+
id?: string | undefined;
|
|
26209
|
+
}[] | undefined;
|
|
26210
|
+
initiator?: string | undefined;
|
|
25418
26211
|
request?: string | undefined;
|
|
25419
26212
|
mappings?: {
|
|
25420
26213
|
target: {
|
|
@@ -25585,6 +26378,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25585
26378
|
originatingPrompt?: string | undefined;
|
|
25586
26379
|
} | undefined;
|
|
25587
26380
|
} | undefined;
|
|
26381
|
+
exits?: {
|
|
26382
|
+
label: string;
|
|
26383
|
+
condition: string;
|
|
26384
|
+
sceneId: string;
|
|
26385
|
+
id?: string | undefined;
|
|
26386
|
+
}[] | undefined;
|
|
26387
|
+
initiator?: string | undefined;
|
|
25588
26388
|
request?: string | undefined;
|
|
25589
26389
|
mappings?: {
|
|
25590
26390
|
target: {
|
|
@@ -25741,6 +26541,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25741
26541
|
originatingPrompt?: string | undefined;
|
|
25742
26542
|
} | undefined;
|
|
25743
26543
|
} | undefined;
|
|
26544
|
+
exits?: {
|
|
26545
|
+
label: string;
|
|
26546
|
+
condition: string;
|
|
26547
|
+
sceneId: string;
|
|
26548
|
+
id?: string | undefined;
|
|
26549
|
+
}[] | undefined;
|
|
26550
|
+
initiator?: string | undefined;
|
|
25744
26551
|
} | {
|
|
25745
26552
|
type: "experience";
|
|
25746
26553
|
name: string;
|
|
@@ -25770,6 +26577,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25770
26577
|
originatingPrompt?: string | undefined;
|
|
25771
26578
|
} | undefined;
|
|
25772
26579
|
} | undefined;
|
|
26580
|
+
exits?: {
|
|
26581
|
+
label: string;
|
|
26582
|
+
condition: string;
|
|
26583
|
+
sceneId: string;
|
|
26584
|
+
id?: string | undefined;
|
|
26585
|
+
}[] | undefined;
|
|
26586
|
+
initiator?: string | undefined;
|
|
25773
26587
|
})[];
|
|
25774
26588
|
sourceFile?: string | undefined;
|
|
25775
26589
|
description?: string | undefined;
|
|
@@ -25781,6 +26595,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25781
26595
|
originatingPrompt?: string | undefined;
|
|
25782
26596
|
} | undefined;
|
|
25783
26597
|
} | undefined;
|
|
26598
|
+
requirements?: string | undefined;
|
|
26599
|
+
assumptions?: string[] | undefined;
|
|
25784
26600
|
scene?: {
|
|
25785
26601
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
25786
26602
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -25820,6 +26636,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25820
26636
|
template: string;
|
|
25821
26637
|
}[] | undefined;
|
|
25822
26638
|
} | undefined;
|
|
26639
|
+
actors?: {
|
|
26640
|
+
kind: "person" | "system";
|
|
26641
|
+
name: string;
|
|
26642
|
+
description: string;
|
|
26643
|
+
}[] | undefined;
|
|
26644
|
+
requirements?: string | undefined;
|
|
26645
|
+
assumptions?: string[] | undefined;
|
|
26646
|
+
entities?: {
|
|
26647
|
+
name: string;
|
|
26648
|
+
description: string;
|
|
26649
|
+
attributes?: string[] | undefined;
|
|
26650
|
+
}[] | undefined;
|
|
25823
26651
|
integrations?: {
|
|
25824
26652
|
source: string;
|
|
25825
26653
|
name: string;
|
|
@@ -25898,6 +26726,10 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
25898
26726
|
} | undefined;
|
|
25899
26727
|
} | undefined;
|
|
25900
26728
|
actors?: string[] | undefined;
|
|
26729
|
+
outcome?: string | undefined;
|
|
26730
|
+
impact?: "critical" | "important" | "nice-to-have" | undefined;
|
|
26731
|
+
requirements?: string | undefined;
|
|
26732
|
+
assumptions?: string[] | undefined;
|
|
25901
26733
|
}[];
|
|
25902
26734
|
scenes: {
|
|
25903
26735
|
name: string;
|
|
@@ -26057,6 +26889,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26057
26889
|
originatingPrompt?: string | undefined;
|
|
26058
26890
|
} | undefined;
|
|
26059
26891
|
} | undefined;
|
|
26892
|
+
exits?: {
|
|
26893
|
+
label: string;
|
|
26894
|
+
condition: string;
|
|
26895
|
+
sceneId: string;
|
|
26896
|
+
id?: string | undefined;
|
|
26897
|
+
}[] | undefined;
|
|
26898
|
+
initiator?: string | undefined;
|
|
26060
26899
|
request?: string | undefined;
|
|
26061
26900
|
mappings?: {
|
|
26062
26901
|
target: {
|
|
@@ -26227,6 +27066,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26227
27066
|
originatingPrompt?: string | undefined;
|
|
26228
27067
|
} | undefined;
|
|
26229
27068
|
} | undefined;
|
|
27069
|
+
exits?: {
|
|
27070
|
+
label: string;
|
|
27071
|
+
condition: string;
|
|
27072
|
+
sceneId: string;
|
|
27073
|
+
id?: string | undefined;
|
|
27074
|
+
}[] | undefined;
|
|
27075
|
+
initiator?: string | undefined;
|
|
26230
27076
|
request?: string | undefined;
|
|
26231
27077
|
mappings?: {
|
|
26232
27078
|
target: {
|
|
@@ -26383,6 +27229,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26383
27229
|
originatingPrompt?: string | undefined;
|
|
26384
27230
|
} | undefined;
|
|
26385
27231
|
} | undefined;
|
|
27232
|
+
exits?: {
|
|
27233
|
+
label: string;
|
|
27234
|
+
condition: string;
|
|
27235
|
+
sceneId: string;
|
|
27236
|
+
id?: string | undefined;
|
|
27237
|
+
}[] | undefined;
|
|
27238
|
+
initiator?: string | undefined;
|
|
26386
27239
|
} | {
|
|
26387
27240
|
type: "experience";
|
|
26388
27241
|
name: string;
|
|
@@ -26412,6 +27265,13 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26412
27265
|
originatingPrompt?: string | undefined;
|
|
26413
27266
|
} | undefined;
|
|
26414
27267
|
} | undefined;
|
|
27268
|
+
exits?: {
|
|
27269
|
+
label: string;
|
|
27270
|
+
condition: string;
|
|
27271
|
+
sceneId: string;
|
|
27272
|
+
id?: string | undefined;
|
|
27273
|
+
}[] | undefined;
|
|
27274
|
+
initiator?: string | undefined;
|
|
26415
27275
|
})[];
|
|
26416
27276
|
sourceFile?: string | undefined;
|
|
26417
27277
|
description?: string | undefined;
|
|
@@ -26423,6 +27283,8 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26423
27283
|
originatingPrompt?: string | undefined;
|
|
26424
27284
|
} | undefined;
|
|
26425
27285
|
} | undefined;
|
|
27286
|
+
requirements?: string | undefined;
|
|
27287
|
+
assumptions?: string[] | undefined;
|
|
26426
27288
|
scene?: {
|
|
26427
27289
|
kind?: "page" | "modal" | "drawer" | "tab-panel" | "wizard-step" | "embedded-panel" | "popover" | undefined;
|
|
26428
27290
|
pattern?: "wizard-step" | "create-form" | "edit-form" | "search-filter-results" | "browse-detail" | "review-confirm-submit" | "dashboard" | "feed" | "auth-gate" | "detail-view" | "settings-panel" | "list-bulk-actions" | undefined;
|
|
@@ -26462,6 +27324,18 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26462
27324
|
template: string;
|
|
26463
27325
|
}[] | undefined;
|
|
26464
27326
|
} | undefined;
|
|
27327
|
+
actors?: {
|
|
27328
|
+
kind: "person" | "system";
|
|
27329
|
+
name: string;
|
|
27330
|
+
description: string;
|
|
27331
|
+
}[] | undefined;
|
|
27332
|
+
requirements?: string | undefined;
|
|
27333
|
+
assumptions?: string[] | undefined;
|
|
27334
|
+
entities?: {
|
|
27335
|
+
name: string;
|
|
27336
|
+
description: string;
|
|
27337
|
+
attributes?: string[] | undefined;
|
|
27338
|
+
}[] | undefined;
|
|
26465
27339
|
integrations?: {
|
|
26466
27340
|
source: string;
|
|
26467
27341
|
name: string;
|
|
@@ -26469,7 +27343,7 @@ export declare const modelSchema: z.ZodObject<{
|
|
|
26469
27343
|
}[] | undefined;
|
|
26470
27344
|
}>;
|
|
26471
27345
|
export type { ClientSpecNode };
|
|
26472
|
-
export { MessageFieldSchema, MessageSchema, CommandSchema, EventSchema, StateSchema, QuerySchema, IntegrationSchema, CommandMomentSchema, QueryMomentSchema, ReactMomentSchema, ExperienceMomentSchema, MomentSchema, SceneSchema, ExampleSchema, RuleSchema, SpecSchema, DataSinkSchema, DataSourceSchema, DataTargetSchema, StepSchema, StepErrorSchema, StepWithDocStringSchema, StepWithErrorSchema, UISchema, ComponentDefinitionSchema, };
|
|
27346
|
+
export { MessageFieldSchema, MessageSchema, CommandSchema, EventSchema, StateSchema, QuerySchema, IntegrationSchema, CommandMomentSchema, QueryMomentSchema, ReactMomentSchema, ExperienceMomentSchema, MomentSchema, SceneSchema, ExampleSchema, RuleSchema, SpecSchema, DataSinkSchema, DataSourceSchema, DataTargetSchema, StepSchema, StepErrorSchema, StepWithDocStringSchema, StepWithErrorSchema, UISchema, ComponentDefinitionSchema, ActorSchema, EntitySchema, ImpactSchema, };
|
|
26473
27347
|
export type Model = z.infer<typeof modelSchema>;
|
|
26474
27348
|
export type Scene = z.infer<typeof SceneSchema>;
|
|
26475
27349
|
export type Moment = z.infer<typeof MomentSchema>;
|
|
@@ -26499,4 +27373,8 @@ export type UISpec = z.infer<typeof UISpecSchema>;
|
|
|
26499
27373
|
export type UI = z.infer<typeof UISchema>;
|
|
26500
27374
|
export type ComponentDefinition = z.infer<typeof ComponentDefinitionSchema>;
|
|
26501
27375
|
export type UiBlock = z.infer<typeof UiBlockSchema>;
|
|
27376
|
+
export type Exit = z.infer<typeof ExitSchema>;
|
|
27377
|
+
export type Actor = z.infer<typeof ActorSchema>;
|
|
27378
|
+
export type Entity = z.infer<typeof EntitySchema>;
|
|
27379
|
+
export type Impact = z.infer<typeof ImpactSchema>;
|
|
26502
27380
|
//# sourceMappingURL=schema.d.ts.map
|