@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.
Files changed (57) hide show
  1. package/lib/api-contract/components.generated.json +38 -10
  2. package/lib/api-schemas/agent-runs.d.ts +40 -0
  3. package/lib/api-schemas/agent-runs.d.ts.map +1 -1
  4. package/lib/api-schemas/app-lifecycle.d.ts +1 -0
  5. package/lib/api-schemas/app-lifecycle.d.ts.map +1 -1
  6. package/lib/api-schemas/app-lifecycle.js +8 -0
  7. package/lib/api-schemas/app-lifecycle.js.map +1 -1
  8. package/lib/api-schemas/app-runtime.d.ts +112 -0
  9. package/lib/api-schemas/app-runtime.d.ts.map +1 -1
  10. package/lib/api-schemas/content.d.ts +40 -0
  11. package/lib/api-schemas/content.d.ts.map +1 -1
  12. package/lib/api-schemas/document-processing.d.ts +24 -0
  13. package/lib/api-schemas/document-processing.d.ts.map +1 -1
  14. package/lib/api-schemas/embeddings.d.ts +5 -0
  15. package/lib/api-schemas/embeddings.d.ts.map +1 -1
  16. package/lib/api-schemas/embeddings.js +12 -1
  17. package/lib/api-schemas/embeddings.js.map +1 -1
  18. package/lib/api-schemas/events.d.ts +72 -0
  19. package/lib/api-schemas/events.d.ts.map +1 -1
  20. package/lib/api-schemas/interaction.d.ts +385 -0
  21. package/lib/api-schemas/interaction.d.ts.map +1 -1
  22. package/lib/api-schemas/interaction.js +17 -1
  23. package/lib/api-schemas/interaction.js.map +1 -1
  24. package/lib/api-schemas/project-configuration.d.ts +80 -0
  25. package/lib/api-schemas/project-configuration.d.ts.map +1 -1
  26. package/lib/api-schemas/project.d.ts +120 -0
  27. package/lib/api-schemas/project.d.ts.map +1 -1
  28. package/lib/api-schemas/registry.d.ts +1263 -0
  29. package/lib/api-schemas/registry.d.ts.map +1 -1
  30. package/lib/api-schemas/store.d.ts +400 -0
  31. package/lib/api-schemas/store.d.ts.map +1 -1
  32. package/lib/api-schemas/workflow-runs.d.ts +16 -0
  33. package/lib/api-schemas/workflow-runs.d.ts.map +1 -1
  34. package/lib/appgen.d.ts +3 -0
  35. package/lib/appgen.d.ts.map +1 -0
  36. package/lib/appgen.js +3 -0
  37. package/lib/appgen.js.map +1 -0
  38. package/lib/index.d.ts +1 -0
  39. package/lib/index.d.ts.map +1 -1
  40. package/lib/index.js +1 -0
  41. package/lib/index.js.map +1 -1
  42. package/lib/store/intake-policy-schema.generated.d.ts.map +1 -1
  43. package/lib/store/intake-policy-schema.generated.js +5 -1
  44. package/lib/store/intake-policy-schema.generated.js.map +1 -1
  45. package/lib/vertesia-common.js +2 -2
  46. package/lib/vertesia-common.js.map +1 -1
  47. package/package.json +3 -3
  48. package/src/api-contract/components.generated.json +38 -10
  49. package/src/api-schemas/app-lifecycle.ts +9 -0
  50. package/src/api-schemas/embeddings.ts +14 -1
  51. package/src/api-schemas/environment.contract.test.ts +15 -0
  52. package/src/api-schemas/interaction.contract.test.ts +31 -0
  53. package/src/api-schemas/interaction.ts +17 -1
  54. package/src/api-schemas/llumiverse.contract.test.ts +16 -0
  55. package/src/appgen.ts +4 -0
  56. package/src/index.ts +1 -0
  57. package/src/store/intake-policy-schema.generated.ts +5 -1
