@vertesia/common 1.5.0-dev.20260901.045442Z → 1.5.0-dev.20260905.011013Z
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/lib/api-contract/components.generated.json +38 -10
- package/lib/api-schemas/agent-runs.d.ts +40 -0
- package/lib/api-schemas/agent-runs.d.ts.map +1 -1
- package/lib/api-schemas/app-lifecycle.d.ts +1 -0
- package/lib/api-schemas/app-lifecycle.d.ts.map +1 -1
- package/lib/api-schemas/app-lifecycle.js +8 -0
- package/lib/api-schemas/app-lifecycle.js.map +1 -1
- package/lib/api-schemas/app-runtime.d.ts +112 -0
- package/lib/api-schemas/app-runtime.d.ts.map +1 -1
- package/lib/api-schemas/content.d.ts +40 -0
- package/lib/api-schemas/content.d.ts.map +1 -1
- package/lib/api-schemas/document-processing.d.ts +24 -0
- package/lib/api-schemas/document-processing.d.ts.map +1 -1
- package/lib/api-schemas/embeddings.d.ts +5 -0
- package/lib/api-schemas/embeddings.d.ts.map +1 -1
- package/lib/api-schemas/embeddings.js +12 -1
- package/lib/api-schemas/embeddings.js.map +1 -1
- package/lib/api-schemas/events.d.ts +72 -0
- package/lib/api-schemas/events.d.ts.map +1 -1
- package/lib/api-schemas/interaction.d.ts +385 -0
- package/lib/api-schemas/interaction.d.ts.map +1 -1
- package/lib/api-schemas/interaction.js +17 -1
- package/lib/api-schemas/interaction.js.map +1 -1
- package/lib/api-schemas/project-configuration.d.ts +80 -0
- package/lib/api-schemas/project-configuration.d.ts.map +1 -1
- package/lib/api-schemas/project.d.ts +120 -0
- package/lib/api-schemas/project.d.ts.map +1 -1
- package/lib/api-schemas/registry.d.ts +1263 -0
- package/lib/api-schemas/registry.d.ts.map +1 -1
- package/lib/api-schemas/store.d.ts +400 -0
- package/lib/api-schemas/store.d.ts.map +1 -1
- package/lib/api-schemas/workflow-runs.d.ts +16 -0
- package/lib/api-schemas/workflow-runs.d.ts.map +1 -1
- package/lib/appgen.d.ts +3 -0
- package/lib/appgen.d.ts.map +1 -0
- package/lib/appgen.js +3 -0
- package/lib/appgen.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/store/intake-policy-schema.generated.d.ts.map +1 -1
- package/lib/store/intake-policy-schema.generated.js +5 -1
- package/lib/store/intake-policy-schema.generated.js.map +1 -1
- package/lib/vertesia-common.js +2 -2
- package/lib/vertesia-common.js.map +1 -1
- package/package.json +3 -3
- package/src/api-contract/components.generated.json +38 -10
- package/src/api-schemas/app-lifecycle.ts +9 -0
- package/src/api-schemas/embeddings.ts +14 -1
- package/src/api-schemas/environment.contract.test.ts +15 -0
- package/src/api-schemas/interaction.contract.test.ts +31 -0
- package/src/api-schemas/interaction.ts +17 -1
- package/src/api-schemas/llumiverse.contract.test.ts +16 -0
- package/src/appgen.ts +4 -0
- package/src/index.ts +1 -0
- package/src/store/intake-policy-schema.generated.ts +5 -1
|
@@ -422,6 +422,8 @@ export declare const ImprovePromptPayloadConfigSchema: z.ZodObject<{
|
|
|
422
422
|
}, z.core.$strict>, z.ZodObject<{
|
|
423
423
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
424
424
|
task: z.ZodOptional<z.ZodEnum<{
|
|
425
|
+
edit: "edit";
|
|
426
|
+
extend: "extend";
|
|
425
427
|
image_to_video: "image_to_video";
|
|
426
428
|
reference_to_video: "reference_to_video";
|
|
427
429
|
text_to_video: "text_to_video";
|
|
@@ -431,6 +433,12 @@ export declare const ImprovePromptPayloadConfigSchema: z.ZodObject<{
|
|
|
431
433
|
"9:16": "9:16";
|
|
432
434
|
}>>;
|
|
433
435
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
436
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
437
|
+
"1080p": "1080p";
|
|
438
|
+
"360p": "360p";
|
|
439
|
+
"4k": "4k";
|
|
440
|
+
"720p": "720p";
|
|
441
|
+
}>>;
|
|
434
442
|
}, z.core.$strict>, z.ZodObject<{
|
|
435
443
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
436
444
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -977,6 +985,8 @@ export declare const ImprovePromptPayloadSchema: z.ZodObject<{
|
|
|
977
985
|
}, z.core.$strict>, z.ZodObject<{
|
|
978
986
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
979
987
|
task: z.ZodOptional<z.ZodEnum<{
|
|
988
|
+
edit: "edit";
|
|
989
|
+
extend: "extend";
|
|
980
990
|
image_to_video: "image_to_video";
|
|
981
991
|
reference_to_video: "reference_to_video";
|
|
982
992
|
text_to_video: "text_to_video";
|
|
@@ -986,6 +996,12 @@ export declare const ImprovePromptPayloadSchema: z.ZodObject<{
|
|
|
986
996
|
"9:16": "9:16";
|
|
987
997
|
}>>;
|
|
988
998
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
999
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
1000
|
+
"1080p": "1080p";
|
|
1001
|
+
"360p": "360p";
|
|
1002
|
+
"4k": "4k";
|
|
1003
|
+
"720p": "720p";
|
|
1004
|
+
}>>;
|
|
989
1005
|
}, z.core.$strict>, z.ZodObject<{
|
|
990
1006
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
991
1007
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1553,6 +1569,8 @@ export declare const GenerateTestDataPayloadSchema: z.ZodObject<{
|
|
|
1553
1569
|
}, z.core.$strict>, z.ZodObject<{
|
|
1554
1570
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
1555
1571
|
task: z.ZodOptional<z.ZodEnum<{
|
|
1572
|
+
edit: "edit";
|
|
1573
|
+
extend: "extend";
|
|
1556
1574
|
image_to_video: "image_to_video";
|
|
1557
1575
|
reference_to_video: "reference_to_video";
|
|
1558
1576
|
text_to_video: "text_to_video";
|
|
@@ -1562,6 +1580,12 @@ export declare const GenerateTestDataPayloadSchema: z.ZodObject<{
|
|
|
1562
1580
|
"9:16": "9:16";
|
|
1563
1581
|
}>>;
|
|
1564
1582
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1583
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
1584
|
+
"1080p": "1080p";
|
|
1585
|
+
"360p": "360p";
|
|
1586
|
+
"4k": "4k";
|
|
1587
|
+
"720p": "720p";
|
|
1588
|
+
}>>;
|
|
1565
1589
|
}, z.core.$strict>, z.ZodObject<{
|
|
1566
1590
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
1567
1591
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2109,6 +2133,8 @@ export declare const GenerateInteractionPayloadSchema: z.ZodObject<{
|
|
|
2109
2133
|
}, z.core.$strict>, z.ZodObject<{
|
|
2110
2134
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
2111
2135
|
task: z.ZodOptional<z.ZodEnum<{
|
|
2136
|
+
edit: "edit";
|
|
2137
|
+
extend: "extend";
|
|
2112
2138
|
image_to_video: "image_to_video";
|
|
2113
2139
|
reference_to_video: "reference_to_video";
|
|
2114
2140
|
text_to_video: "text_to_video";
|
|
@@ -2118,6 +2144,12 @@ export declare const GenerateInteractionPayloadSchema: z.ZodObject<{
|
|
|
2118
2144
|
"9:16": "9:16";
|
|
2119
2145
|
}>>;
|
|
2120
2146
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
2147
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
2148
|
+
"1080p": "1080p";
|
|
2149
|
+
"360p": "360p";
|
|
2150
|
+
"4k": "4k";
|
|
2151
|
+
"720p": "720p";
|
|
2152
|
+
}>>;
|
|
2121
2153
|
}, z.core.$strict>, z.ZodObject<{
|
|
2122
2154
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
2123
2155
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3234,6 +3266,8 @@ export declare const InteractionCreatePayloadSchema: z.ZodObject<{
|
|
|
3234
3266
|
}, z.core.$strict>, z.ZodObject<{
|
|
3235
3267
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
3236
3268
|
task: z.ZodOptional<z.ZodEnum<{
|
|
3269
|
+
edit: "edit";
|
|
3270
|
+
extend: "extend";
|
|
3237
3271
|
image_to_video: "image_to_video";
|
|
3238
3272
|
reference_to_video: "reference_to_video";
|
|
3239
3273
|
text_to_video: "text_to_video";
|
|
@@ -3243,6 +3277,12 @@ export declare const InteractionCreatePayloadSchema: z.ZodObject<{
|
|
|
3243
3277
|
"9:16": "9:16";
|
|
3244
3278
|
}>>;
|
|
3245
3279
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
3280
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
3281
|
+
"1080p": "1080p";
|
|
3282
|
+
"360p": "360p";
|
|
3283
|
+
"4k": "4k";
|
|
3284
|
+
"720p": "720p";
|
|
3285
|
+
}>>;
|
|
3246
3286
|
}, z.core.$strict>, z.ZodObject<{
|
|
3247
3287
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
3248
3288
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3860,6 +3900,8 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
3860
3900
|
}, z.core.$strict>, z.ZodObject<{
|
|
3861
3901
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
3862
3902
|
task: z.ZodOptional<z.ZodEnum<{
|
|
3903
|
+
edit: "edit";
|
|
3904
|
+
extend: "extend";
|
|
3863
3905
|
image_to_video: "image_to_video";
|
|
3864
3906
|
reference_to_video: "reference_to_video";
|
|
3865
3907
|
text_to_video: "text_to_video";
|
|
@@ -3869,6 +3911,12 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
3869
3911
|
"9:16": "9:16";
|
|
3870
3912
|
}>>;
|
|
3871
3913
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
3914
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
3915
|
+
"1080p": "1080p";
|
|
3916
|
+
"360p": "360p";
|
|
3917
|
+
"4k": "4k";
|
|
3918
|
+
"720p": "720p";
|
|
3919
|
+
}>>;
|
|
3872
3920
|
}, z.core.$strict>, z.ZodObject<{
|
|
3873
3921
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
3874
3922
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4573,6 +4621,8 @@ export declare const InCodeInteractionSchema: z.ZodObject<{
|
|
|
4573
4621
|
}, z.core.$strict>, z.ZodObject<{
|
|
4574
4622
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
4575
4623
|
task: z.ZodOptional<z.ZodEnum<{
|
|
4624
|
+
edit: "edit";
|
|
4625
|
+
extend: "extend";
|
|
4576
4626
|
image_to_video: "image_to_video";
|
|
4577
4627
|
reference_to_video: "reference_to_video";
|
|
4578
4628
|
text_to_video: "text_to_video";
|
|
@@ -4582,6 +4632,12 @@ export declare const InCodeInteractionSchema: z.ZodObject<{
|
|
|
4582
4632
|
"9:16": "9:16";
|
|
4583
4633
|
}>>;
|
|
4584
4634
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
4635
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
4636
|
+
"1080p": "1080p";
|
|
4637
|
+
"360p": "360p";
|
|
4638
|
+
"4k": "4k";
|
|
4639
|
+
"720p": "720p";
|
|
4640
|
+
}>>;
|
|
4585
4641
|
}, z.core.$strict>, z.ZodObject<{
|
|
4586
4642
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
4587
4643
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5154,6 +5210,8 @@ export declare const ResolvedCatalogInteractionSchema: z.ZodObject<{
|
|
|
5154
5210
|
}, z.core.$strict>, z.ZodObject<{
|
|
5155
5211
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
5156
5212
|
task: z.ZodOptional<z.ZodEnum<{
|
|
5213
|
+
edit: "edit";
|
|
5214
|
+
extend: "extend";
|
|
5157
5215
|
image_to_video: "image_to_video";
|
|
5158
5216
|
reference_to_video: "reference_to_video";
|
|
5159
5217
|
text_to_video: "text_to_video";
|
|
@@ -5163,6 +5221,12 @@ export declare const ResolvedCatalogInteractionSchema: z.ZodObject<{
|
|
|
5163
5221
|
"9:16": "9:16";
|
|
5164
5222
|
}>>;
|
|
5165
5223
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
5224
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
5225
|
+
"1080p": "1080p";
|
|
5226
|
+
"360p": "360p";
|
|
5227
|
+
"4k": "4k";
|
|
5228
|
+
"720p": "720p";
|
|
5229
|
+
}>>;
|
|
5166
5230
|
}, z.core.$strict>, z.ZodObject<{
|
|
5167
5231
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
5168
5232
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6019,6 +6083,8 @@ export declare const InteractionUpdatePayloadSchema: z.ZodObject<{
|
|
|
6019
6083
|
}, z.core.$strict>, z.ZodObject<{
|
|
6020
6084
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
6021
6085
|
task: z.ZodOptional<z.ZodEnum<{
|
|
6086
|
+
edit: "edit";
|
|
6087
|
+
extend: "extend";
|
|
6022
6088
|
image_to_video: "image_to_video";
|
|
6023
6089
|
reference_to_video: "reference_to_video";
|
|
6024
6090
|
text_to_video: "text_to_video";
|
|
@@ -6028,6 +6094,12 @@ export declare const InteractionUpdatePayloadSchema: z.ZodObject<{
|
|
|
6028
6094
|
"9:16": "9:16";
|
|
6029
6095
|
}>>;
|
|
6030
6096
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
6097
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
6098
|
+
"1080p": "1080p";
|
|
6099
|
+
"360p": "360p";
|
|
6100
|
+
"4k": "4k";
|
|
6101
|
+
"720p": "720p";
|
|
6102
|
+
}>>;
|
|
6031
6103
|
}, z.core.$strict>, z.ZodObject<{
|
|
6032
6104
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
6033
6105
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6678,6 +6750,8 @@ export declare const InteractionArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
6678
6750
|
}, z.core.$strict>, z.ZodObject<{
|
|
6679
6751
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
6680
6752
|
task: z.ZodOptional<z.ZodEnum<{
|
|
6753
|
+
edit: "edit";
|
|
6754
|
+
extend: "extend";
|
|
6681
6755
|
image_to_video: "image_to_video";
|
|
6682
6756
|
reference_to_video: "reference_to_video";
|
|
6683
6757
|
text_to_video: "text_to_video";
|
|
@@ -6687,6 +6761,12 @@ export declare const InteractionArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
6687
6761
|
"9:16": "9:16";
|
|
6688
6762
|
}>>;
|
|
6689
6763
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
6764
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
6765
|
+
"1080p": "1080p";
|
|
6766
|
+
"360p": "360p";
|
|
6767
|
+
"4k": "4k";
|
|
6768
|
+
"720p": "720p";
|
|
6769
|
+
}>>;
|
|
6690
6770
|
}, z.core.$strict>, z.ZodObject<{
|
|
6691
6771
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
6692
6772
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7965,6 +8045,8 @@ export declare const InteractionExecutionResultSchema: z.ZodObject<{
|
|
|
7965
8045
|
}, z.core.$strict>, z.ZodObject<{
|
|
7966
8046
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
7967
8047
|
task: z.ZodOptional<z.ZodEnum<{
|
|
8048
|
+
edit: "edit";
|
|
8049
|
+
extend: "extend";
|
|
7968
8050
|
image_to_video: "image_to_video";
|
|
7969
8051
|
reference_to_video: "reference_to_video";
|
|
7970
8052
|
text_to_video: "text_to_video";
|
|
@@ -7974,6 +8056,12 @@ export declare const InteractionExecutionResultSchema: z.ZodObject<{
|
|
|
7974
8056
|
"9:16": "9:16";
|
|
7975
8057
|
}>>;
|
|
7976
8058
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
8059
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
8060
|
+
"1080p": "1080p";
|
|
8061
|
+
"360p": "360p";
|
|
8062
|
+
"4k": "4k";
|
|
8063
|
+
"720p": "720p";
|
|
8064
|
+
}>>;
|
|
7977
8065
|
}, z.core.$strict>, z.ZodObject<{
|
|
7978
8066
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
7979
8067
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8557,6 +8645,8 @@ export declare const InteractionExecutionResultSchema: z.ZodObject<{
|
|
|
8557
8645
|
}, z.core.$strict>, z.ZodObject<{
|
|
8558
8646
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
8559
8647
|
task: z.ZodOptional<z.ZodEnum<{
|
|
8648
|
+
edit: "edit";
|
|
8649
|
+
extend: "extend";
|
|
8560
8650
|
image_to_video: "image_to_video";
|
|
8561
8651
|
reference_to_video: "reference_to_video";
|
|
8562
8652
|
text_to_video: "text_to_video";
|
|
@@ -8566,6 +8656,12 @@ export declare const InteractionExecutionResultSchema: z.ZodObject<{
|
|
|
8566
8656
|
"9:16": "9:16";
|
|
8567
8657
|
}>>;
|
|
8568
8658
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
8659
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
8660
|
+
"1080p": "1080p";
|
|
8661
|
+
"360p": "360p";
|
|
8662
|
+
"4k": "4k";
|
|
8663
|
+
"720p": "720p";
|
|
8664
|
+
}>>;
|
|
8569
8665
|
}, z.core.$strict>, z.ZodObject<{
|
|
8570
8666
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
8571
8667
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9241,6 +9337,8 @@ export declare const PopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
9241
9337
|
}, z.core.$strict>, z.ZodObject<{
|
|
9242
9338
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
9243
9339
|
task: z.ZodOptional<z.ZodEnum<{
|
|
9340
|
+
edit: "edit";
|
|
9341
|
+
extend: "extend";
|
|
9244
9342
|
image_to_video: "image_to_video";
|
|
9245
9343
|
reference_to_video: "reference_to_video";
|
|
9246
9344
|
text_to_video: "text_to_video";
|
|
@@ -9250,6 +9348,12 @@ export declare const PopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
9250
9348
|
"9:16": "9:16";
|
|
9251
9349
|
}>>;
|
|
9252
9350
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
9351
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
9352
|
+
"1080p": "1080p";
|
|
9353
|
+
"360p": "360p";
|
|
9354
|
+
"4k": "4k";
|
|
9355
|
+
"720p": "720p";
|
|
9356
|
+
}>>;
|
|
9253
9357
|
}, z.core.$strict>, z.ZodObject<{
|
|
9254
9358
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
9255
9359
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9832,6 +9936,8 @@ export declare const PopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
9832
9936
|
}, z.core.$strict>, z.ZodObject<{
|
|
9833
9937
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
9834
9938
|
task: z.ZodOptional<z.ZodEnum<{
|
|
9939
|
+
edit: "edit";
|
|
9940
|
+
extend: "extend";
|
|
9835
9941
|
image_to_video: "image_to_video";
|
|
9836
9942
|
reference_to_video: "reference_to_video";
|
|
9837
9943
|
text_to_video: "text_to_video";
|
|
@@ -9841,6 +9947,12 @@ export declare const PopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
9841
9947
|
"9:16": "9:16";
|
|
9842
9948
|
}>>;
|
|
9843
9949
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
9950
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
9951
|
+
"1080p": "1080p";
|
|
9952
|
+
"360p": "360p";
|
|
9953
|
+
"4k": "4k";
|
|
9954
|
+
"720p": "720p";
|
|
9955
|
+
}>>;
|
|
9844
9956
|
}, z.core.$strict>, z.ZodObject<{
|
|
9845
9957
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
9846
9958
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10512,6 +10624,8 @@ export declare const FindRunResultSchema: z.ZodObject<{
|
|
|
10512
10624
|
}, z.core.$strict>, z.ZodObject<{
|
|
10513
10625
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
10514
10626
|
task: z.ZodOptional<z.ZodEnum<{
|
|
10627
|
+
edit: "edit";
|
|
10628
|
+
extend: "extend";
|
|
10515
10629
|
image_to_video: "image_to_video";
|
|
10516
10630
|
reference_to_video: "reference_to_video";
|
|
10517
10631
|
text_to_video: "text_to_video";
|
|
@@ -10521,6 +10635,12 @@ export declare const FindRunResultSchema: z.ZodObject<{
|
|
|
10521
10635
|
"9:16": "9:16";
|
|
10522
10636
|
}>>;
|
|
10523
10637
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
10638
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
10639
|
+
"1080p": "1080p";
|
|
10640
|
+
"360p": "360p";
|
|
10641
|
+
"4k": "4k";
|
|
10642
|
+
"720p": "720p";
|
|
10643
|
+
}>>;
|
|
10524
10644
|
}, z.core.$strict>, z.ZodObject<{
|
|
10525
10645
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
10526
10646
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11171,6 +11291,8 @@ export declare const FindRunResultArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
11171
11291
|
}, z.core.$strict>, z.ZodObject<{
|
|
11172
11292
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
11173
11293
|
task: z.ZodOptional<z.ZodEnum<{
|
|
11294
|
+
edit: "edit";
|
|
11295
|
+
extend: "extend";
|
|
11174
11296
|
image_to_video: "image_to_video";
|
|
11175
11297
|
reference_to_video: "reference_to_video";
|
|
11176
11298
|
text_to_video: "text_to_video";
|
|
@@ -11180,6 +11302,12 @@ export declare const FindRunResultArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
11180
11302
|
"9:16": "9:16";
|
|
11181
11303
|
}>>;
|
|
11182
11304
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
11305
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
11306
|
+
"1080p": "1080p";
|
|
11307
|
+
"360p": "360p";
|
|
11308
|
+
"4k": "4k";
|
|
11309
|
+
"720p": "720p";
|
|
11310
|
+
}>>;
|
|
11183
11311
|
}, z.core.$strict>, z.ZodObject<{
|
|
11184
11312
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
11185
11313
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11864,6 +11992,8 @@ export declare const LegacyExecutionRunResultSchema: z.ZodObject<{
|
|
|
11864
11992
|
}, z.core.$strict>, z.ZodObject<{
|
|
11865
11993
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
11866
11994
|
task: z.ZodOptional<z.ZodEnum<{
|
|
11995
|
+
edit: "edit";
|
|
11996
|
+
extend: "extend";
|
|
11867
11997
|
image_to_video: "image_to_video";
|
|
11868
11998
|
reference_to_video: "reference_to_video";
|
|
11869
11999
|
text_to_video: "text_to_video";
|
|
@@ -11873,6 +12003,12 @@ export declare const LegacyExecutionRunResultSchema: z.ZodObject<{
|
|
|
11873
12003
|
"9:16": "9:16";
|
|
11874
12004
|
}>>;
|
|
11875
12005
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
12006
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
12007
|
+
"1080p": "1080p";
|
|
12008
|
+
"360p": "360p";
|
|
12009
|
+
"4k": "4k";
|
|
12010
|
+
"720p": "720p";
|
|
12011
|
+
}>>;
|
|
11876
12012
|
}, z.core.$strict>, z.ZodObject<{
|
|
11877
12013
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
11878
12014
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12456,6 +12592,8 @@ export declare const LegacyExecutionRunResultSchema: z.ZodObject<{
|
|
|
12456
12592
|
}, z.core.$strict>, z.ZodObject<{
|
|
12457
12593
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
12458
12594
|
task: z.ZodOptional<z.ZodEnum<{
|
|
12595
|
+
edit: "edit";
|
|
12596
|
+
extend: "extend";
|
|
12459
12597
|
image_to_video: "image_to_video";
|
|
12460
12598
|
reference_to_video: "reference_to_video";
|
|
12461
12599
|
text_to_video: "text_to_video";
|
|
@@ -12465,6 +12603,12 @@ export declare const LegacyExecutionRunResultSchema: z.ZodObject<{
|
|
|
12465
12603
|
"9:16": "9:16";
|
|
12466
12604
|
}>>;
|
|
12467
12605
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
12606
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
12607
|
+
"1080p": "1080p";
|
|
12608
|
+
"360p": "360p";
|
|
12609
|
+
"4k": "4k";
|
|
12610
|
+
"720p": "720p";
|
|
12611
|
+
}>>;
|
|
12468
12612
|
}, z.core.$strict>, z.ZodObject<{
|
|
12469
12613
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
12470
12614
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13115,6 +13259,8 @@ export declare const LegacyPopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
13115
13259
|
}, z.core.$strict>, z.ZodObject<{
|
|
13116
13260
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
13117
13261
|
task: z.ZodOptional<z.ZodEnum<{
|
|
13262
|
+
edit: "edit";
|
|
13263
|
+
extend: "extend";
|
|
13118
13264
|
image_to_video: "image_to_video";
|
|
13119
13265
|
reference_to_video: "reference_to_video";
|
|
13120
13266
|
text_to_video: "text_to_video";
|
|
@@ -13124,6 +13270,12 @@ export declare const LegacyPopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
13124
13270
|
"9:16": "9:16";
|
|
13125
13271
|
}>>;
|
|
13126
13272
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
13273
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
13274
|
+
"1080p": "1080p";
|
|
13275
|
+
"360p": "360p";
|
|
13276
|
+
"4k": "4k";
|
|
13277
|
+
"720p": "720p";
|
|
13278
|
+
}>>;
|
|
13127
13279
|
}, z.core.$strict>, z.ZodObject<{
|
|
13128
13280
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
13129
13281
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13706,6 +13858,8 @@ export declare const LegacyPopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
13706
13858
|
}, z.core.$strict>, z.ZodObject<{
|
|
13707
13859
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
13708
13860
|
task: z.ZodOptional<z.ZodEnum<{
|
|
13861
|
+
edit: "edit";
|
|
13862
|
+
extend: "extend";
|
|
13709
13863
|
image_to_video: "image_to_video";
|
|
13710
13864
|
reference_to_video: "reference_to_video";
|
|
13711
13865
|
text_to_video: "text_to_video";
|
|
@@ -13715,6 +13869,12 @@ export declare const LegacyPopulatedExecutionRunResultSchema: z.ZodObject<{
|
|
|
13715
13869
|
"9:16": "9:16";
|
|
13716
13870
|
}>>;
|
|
13717
13871
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
13872
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
13873
|
+
"1080p": "1080p";
|
|
13874
|
+
"360p": "360p";
|
|
13875
|
+
"4k": "4k";
|
|
13876
|
+
"720p": "720p";
|
|
13877
|
+
}>>;
|
|
13718
13878
|
}, z.core.$strict>, z.ZodObject<{
|
|
13719
13879
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
13720
13880
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14426,6 +14586,8 @@ export declare const ExecutionRunRefSchema: z.ZodObject<{
|
|
|
14426
14586
|
}, z.core.$strict>, z.ZodObject<{
|
|
14427
14587
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
14428
14588
|
task: z.ZodOptional<z.ZodEnum<{
|
|
14589
|
+
edit: "edit";
|
|
14590
|
+
extend: "extend";
|
|
14429
14591
|
image_to_video: "image_to_video";
|
|
14430
14592
|
reference_to_video: "reference_to_video";
|
|
14431
14593
|
text_to_video: "text_to_video";
|
|
@@ -14435,6 +14597,12 @@ export declare const ExecutionRunRefSchema: z.ZodObject<{
|
|
|
14435
14597
|
"9:16": "9:16";
|
|
14436
14598
|
}>>;
|
|
14437
14599
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
14600
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
14601
|
+
"1080p": "1080p";
|
|
14602
|
+
"360p": "360p";
|
|
14603
|
+
"4k": "4k";
|
|
14604
|
+
"720p": "720p";
|
|
14605
|
+
}>>;
|
|
14438
14606
|
}, z.core.$strict>, z.ZodObject<{
|
|
14439
14607
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
14440
14608
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15085,6 +15253,8 @@ export declare const ConversationStateSchema: z.ZodObject<{
|
|
|
15085
15253
|
}, z.core.$strict>, z.ZodObject<{
|
|
15086
15254
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
15087
15255
|
task: z.ZodOptional<z.ZodEnum<{
|
|
15256
|
+
edit: "edit";
|
|
15257
|
+
extend: "extend";
|
|
15088
15258
|
image_to_video: "image_to_video";
|
|
15089
15259
|
reference_to_video: "reference_to_video";
|
|
15090
15260
|
text_to_video: "text_to_video";
|
|
@@ -15094,6 +15264,12 @@ export declare const ConversationStateSchema: z.ZodObject<{
|
|
|
15094
15264
|
"9:16": "9:16";
|
|
15095
15265
|
}>>;
|
|
15096
15266
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
15267
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
15268
|
+
"1080p": "1080p";
|
|
15269
|
+
"360p": "360p";
|
|
15270
|
+
"4k": "4k";
|
|
15271
|
+
"720p": "720p";
|
|
15272
|
+
}>>;
|
|
15097
15273
|
}, z.core.$strict>, z.ZodObject<{
|
|
15098
15274
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
15099
15275
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15979,6 +16155,8 @@ export declare const UpdateExecutionRunPayloadSchema: z.ZodObject<{
|
|
|
15979
16155
|
}, z.core.$strict>, z.ZodObject<{
|
|
15980
16156
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
15981
16157
|
task: z.ZodOptional<z.ZodEnum<{
|
|
16158
|
+
edit: "edit";
|
|
16159
|
+
extend: "extend";
|
|
15982
16160
|
image_to_video: "image_to_video";
|
|
15983
16161
|
reference_to_video: "reference_to_video";
|
|
15984
16162
|
text_to_video: "text_to_video";
|
|
@@ -15988,6 +16166,12 @@ export declare const UpdateExecutionRunPayloadSchema: z.ZodObject<{
|
|
|
15988
16166
|
"9:16": "9:16";
|
|
15989
16167
|
}>>;
|
|
15990
16168
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
16169
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
16170
|
+
"1080p": "1080p";
|
|
16171
|
+
"360p": "360p";
|
|
16172
|
+
"4k": "4k";
|
|
16173
|
+
"720p": "720p";
|
|
16174
|
+
}>>;
|
|
15991
16175
|
}, z.core.$strict>, z.ZodObject<{
|
|
15992
16176
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
15993
16177
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16729,6 +16913,8 @@ export declare const ExecutionRunRefArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
16729
16913
|
}, z.core.$strict>, z.ZodObject<{
|
|
16730
16914
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
16731
16915
|
task: z.ZodOptional<z.ZodEnum<{
|
|
16916
|
+
edit: "edit";
|
|
16917
|
+
extend: "extend";
|
|
16732
16918
|
image_to_video: "image_to_video";
|
|
16733
16919
|
reference_to_video: "reference_to_video";
|
|
16734
16920
|
text_to_video: "text_to_video";
|
|
@@ -16738,6 +16924,12 @@ export declare const ExecutionRunRefArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
16738
16924
|
"9:16": "9:16";
|
|
16739
16925
|
}>>;
|
|
16740
16926
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
16927
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
16928
|
+
"1080p": "1080p";
|
|
16929
|
+
"360p": "360p";
|
|
16930
|
+
"4k": "4k";
|
|
16931
|
+
"720p": "720p";
|
|
16932
|
+
}>>;
|
|
16741
16933
|
}, z.core.$strict>, z.ZodObject<{
|
|
16742
16934
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
16743
16935
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17397,6 +17589,8 @@ export declare const AsyncCompletionOptionsSchema: z.ZodObject<{
|
|
|
17397
17589
|
}, z.core.$strict>, z.ZodObject<{
|
|
17398
17590
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
17399
17591
|
task: z.ZodOptional<z.ZodEnum<{
|
|
17592
|
+
edit: "edit";
|
|
17593
|
+
extend: "extend";
|
|
17400
17594
|
image_to_video: "image_to_video";
|
|
17401
17595
|
reference_to_video: "reference_to_video";
|
|
17402
17596
|
text_to_video: "text_to_video";
|
|
@@ -17406,6 +17600,12 @@ export declare const AsyncCompletionOptionsSchema: z.ZodObject<{
|
|
|
17406
17600
|
"9:16": "9:16";
|
|
17407
17601
|
}>>;
|
|
17408
17602
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
17603
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
17604
|
+
"1080p": "1080p";
|
|
17605
|
+
"360p": "360p";
|
|
17606
|
+
"4k": "4k";
|
|
17607
|
+
"720p": "720p";
|
|
17608
|
+
}>>;
|
|
17409
17609
|
}, z.core.$strict>, z.ZodObject<{
|
|
17410
17610
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
17411
17611
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -18194,6 +18394,8 @@ export declare const NamedInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
18194
18394
|
}, z.core.$strict>, z.ZodObject<{
|
|
18195
18395
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
18196
18396
|
task: z.ZodOptional<z.ZodEnum<{
|
|
18397
|
+
edit: "edit";
|
|
18398
|
+
extend: "extend";
|
|
18197
18399
|
image_to_video: "image_to_video";
|
|
18198
18400
|
reference_to_video: "reference_to_video";
|
|
18199
18401
|
text_to_video: "text_to_video";
|
|
@@ -18203,6 +18405,12 @@ export declare const NamedInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
18203
18405
|
"9:16": "9:16";
|
|
18204
18406
|
}>>;
|
|
18205
18407
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
18408
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
18409
|
+
"1080p": "1080p";
|
|
18410
|
+
"360p": "360p";
|
|
18411
|
+
"4k": "4k";
|
|
18412
|
+
"720p": "720p";
|
|
18413
|
+
}>>;
|
|
18206
18414
|
}, z.core.$strict>, z.ZodObject<{
|
|
18207
18415
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
18208
18416
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -18787,6 +18995,8 @@ export declare const NamedInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
18787
18995
|
}, z.core.$strict>, z.ZodObject<{
|
|
18788
18996
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
18789
18997
|
task: z.ZodOptional<z.ZodEnum<{
|
|
18998
|
+
edit: "edit";
|
|
18999
|
+
extend: "extend";
|
|
18790
19000
|
image_to_video: "image_to_video";
|
|
18791
19001
|
reference_to_video: "reference_to_video";
|
|
18792
19002
|
text_to_video: "text_to_video";
|
|
@@ -18796,6 +19006,12 @@ export declare const NamedInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
18796
19006
|
"9:16": "9:16";
|
|
18797
19007
|
}>>;
|
|
18798
19008
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
19009
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
19010
|
+
"1080p": "1080p";
|
|
19011
|
+
"360p": "360p";
|
|
19012
|
+
"4k": "4k";
|
|
19013
|
+
"720p": "720p";
|
|
19014
|
+
}>>;
|
|
18799
19015
|
}, z.core.$strict>, z.ZodObject<{
|
|
18800
19016
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
18801
19017
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19586,6 +19802,8 @@ export declare const InteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
19586
19802
|
}, z.core.$strict>, z.ZodObject<{
|
|
19587
19803
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
19588
19804
|
task: z.ZodOptional<z.ZodEnum<{
|
|
19805
|
+
edit: "edit";
|
|
19806
|
+
extend: "extend";
|
|
19589
19807
|
image_to_video: "image_to_video";
|
|
19590
19808
|
reference_to_video: "reference_to_video";
|
|
19591
19809
|
text_to_video: "text_to_video";
|
|
@@ -19595,6 +19813,12 @@ export declare const InteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
19595
19813
|
"9:16": "9:16";
|
|
19596
19814
|
}>>;
|
|
19597
19815
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
19816
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
19817
|
+
"1080p": "1080p";
|
|
19818
|
+
"360p": "360p";
|
|
19819
|
+
"4k": "4k";
|
|
19820
|
+
"720p": "720p";
|
|
19821
|
+
}>>;
|
|
19598
19822
|
}, z.core.$strict>, z.ZodObject<{
|
|
19599
19823
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
19600
19824
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20179,6 +20403,8 @@ export declare const InteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
20179
20403
|
}, z.core.$strict>, z.ZodObject<{
|
|
20180
20404
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
20181
20405
|
task: z.ZodOptional<z.ZodEnum<{
|
|
20406
|
+
edit: "edit";
|
|
20407
|
+
extend: "extend";
|
|
20182
20408
|
image_to_video: "image_to_video";
|
|
20183
20409
|
reference_to_video: "reference_to_video";
|
|
20184
20410
|
text_to_video: "text_to_video";
|
|
@@ -20188,6 +20414,12 @@ export declare const InteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
20188
20414
|
"9:16": "9:16";
|
|
20189
20415
|
}>>;
|
|
20190
20416
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
20417
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
20418
|
+
"1080p": "1080p";
|
|
20419
|
+
"360p": "360p";
|
|
20420
|
+
"4k": "4k";
|
|
20421
|
+
"720p": "720p";
|
|
20422
|
+
}>>;
|
|
20191
20423
|
}, z.core.$strict>, z.ZodObject<{
|
|
20192
20424
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
20193
20425
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20978,6 +21210,8 @@ export declare const AsyncInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
20978
21210
|
}, z.core.$strict>, z.ZodObject<{
|
|
20979
21211
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
20980
21212
|
task: z.ZodOptional<z.ZodEnum<{
|
|
21213
|
+
edit: "edit";
|
|
21214
|
+
extend: "extend";
|
|
20981
21215
|
image_to_video: "image_to_video";
|
|
20982
21216
|
reference_to_video: "reference_to_video";
|
|
20983
21217
|
text_to_video: "text_to_video";
|
|
@@ -20987,6 +21221,12 @@ export declare const AsyncInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
20987
21221
|
"9:16": "9:16";
|
|
20988
21222
|
}>>;
|
|
20989
21223
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
21224
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
21225
|
+
"1080p": "1080p";
|
|
21226
|
+
"360p": "360p";
|
|
21227
|
+
"4k": "4k";
|
|
21228
|
+
"720p": "720p";
|
|
21229
|
+
}>>;
|
|
20990
21230
|
}, z.core.$strict>, z.ZodObject<{
|
|
20991
21231
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
20992
21232
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21565,6 +21805,8 @@ export declare const AsyncInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
21565
21805
|
}, z.core.$strict>, z.ZodObject<{
|
|
21566
21806
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
21567
21807
|
task: z.ZodOptional<z.ZodEnum<{
|
|
21808
|
+
edit: "edit";
|
|
21809
|
+
extend: "extend";
|
|
21568
21810
|
image_to_video: "image_to_video";
|
|
21569
21811
|
reference_to_video: "reference_to_video";
|
|
21570
21812
|
text_to_video: "text_to_video";
|
|
@@ -21574,6 +21816,12 @@ export declare const AsyncInteractionExecutionPayloadSchema: z.ZodObject<{
|
|
|
21574
21816
|
"9:16": "9:16";
|
|
21575
21817
|
}>>;
|
|
21576
21818
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
21819
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
21820
|
+
"1080p": "1080p";
|
|
21821
|
+
"360p": "360p";
|
|
21822
|
+
"4k": "4k";
|
|
21823
|
+
"720p": "720p";
|
|
21824
|
+
}>>;
|
|
21577
21825
|
}, z.core.$strict>, z.ZodObject<{
|
|
21578
21826
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
21579
21827
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22379,6 +22627,8 @@ export declare const AsyncConversationExecutionPayloadSchema: z.ZodObject<{
|
|
|
22379
22627
|
}, z.core.$strict>, z.ZodObject<{
|
|
22380
22628
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
22381
22629
|
task: z.ZodOptional<z.ZodEnum<{
|
|
22630
|
+
edit: "edit";
|
|
22631
|
+
extend: "extend";
|
|
22382
22632
|
image_to_video: "image_to_video";
|
|
22383
22633
|
reference_to_video: "reference_to_video";
|
|
22384
22634
|
text_to_video: "text_to_video";
|
|
@@ -22388,6 +22638,12 @@ export declare const AsyncConversationExecutionPayloadSchema: z.ZodObject<{
|
|
|
22388
22638
|
"9:16": "9:16";
|
|
22389
22639
|
}>>;
|
|
22390
22640
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
22641
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
22642
|
+
"1080p": "1080p";
|
|
22643
|
+
"360p": "360p";
|
|
22644
|
+
"4k": "4k";
|
|
22645
|
+
"720p": "720p";
|
|
22646
|
+
}>>;
|
|
22391
22647
|
}, z.core.$strict>, z.ZodObject<{
|
|
22392
22648
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
22393
22649
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22966,6 +23222,8 @@ export declare const AsyncConversationExecutionPayloadSchema: z.ZodObject<{
|
|
|
22966
23222
|
}, z.core.$strict>, z.ZodObject<{
|
|
22967
23223
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
22968
23224
|
task: z.ZodOptional<z.ZodEnum<{
|
|
23225
|
+
edit: "edit";
|
|
23226
|
+
extend: "extend";
|
|
22969
23227
|
image_to_video: "image_to_video";
|
|
22970
23228
|
reference_to_video: "reference_to_video";
|
|
22971
23229
|
text_to_video: "text_to_video";
|
|
@@ -22975,6 +23233,12 @@ export declare const AsyncConversationExecutionPayloadSchema: z.ZodObject<{
|
|
|
22975
23233
|
"9:16": "9:16";
|
|
22976
23234
|
}>>;
|
|
22977
23235
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
23236
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
23237
|
+
"1080p": "1080p";
|
|
23238
|
+
"360p": "360p";
|
|
23239
|
+
"4k": "4k";
|
|
23240
|
+
"720p": "720p";
|
|
23241
|
+
}>>;
|
|
22978
23242
|
}, z.core.$strict>, z.ZodObject<{
|
|
22979
23243
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
22980
23244
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23825,6 +24089,8 @@ export declare const RunCreatePayloadSchema: z.ZodObject<{
|
|
|
23825
24089
|
}, z.core.$strict>, z.ZodObject<{
|
|
23826
24090
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
23827
24091
|
task: z.ZodOptional<z.ZodEnum<{
|
|
24092
|
+
edit: "edit";
|
|
24093
|
+
extend: "extend";
|
|
23828
24094
|
image_to_video: "image_to_video";
|
|
23829
24095
|
reference_to_video: "reference_to_video";
|
|
23830
24096
|
text_to_video: "text_to_video";
|
|
@@ -23834,6 +24100,12 @@ export declare const RunCreatePayloadSchema: z.ZodObject<{
|
|
|
23834
24100
|
"9:16": "9:16";
|
|
23835
24101
|
}>>;
|
|
23836
24102
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
24103
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
24104
|
+
"1080p": "1080p";
|
|
24105
|
+
"360p": "360p";
|
|
24106
|
+
"4k": "4k";
|
|
24107
|
+
"720p": "720p";
|
|
24108
|
+
}>>;
|
|
23837
24109
|
}, z.core.$strict>, z.ZodObject<{
|
|
23838
24110
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
23839
24111
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -24418,6 +24690,8 @@ export declare const RunCreatePayloadSchema: z.ZodObject<{
|
|
|
24418
24690
|
}, z.core.$strict>, z.ZodObject<{
|
|
24419
24691
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
24420
24692
|
task: z.ZodOptional<z.ZodEnum<{
|
|
24693
|
+
edit: "edit";
|
|
24694
|
+
extend: "extend";
|
|
24421
24695
|
image_to_video: "image_to_video";
|
|
24422
24696
|
reference_to_video: "reference_to_video";
|
|
24423
24697
|
text_to_video: "text_to_video";
|
|
@@ -24427,6 +24701,12 @@ export declare const RunCreatePayloadSchema: z.ZodObject<{
|
|
|
24427
24701
|
"9:16": "9:16";
|
|
24428
24702
|
}>>;
|
|
24429
24703
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
24704
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
24705
|
+
"1080p": "1080p";
|
|
24706
|
+
"360p": "360p";
|
|
24707
|
+
"4k": "4k";
|
|
24708
|
+
"720p": "720p";
|
|
24709
|
+
}>>;
|
|
24430
24710
|
}, z.core.$strict>, z.ZodObject<{
|
|
24431
24711
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
24432
24712
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25223,6 +25503,8 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
25223
25503
|
}, z.core.$strict>, z.ZodObject<{
|
|
25224
25504
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
25225
25505
|
task: z.ZodOptional<z.ZodEnum<{
|
|
25506
|
+
edit: "edit";
|
|
25507
|
+
extend: "extend";
|
|
25226
25508
|
image_to_video: "image_to_video";
|
|
25227
25509
|
reference_to_video: "reference_to_video";
|
|
25228
25510
|
text_to_video: "text_to_video";
|
|
@@ -25232,6 +25514,12 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
25232
25514
|
"9:16": "9:16";
|
|
25233
25515
|
}>>;
|
|
25234
25516
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
25517
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
25518
|
+
"1080p": "1080p";
|
|
25519
|
+
"360p": "360p";
|
|
25520
|
+
"4k": "4k";
|
|
25521
|
+
"720p": "720p";
|
|
25522
|
+
}>>;
|
|
25235
25523
|
}, z.core.$strict>, z.ZodObject<{
|
|
25236
25524
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
25237
25525
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25810,6 +26098,8 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
25810
26098
|
}, z.core.$strict>, z.ZodObject<{
|
|
25811
26099
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
25812
26100
|
task: z.ZodOptional<z.ZodEnum<{
|
|
26101
|
+
edit: "edit";
|
|
26102
|
+
extend: "extend";
|
|
25813
26103
|
image_to_video: "image_to_video";
|
|
25814
26104
|
reference_to_video: "reference_to_video";
|
|
25815
26105
|
text_to_video: "text_to_video";
|
|
@@ -25819,6 +26109,12 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
25819
26109
|
"9:16": "9:16";
|
|
25820
26110
|
}>>;
|
|
25821
26111
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
26112
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
26113
|
+
"1080p": "1080p";
|
|
26114
|
+
"360p": "360p";
|
|
26115
|
+
"4k": "4k";
|
|
26116
|
+
"720p": "720p";
|
|
26117
|
+
}>>;
|
|
25822
26118
|
}, z.core.$strict>, z.ZodObject<{
|
|
25823
26119
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
25824
26120
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -26669,6 +26965,8 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
26669
26965
|
}, z.core.$strict>, z.ZodObject<{
|
|
26670
26966
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
26671
26967
|
task: z.ZodOptional<z.ZodEnum<{
|
|
26968
|
+
edit: "edit";
|
|
26969
|
+
extend: "extend";
|
|
26672
26970
|
image_to_video: "image_to_video";
|
|
26673
26971
|
reference_to_video: "reference_to_video";
|
|
26674
26972
|
text_to_video: "text_to_video";
|
|
@@ -26678,6 +26976,12 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
26678
26976
|
"9:16": "9:16";
|
|
26679
26977
|
}>>;
|
|
26680
26978
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
26979
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
26980
|
+
"1080p": "1080p";
|
|
26981
|
+
"360p": "360p";
|
|
26982
|
+
"4k": "4k";
|
|
26983
|
+
"720p": "720p";
|
|
26984
|
+
}>>;
|
|
26681
26985
|
}, z.core.$strict>, z.ZodObject<{
|
|
26682
26986
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
26683
26987
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27256,6 +27560,8 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
27256
27560
|
}, z.core.$strict>, z.ZodObject<{
|
|
27257
27561
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
27258
27562
|
task: z.ZodOptional<z.ZodEnum<{
|
|
27563
|
+
edit: "edit";
|
|
27564
|
+
extend: "extend";
|
|
27259
27565
|
image_to_video: "image_to_video";
|
|
27260
27566
|
reference_to_video: "reference_to_video";
|
|
27261
27567
|
text_to_video: "text_to_video";
|
|
@@ -27265,6 +27571,12 @@ export declare const AsyncExecutionPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
27265
27571
|
"9:16": "9:16";
|
|
27266
27572
|
}>>;
|
|
27267
27573
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
27574
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
27575
|
+
"1080p": "1080p";
|
|
27576
|
+
"360p": "360p";
|
|
27577
|
+
"4k": "4k";
|
|
27578
|
+
"720p": "720p";
|
|
27579
|
+
}>>;
|
|
27268
27580
|
}, z.core.$strict>, z.ZodObject<{
|
|
27269
27581
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
27270
27582
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -28085,6 +28397,8 @@ export declare const ToolResultsPayloadSchema: z.ZodObject<{
|
|
|
28085
28397
|
}, z.core.$strict>, z.ZodObject<{
|
|
28086
28398
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
28087
28399
|
task: z.ZodOptional<z.ZodEnum<{
|
|
28400
|
+
edit: "edit";
|
|
28401
|
+
extend: "extend";
|
|
28088
28402
|
image_to_video: "image_to_video";
|
|
28089
28403
|
reference_to_video: "reference_to_video";
|
|
28090
28404
|
text_to_video: "text_to_video";
|
|
@@ -28094,6 +28408,12 @@ export declare const ToolResultsPayloadSchema: z.ZodObject<{
|
|
|
28094
28408
|
"9:16": "9:16";
|
|
28095
28409
|
}>>;
|
|
28096
28410
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
28411
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
28412
|
+
"1080p": "1080p";
|
|
28413
|
+
"360p": "360p";
|
|
28414
|
+
"4k": "4k";
|
|
28415
|
+
"720p": "720p";
|
|
28416
|
+
}>>;
|
|
28097
28417
|
}, z.core.$strict>, z.ZodObject<{
|
|
28098
28418
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
28099
28419
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -28663,6 +28983,8 @@ export declare const ToolResultsPayloadSchema: z.ZodObject<{
|
|
|
28663
28983
|
}, z.core.$strict>, z.ZodObject<{
|
|
28664
28984
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
28665
28985
|
task: z.ZodOptional<z.ZodEnum<{
|
|
28986
|
+
edit: "edit";
|
|
28987
|
+
extend: "extend";
|
|
28666
28988
|
image_to_video: "image_to_video";
|
|
28667
28989
|
reference_to_video: "reference_to_video";
|
|
28668
28990
|
text_to_video: "text_to_video";
|
|
@@ -28672,6 +28994,12 @@ export declare const ToolResultsPayloadSchema: z.ZodObject<{
|
|
|
28672
28994
|
"9:16": "9:16";
|
|
28673
28995
|
}>>;
|
|
28674
28996
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
28997
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
28998
|
+
"1080p": "1080p";
|
|
28999
|
+
"360p": "360p";
|
|
29000
|
+
"4k": "4k";
|
|
29001
|
+
"720p": "720p";
|
|
29002
|
+
}>>;
|
|
28675
29003
|
}, z.core.$strict>, z.ZodObject<{
|
|
28676
29004
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
28677
29005
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -29505,6 +29833,8 @@ export declare const UserMessagePayloadSchema: z.ZodObject<{
|
|
|
29505
29833
|
}, z.core.$strict>, z.ZodObject<{
|
|
29506
29834
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
29507
29835
|
task: z.ZodOptional<z.ZodEnum<{
|
|
29836
|
+
edit: "edit";
|
|
29837
|
+
extend: "extend";
|
|
29508
29838
|
image_to_video: "image_to_video";
|
|
29509
29839
|
reference_to_video: "reference_to_video";
|
|
29510
29840
|
text_to_video: "text_to_video";
|
|
@@ -29514,6 +29844,12 @@ export declare const UserMessagePayloadSchema: z.ZodObject<{
|
|
|
29514
29844
|
"9:16": "9:16";
|
|
29515
29845
|
}>>;
|
|
29516
29846
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
29847
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
29848
|
+
"1080p": "1080p";
|
|
29849
|
+
"360p": "360p";
|
|
29850
|
+
"4k": "4k";
|
|
29851
|
+
"720p": "720p";
|
|
29852
|
+
}>>;
|
|
29517
29853
|
}, z.core.$strict>, z.ZodObject<{
|
|
29518
29854
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
29519
29855
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -30083,6 +30419,8 @@ export declare const UserMessagePayloadSchema: z.ZodObject<{
|
|
|
30083
30419
|
}, z.core.$strict>, z.ZodObject<{
|
|
30084
30420
|
_option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
|
|
30085
30421
|
task: z.ZodOptional<z.ZodEnum<{
|
|
30422
|
+
edit: "edit";
|
|
30423
|
+
extend: "extend";
|
|
30086
30424
|
image_to_video: "image_to_video";
|
|
30087
30425
|
reference_to_video: "reference_to_video";
|
|
30088
30426
|
text_to_video: "text_to_video";
|
|
@@ -30092,6 +30430,12 @@ export declare const UserMessagePayloadSchema: z.ZodObject<{
|
|
|
30092
30430
|
"9:16": "9:16";
|
|
30093
30431
|
}>>;
|
|
30094
30432
|
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
30433
|
+
resolution: z.ZodOptional<z.ZodEnum<{
|
|
30434
|
+
"1080p": "1080p";
|
|
30435
|
+
"360p": "360p";
|
|
30436
|
+
"4k": "4k";
|
|
30437
|
+
"720p": "720p";
|
|
30438
|
+
}>>;
|
|
30095
30439
|
}, z.core.$strict>, z.ZodObject<{
|
|
30096
30440
|
_option_id: z.ZodLiteral<"vertexai-grok">;
|
|
30097
30441
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -30725,6 +31069,47 @@ export declare const UserMessagePayloadSchema: z.ZodObject<{
|
|
|
30725
31069
|
}>>;
|
|
30726
31070
|
}, z.core.$strict>>;
|
|
30727
31071
|
message: z.ZodString;
|
|
31072
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31073
|
+
content: z.ZodString;
|
|
31074
|
+
content_ref: z.ZodOptional<z.ZodObject<{
|
|
31075
|
+
storage_id: z.ZodString;
|
|
31076
|
+
artifact_path: z.ZodString;
|
|
31077
|
+
display_ref: z.ZodString;
|
|
31078
|
+
sha256: z.ZodString;
|
|
31079
|
+
size_bytes: z.ZodNumber;
|
|
31080
|
+
content_type: z.ZodString;
|
|
31081
|
+
}, z.core.$strict>>;
|
|
31082
|
+
is_error: z.ZodBoolean;
|
|
31083
|
+
files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31084
|
+
display_message: z.ZodOptional<z.ZodString>;
|
|
31085
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
31086
|
+
resources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31087
|
+
type: z.ZodEnum<{
|
|
31088
|
+
agent: "agent";
|
|
31089
|
+
collection: "collection";
|
|
31090
|
+
content_type: "content_type";
|
|
31091
|
+
document: "document";
|
|
31092
|
+
interaction: "interaction";
|
|
31093
|
+
interaction_run: "interaction_run";
|
|
31094
|
+
process: "process";
|
|
31095
|
+
process_run: "process_run";
|
|
31096
|
+
prompt: "prompt";
|
|
31097
|
+
view: "view";
|
|
31098
|
+
workflow: "workflow";
|
|
31099
|
+
}>;
|
|
31100
|
+
id: z.ZodString;
|
|
31101
|
+
label: z.ZodString;
|
|
31102
|
+
action: z.ZodEnum<{
|
|
31103
|
+
created: "created";
|
|
31104
|
+
deleted: "deleted";
|
|
31105
|
+
updated: "updated";
|
|
31106
|
+
}>;
|
|
31107
|
+
revision_id: z.ZodOptional<z.ZodString>;
|
|
31108
|
+
}, z.core.$strict>>>;
|
|
31109
|
+
}, z.core.$loose>>;
|
|
31110
|
+
tool_use_id: z.ZodString;
|
|
31111
|
+
thought_signature: z.ZodOptional<z.ZodString>;
|
|
31112
|
+
}, z.core.$strict>>>;
|
|
30728
31113
|
}, z.core.$strict>;
|
|
30729
31114
|
export declare const ExecutionResponseSchema: z.ZodObject<{
|
|
30730
31115
|
result: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|