@@ -209,6 +209,8 @@ export declare const InteractionExecutionConfigurationSchema: z.ZodObject<{
209
209
  }, z.core.$strict>, z.ZodObject<{
210
210
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
211
211
  task: z.ZodOptional<z.ZodEnum<{
212
+ edit: "edit";
213
+ extend: "extend";
212
214
  image_to_video: "image_to_video";
213
215
  reference_to_video: "reference_to_video";
214
216
  text_to_video: "text_to_video";
@@ -218,6 +220,12 @@ export declare const InteractionExecutionConfigurationSchema: z.ZodObject<{
218
220
  "9:16": "9:16";
219
221
  }>>;
220
222
  duration_seconds: z.ZodOptional<z.ZodNumber>;
223
+ resolution: z.ZodOptional<z.ZodEnum<{
224
+ "1080p": "1080p";
225
+ "360p": "360p";
226
+ "4k": "4k";
227
+ "720p": "720p";
228
+ }>>;
221
229
  }, z.core.$strict>, z.ZodObject<{
222
230
  _option_id: z.ZodLiteral<"vertexai-grok">;
223
231
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -764,6 +772,8 @@ export declare const ContentTypeExtractionGroundingReviewPolicySchema: z.ZodObje
764
772
  }, z.core.$strict>, z.ZodObject<{
765
773
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
766
774
  task: z.ZodOptional<z.ZodEnum<{
775
+ edit: "edit";
776
+ extend: "extend";
767
777
  image_to_video: "image_to_video";
768
778
  reference_to_video: "reference_to_video";
769
779
  text_to_video: "text_to_video";
@@ -773,6 +783,12 @@ export declare const ContentTypeExtractionGroundingReviewPolicySchema: z.ZodObje
773
783
  "9:16": "9:16";
774
784
  }>>;
775
785
  duration_seconds: z.ZodOptional<z.ZodNumber>;
786
+ resolution: z.ZodOptional<z.ZodEnum<{
787
+ "1080p": "1080p";
788
+ "360p": "360p";
789
+ "4k": "4k";
790
+ "720p": "720p";
791
+ }>>;
776
792
  }, z.core.$strict>, z.ZodObject<{
777
793
  _option_id: z.ZodLiteral<"vertexai-grok">;
778
794
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1335,6 +1351,8 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
1335
1351
  }, z.core.$strict>, z.ZodObject<{
1336
1352
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
1337
1353
  task: z.ZodOptional<z.ZodEnum<{
1354
+ edit: "edit";
1355
+ extend: "extend";
1338
1356
  image_to_video: "image_to_video";
1339
1357
  reference_to_video: "reference_to_video";
1340
1358
  text_to_video: "text_to_video";
@@ -1344,6 +1362,12 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
1344
1362
  "9:16": "9:16";
1345
1363
  }>>;
1346
1364
  duration_seconds: z.ZodOptional<z.ZodNumber>;
1365
+ resolution: z.ZodOptional<z.ZodEnum<{
1366
+ "1080p": "1080p";
1367
+ "360p": "360p";
1368
+ "4k": "4k";
1369
+ "720p": "720p";
1370
+ }>>;
1347
1371
  }, z.core.$strict>, z.ZodObject<{
1348
1372
  _option_id: z.ZodLiteral<"vertexai-grok">;
1349
1373
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1888,6 +1912,8 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
1888
1912
  }, z.core.$strict>, z.ZodObject<{
1889
1913
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
1890
1914
  task: z.ZodOptional<z.ZodEnum<{
1915
+ edit: "edit";
1916
+ extend: "extend";
1891
1917
  image_to_video: "image_to_video";
1892
1918
  reference_to_video: "reference_to_video";
1893
1919
  text_to_video: "text_to_video";
@@ -1897,6 +1923,12 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
1897
1923
  "9:16": "9:16";
1898
1924
  }>>;
1899
1925
  duration_seconds: z.ZodOptional<z.ZodNumber>;
1926
+ resolution: z.ZodOptional<z.ZodEnum<{
1927
+ "1080p": "1080p";
1928
+ "360p": "360p";
1929
+ "4k": "4k";
1930
+ "720p": "720p";
1931
+ }>>;
1900
1932
  }, z.core.$strict>, z.ZodObject<{
1901
1933
  _option_id: z.ZodLiteral<"vertexai-grok">;
1902
1934
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2446,6 +2478,8 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
2446
2478
  }, z.core.$strict>, z.ZodObject<{
2447
2479
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
2448
2480
  task: z.ZodOptional<z.ZodEnum<{
2481
+ edit: "edit";
2482
+ extend: "extend";
2449
2483
  image_to_video: "image_to_video";
2450
2484
  reference_to_video: "reference_to_video";
2451
2485
  text_to_video: "text_to_video";
@@ -2455,6 +2489,12 @@ export declare const ContentTypeExtractionGroundingPolicySchema: z.ZodObject<{
2455
2489
  "9:16": "9:16";
2456
2490
  }>>;
2457
2491
  duration_seconds: z.ZodOptional<z.ZodNumber>;
2492
+ resolution: z.ZodOptional<z.ZodEnum<{
2493
+ "1080p": "1080p";
2494
+ "360p": "360p";
2495
+ "4k": "4k";
2496
+ "720p": "720p";
2497
+ }>>;
2458
2498
  }, z.core.$strict>, z.ZodObject<{
2459
2499
  _option_id: z.ZodLiteral<"vertexai-grok">;
2460
2500
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -3052,6 +3092,8 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
3052
3092
  }, z.core.$strict>, z.ZodObject<{
3053
3093
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
3054
3094
  task: z.ZodOptional<z.ZodEnum<{
3095
+ edit: "edit";
3096
+ extend: "extend";
3055
3097
  image_to_video: "image_to_video";
3056
3098
  reference_to_video: "reference_to_video";
3057
3099
  text_to_video: "text_to_video";
@@ -3061,6 +3103,12 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
3061
3103
  "9:16": "9:16";
3062
3104
  }>>;
3063
3105
  duration_seconds: z.ZodOptional<z.ZodNumber>;
3106
+ resolution: z.ZodOptional<z.ZodEnum<{
3107
+ "1080p": "1080p";
3108
+ "360p": "360p";
3109
+ "4k": "4k";
3110
+ "720p": "720p";
3111
+ }>>;
3064
3112
  }, z.core.$strict>, z.ZodObject<{
3065
3113
  _option_id: z.ZodLiteral<"vertexai-grok">;
3066
3114
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -3616,6 +3664,8 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
3616
3664
  }, z.core.$strict>, z.ZodObject<{
3617
3665
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
3618
3666
  task: z.ZodOptional<z.ZodEnum<{
3667
+ edit: "edit";
3668
+ extend: "extend";
3619
3669
  image_to_video: "image_to_video";
3620
3670
  reference_to_video: "reference_to_video";
3621
3671
  text_to_video: "text_to_video";
@@ -3625,6 +3675,12 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
3625
3675
  "9:16": "9:16";
3626
3676
  }>>;
3627
3677
  duration_seconds: z.ZodOptional<z.ZodNumber>;
3678
+ resolution: z.ZodOptional<z.ZodEnum<{
3679
+ "1080p": "1080p";
3680
+ "360p": "360p";
3681
+ "4k": "4k";
3682
+ "720p": "720p";
3683
+ }>>;
3628
3684
  }, z.core.$strict>, z.ZodObject<{
3629
3685
  _option_id: z.ZodLiteral<"vertexai-grok">;
3630
3686
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -4216,6 +4272,8 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
4216
4272
  }, z.core.$strict>, z.ZodObject<{
4217
4273
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
4218
4274
  task: z.ZodOptional<z.ZodEnum<{
4275
+ edit: "edit";
4276
+ extend: "extend";
4219
4277
  image_to_video: "image_to_video";
4220
4278
  reference_to_video: "reference_to_video";
4221
4279
  text_to_video: "text_to_video";
@@ -4225,6 +4283,12 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
4225
4283
  "9:16": "9:16";
4226
4284
  }>>;
4227
4285
  duration_seconds: z.ZodOptional<z.ZodNumber>;
4286
+ resolution: z.ZodOptional<z.ZodEnum<{
4287
+ "1080p": "1080p";
4288
+ "360p": "360p";
4289
+ "4k": "4k";
4290
+ "720p": "720p";
4291
+ }>>;
4228
4292
  }, z.core.$strict>, z.ZodObject<{
4229
4293
  _option_id: z.ZodLiteral<"vertexai-grok">;
4230
4294
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -4769,6 +4833,8 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
4769
4833
  }, z.core.$strict>, z.ZodObject<{
4770
4834
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
4771
4835
  task: z.ZodOptional<z.ZodEnum<{
4836
+ edit: "edit";
4837
+ extend: "extend";
4772
4838
  image_to_video: "image_to_video";
4773
4839
  reference_to_video: "reference_to_video";
4774
4840
  text_to_video: "text_to_video";
@@ -4778,6 +4844,12 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
4778
4844
  "9:16": "9:16";
4779
4845
  }>>;
4780
4846
  duration_seconds: z.ZodOptional<z.ZodNumber>;
4847
+ resolution: z.ZodOptional<z.ZodEnum<{
4848
+ "1080p": "1080p";
4849
+ "360p": "360p";
4850
+ "4k": "4k";
4851
+ "720p": "720p";
4852
+ }>>;
4781
4853
  }, z.core.$strict>, z.ZodObject<{
4782
4854
  _option_id: z.ZodLiteral<"vertexai-grok">;
4783
4855
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -5327,6 +5399,8 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
5327
5399
  }, z.core.$strict>, z.ZodObject<{
5328
5400
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
5329
5401
  task: z.ZodOptional<z.ZodEnum<{
5402
+ edit: "edit";
5403
+ extend: "extend";
5330
5404
  image_to_video: "image_to_video";
5331
5405
  reference_to_video: "reference_to_video";
5332
5406
  text_to_video: "text_to_video";
@@ -5336,6 +5410,12 @@ export declare const ContentTypeIntakePolicySchema: z.ZodObject<{
5336
5410
  "9:16": "9:16";
5337
5411
  }>>;
5338
5412
  duration_seconds: z.ZodOptional<z.ZodNumber>;
5413
+ resolution: z.ZodOptional<z.ZodEnum<{
5414
+ "1080p": "1080p";
5415
+ "360p": "360p";
5416
+ "4k": "4k";
5417
+ "720p": "720p";
5418
+ }>>;
5339
5419
  }, z.core.$strict>, z.ZodObject<{
5340
5420
  _option_id: z.ZodLiteral<"vertexai-grok">;
5341
5421
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -5972,6 +6052,8 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
5972
6052
  }, z.core.$strict>, z.ZodObject<{
5973
6053
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
5974
6054
  task: z.ZodOptional<z.ZodEnum<{
6055
+ edit: "edit";
6056
+ extend: "extend";
5975
6057
  image_to_video: "image_to_video";
5976
6058
  reference_to_video: "reference_to_video";
5977
6059
  text_to_video: "text_to_video";
@@ -5981,6 +6063,12 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
5981
6063
  "9:16": "9:16";
5982
6064
  }>>;
5983
6065
  duration_seconds: z.ZodOptional<z.ZodNumber>;
6066
+ resolution: z.ZodOptional<z.ZodEnum<{
6067
+ "1080p": "1080p";
6068
+ "360p": "360p";
6069
+ "4k": "4k";
6070
+ "720p": "720p";
6071
+ }>>;
5984
6072
  }, z.core.$strict>, z.ZodObject<{
5985
6073
  _option_id: z.ZodLiteral<"vertexai-grok">;
5986
6074
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -6536,6 +6624,8 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
6536
6624
  }, z.core.$strict>, z.ZodObject<{
6537
6625
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
6538
6626
  task: z.ZodOptional<z.ZodEnum<{
6627
+ edit: "edit";
6628
+ extend: "extend";
6539
6629
  image_to_video: "image_to_video";
6540
6630
  reference_to_video: "reference_to_video";
6541
6631
  text_to_video: "text_to_video";
@@ -6545,6 +6635,12 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
6545
6635
  "9:16": "9:16";
6546
6636
  }>>;
6547
6637
  duration_seconds: z.ZodOptional<z.ZodNumber>;
6638
+ resolution: z.ZodOptional<z.ZodEnum<{
6639
+ "1080p": "1080p";
6640
+ "360p": "360p";
6641
+ "4k": "4k";
6642
+ "720p": "720p";
6643
+ }>>;
6548
6644
  }, z.core.$strict>, z.ZodObject<{
6549
6645
  _option_id: z.ZodLiteral<"vertexai-grok">;
6550
6646
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -7136,6 +7232,8 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
7136
7232
  }, z.core.$strict>, z.ZodObject<{
7137
7233
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
7138
7234
  task: z.ZodOptional<z.ZodEnum<{
7235
+ edit: "edit";
7236
+ extend: "extend";
7139
7237
  image_to_video: "image_to_video";
7140
7238
  reference_to_video: "reference_to_video";
7141
7239
  text_to_video: "text_to_video";
@@ -7145,6 +7243,12 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
7145
7243
  "9:16": "9:16";
7146
7244
  }>>;
7147
7245
  duration_seconds: z.ZodOptional<z.ZodNumber>;
7246
+ resolution: z.ZodOptional<z.ZodEnum<{
7247
+ "1080p": "1080p";
7248
+ "360p": "360p";
7249
+ "4k": "4k";
7250
+ "720p": "720p";
7251
+ }>>;
7148
7252
  }, z.core.$strict>, z.ZodObject<{
7149
7253
  _option_id: z.ZodLiteral<"vertexai-grok">;
7150
7254
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -7689,6 +7793,8 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
7689
7793
  }, z.core.$strict>, z.ZodObject<{
7690
7794
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
7691
7795
  task: z.ZodOptional<z.ZodEnum<{
7796
+ edit: "edit";
7797
+ extend: "extend";
7692
7798
  image_to_video: "image_to_video";
7693
7799
  reference_to_video: "reference_to_video";
7694
7800
  text_to_video: "text_to_video";
@@ -7698,6 +7804,12 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
7698
7804
  "9:16": "9:16";
7699
7805
  }>>;
7700
7806
  duration_seconds: z.ZodOptional<z.ZodNumber>;
7807
+ resolution: z.ZodOptional<z.ZodEnum<{
7808
+ "1080p": "1080p";
7809
+ "360p": "360p";
7810
+ "4k": "4k";
7811
+ "720p": "720p";
7812
+ }>>;
7701
7813
  }, z.core.$strict>, z.ZodObject<{
7702
7814
  _option_id: z.ZodLiteral<"vertexai-grok">;
7703
7815
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -8247,6 +8359,8 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
8247
8359
  }, z.core.$strict>, z.ZodObject<{
8248
8360
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
8249
8361
  task: z.ZodOptional<z.ZodEnum<{
8362
+ edit: "edit";
8363
+ extend: "extend";
8250
8364
  image_to_video: "image_to_video";
8251
8365
  reference_to_video: "reference_to_video";
8252
8366
  text_to_video: "text_to_video";
@@ -8256,6 +8370,12 @@ export declare const ContentObjectTypeCatalogEntrySchema: z.ZodObject<{
8256
8370
  "9:16": "9:16";
8257
8371
  }>>;
8258
8372
  duration_seconds: z.ZodOptional<z.ZodNumber>;
8373
+ resolution: z.ZodOptional<z.ZodEnum<{
8374
+ "1080p": "1080p";
8375
+ "360p": "360p";
8376
+ "4k": "4k";
8377
+ "720p": "720p";
8378
+ }>>;
8259
8379
  }, z.core.$strict>, z.ZodObject<{
8260
8380
  _option_id: z.ZodLiteral<"vertexai-grok">;
8261
8381
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -8888,6 +9008,8 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
8888
9008
  }, z.core.$strict>, z.ZodObject<{
8889
9009
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
8890
9010
  task: z.ZodOptional<z.ZodEnum<{
9011
+ edit: "edit";
9012
+ extend: "extend";
8891
9013
  image_to_video: "image_to_video";
8892
9014
  reference_to_video: "reference_to_video";
8893
9015
  text_to_video: "text_to_video";
@@ -8897,6 +9019,12 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
8897
9019
  "9:16": "9:16";
8898
9020
  }>>;
8899
9021
  duration_seconds: z.ZodOptional<z.ZodNumber>;
9022
+ resolution: z.ZodOptional<z.ZodEnum<{
9023
+ "1080p": "1080p";
9024
+ "360p": "360p";
9025
+ "4k": "4k";
9026
+ "720p": "720p";
9027
+ }>>;
8900
9028
  }, z.core.$strict>, z.ZodObject<{
8901
9029
  _option_id: z.ZodLiteral<"vertexai-grok">;
8902
9030
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -9452,6 +9580,8 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
9452
9580
  }, z.core.$strict>, z.ZodObject<{
9453
9581
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
9454
9582
  task: z.ZodOptional<z.ZodEnum<{
9583
+ edit: "edit";
9584
+ extend: "extend";
9455
9585
  image_to_video: "image_to_video";
9456
9586
  reference_to_video: "reference_to_video";
9457
9587
  text_to_video: "text_to_video";
@@ -9461,6 +9591,12 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
9461
9591
  "9:16": "9:16";
9462
9592
  }>>;
9463
9593
  duration_seconds: z.ZodOptional<z.ZodNumber>;
9594
+ resolution: z.ZodOptional<z.ZodEnum<{
9595
+ "1080p": "1080p";
9596
+ "360p": "360p";
9597
+ "4k": "4k";
9598
+ "720p": "720p";
9599
+ }>>;
9464
9600
  }, z.core.$strict>, z.ZodObject<{
9465
9601
  _option_id: z.ZodLiteral<"vertexai-grok">;
9466
9602
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -10052,6 +10188,8 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
10052
10188
  }, z.core.$strict>, z.ZodObject<{
10053
10189
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
10054
10190
  task: z.ZodOptional<z.ZodEnum<{
10191
+ edit: "edit";
10192
+ extend: "extend";
10055
10193
  image_to_video: "image_to_video";
10056
10194
  reference_to_video: "reference_to_video";
10057
10195
  text_to_video: "text_to_video";
@@ -10061,6 +10199,12 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
10061
10199
  "9:16": "9:16";
10062
10200
  }>>;
10063
10201
  duration_seconds: z.ZodOptional<z.ZodNumber>;
10202
+ resolution: z.ZodOptional<z.ZodEnum<{
10203
+ "1080p": "1080p";
10204
+ "360p": "360p";
10205
+ "4k": "4k";
10206
+ "720p": "720p";
10207
+ }>>;
10064
10208
  }, z.core.$strict>, z.ZodObject<{
10065
10209
  _option_id: z.ZodLiteral<"vertexai-grok">;
10066
10210
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -10605,6 +10749,8 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
10605
10749
  }, z.core.$strict>, z.ZodObject<{
10606
10750
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
10607
10751
  task: z.ZodOptional<z.ZodEnum<{
10752
+ edit: "edit";
10753
+ extend: "extend";
10608
10754
  image_to_video: "image_to_video";
10609
10755
  reference_to_video: "reference_to_video";
10610
10756
  text_to_video: "text_to_video";
@@ -10614,6 +10760,12 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
10614
10760
  "9:16": "9:16";
10615
10761
  }>>;
10616
10762
  duration_seconds: z.ZodOptional<z.ZodNumber>;
10763
+ resolution: z.ZodOptional<z.ZodEnum<{
10764
+ "1080p": "1080p";
10765
+ "360p": "360p";
10766
+ "4k": "4k";
10767
+ "720p": "720p";
10768
+ }>>;
10617
10769
  }, z.core.$strict>, z.ZodObject<{
10618
10770
  _option_id: z.ZodLiteral<"vertexai-grok">;
10619
10771
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11163,6 +11315,8 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
11163
11315
  }, z.core.$strict>, z.ZodObject<{
11164
11316
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
11165
11317
  task: z.ZodOptional<z.ZodEnum<{
11318
+ edit: "edit";
11319
+ extend: "extend";
11166
11320
  image_to_video: "image_to_video";
11167
11321
  reference_to_video: "reference_to_video";
11168
11322
  text_to_video: "text_to_video";
@@ -11172,6 +11326,12 @@ export declare const ContentObjectTypeCatalogEntryArraySchema: z.ZodArray<z.ZodO
11172
11326
  "9:16": "9:16";
11173
11327
  }>>;
11174
11328
  duration_seconds: z.ZodOptional<z.ZodNumber>;
11329
+ resolution: z.ZodOptional<z.ZodEnum<{
11330
+ "1080p": "1080p";
11331
+ "360p": "360p";
11332
+ "4k": "4k";
11333
+ "720p": "720p";
11334
+ }>>;
11175
11335
  }, z.core.$strict>, z.ZodObject<{
11176
11336
  _option_id: z.ZodLiteral<"vertexai-grok">;
11177
11337
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11800,6 +11960,8 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
11800
11960
  }, z.core.$strict>, z.ZodObject<{
11801
11961
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
11802
11962
  task: z.ZodOptional<z.ZodEnum<{
11963
+ edit: "edit";
11964
+ extend: "extend";
11803
11965
  image_to_video: "image_to_video";
11804
11966
  reference_to_video: "reference_to_video";
11805
11967
  text_to_video: "text_to_video";
@@ -11809,6 +11971,12 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
11809
11971
  "9:16": "9:16";
11810
11972
  }>>;
11811
11973
  duration_seconds: z.ZodOptional<z.ZodNumber>;
11974
+ resolution: z.ZodOptional<z.ZodEnum<{
11975
+ "1080p": "1080p";
11976
+ "360p": "360p";
11977
+ "4k": "4k";
11978
+ "720p": "720p";
11979
+ }>>;
11812
11980
  }, z.core.$strict>, z.ZodObject<{
11813
11981
  _option_id: z.ZodLiteral<"vertexai-grok">;
11814
11982
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -12364,6 +12532,8 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
12364
12532
  }, z.core.$strict>, z.ZodObject<{
12365
12533
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
12366
12534
  task: z.ZodOptional<z.ZodEnum<{
12535
+ edit: "edit";
12536
+ extend: "extend";
12367
12537
  image_to_video: "image_to_video";
12368
12538
  reference_to_video: "reference_to_video";
12369
12539
  text_to_video: "text_to_video";
@@ -12373,6 +12543,12 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
12373
12543
  "9:16": "9:16";
12374
12544
  }>>;
12375
12545
  duration_seconds: z.ZodOptional<z.ZodNumber>;
12546
+ resolution: z.ZodOptional<z.ZodEnum<{
12547
+ "1080p": "1080p";
12548
+ "360p": "360p";
12549
+ "4k": "4k";
12550
+ "720p": "720p";
12551
+ }>>;
12376
12552
  }, z.core.$strict>, z.ZodObject<{
12377
12553
  _option_id: z.ZodLiteral<"vertexai-grok">;
12378
12554
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -12964,6 +13140,8 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
12964
13140
  }, z.core.$strict>, z.ZodObject<{
12965
13141
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
12966
13142
  task: z.ZodOptional<z.ZodEnum<{
13143
+ edit: "edit";
13144
+ extend: "extend";
12967
13145
  image_to_video: "image_to_video";
12968
13146
  reference_to_video: "reference_to_video";
12969
13147
  text_to_video: "text_to_video";
@@ -12973,6 +13151,12 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
12973
13151
  "9:16": "9:16";
12974
13152
  }>>;
12975
13153
  duration_seconds: z.ZodOptional<z.ZodNumber>;
13154
+ resolution: z.ZodOptional<z.ZodEnum<{
13155
+ "1080p": "1080p";
13156
+ "360p": "360p";
13157
+ "4k": "4k";
13158
+ "720p": "720p";
13159
+ }>>;
12976
13160
  }, z.core.$strict>, z.ZodObject<{
12977
13161
  _option_id: z.ZodLiteral<"vertexai-grok">;
12978
13162
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -13517,6 +13701,8 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
13517
13701
  }, z.core.$strict>, z.ZodObject<{
13518
13702
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
13519
13703
  task: z.ZodOptional<z.ZodEnum<{
13704
+ edit: "edit";
13705
+ extend: "extend";
13520
13706
  image_to_video: "image_to_video";
13521
13707
  reference_to_video: "reference_to_video";
13522
13708
  text_to_video: "text_to_video";
@@ -13526,6 +13712,12 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
13526
13712
  "9:16": "9:16";
13527
13713
  }>>;
13528
13714
  duration_seconds: z.ZodOptional<z.ZodNumber>;
13715
+ resolution: z.ZodOptional<z.ZodEnum<{
13716
+ "1080p": "1080p";
13717
+ "360p": "360p";
13718
+ "4k": "4k";
13719
+ "720p": "720p";
13720
+ }>>;
13529
13721
  }, z.core.$strict>, z.ZodObject<{
13530
13722
  _option_id: z.ZodLiteral<"vertexai-grok">;
13531
13723
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -14075,6 +14267,8 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
14075
14267
  }, z.core.$strict>, z.ZodObject<{
14076
14268
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
14077
14269
  task: z.ZodOptional<z.ZodEnum<{
14270
+ edit: "edit";
14271
+ extend: "extend";
14078
14272
  image_to_video: "image_to_video";
14079
14273
  reference_to_video: "reference_to_video";
14080
14274
  text_to_video: "text_to_video";
@@ -14084,6 +14278,12 @@ export declare const ContentObjectTypeItemSchema: z.ZodObject<{
14084
14278
  "9:16": "9:16";
14085
14279
  }>>;
14086
14280
  duration_seconds: z.ZodOptional<z.ZodNumber>;
14281
+ resolution: z.ZodOptional<z.ZodEnum<{
14282
+ "1080p": "1080p";
14283
+ "360p": "360p";
14284
+ "4k": "4k";
14285
+ "720p": "720p";
14286
+ }>>;
14087
14287
  }, z.core.$strict>, z.ZodObject<{
14088
14288
  _option_id: z.ZodLiteral<"vertexai-grok">;
14089
14289
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -14715,6 +14915,8 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
14715
14915
  }, z.core.$strict>, z.ZodObject<{
14716
14916
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
14717
14917
  task: z.ZodOptional<z.ZodEnum<{
14918
+ edit: "edit";
14919
+ extend: "extend";
14718
14920
  image_to_video: "image_to_video";
14719
14921
  reference_to_video: "reference_to_video";
14720
14922
  text_to_video: "text_to_video";
@@ -14724,6 +14926,12 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
14724
14926
  "9:16": "9:16";
14725
14927
  }>>;
14726
14928
  duration_seconds: z.ZodOptional<z.ZodNumber>;
14929
+ resolution: z.ZodOptional<z.ZodEnum<{
14930
+ "1080p": "1080p";
14931
+ "360p": "360p";
14932
+ "4k": "4k";
14933
+ "720p": "720p";
14934
+ }>>;
14727
14935
  }, z.core.$strict>, z.ZodObject<{
14728
14936
  _option_id: z.ZodLiteral<"vertexai-grok">;
14729
14937
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -15279,6 +15487,8 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
15279
15487
  }, z.core.$strict>, z.ZodObject<{
15280
15488
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
15281
15489
  task: z.ZodOptional<z.ZodEnum<{
15490
+ edit: "edit";
15491
+ extend: "extend";
15282
15492
  image_to_video: "image_to_video";
15283
15493
  reference_to_video: "reference_to_video";
15284
15494
  text_to_video: "text_to_video";
@@ -15288,6 +15498,12 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
15288
15498
  "9:16": "9:16";
15289
15499
  }>>;
15290
15500
  duration_seconds: z.ZodOptional<z.ZodNumber>;
15501
+ resolution: z.ZodOptional<z.ZodEnum<{
15502
+ "1080p": "1080p";
15503
+ "360p": "360p";
15504
+ "4k": "4k";
15505
+ "720p": "720p";
15506
+ }>>;
15291
15507
  }, z.core.$strict>, z.ZodObject<{
15292
15508
  _option_id: z.ZodLiteral<"vertexai-grok">;
15293
15509
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -15879,6 +16095,8 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
15879
16095
  }, z.core.$strict>, z.ZodObject<{
15880
16096
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
15881
16097
  task: z.ZodOptional<z.ZodEnum<{
16098
+ edit: "edit";
16099
+ extend: "extend";
15882
16100
  image_to_video: "image_to_video";
15883
16101
  reference_to_video: "reference_to_video";
15884
16102
  text_to_video: "text_to_video";
@@ -15888,6 +16106,12 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
15888
16106
  "9:16": "9:16";
15889
16107
  }>>;
15890
16108
  duration_seconds: z.ZodOptional<z.ZodNumber>;
16109
+ resolution: z.ZodOptional<z.ZodEnum<{
16110
+ "1080p": "1080p";
16111
+ "360p": "360p";
16112
+ "4k": "4k";
16113
+ "720p": "720p";
16114
+ }>>;
15891
16115
  }, z.core.$strict>, z.ZodObject<{
15892
16116
  _option_id: z.ZodLiteral<"vertexai-grok">;
15893
16117
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -16432,6 +16656,8 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
16432
16656
  }, z.core.$strict>, z.ZodObject<{
16433
16657
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
16434
16658
  task: z.ZodOptional<z.ZodEnum<{
16659
+ edit: "edit";
16660
+ extend: "extend";
16435
16661
  image_to_video: "image_to_video";
16436
16662
  reference_to_video: "reference_to_video";
16437
16663
  text_to_video: "text_to_video";
@@ -16441,6 +16667,12 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
16441
16667
  "9:16": "9:16";
16442
16668
  }>>;
16443
16669
  duration_seconds: z.ZodOptional<z.ZodNumber>;
16670
+ resolution: z.ZodOptional<z.ZodEnum<{
16671
+ "1080p": "1080p";
16672
+ "360p": "360p";
16673
+ "4k": "4k";
16674
+ "720p": "720p";
16675
+ }>>;
16444
16676
  }, z.core.$strict>, z.ZodObject<{
16445
16677
  _option_id: z.ZodLiteral<"vertexai-grok">;
16446
16678
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -16990,6 +17222,8 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
16990
17222
  }, z.core.$strict>, z.ZodObject<{
16991
17223
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
16992
17224
  task: z.ZodOptional<z.ZodEnum<{
17225
+ edit: "edit";
17226
+ extend: "extend";
16993
17227
  image_to_video: "image_to_video";
16994
17228
  reference_to_video: "reference_to_video";
16995
17229
  text_to_video: "text_to_video";
@@ -16999,6 +17233,12 @@ export declare const ContentObjectTypeItemArraySchema: z.ZodArray<z.ZodObject<{
16999
17233
  "9:16": "9:16";
17000
17234
  }>>;
17001
17235
  duration_seconds: z.ZodOptional<z.ZodNumber>;
17236
+ resolution: z.ZodOptional<z.ZodEnum<{
17237
+ "1080p": "1080p";
17238
+ "360p": "360p";
17239
+ "4k": "4k";
17240
+ "720p": "720p";
17241
+ }>>;
17002
17242
  }, z.core.$strict>, z.ZodObject<{
17003
17243
  _option_id: z.ZodLiteral<"vertexai-grok">;
17004
17244
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -17634,6 +17874,8 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
17634
17874
  }, z.core.$strict>, z.ZodObject<{
17635
17875
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
17636
17876
  task: z.ZodOptional<z.ZodEnum<{
17877
+ edit: "edit";
17878
+ extend: "extend";
17637
17879
  image_to_video: "image_to_video";
17638
17880
  reference_to_video: "reference_to_video";
17639
17881
  text_to_video: "text_to_video";
@@ -17643,6 +17885,12 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
17643
17885
  "9:16": "9:16";
17644
17886
  }>>;
17645
17887
  duration_seconds: z.ZodOptional<z.ZodNumber>;
17888
+ resolution: z.ZodOptional<z.ZodEnum<{
17889
+ "1080p": "1080p";
17890
+ "360p": "360p";
17891
+ "4k": "4k";
17892
+ "720p": "720p";
17893
+ }>>;
17646
17894
  }, z.core.$strict>, z.ZodObject<{
17647
17895
  _option_id: z.ZodLiteral<"vertexai-grok">;
17648
17896
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -18198,6 +18446,8 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
18198
18446
  }, z.core.$strict>, z.ZodObject<{
18199
18447
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
18200
18448
  task: z.ZodOptional<z.ZodEnum<{
18449
+ edit: "edit";
18450
+ extend: "extend";
18201
18451
  image_to_video: "image_to_video";
18202
18452
  reference_to_video: "reference_to_video";
18203
18453
  text_to_video: "text_to_video";
@@ -18207,6 +18457,12 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
18207
18457
  "9:16": "9:16";
18208
18458
  }>>;
18209
18459
  duration_seconds: z.ZodOptional<z.ZodNumber>;
18460
+ resolution: z.ZodOptional<z.ZodEnum<{
18461
+ "1080p": "1080p";
18462
+ "360p": "360p";
18463
+ "4k": "4k";
18464
+ "720p": "720p";
18465
+ }>>;
18210
18466
  }, z.core.$strict>, z.ZodObject<{
18211
18467
  _option_id: z.ZodLiteral<"vertexai-grok">;
18212
18468
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -18798,6 +19054,8 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
18798
19054
  }, z.core.$strict>, z.ZodObject<{
18799
19055
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
18800
19056
  task: z.ZodOptional<z.ZodEnum<{
19057
+ edit: "edit";
19058
+ extend: "extend";
18801
19059
  image_to_video: "image_to_video";
18802
19060
  reference_to_video: "reference_to_video";
18803
19061
  text_to_video: "text_to_video";
@@ -18807,6 +19065,12 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
18807
19065
  "9:16": "9:16";
18808
19066
  }>>;
18809
19067
  duration_seconds: z.ZodOptional<z.ZodNumber>;
19068
+ resolution: z.ZodOptional<z.ZodEnum<{
19069
+ "1080p": "1080p";
19070
+ "360p": "360p";
19071
+ "4k": "4k";
19072
+ "720p": "720p";
19073
+ }>>;
18810
19074
  }, z.core.$strict>, z.ZodObject<{
18811
19075
  _option_id: z.ZodLiteral<"vertexai-grok">;
18812
19076
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -19351,6 +19615,8 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
19351
19615
  }, z.core.$strict>, z.ZodObject<{
19352
19616
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
19353
19617
  task: z.ZodOptional<z.ZodEnum<{
19618
+ edit: "edit";
19619
+ extend: "extend";
19354
19620
  image_to_video: "image_to_video";
19355
19621
  reference_to_video: "reference_to_video";
19356
19622
  text_to_video: "text_to_video";
@@ -19360,6 +19626,12 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
19360
19626
  "9:16": "9:16";
19361
19627
  }>>;
19362
19628
  duration_seconds: z.ZodOptional<z.ZodNumber>;
19629
+ resolution: z.ZodOptional<z.ZodEnum<{
19630
+ "1080p": "1080p";
19631
+ "360p": "360p";
19632
+ "4k": "4k";
19633
+ "720p": "720p";
19634
+ }>>;
19363
19635
  }, z.core.$strict>, z.ZodObject<{
19364
19636
  _option_id: z.ZodLiteral<"vertexai-grok">;
19365
19637
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -19909,6 +20181,8 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
19909
20181
  }, z.core.$strict>, z.ZodObject<{
19910
20182
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
19911
20183
  task: z.ZodOptional<z.ZodEnum<{
20184
+ edit: "edit";
20185
+ extend: "extend";
19912
20186
  image_to_video: "image_to_video";
19913
20187
  reference_to_video: "reference_to_video";
19914
20188
  text_to_video: "text_to_video";
@@ -19918,6 +20192,12 @@ export declare const InCodeTypeDefinitionSchema: z.ZodObject<{
19918
20192
  "9:16": "9:16";
19919
20193
  }>>;
19920
20194
  duration_seconds: z.ZodOptional<z.ZodNumber>;
20195
+ resolution: z.ZodOptional<z.ZodEnum<{
20196
+ "1080p": "1080p";
20197
+ "360p": "360p";
20198
+ "4k": "4k";
20199
+ "720p": "720p";
20200
+ }>>;
19921
20201
  }, z.core.$strict>, z.ZodObject<{
19922
20202
  _option_id: z.ZodLiteral<"vertexai-grok">;
19923
20203
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -20532,6 +20812,8 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
20532
20812
  }, z.core.$strict>, z.ZodObject<{
20533
20813
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
20534
20814
  task: z.ZodOptional<z.ZodEnum<{
20815
+ edit: "edit";
20816
+ extend: "extend";
20535
20817
  image_to_video: "image_to_video";
20536
20818
  reference_to_video: "reference_to_video";
20537
20819
  text_to_video: "text_to_video";
@@ -20541,6 +20823,12 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
20541
20823
  "9:16": "9:16";
20542
20824
  }>>;
20543
20825
  duration_seconds: z.ZodOptional<z.ZodNumber>;
20826
+ resolution: z.ZodOptional<z.ZodEnum<{
20827
+ "1080p": "1080p";
20828
+ "360p": "360p";
20829
+ "4k": "4k";
20830
+ "720p": "720p";
20831
+ }>>;
20544
20832
  }, z.core.$strict>, z.ZodObject<{
20545
20833
  _option_id: z.ZodLiteral<"vertexai-grok">;
20546
20834
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -21096,6 +21384,8 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
21096
21384
  }, z.core.$strict>, z.ZodObject<{
21097
21385
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
21098
21386
  task: z.ZodOptional<z.ZodEnum<{
21387
+ edit: "edit";
21388
+ extend: "extend";
21099
21389
  image_to_video: "image_to_video";
21100
21390
  reference_to_video: "reference_to_video";
21101
21391
  text_to_video: "text_to_video";
@@ -21105,6 +21395,12 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
21105
21395
  "9:16": "9:16";
21106
21396
  }>>;
21107
21397
  duration_seconds: z.ZodOptional<z.ZodNumber>;
21398
+ resolution: z.ZodOptional<z.ZodEnum<{
21399
+ "1080p": "1080p";
21400
+ "360p": "360p";
21401
+ "4k": "4k";
21402
+ "720p": "720p";
21403
+ }>>;
21108
21404
  }, z.core.$strict>, z.ZodObject<{
21109
21405
  _option_id: z.ZodLiteral<"vertexai-grok">;
21110
21406
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -21696,6 +21992,8 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
21696
21992
  }, z.core.$strict>, z.ZodObject<{
21697
21993
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
21698
21994
  task: z.ZodOptional<z.ZodEnum<{
21995
+ edit: "edit";
21996
+ extend: "extend";
21699
21997
  image_to_video: "image_to_video";
21700
21998
  reference_to_video: "reference_to_video";
21701
21999
  text_to_video: "text_to_video";
@@ -21705,6 +22003,12 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
21705
22003
  "9:16": "9:16";
21706
22004
  }>>;
21707
22005
  duration_seconds: z.ZodOptional<z.ZodNumber>;
22006
+ resolution: z.ZodOptional<z.ZodEnum<{
22007
+ "1080p": "1080p";
22008
+ "360p": "360p";
22009
+ "4k": "4k";
22010
+ "720p": "720p";
22011
+ }>>;
21708
22012
  }, z.core.$strict>, z.ZodObject<{
21709
22013
  _option_id: z.ZodLiteral<"vertexai-grok">;
21710
22014
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -22249,6 +22553,8 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
22249
22553
  }, z.core.$strict>, z.ZodObject<{
22250
22554
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
22251
22555
  task: z.ZodOptional<z.ZodEnum<{
22556
+ edit: "edit";
22557
+ extend: "extend";
22252
22558
  image_to_video: "image_to_video";
22253
22559
  reference_to_video: "reference_to_video";
22254
22560
  text_to_video: "text_to_video";
@@ -22258,6 +22564,12 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
22258
22564
  "9:16": "9:16";
22259
22565
  }>>;
22260
22566
  duration_seconds: z.ZodOptional<z.ZodNumber>;
22567
+ resolution: z.ZodOptional<z.ZodEnum<{
22568
+ "1080p": "1080p";
22569
+ "360p": "360p";
22570
+ "4k": "4k";
22571
+ "720p": "720p";
22572
+ }>>;
22261
22573
  }, z.core.$strict>, z.ZodObject<{
22262
22574
  _option_id: z.ZodLiteral<"vertexai-grok">;
22263
22575
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -22807,6 +23119,8 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
22807
23119
  }, z.core.$strict>, z.ZodObject<{
22808
23120
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
22809
23121
  task: z.ZodOptional<z.ZodEnum<{
23122
+ edit: "edit";
23123
+ extend: "extend";
22810
23124
  image_to_video: "image_to_video";
22811
23125
  reference_to_video: "reference_to_video";
22812
23126
  text_to_video: "text_to_video";
@@ -22816,6 +23130,12 @@ export declare const CreateContentObjectTypePayloadSchema: z.ZodObject<{
22816
23130
  "9:16": "9:16";
22817
23131
  }>>;
22818
23132
  duration_seconds: z.ZodOptional<z.ZodNumber>;
23133
+ resolution: z.ZodOptional<z.ZodEnum<{
23134
+ "1080p": "1080p";
23135
+ "360p": "360p";
23136
+ "4k": "4k";
23137
+ "720p": "720p";
23138
+ }>>;
22819
23139
  }, z.core.$strict>, z.ZodObject<{
22820
23140
  _option_id: z.ZodLiteral<"vertexai-grok">;
22821
23141
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -23454,6 +23774,8 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
23454
23774
  }, z.core.$strict>, z.ZodObject<{
23455
23775
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
23456
23776
  task: z.ZodOptional<z.ZodEnum<{
23777
+ edit: "edit";
23778
+ extend: "extend";
23457
23779
  image_to_video: "image_to_video";
23458
23780
  reference_to_video: "reference_to_video";
23459
23781
  text_to_video: "text_to_video";
@@ -23463,6 +23785,12 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
23463
23785
  "9:16": "9:16";
23464
23786
  }>>;
23465
23787
  duration_seconds: z.ZodOptional<z.ZodNumber>;
23788
+ resolution: z.ZodOptional<z.ZodEnum<{
23789
+ "1080p": "1080p";
23790
+ "360p": "360p";
23791
+ "4k": "4k";
23792
+ "720p": "720p";
23793
+ }>>;
23466
23794
  }, z.core.$strict>, z.ZodObject<{
23467
23795
  _option_id: z.ZodLiteral<"vertexai-grok">;
23468
23796
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -24018,6 +24346,8 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
24018
24346
  }, z.core.$strict>, z.ZodObject<{
24019
24347
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
24020
24348
  task: z.ZodOptional<z.ZodEnum<{
24349
+ edit: "edit";
24350
+ extend: "extend";
24021
24351
  image_to_video: "image_to_video";
24022
24352
  reference_to_video: "reference_to_video";
24023
24353
  text_to_video: "text_to_video";
@@ -24027,6 +24357,12 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
24027
24357
  "9:16": "9:16";
24028
24358
  }>>;
24029
24359
  duration_seconds: z.ZodOptional<z.ZodNumber>;
24360
+ resolution: z.ZodOptional<z.ZodEnum<{
24361
+ "1080p": "1080p";
24362
+ "360p": "360p";
24363
+ "4k": "4k";
24364
+ "720p": "720p";
24365
+ }>>;
24030
24366
  }, z.core.$strict>, z.ZodObject<{
24031
24367
  _option_id: z.ZodLiteral<"vertexai-grok">;
24032
24368
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -24618,6 +24954,8 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
24618
24954
  }, z.core.$strict>, z.ZodObject<{
24619
24955
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
24620
24956
  task: z.ZodOptional<z.ZodEnum<{
24957
+ edit: "edit";
24958
+ extend: "extend";
24621
24959
  image_to_video: "image_to_video";
24622
24960
  reference_to_video: "reference_to_video";
24623
24961
  text_to_video: "text_to_video";
@@ -24627,6 +24965,12 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
24627
24965
  "9:16": "9:16";
24628
24966
  }>>;
24629
24967
  duration_seconds: z.ZodOptional<z.ZodNumber>;
24968
+ resolution: z.ZodOptional<z.ZodEnum<{
24969
+ "1080p": "1080p";
24970
+ "360p": "360p";
24971
+ "4k": "4k";
24972
+ "720p": "720p";
24973
+ }>>;
24630
24974
  }, z.core.$strict>, z.ZodObject<{
24631
24975
  _option_id: z.ZodLiteral<"vertexai-grok">;
24632
24976
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -25171,6 +25515,8 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
25171
25515
  }, z.core.$strict>, z.ZodObject<{
25172
25516
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
25173
25517
  task: z.ZodOptional<z.ZodEnum<{
25518
+ edit: "edit";
25519
+ extend: "extend";
25174
25520
  image_to_video: "image_to_video";
25175
25521
  reference_to_video: "reference_to_video";
25176
25522
  text_to_video: "text_to_video";
@@ -25180,6 +25526,12 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
25180
25526
  "9:16": "9:16";
25181
25527
  }>>;
25182
25528
  duration_seconds: z.ZodOptional<z.ZodNumber>;
25529
+ resolution: z.ZodOptional<z.ZodEnum<{
25530
+ "1080p": "1080p";
25531
+ "360p": "360p";
25532
+ "4k": "4k";
25533
+ "720p": "720p";
25534
+ }>>;
25183
25535
  }, z.core.$strict>, z.ZodObject<{
25184
25536
  _option_id: z.ZodLiteral<"vertexai-grok">;
25185
25537
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -25729,6 +26081,8 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
25729
26081
  }, z.core.$strict>, z.ZodObject<{
25730
26082
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
25731
26083
  task: z.ZodOptional<z.ZodEnum<{
26084
+ edit: "edit";
26085
+ extend: "extend";
25732
26086
  image_to_video: "image_to_video";
25733
26087
  reference_to_video: "reference_to_video";
25734
26088
  text_to_video: "text_to_video";
@@ -25738,6 +26092,12 @@ export declare const UpdateContentObjectTypePayloadSchema: z.ZodObject<{
25738
26092
  "9:16": "9:16";
25739
26093
  }>>;
25740
26094
  duration_seconds: z.ZodOptional<z.ZodNumber>;
26095
+ resolution: z.ZodOptional<z.ZodEnum<{
26096
+ "1080p": "1080p";
26097
+ "360p": "360p";
26098
+ "4k": "4k";
26099
+ "720p": "720p";
26100
+ }>>;
25741
26101
  }, z.core.$strict>, z.ZodObject<{
25742
26102
  _option_id: z.ZodLiteral<"vertexai-grok">;
25743
26103
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -26373,6 +26733,8 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
26373
26733
  }, z.core.$strict>, z.ZodObject<{
26374
26734
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
26375
26735
  task: z.ZodOptional<z.ZodEnum<{
26736
+ edit: "edit";
26737
+ extend: "extend";
26376
26738
  image_to_video: "image_to_video";
26377
26739
  reference_to_video: "reference_to_video";
26378
26740
  text_to_video: "text_to_video";
@@ -26382,6 +26744,12 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
26382
26744
  "9:16": "9:16";
26383
26745
  }>>;
26384
26746
  duration_seconds: z.ZodOptional<z.ZodNumber>;
26747
+ resolution: z.ZodOptional<z.ZodEnum<{
26748
+ "1080p": "1080p";
26749
+ "360p": "360p";
26750
+ "4k": "4k";
26751
+ "720p": "720p";
26752
+ }>>;
26385
26753
  }, z.core.$strict>, z.ZodObject<{
26386
26754
  _option_id: z.ZodLiteral<"vertexai-grok">;
26387
26755
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -26937,6 +27305,8 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
26937
27305
  }, z.core.$strict>, z.ZodObject<{
26938
27306
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
26939
27307
  task: z.ZodOptional<z.ZodEnum<{
27308
+ edit: "edit";
27309
+ extend: "extend";
26940
27310
  image_to_video: "image_to_video";
26941
27311
  reference_to_video: "reference_to_video";
26942
27312
  text_to_video: "text_to_video";
@@ -26946,6 +27316,12 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
26946
27316
  "9:16": "9:16";
26947
27317
  }>>;
26948
27318
  duration_seconds: z.ZodOptional<z.ZodNumber>;
27319
+ resolution: z.ZodOptional<z.ZodEnum<{
27320
+ "1080p": "1080p";
27321
+ "360p": "360p";
27322
+ "4k": "4k";
27323
+ "720p": "720p";
27324
+ }>>;
26949
27325
  }, z.core.$strict>, z.ZodObject<{
26950
27326
  _option_id: z.ZodLiteral<"vertexai-grok">;
26951
27327
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -27537,6 +27913,8 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
27537
27913
  }, z.core.$strict>, z.ZodObject<{
27538
27914
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
27539
27915
  task: z.ZodOptional<z.ZodEnum<{
27916
+ edit: "edit";
27917
+ extend: "extend";
27540
27918
  image_to_video: "image_to_video";
27541
27919
  reference_to_video: "reference_to_video";
27542
27920
  text_to_video: "text_to_video";
@@ -27546,6 +27924,12 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
27546
27924
  "9:16": "9:16";
27547
27925
  }>>;
27548
27926
  duration_seconds: z.ZodOptional<z.ZodNumber>;
27927
+ resolution: z.ZodOptional<z.ZodEnum<{
27928
+ "1080p": "1080p";
27929
+ "360p": "360p";
27930
+ "4k": "4k";
27931
+ "720p": "720p";
27932
+ }>>;
27549
27933
  }, z.core.$strict>, z.ZodObject<{
27550
27934
  _option_id: z.ZodLiteral<"vertexai-grok">;
27551
27935
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -28090,6 +28474,8 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
28090
28474
  }, z.core.$strict>, z.ZodObject<{
28091
28475
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
28092
28476
  task: z.ZodOptional<z.ZodEnum<{
28477
+ edit: "edit";
28478
+ extend: "extend";
28093
28479
  image_to_video: "image_to_video";
28094
28480
  reference_to_video: "reference_to_video";
28095
28481
  text_to_video: "text_to_video";
@@ -28099,6 +28485,12 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
28099
28485
  "9:16": "9:16";
28100
28486
  }>>;
28101
28487
  duration_seconds: z.ZodOptional<z.ZodNumber>;
28488
+ resolution: z.ZodOptional<z.ZodEnum<{
28489
+ "1080p": "1080p";
28490
+ "360p": "360p";
28491
+ "4k": "4k";
28492
+ "720p": "720p";
28493
+ }>>;
28102
28494
  }, z.core.$strict>, z.ZodObject<{
28103
28495
  _option_id: z.ZodLiteral<"vertexai-grok">;
28104
28496
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -28648,6 +29040,8 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
28648
29040
  }, z.core.$strict>, z.ZodObject<{
28649
29041
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
28650
29042
  task: z.ZodOptional<z.ZodEnum<{
29043
+ edit: "edit";
29044
+ extend: "extend";
28651
29045
  image_to_video: "image_to_video";
28652
29046
  reference_to_video: "reference_to_video";
28653
29047
  text_to_video: "text_to_video";
@@ -28657,6 +29051,12 @@ export declare const ContentObjectTypeSchema: z.ZodObject<{
28657
29051
  "9:16": "9:16";
28658
29052
  }>>;
28659
29053
  duration_seconds: z.ZodOptional<z.ZodNumber>;
29054
+ resolution: z.ZodOptional<z.ZodEnum<{
29055
+ "1080p": "1080p";
29056
+ "360p": "360p";
29057
+ "4k": "4k";
29058
+ "720p": "720p";
29059
+ }>>;
28660
29060
  }, z.core.$strict>, z.ZodObject<{
28661
29061
  _option_id: z.ZodLiteral<"vertexai-grok">;
28662
29062
  max_tokens: z.ZodOptional<z.ZodNumber>;