@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
@@ -875,6 +875,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
875
875
  }, z.core.$strict>, z.ZodObject<{
876
876
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
877
877
  task: z.ZodOptional<z.ZodEnum<{
878
+ edit: "edit";
879
+ extend: "extend";
878
880
  image_to_video: "image_to_video";
879
881
  reference_to_video: "reference_to_video";
880
882
  text_to_video: "text_to_video";
@@ -884,6 +886,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
884
886
  "9:16": "9:16";
885
887
  }>>;
886
888
  duration_seconds: z.ZodOptional<z.ZodNumber>;
889
+ resolution: z.ZodOptional<z.ZodEnum<{
890
+ "1080p": "1080p";
891
+ "360p": "360p";
892
+ "4k": "4k";
893
+ "720p": "720p";
894
+ }>>;
887
895
  }, z.core.$strict>, z.ZodObject<{
888
896
  _option_id: z.ZodLiteral<"vertexai-grok">;
889
897
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1457,6 +1465,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
1457
1465
  }, z.core.$strict>, z.ZodObject<{
1458
1466
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
1459
1467
  task: z.ZodOptional<z.ZodEnum<{
1468
+ edit: "edit";
1469
+ extend: "extend";
1460
1470
  image_to_video: "image_to_video";
1461
1471
  reference_to_video: "reference_to_video";
1462
1472
  text_to_video: "text_to_video";
@@ -1466,6 +1476,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
1466
1476
  "9:16": "9:16";
1467
1477
  }>>;
1468
1478
  duration_seconds: z.ZodOptional<z.ZodNumber>;
1479
+ resolution: z.ZodOptional<z.ZodEnum<{
1480
+ "1080p": "1080p";
1481
+ "360p": "360p";
1482
+ "4k": "4k";
1483
+ "720p": "720p";
1484
+ }>>;
1469
1485
  }, z.core.$strict>, z.ZodObject<{
1470
1486
  _option_id: z.ZodLiteral<"vertexai-grok">;
1471
1487
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2021,6 +2037,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
2021
2037
  }, z.core.$strict>, z.ZodObject<{
2022
2038
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
2023
2039
  task: z.ZodOptional<z.ZodEnum<{
2040
+ edit: "edit";
2041
+ extend: "extend";
2024
2042
  image_to_video: "image_to_video";
2025
2043
  reference_to_video: "reference_to_video";
2026
2044
  text_to_video: "text_to_video";
@@ -2030,6 +2048,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
2030
2048
  "9:16": "9:16";
2031
2049
  }>>;
2032
2050
  duration_seconds: z.ZodOptional<z.ZodNumber>;
2051
+ resolution: z.ZodOptional<z.ZodEnum<{
2052
+ "1080p": "1080p";
2053
+ "360p": "360p";
2054
+ "4k": "4k";
2055
+ "720p": "720p";
2056
+ }>>;
2033
2057
  }, z.core.$strict>, z.ZodObject<{
2034
2058
  _option_id: z.ZodLiteral<"vertexai-grok">;
2035
2059
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2621,6 +2645,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
2621
2645
  }, z.core.$strict>, z.ZodObject<{
2622
2646
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
2623
2647
  task: z.ZodOptional<z.ZodEnum<{
2648
+ edit: "edit";
2649
+ extend: "extend";
2624
2650
  image_to_video: "image_to_video";
2625
2651
  reference_to_video: "reference_to_video";
2626
2652
  text_to_video: "text_to_video";
@@ -2630,6 +2656,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
2630
2656
  "9:16": "9:16";
2631
2657
  }>>;
2632
2658
  duration_seconds: z.ZodOptional<z.ZodNumber>;
2659
+ resolution: z.ZodOptional<z.ZodEnum<{
2660
+ "1080p": "1080p";
2661
+ "360p": "360p";
2662
+ "4k": "4k";
2663
+ "720p": "720p";
2664
+ }>>;
2633
2665
  }, z.core.$strict>, z.ZodObject<{
2634
2666
  _option_id: z.ZodLiteral<"vertexai-grok">;
2635
2667
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -3174,6 +3206,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
3174
3206
  }, z.core.$strict>, z.ZodObject<{
3175
3207
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
3176
3208
  task: z.ZodOptional<z.ZodEnum<{
3209
+ edit: "edit";
3210
+ extend: "extend";
3177
3211
  image_to_video: "image_to_video";
3178
3212
  reference_to_video: "reference_to_video";
3179
3213
  text_to_video: "text_to_video";
@@ -3183,6 +3217,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
3183
3217
  "9:16": "9:16";
3184
3218
  }>>;
3185
3219
  duration_seconds: z.ZodOptional<z.ZodNumber>;
3220
+ resolution: z.ZodOptional<z.ZodEnum<{
3221
+ "1080p": "1080p";
3222
+ "360p": "360p";
3223
+ "4k": "4k";
3224
+ "720p": "720p";
3225
+ }>>;
3186
3226
  }, z.core.$strict>, z.ZodObject<{
3187
3227
  _option_id: z.ZodLiteral<"vertexai-grok">;
3188
3228
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -3732,6 +3772,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
3732
3772
  }, z.core.$strict>, z.ZodObject<{
3733
3773
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
3734
3774
  task: z.ZodOptional<z.ZodEnum<{
3775
+ edit: "edit";
3776
+ extend: "extend";
3735
3777
  image_to_video: "image_to_video";
3736
3778
  reference_to_video: "reference_to_video";
3737
3779
  text_to_video: "text_to_video";
@@ -3741,6 +3783,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
3741
3783
  "9:16": "9:16";
3742
3784
  }>>;
3743
3785
  duration_seconds: z.ZodOptional<z.ZodNumber>;
3786
+ resolution: z.ZodOptional<z.ZodEnum<{
3787
+ "1080p": "1080p";
3788
+ "360p": "360p";
3789
+ "4k": "4k";
3790
+ "720p": "720p";
3791
+ }>>;
3744
3792
  }, z.core.$strict>, z.ZodObject<{
3745
3793
  _option_id: z.ZodLiteral<"vertexai-grok">;
3746
3794
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -4352,6 +4400,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
4352
4400
  }, z.core.$strict>, z.ZodObject<{
4353
4401
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
4354
4402
  task: z.ZodOptional<z.ZodEnum<{
4403
+ edit: "edit";
4404
+ extend: "extend";
4355
4405
  image_to_video: "image_to_video";
4356
4406
  reference_to_video: "reference_to_video";
4357
4407
  text_to_video: "text_to_video";
@@ -4361,6 +4411,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
4361
4411
  "9:16": "9:16";
4362
4412
  }>>;
4363
4413
  duration_seconds: z.ZodOptional<z.ZodNumber>;
4414
+ resolution: z.ZodOptional<z.ZodEnum<{
4415
+ "1080p": "1080p";
4416
+ "360p": "360p";
4417
+ "4k": "4k";
4418
+ "720p": "720p";
4419
+ }>>;
4364
4420
  }, z.core.$strict>, z.ZodObject<{
4365
4421
  _option_id: z.ZodLiteral<"vertexai-grok">;
4366
4422
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -4916,6 +4972,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
4916
4972
  }, z.core.$strict>, z.ZodObject<{
4917
4973
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
4918
4974
  task: z.ZodOptional<z.ZodEnum<{
4975
+ edit: "edit";
4976
+ extend: "extend";
4919
4977
  image_to_video: "image_to_video";
4920
4978
  reference_to_video: "reference_to_video";
4921
4979
  text_to_video: "text_to_video";
@@ -4925,6 +4983,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
4925
4983
  "9:16": "9:16";
4926
4984
  }>>;
4927
4985
  duration_seconds: z.ZodOptional<z.ZodNumber>;
4986
+ resolution: z.ZodOptional<z.ZodEnum<{
4987
+ "1080p": "1080p";
4988
+ "360p": "360p";
4989
+ "4k": "4k";
4990
+ "720p": "720p";
4991
+ }>>;
4928
4992
  }, z.core.$strict>, z.ZodObject<{
4929
4993
  _option_id: z.ZodLiteral<"vertexai-grok">;
4930
4994
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -5516,6 +5580,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
5516
5580
  }, z.core.$strict>, z.ZodObject<{
5517
5581
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
5518
5582
  task: z.ZodOptional<z.ZodEnum<{
5583
+ edit: "edit";
5584
+ extend: "extend";
5519
5585
  image_to_video: "image_to_video";
5520
5586
  reference_to_video: "reference_to_video";
5521
5587
  text_to_video: "text_to_video";
@@ -5525,6 +5591,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
5525
5591
  "9:16": "9:16";
5526
5592
  }>>;
5527
5593
  duration_seconds: z.ZodOptional<z.ZodNumber>;
5594
+ resolution: z.ZodOptional<z.ZodEnum<{
5595
+ "1080p": "1080p";
5596
+ "360p": "360p";
5597
+ "4k": "4k";
5598
+ "720p": "720p";
5599
+ }>>;
5528
5600
  }, z.core.$strict>, z.ZodObject<{
5529
5601
  _option_id: z.ZodLiteral<"vertexai-grok">;
5530
5602
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -6069,6 +6141,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
6069
6141
  }, z.core.$strict>, z.ZodObject<{
6070
6142
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
6071
6143
  task: z.ZodOptional<z.ZodEnum<{
6144
+ edit: "edit";
6145
+ extend: "extend";
6072
6146
  image_to_video: "image_to_video";
6073
6147
  reference_to_video: "reference_to_video";
6074
6148
  text_to_video: "text_to_video";
@@ -6078,6 +6152,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
6078
6152
  "9:16": "9:16";
6079
6153
  }>>;
6080
6154
  duration_seconds: z.ZodOptional<z.ZodNumber>;
6155
+ resolution: z.ZodOptional<z.ZodEnum<{
6156
+ "1080p": "1080p";
6157
+ "360p": "360p";
6158
+ "4k": "4k";
6159
+ "720p": "720p";
6160
+ }>>;
6081
6161
  }, z.core.$strict>, z.ZodObject<{
6082
6162
  _option_id: z.ZodLiteral<"vertexai-grok">;
6083
6163
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -6627,6 +6707,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
6627
6707
  }, z.core.$strict>, z.ZodObject<{
6628
6708
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
6629
6709
  task: z.ZodOptional<z.ZodEnum<{
6710
+ edit: "edit";
6711
+ extend: "extend";
6630
6712
  image_to_video: "image_to_video";
6631
6713
  reference_to_video: "reference_to_video";
6632
6714
  text_to_video: "text_to_video";
@@ -6636,6 +6718,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
6636
6718
  "9:16": "9:16";
6637
6719
  }>>;
6638
6720
  duration_seconds: z.ZodOptional<z.ZodNumber>;
6721
+ resolution: z.ZodOptional<z.ZodEnum<{
6722
+ "1080p": "1080p";
6723
+ "360p": "360p";
6724
+ "4k": "4k";
6725
+ "720p": "720p";
6726
+ }>>;
6639
6727
  }, z.core.$strict>, z.ZodObject<{
6640
6728
  _option_id: z.ZodLiteral<"vertexai-grok">;
6641
6729
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -7383,6 +7471,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
7383
7471
  }, z.core.$strict>, z.ZodObject<{
7384
7472
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
7385
7473
  task: z.ZodOptional<z.ZodEnum<{
7474
+ edit: "edit";
7475
+ extend: "extend";
7386
7476
  image_to_video: "image_to_video";
7387
7477
  reference_to_video: "reference_to_video";
7388
7478
  text_to_video: "text_to_video";
@@ -7392,6 +7482,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
7392
7482
  "9:16": "9:16";
7393
7483
  }>>;
7394
7484
  duration_seconds: z.ZodOptional<z.ZodNumber>;
7485
+ resolution: z.ZodOptional<z.ZodEnum<{
7486
+ "1080p": "1080p";
7487
+ "360p": "360p";
7488
+ "4k": "4k";
7489
+ "720p": "720p";
7490
+ }>>;
7395
7491
  }, z.core.$strict>, z.ZodObject<{
7396
7492
  _option_id: z.ZodLiteral<"vertexai-grok">;
7397
7493
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -7947,6 +8043,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
7947
8043
  }, z.core.$strict>, z.ZodObject<{
7948
8044
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
7949
8045
  task: z.ZodOptional<z.ZodEnum<{
8046
+ edit: "edit";
8047
+ extend: "extend";
7950
8048
  image_to_video: "image_to_video";
7951
8049
  reference_to_video: "reference_to_video";
7952
8050
  text_to_video: "text_to_video";
@@ -7956,6 +8054,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
7956
8054
  "9:16": "9:16";
7957
8055
  }>>;
7958
8056
  duration_seconds: z.ZodOptional<z.ZodNumber>;
8057
+ resolution: z.ZodOptional<z.ZodEnum<{
8058
+ "1080p": "1080p";
8059
+ "360p": "360p";
8060
+ "4k": "4k";
8061
+ "720p": "720p";
8062
+ }>>;
7959
8063
  }, z.core.$strict>, z.ZodObject<{
7960
8064
  _option_id: z.ZodLiteral<"vertexai-grok">;
7961
8065
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -8547,6 +8651,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
8547
8651
  }, z.core.$strict>, z.ZodObject<{
8548
8652
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
8549
8653
  task: z.ZodOptional<z.ZodEnum<{
8654
+ edit: "edit";
8655
+ extend: "extend";
8550
8656
  image_to_video: "image_to_video";
8551
8657
  reference_to_video: "reference_to_video";
8552
8658
  text_to_video: "text_to_video";
@@ -8556,6 +8662,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
8556
8662
  "9:16": "9:16";
8557
8663
  }>>;
8558
8664
  duration_seconds: z.ZodOptional<z.ZodNumber>;
8665
+ resolution: z.ZodOptional<z.ZodEnum<{
8666
+ "1080p": "1080p";
8667
+ "360p": "360p";
8668
+ "4k": "4k";
8669
+ "720p": "720p";
8670
+ }>>;
8559
8671
  }, z.core.$strict>, z.ZodObject<{
8560
8672
  _option_id: z.ZodLiteral<"vertexai-grok">;
8561
8673
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -9100,6 +9212,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
9100
9212
  }, z.core.$strict>, z.ZodObject<{
9101
9213
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
9102
9214
  task: z.ZodOptional<z.ZodEnum<{
9215
+ edit: "edit";
9216
+ extend: "extend";
9103
9217
  image_to_video: "image_to_video";
9104
9218
  reference_to_video: "reference_to_video";
9105
9219
  text_to_video: "text_to_video";
@@ -9109,6 +9223,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
9109
9223
  "9:16": "9:16";
9110
9224
  }>>;
9111
9225
  duration_seconds: z.ZodOptional<z.ZodNumber>;
9226
+ resolution: z.ZodOptional<z.ZodEnum<{
9227
+ "1080p": "1080p";
9228
+ "360p": "360p";
9229
+ "4k": "4k";
9230
+ "720p": "720p";
9231
+ }>>;
9112
9232
  }, z.core.$strict>, z.ZodObject<{
9113
9233
  _option_id: z.ZodLiteral<"vertexai-grok">;
9114
9234
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -9658,6 +9778,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
9658
9778
  }, z.core.$strict>, z.ZodObject<{
9659
9779
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
9660
9780
  task: z.ZodOptional<z.ZodEnum<{
9781
+ edit: "edit";
9782
+ extend: "extend";
9661
9783
  image_to_video: "image_to_video";
9662
9784
  reference_to_video: "reference_to_video";
9663
9785
  text_to_video: "text_to_video";
@@ -9667,6 +9789,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
9667
9789
  "9:16": "9:16";
9668
9790
  }>>;
9669
9791
  duration_seconds: z.ZodOptional<z.ZodNumber>;
9792
+ resolution: z.ZodOptional<z.ZodEnum<{
9793
+ "1080p": "1080p";
9794
+ "360p": "360p";
9795
+ "4k": "4k";
9796
+ "720p": "720p";
9797
+ }>>;
9670
9798
  }, z.core.$strict>, z.ZodObject<{
9671
9799
  _option_id: z.ZodLiteral<"vertexai-grok">;
9672
9800
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -10447,6 +10575,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
10447
10575
  }, z.core.$strict>, z.ZodObject<{
10448
10576
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
10449
10577
  task: z.ZodOptional<z.ZodEnum<{
10578
+ edit: "edit";
10579
+ extend: "extend";
10450
10580
  image_to_video: "image_to_video";
10451
10581
  reference_to_video: "reference_to_video";
10452
10582
  text_to_video: "text_to_video";
@@ -10456,6 +10586,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
10456
10586
  "9:16": "9:16";
10457
10587
  }>>;
10458
10588
  duration_seconds: z.ZodOptional<z.ZodNumber>;
10589
+ resolution: z.ZodOptional<z.ZodEnum<{
10590
+ "1080p": "1080p";
10591
+ "360p": "360p";
10592
+ "4k": "4k";
10593
+ "720p": "720p";
10594
+ }>>;
10459
10595
  }, z.core.$strict>, z.ZodObject<{
10460
10596
  _option_id: z.ZodLiteral<"vertexai-grok">;
10461
10597
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11011,6 +11147,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
11011
11147
  }, z.core.$strict>, z.ZodObject<{
11012
11148
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
11013
11149
  task: z.ZodOptional<z.ZodEnum<{
11150
+ edit: "edit";
11151
+ extend: "extend";
11014
11152
  image_to_video: "image_to_video";
11015
11153
  reference_to_video: "reference_to_video";
11016
11154
  text_to_video: "text_to_video";
@@ -11020,6 +11158,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
11020
11158
  "9:16": "9:16";
11021
11159
  }>>;
11022
11160
  duration_seconds: z.ZodOptional<z.ZodNumber>;
11161
+ resolution: z.ZodOptional<z.ZodEnum<{
11162
+ "1080p": "1080p";
11163
+ "360p": "360p";
11164
+ "4k": "4k";
11165
+ "720p": "720p";
11166
+ }>>;
11023
11167
  }, z.core.$strict>, z.ZodObject<{
11024
11168
  _option_id: z.ZodLiteral<"vertexai-grok">;
11025
11169
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11611,6 +11755,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
11611
11755
  }, z.core.$strict>, z.ZodObject<{
11612
11756
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
11613
11757
  task: z.ZodOptional<z.ZodEnum<{
11758
+ edit: "edit";
11759
+ extend: "extend";
11614
11760
  image_to_video: "image_to_video";
11615
11761
  reference_to_video: "reference_to_video";
11616
11762
  text_to_video: "text_to_video";
@@ -11620,6 +11766,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
11620
11766
  "9:16": "9:16";
11621
11767
  }>>;
11622
11768
  duration_seconds: z.ZodOptional<z.ZodNumber>;
11769
+ resolution: z.ZodOptional<z.ZodEnum<{
11770
+ "1080p": "1080p";
11771
+ "360p": "360p";
11772
+ "4k": "4k";
11773
+ "720p": "720p";
11774
+ }>>;
11623
11775
  }, z.core.$strict>, z.ZodObject<{
11624
11776
  _option_id: z.ZodLiteral<"vertexai-grok">;
11625
11777
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -12164,6 +12316,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
12164
12316
  }, z.core.$strict>, z.ZodObject<{
12165
12317
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
12166
12318
  task: z.ZodOptional<z.ZodEnum<{
12319
+ edit: "edit";
12320
+ extend: "extend";
12167
12321
  image_to_video: "image_to_video";
12168
12322
  reference_to_video: "reference_to_video";
12169
12323
  text_to_video: "text_to_video";
@@ -12173,6 +12327,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
12173
12327
  "9:16": "9:16";
12174
12328
  }>>;
12175
12329
  duration_seconds: z.ZodOptional<z.ZodNumber>;
12330
+ resolution: z.ZodOptional<z.ZodEnum<{
12331
+ "1080p": "1080p";
12332
+ "360p": "360p";
12333
+ "4k": "4k";
12334
+ "720p": "720p";
12335
+ }>>;
12176
12336
  }, z.core.$strict>, z.ZodObject<{
12177
12337
  _option_id: z.ZodLiteral<"vertexai-grok">;
12178
12338
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -12722,6 +12882,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
12722
12882
  }, z.core.$strict>, z.ZodObject<{
12723
12883
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
12724
12884
  task: z.ZodOptional<z.ZodEnum<{
12885
+ edit: "edit";
12886
+ extend: "extend";
12725
12887
  image_to_video: "image_to_video";
12726
12888
  reference_to_video: "reference_to_video";
12727
12889
  text_to_video: "text_to_video";
@@ -12731,6 +12893,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
12731
12893
  "9:16": "9:16";
12732
12894
  }>>;
12733
12895
  duration_seconds: z.ZodOptional<z.ZodNumber>;
12896
+ resolution: z.ZodOptional<z.ZodEnum<{
12897
+ "1080p": "1080p";
12898
+ "360p": "360p";
12899
+ "4k": "4k";
12900
+ "720p": "720p";
12901
+ }>>;
12734
12902
  }, z.core.$strict>, z.ZodObject<{
12735
12903
  _option_id: z.ZodLiteral<"vertexai-grok">;
12736
12904
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -13518,6 +13686,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
13518
13686
  }, z.core.$strict>, z.ZodObject<{
13519
13687
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
13520
13688
  task: z.ZodOptional<z.ZodEnum<{
13689
+ edit: "edit";
13690
+ extend: "extend";
13521
13691
  image_to_video: "image_to_video";
13522
13692
  reference_to_video: "reference_to_video";
13523
13693
  text_to_video: "text_to_video";
@@ -13527,6 +13697,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
13527
13697
  "9:16": "9:16";
13528
13698
  }>>;
13529
13699
  duration_seconds: z.ZodOptional<z.ZodNumber>;
13700
+ resolution: z.ZodOptional<z.ZodEnum<{
13701
+ "1080p": "1080p";
13702
+ "360p": "360p";
13703
+ "4k": "4k";
13704
+ "720p": "720p";
13705
+ }>>;
13530
13706
  }, z.core.$strict>, z.ZodObject<{
13531
13707
  _option_id: z.ZodLiteral<"vertexai-grok">;
13532
13708
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -14082,6 +14258,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
14082
14258
  }, z.core.$strict>, z.ZodObject<{
14083
14259
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
14084
14260
  task: z.ZodOptional<z.ZodEnum<{
14261
+ edit: "edit";
14262
+ extend: "extend";
14085
14263
  image_to_video: "image_to_video";
14086
14264
  reference_to_video: "reference_to_video";
14087
14265
  text_to_video: "text_to_video";
@@ -14091,6 +14269,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
14091
14269
  "9:16": "9:16";
14092
14270
  }>>;
14093
14271
  duration_seconds: z.ZodOptional<z.ZodNumber>;
14272
+ resolution: z.ZodOptional<z.ZodEnum<{
14273
+ "1080p": "1080p";
14274
+ "360p": "360p";
14275
+ "4k": "4k";
14276
+ "720p": "720p";
14277
+ }>>;
14094
14278
  }, z.core.$strict>, z.ZodObject<{
14095
14279
  _option_id: z.ZodLiteral<"vertexai-grok">;
14096
14280
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -14682,6 +14866,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
14682
14866
  }, z.core.$strict>, z.ZodObject<{
14683
14867
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
14684
14868
  task: z.ZodOptional<z.ZodEnum<{
14869
+ edit: "edit";
14870
+ extend: "extend";
14685
14871
  image_to_video: "image_to_video";
14686
14872
  reference_to_video: "reference_to_video";
14687
14873
  text_to_video: "text_to_video";
@@ -14691,6 +14877,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
14691
14877
  "9:16": "9:16";
14692
14878
  }>>;
14693
14879
  duration_seconds: z.ZodOptional<z.ZodNumber>;
14880
+ resolution: z.ZodOptional<z.ZodEnum<{
14881
+ "1080p": "1080p";
14882
+ "360p": "360p";
14883
+ "4k": "4k";
14884
+ "720p": "720p";
14885
+ }>>;
14694
14886
  }, z.core.$strict>, z.ZodObject<{
14695
14887
  _option_id: z.ZodLiteral<"vertexai-grok">;
14696
14888
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -15235,6 +15427,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
15235
15427
  }, z.core.$strict>, z.ZodObject<{
15236
15428
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
15237
15429
  task: z.ZodOptional<z.ZodEnum<{
15430
+ edit: "edit";
15431
+ extend: "extend";
15238
15432
  image_to_video: "image_to_video";
15239
15433
  reference_to_video: "reference_to_video";
15240
15434
  text_to_video: "text_to_video";
@@ -15244,6 +15438,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
15244
15438
  "9:16": "9:16";
15245
15439
  }>>;
15246
15440
  duration_seconds: z.ZodOptional<z.ZodNumber>;
15441
+ resolution: z.ZodOptional<z.ZodEnum<{
15442
+ "1080p": "1080p";
15443
+ "360p": "360p";
15444
+ "4k": "4k";
15445
+ "720p": "720p";
15446
+ }>>;
15247
15447
  }, z.core.$strict>, z.ZodObject<{
15248
15448
  _option_id: z.ZodLiteral<"vertexai-grok">;
15249
15449
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -15793,6 +15993,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
15793
15993
  }, z.core.$strict>, z.ZodObject<{
15794
15994
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
15795
15995
  task: z.ZodOptional<z.ZodEnum<{
15996
+ edit: "edit";
15997
+ extend: "extend";
15796
15998
  image_to_video: "image_to_video";
15797
15999
  reference_to_video: "reference_to_video";
15798
16000
  text_to_video: "text_to_video";
@@ -15802,6 +16004,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
15802
16004
  "9:16": "9:16";
15803
16005
  }>>;
15804
16006
  duration_seconds: z.ZodOptional<z.ZodNumber>;
16007
+ resolution: z.ZodOptional<z.ZodEnum<{
16008
+ "1080p": "1080p";
16009
+ "360p": "360p";
16010
+ "4k": "4k";
16011
+ "720p": "720p";
16012
+ }>>;
15805
16013
  }, z.core.$strict>, z.ZodObject<{
15806
16014
  _option_id: z.ZodLiteral<"vertexai-grok">;
15807
16015
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -16583,6 +16791,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
16583
16791
  }, z.core.$strict>, z.ZodObject<{
16584
16792
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
16585
16793
  task: z.ZodOptional<z.ZodEnum<{
16794
+ edit: "edit";
16795
+ extend: "extend";
16586
16796
  image_to_video: "image_to_video";
16587
16797
  reference_to_video: "reference_to_video";
16588
16798
  text_to_video: "text_to_video";
@@ -16592,6 +16802,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
16592
16802
  "9:16": "9:16";
16593
16803
  }>>;
16594
16804
  duration_seconds: z.ZodOptional<z.ZodNumber>;
16805
+ resolution: z.ZodOptional<z.ZodEnum<{
16806
+ "1080p": "1080p";
16807
+ "360p": "360p";
16808
+ "4k": "4k";
16809
+ "720p": "720p";
16810
+ }>>;
16595
16811
  }, z.core.$strict>, z.ZodObject<{
16596
16812
  _option_id: z.ZodLiteral<"vertexai-grok">;
16597
16813
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -17147,6 +17363,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
17147
17363
  }, z.core.$strict>, z.ZodObject<{
17148
17364
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
17149
17365
  task: z.ZodOptional<z.ZodEnum<{
17366
+ edit: "edit";
17367
+ extend: "extend";
17150
17368
  image_to_video: "image_to_video";
17151
17369
  reference_to_video: "reference_to_video";
17152
17370
  text_to_video: "text_to_video";
@@ -17156,6 +17374,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
17156
17374
  "9:16": "9:16";
17157
17375
  }>>;
17158
17376
  duration_seconds: z.ZodOptional<z.ZodNumber>;
17377
+ resolution: z.ZodOptional<z.ZodEnum<{
17378
+ "1080p": "1080p";
17379
+ "360p": "360p";
17380
+ "4k": "4k";
17381
+ "720p": "720p";
17382
+ }>>;
17159
17383
  }, z.core.$strict>, z.ZodObject<{
17160
17384
  _option_id: z.ZodLiteral<"vertexai-grok">;
17161
17385
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -17747,6 +17971,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
17747
17971
  }, z.core.$strict>, z.ZodObject<{
17748
17972
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
17749
17973
  task: z.ZodOptional<z.ZodEnum<{
17974
+ edit: "edit";
17975
+ extend: "extend";
17750
17976
  image_to_video: "image_to_video";
17751
17977
  reference_to_video: "reference_to_video";
17752
17978
  text_to_video: "text_to_video";
@@ -17756,6 +17982,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
17756
17982
  "9:16": "9:16";
17757
17983
  }>>;
17758
17984
  duration_seconds: z.ZodOptional<z.ZodNumber>;
17985
+ resolution: z.ZodOptional<z.ZodEnum<{
17986
+ "1080p": "1080p";
17987
+ "360p": "360p";
17988
+ "4k": "4k";
17989
+ "720p": "720p";
17990
+ }>>;
17759
17991
  }, z.core.$strict>, z.ZodObject<{
17760
17992
  _option_id: z.ZodLiteral<"vertexai-grok">;
17761
17993
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -18300,6 +18532,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
18300
18532
  }, z.core.$strict>, z.ZodObject<{
18301
18533
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
18302
18534
  task: z.ZodOptional<z.ZodEnum<{
18535
+ edit: "edit";
18536
+ extend: "extend";
18303
18537
  image_to_video: "image_to_video";
18304
18538
  reference_to_video: "reference_to_video";
18305
18539
  text_to_video: "text_to_video";
@@ -18309,6 +18543,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
18309
18543
  "9:16": "9:16";
18310
18544
  }>>;
18311
18545
  duration_seconds: z.ZodOptional<z.ZodNumber>;
18546
+ resolution: z.ZodOptional<z.ZodEnum<{
18547
+ "1080p": "1080p";
18548
+ "360p": "360p";
18549
+ "4k": "4k";
18550
+ "720p": "720p";
18551
+ }>>;
18312
18552
  }, z.core.$strict>, z.ZodObject<{
18313
18553
  _option_id: z.ZodLiteral<"vertexai-grok">;
18314
18554
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -18858,6 +19098,8 @@ declare const PROJECT_AND_APP_SCHEMAS: {
18858
19098
  }, z.core.$strict>, z.ZodObject<{
18859
19099
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
18860
19100
  task: z.ZodOptional<z.ZodEnum<{
19101
+ edit: "edit";
19102
+ extend: "extend";
18861
19103
  image_to_video: "image_to_video";
18862
19104
  reference_to_video: "reference_to_video";
18863
19105
  text_to_video: "text_to_video";
@@ -18867,6 +19109,12 @@ declare const PROJECT_AND_APP_SCHEMAS: {
18867
19109
  "9:16": "9:16";
18868
19110
  }>>;
18869
19111
  duration_seconds: z.ZodOptional<z.ZodNumber>;
19112
+ resolution: z.ZodOptional<z.ZodEnum<{
19113
+ "1080p": "1080p";
19114
+ "360p": "360p";
19115
+ "4k": "4k";
19116
+ "720p": "720p";
19117
+ }>>;
18870
19118
  }, z.core.$strict>, z.ZodObject<{
18871
19119
  _option_id: z.ZodLiteral<"vertexai-grok">;
18872
19120
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -20573,6 +20821,11 @@ declare const ENVIRONMENT_SCHEMAS: {
20573
20821
  start_sec: z.ZodOptional<z.ZodNumber>;
20574
20822
  length_sec: z.ZodOptional<z.ZodNumber>;
20575
20823
  }, z.core.$strict>], "type">>;
20824
+ embedding_type: z.ZodOptional<z.ZodEnum<{
20825
+ image: "image";
20826
+ properties: "properties";
20827
+ text: "text";
20828
+ }>>;
20576
20829
  model: z.ZodOptional<z.ZodString>;
20577
20830
  task_type: z.ZodOptional<z.ZodEnum<{
20578
20831
  document: "document";
@@ -20978,6 +21231,8 @@ declare const LLM_COMPLETION_SCHEMAS: {
20978
21231
  }, z.core.$strict>, z.ZodObject<{
20979
21232
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
20980
21233
  task: z.ZodOptional<z.ZodEnum<{
21234
+ edit: "edit";
21235
+ extend: "extend";
20981
21236
  image_to_video: "image_to_video";
20982
21237
  reference_to_video: "reference_to_video";
20983
21238
  text_to_video: "text_to_video";
@@ -20987,6 +21242,12 @@ declare const LLM_COMPLETION_SCHEMAS: {
20987
21242
  "9:16": "9:16";
20988
21243
  }>>;
20989
21244
  duration_seconds: z.ZodOptional<z.ZodNumber>;
21245
+ resolution: z.ZodOptional<z.ZodEnum<{
21246
+ "1080p": "1080p";
21247
+ "360p": "360p";
21248
+ "4k": "4k";
21249
+ "720p": "720p";
21250
+ }>>;
20990
21251
  }, z.core.$strict>, z.ZodObject<{
20991
21252
  _option_id: z.ZodLiteral<"vertexai-grok">;
20992
21253
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -21869,6 +22130,8 @@ declare const INTERACTION_SCHEMAS: {
21869
22130
  }, z.core.$strict>, z.ZodObject<{
21870
22131
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
21871
22132
  task: z.ZodOptional<z.ZodEnum<{
22133
+ edit: "edit";
22134
+ extend: "extend";
21872
22135
  image_to_video: "image_to_video";
21873
22136
  reference_to_video: "reference_to_video";
21874
22137
  text_to_video: "text_to_video";
@@ -21878,6 +22141,12 @@ declare const INTERACTION_SCHEMAS: {
21878
22141
  "9:16": "9:16";
21879
22142
  }>>;
21880
22143
  duration_seconds: z.ZodOptional<z.ZodNumber>;
22144
+ resolution: z.ZodOptional<z.ZodEnum<{
22145
+ "1080p": "1080p";
22146
+ "360p": "360p";
22147
+ "4k": "4k";
22148
+ "720p": "720p";
22149
+ }>>;
21881
22150
  }, z.core.$strict>, z.ZodObject<{
21882
22151
  _option_id: z.ZodLiteral<"vertexai-grok">;
21883
22152
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -22559,6 +22828,8 @@ declare const INTERACTION_SCHEMAS: {
22559
22828
  }, z.core.$strict>, z.ZodObject<{
22560
22829
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
22561
22830
  task: z.ZodOptional<z.ZodEnum<{
22831
+ edit: "edit";
22832
+ extend: "extend";
22562
22833
  image_to_video: "image_to_video";
22563
22834
  reference_to_video: "reference_to_video";
22564
22835
  text_to_video: "text_to_video";
@@ -22568,6 +22839,12 @@ declare const INTERACTION_SCHEMAS: {
22568
22839
  "9:16": "9:16";
22569
22840
  }>>;
22570
22841
  duration_seconds: z.ZodOptional<z.ZodNumber>;
22842
+ resolution: z.ZodOptional<z.ZodEnum<{
22843
+ "1080p": "1080p";
22844
+ "360p": "360p";
22845
+ "4k": "4k";
22846
+ "720p": "720p";
22847
+ }>>;
22571
22848
  }, z.core.$strict>, z.ZodObject<{
22572
22849
  _option_id: z.ZodLiteral<"vertexai-grok">;
22573
22850
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -23737,6 +24014,8 @@ declare const INTERACTION_SCHEMAS: {
23737
24014
  }, z.core.$strict>, z.ZodObject<{
23738
24015
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
23739
24016
  task: z.ZodOptional<z.ZodEnum<{
24017
+ edit: "edit";
24018
+ extend: "extend";
23740
24019
  image_to_video: "image_to_video";
23741
24020
  reference_to_video: "reference_to_video";
23742
24021
  text_to_video: "text_to_video";
@@ -23746,6 +24025,12 @@ declare const INTERACTION_SCHEMAS: {
23746
24025
  "9:16": "9:16";
23747
24026
  }>>;
23748
24027
  duration_seconds: z.ZodOptional<z.ZodNumber>;
24028
+ resolution: z.ZodOptional<z.ZodEnum<{
24029
+ "1080p": "1080p";
24030
+ "360p": "360p";
24031
+ "4k": "4k";
24032
+ "720p": "720p";
24033
+ }>>;
23749
24034
  }, z.core.$strict>, z.ZodObject<{
23750
24035
  _option_id: z.ZodLiteral<"vertexai-grok">;
23751
24036
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -24444,6 +24729,8 @@ declare const INTERACTION_SCHEMAS: {
24444
24729
  }, z.core.$strict>, z.ZodObject<{
24445
24730
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
24446
24731
  task: z.ZodOptional<z.ZodEnum<{
24732
+ edit: "edit";
24733
+ extend: "extend";
24447
24734
  image_to_video: "image_to_video";
24448
24735
  reference_to_video: "reference_to_video";
24449
24736
  text_to_video: "text_to_video";
@@ -24453,6 +24740,12 @@ declare const INTERACTION_SCHEMAS: {
24453
24740
  "9:16": "9:16";
24454
24741
  }>>;
24455
24742
  duration_seconds: z.ZodOptional<z.ZodNumber>;
24743
+ resolution: z.ZodOptional<z.ZodEnum<{
24744
+ "1080p": "1080p";
24745
+ "360p": "360p";
24746
+ "4k": "4k";
24747
+ "720p": "720p";
24748
+ }>>;
24456
24749
  }, z.core.$strict>, z.ZodObject<{
24457
24750
  _option_id: z.ZodLiteral<"vertexai-grok">;
24458
24751
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -25127,6 +25420,8 @@ declare const INTERACTION_SCHEMAS: {
25127
25420
  }, z.core.$strict>, z.ZodObject<{
25128
25421
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
25129
25422
  task: z.ZodOptional<z.ZodEnum<{
25423
+ edit: "edit";
25424
+ extend: "extend";
25130
25425
  image_to_video: "image_to_video";
25131
25426
  reference_to_video: "reference_to_video";
25132
25427
  text_to_video: "text_to_video";
@@ -25136,6 +25431,12 @@ declare const INTERACTION_SCHEMAS: {
25136
25431
  "9:16": "9:16";
25137
25432
  }>>;
25138
25433
  duration_seconds: z.ZodOptional<z.ZodNumber>;
25434
+ resolution: z.ZodOptional<z.ZodEnum<{
25435
+ "1080p": "1080p";
25436
+ "360p": "360p";
25437
+ "4k": "4k";
25438
+ "720p": "720p";
25439
+ }>>;
25139
25440
  }, z.core.$strict>, z.ZodObject<{
25140
25441
  _option_id: z.ZodLiteral<"vertexai-grok">;
25141
25442
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -25708,6 +26009,8 @@ declare const INTERACTION_SCHEMAS: {
25708
26009
  }, z.core.$strict>, z.ZodObject<{
25709
26010
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
25710
26011
  task: z.ZodOptional<z.ZodEnum<{
26012
+ edit: "edit";
26013
+ extend: "extend";
25711
26014
  image_to_video: "image_to_video";
25712
26015
  reference_to_video: "reference_to_video";
25713
26016
  text_to_video: "text_to_video";
@@ -25717,6 +26020,12 @@ declare const INTERACTION_SCHEMAS: {
25717
26020
  "9:16": "9:16";
25718
26021
  }>>;
25719
26022
  duration_seconds: z.ZodOptional<z.ZodNumber>;
26023
+ resolution: z.ZodOptional<z.ZodEnum<{
26024
+ "1080p": "1080p";
26025
+ "360p": "360p";
26026
+ "4k": "4k";
26027
+ "720p": "720p";
26028
+ }>>;
25720
26029
  }, z.core.$strict>, z.ZodObject<{
25721
26030
  _option_id: z.ZodLiteral<"vertexai-grok">;
25722
26031
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -26344,6 +26653,8 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
26344
26653
  }, z.core.$strict>, z.ZodObject<{
26345
26654
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
26346
26655
  task: z.ZodOptional<z.ZodEnum<{
26656
+ edit: "edit";
26657
+ extend: "extend";
26347
26658
  image_to_video: "image_to_video";
26348
26659
  reference_to_video: "reference_to_video";
26349
26660
  text_to_video: "text_to_video";
@@ -26353,6 +26664,12 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
26353
26664
  "9:16": "9:16";
26354
26665
  }>>;
26355
26666
  duration_seconds: z.ZodOptional<z.ZodNumber>;
26667
+ resolution: z.ZodOptional<z.ZodEnum<{
26668
+ "1080p": "1080p";
26669
+ "360p": "360p";
26670
+ "4k": "4k";
26671
+ "720p": "720p";
26672
+ }>>;
26356
26673
  }, z.core.$strict>, z.ZodObject<{
26357
26674
  _option_id: z.ZodLiteral<"vertexai-grok">;
26358
26675
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -26899,6 +27216,8 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
26899
27216
  }, z.core.$strict>, z.ZodObject<{
26900
27217
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
26901
27218
  task: z.ZodOptional<z.ZodEnum<{
27219
+ edit: "edit";
27220
+ extend: "extend";
26902
27221
  image_to_video: "image_to_video";
26903
27222
  reference_to_video: "reference_to_video";
26904
27223
  text_to_video: "text_to_video";
@@ -26908,6 +27227,12 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
26908
27227
  "9:16": "9:16";
26909
27228
  }>>;
26910
27229
  duration_seconds: z.ZodOptional<z.ZodNumber>;
27230
+ resolution: z.ZodOptional<z.ZodEnum<{
27231
+ "1080p": "1080p";
27232
+ "360p": "360p";
27233
+ "4k": "4k";
27234
+ "720p": "720p";
27235
+ }>>;
26911
27236
  }, z.core.$strict>, z.ZodObject<{
26912
27237
  _option_id: z.ZodLiteral<"vertexai-grok">;
26913
27238
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -27481,6 +27806,8 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
27481
27806
  }, z.core.$strict>, z.ZodObject<{
27482
27807
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
27483
27808
  task: z.ZodOptional<z.ZodEnum<{
27809
+ edit: "edit";
27810
+ extend: "extend";
27484
27811
  image_to_video: "image_to_video";
27485
27812
  reference_to_video: "reference_to_video";
27486
27813
  text_to_video: "text_to_video";
@@ -27490,6 +27817,12 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
27490
27817
  "9:16": "9:16";
27491
27818
  }>>;
27492
27819
  duration_seconds: z.ZodOptional<z.ZodNumber>;
27820
+ resolution: z.ZodOptional<z.ZodEnum<{
27821
+ "1080p": "1080p";
27822
+ "360p": "360p";
27823
+ "4k": "4k";
27824
+ "720p": "720p";
27825
+ }>>;
27493
27826
  }, z.core.$strict>, z.ZodObject<{
27494
27827
  _option_id: z.ZodLiteral<"vertexai-grok">;
27495
27828
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -28039,6 +28372,8 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
28039
28372
  }, z.core.$strict>, z.ZodObject<{
28040
28373
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
28041
28374
  task: z.ZodOptional<z.ZodEnum<{
28375
+ edit: "edit";
28376
+ extend: "extend";
28042
28377
  image_to_video: "image_to_video";
28043
28378
  reference_to_video: "reference_to_video";
28044
28379
  text_to_video: "text_to_video";
@@ -28048,6 +28383,12 @@ declare const INTERACTION_AUTHORING_SCHEMAS: {
28048
28383
  "9:16": "9:16";
28049
28384
  }>>;
28050
28385
  duration_seconds: z.ZodOptional<z.ZodNumber>;
28386
+ resolution: z.ZodOptional<z.ZodEnum<{
28387
+ "1080p": "1080p";
28388
+ "360p": "360p";
28389
+ "4k": "4k";
28390
+ "720p": "720p";
28391
+ }>>;
28051
28392
  }, z.core.$strict>, z.ZodObject<{
28052
28393
  _option_id: z.ZodLiteral<"vertexai-grok">;
28053
28394
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -29017,6 +29358,8 @@ declare const AGENT_CONVERSATION_SCHEMAS: {
29017
29358
  }, z.core.$strict>, z.ZodObject<{
29018
29359
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
29019
29360
  task: z.ZodOptional<z.ZodEnum<{
29361
+ edit: "edit";
29362
+ extend: "extend";
29020
29363
  image_to_video: "image_to_video";
29021
29364
  reference_to_video: "reference_to_video";
29022
29365
  text_to_video: "text_to_video";
@@ -29026,6 +29369,12 @@ declare const AGENT_CONVERSATION_SCHEMAS: {
29026
29369
  "9:16": "9:16";
29027
29370
  }>>;
29028
29371
  duration_seconds: z.ZodOptional<z.ZodNumber>;
29372
+ resolution: z.ZodOptional<z.ZodEnum<{
29373
+ "1080p": "1080p";
29374
+ "360p": "360p";
29375
+ "4k": "4k";
29376
+ "720p": "720p";
29377
+ }>>;
29029
29378
  }, z.core.$strict>, z.ZodObject<{
29030
29379
  _option_id: z.ZodLiteral<"vertexai-grok">;
29031
29380
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -29994,6 +30343,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
29994
30343
  }, z.core.$strict>, z.ZodObject<{
29995
30344
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
29996
30345
  task: z.ZodOptional<z.ZodEnum<{
30346
+ edit: "edit";
30347
+ extend: "extend";
29997
30348
  image_to_video: "image_to_video";
29998
30349
  reference_to_video: "reference_to_video";
29999
30350
  text_to_video: "text_to_video";
@@ -30003,6 +30354,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
30003
30354
  "9:16": "9:16";
30004
30355
  }>>;
30005
30356
  duration_seconds: z.ZodOptional<z.ZodNumber>;
30357
+ resolution: z.ZodOptional<z.ZodEnum<{
30358
+ "1080p": "1080p";
30359
+ "360p": "360p";
30360
+ "4k": "4k";
30361
+ "720p": "720p";
30362
+ }>>;
30006
30363
  }, z.core.$strict>, z.ZodObject<{
30007
30364
  _option_id: z.ZodLiteral<"vertexai-grok">;
30008
30365
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -30761,6 +31118,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
30761
31118
  }, z.core.$strict>, z.ZodObject<{
30762
31119
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
30763
31120
  task: z.ZodOptional<z.ZodEnum<{
31121
+ edit: "edit";
31122
+ extend: "extend";
30764
31123
  image_to_video: "image_to_video";
30765
31124
  reference_to_video: "reference_to_video";
30766
31125
  text_to_video: "text_to_video";
@@ -30770,6 +31129,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
30770
31129
  "9:16": "9:16";
30771
31130
  }>>;
30772
31131
  duration_seconds: z.ZodOptional<z.ZodNumber>;
31132
+ resolution: z.ZodOptional<z.ZodEnum<{
31133
+ "1080p": "1080p";
31134
+ "360p": "360p";
31135
+ "4k": "4k";
31136
+ "720p": "720p";
31137
+ }>>;
30773
31138
  }, z.core.$strict>, z.ZodObject<{
30774
31139
  _option_id: z.ZodLiteral<"vertexai-grok">;
30775
31140
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -31528,6 +31893,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
31528
31893
  }, z.core.$strict>, z.ZodObject<{
31529
31894
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
31530
31895
  task: z.ZodOptional<z.ZodEnum<{
31896
+ edit: "edit";
31897
+ extend: "extend";
31531
31898
  image_to_video: "image_to_video";
31532
31899
  reference_to_video: "reference_to_video";
31533
31900
  text_to_video: "text_to_video";
@@ -31537,6 +31904,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
31537
31904
  "9:16": "9:16";
31538
31905
  }>>;
31539
31906
  duration_seconds: z.ZodOptional<z.ZodNumber>;
31907
+ resolution: z.ZodOptional<z.ZodEnum<{
31908
+ "1080p": "1080p";
31909
+ "360p": "360p";
31910
+ "4k": "4k";
31911
+ "720p": "720p";
31912
+ }>>;
31540
31913
  }, z.core.$strict>, z.ZodObject<{
31541
31914
  _option_id: z.ZodLiteral<"vertexai-grok">;
31542
31915
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -32167,6 +32540,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
32167
32540
  }, z.core.$strict>, z.ZodObject<{
32168
32541
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
32169
32542
  task: z.ZodOptional<z.ZodEnum<{
32543
+ edit: "edit";
32544
+ extend: "extend";
32170
32545
  image_to_video: "image_to_video";
32171
32546
  reference_to_video: "reference_to_video";
32172
32547
  text_to_video: "text_to_video";
@@ -32176,6 +32551,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
32176
32551
  "9:16": "9:16";
32177
32552
  }>>;
32178
32553
  duration_seconds: z.ZodOptional<z.ZodNumber>;
32554
+ resolution: z.ZodOptional<z.ZodEnum<{
32555
+ "1080p": "1080p";
32556
+ "360p": "360p";
32557
+ "4k": "4k";
32558
+ "720p": "720p";
32559
+ }>>;
32179
32560
  }, z.core.$strict>, z.ZodObject<{
32180
32561
  _option_id: z.ZodLiteral<"vertexai-grok">;
32181
32562
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -32760,6 +33141,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
32760
33141
  }, z.core.$strict>, z.ZodObject<{
32761
33142
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
32762
33143
  task: z.ZodOptional<z.ZodEnum<{
33144
+ edit: "edit";
33145
+ extend: "extend";
32763
33146
  image_to_video: "image_to_video";
32764
33147
  reference_to_video: "reference_to_video";
32765
33148
  text_to_video: "text_to_video";
@@ -32769,6 +33152,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
32769
33152
  "9:16": "9:16";
32770
33153
  }>>;
32771
33154
  duration_seconds: z.ZodOptional<z.ZodNumber>;
33155
+ resolution: z.ZodOptional<z.ZodEnum<{
33156
+ "1080p": "1080p";
33157
+ "360p": "360p";
33158
+ "4k": "4k";
33159
+ "720p": "720p";
33160
+ }>>;
32772
33161
  }, z.core.$strict>, z.ZodObject<{
32773
33162
  _option_id: z.ZodLiteral<"vertexai-grok">;
32774
33163
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -33651,6 +34040,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
33651
34040
  }, z.core.$strict>, z.ZodObject<{
33652
34041
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
33653
34042
  task: z.ZodOptional<z.ZodEnum<{
34043
+ edit: "edit";
34044
+ extend: "extend";
33654
34045
  image_to_video: "image_to_video";
33655
34046
  reference_to_video: "reference_to_video";
33656
34047
  text_to_video: "text_to_video";
@@ -33660,6 +34051,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
33660
34051
  "9:16": "9:16";
33661
34052
  }>>;
33662
34053
  duration_seconds: z.ZodOptional<z.ZodNumber>;
34054
+ resolution: z.ZodOptional<z.ZodEnum<{
34055
+ "1080p": "1080p";
34056
+ "360p": "360p";
34057
+ "4k": "4k";
34058
+ "720p": "720p";
34059
+ }>>;
33663
34060
  }, z.core.$strict>, z.ZodObject<{
33664
34061
  _option_id: z.ZodLiteral<"vertexai-grok">;
33665
34062
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -34244,6 +34641,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
34244
34641
  }, z.core.$strict>, z.ZodObject<{
34245
34642
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
34246
34643
  task: z.ZodOptional<z.ZodEnum<{
34644
+ edit: "edit";
34645
+ extend: "extend";
34247
34646
  image_to_video: "image_to_video";
34248
34647
  reference_to_video: "reference_to_video";
34249
34648
  text_to_video: "text_to_video";
@@ -34253,6 +34652,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
34253
34652
  "9:16": "9:16";
34254
34653
  }>>;
34255
34654
  duration_seconds: z.ZodOptional<z.ZodNumber>;
34655
+ resolution: z.ZodOptional<z.ZodEnum<{
34656
+ "1080p": "1080p";
34657
+ "360p": "360p";
34658
+ "4k": "4k";
34659
+ "720p": "720p";
34660
+ }>>;
34256
34661
  }, z.core.$strict>, z.ZodObject<{
34257
34662
  _option_id: z.ZodLiteral<"vertexai-grok">;
34258
34663
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -35042,6 +35447,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
35042
35447
  }, z.core.$strict>, z.ZodObject<{
35043
35448
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
35044
35449
  task: z.ZodOptional<z.ZodEnum<{
35450
+ edit: "edit";
35451
+ extend: "extend";
35045
35452
  image_to_video: "image_to_video";
35046
35453
  reference_to_video: "reference_to_video";
35047
35454
  text_to_video: "text_to_video";
@@ -35051,6 +35458,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
35051
35458
  "9:16": "9:16";
35052
35459
  }>>;
35053
35460
  duration_seconds: z.ZodOptional<z.ZodNumber>;
35461
+ resolution: z.ZodOptional<z.ZodEnum<{
35462
+ "1080p": "1080p";
35463
+ "360p": "360p";
35464
+ "4k": "4k";
35465
+ "720p": "720p";
35466
+ }>>;
35054
35467
  }, z.core.$strict>, z.ZodObject<{
35055
35468
  _option_id: z.ZodLiteral<"vertexai-grok">;
35056
35469
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -35635,6 +36048,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
35635
36048
  }, z.core.$strict>, z.ZodObject<{
35636
36049
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
35637
36050
  task: z.ZodOptional<z.ZodEnum<{
36051
+ edit: "edit";
36052
+ extend: "extend";
35638
36053
  image_to_video: "image_to_video";
35639
36054
  reference_to_video: "reference_to_video";
35640
36055
  text_to_video: "text_to_video";
@@ -35644,6 +36059,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
35644
36059
  "9:16": "9:16";
35645
36060
  }>>;
35646
36061
  duration_seconds: z.ZodOptional<z.ZodNumber>;
36062
+ resolution: z.ZodOptional<z.ZodEnum<{
36063
+ "1080p": "1080p";
36064
+ "360p": "360p";
36065
+ "4k": "4k";
36066
+ "720p": "720p";
36067
+ }>>;
35647
36068
  }, z.core.$strict>, z.ZodObject<{
35648
36069
  _option_id: z.ZodLiteral<"vertexai-grok">;
35649
36070
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -36552,6 +36973,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
36552
36973
  }, z.core.$strict>, z.ZodObject<{
36553
36974
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
36554
36975
  task: z.ZodOptional<z.ZodEnum<{
36976
+ edit: "edit";
36977
+ extend: "extend";
36555
36978
  image_to_video: "image_to_video";
36556
36979
  reference_to_video: "reference_to_video";
36557
36980
  text_to_video: "text_to_video";
@@ -36561,6 +36984,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
36561
36984
  "9:16": "9:16";
36562
36985
  }>>;
36563
36986
  duration_seconds: z.ZodOptional<z.ZodNumber>;
36987
+ resolution: z.ZodOptional<z.ZodEnum<{
36988
+ "1080p": "1080p";
36989
+ "360p": "360p";
36990
+ "4k": "4k";
36991
+ "720p": "720p";
36992
+ }>>;
36564
36993
  }, z.core.$strict>, z.ZodObject<{
36565
36994
  _option_id: z.ZodLiteral<"vertexai-grok">;
36566
36995
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -37144,6 +37573,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
37144
37573
  }, z.core.$strict>, z.ZodObject<{
37145
37574
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
37146
37575
  task: z.ZodOptional<z.ZodEnum<{
37576
+ edit: "edit";
37577
+ extend: "extend";
37147
37578
  image_to_video: "image_to_video";
37148
37579
  reference_to_video: "reference_to_video";
37149
37580
  text_to_video: "text_to_video";
@@ -37153,6 +37584,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
37153
37584
  "9:16": "9:16";
37154
37585
  }>>;
37155
37586
  duration_seconds: z.ZodOptional<z.ZodNumber>;
37587
+ resolution: z.ZodOptional<z.ZodEnum<{
37588
+ "1080p": "1080p";
37589
+ "360p": "360p";
37590
+ "4k": "4k";
37591
+ "720p": "720p";
37592
+ }>>;
37156
37593
  }, z.core.$strict>, z.ZodObject<{
37157
37594
  _option_id: z.ZodLiteral<"vertexai-grok">;
37158
37595
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -37768,6 +38205,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
37768
38205
  }, z.core.$strict>, z.ZodObject<{
37769
38206
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
37770
38207
  task: z.ZodOptional<z.ZodEnum<{
38208
+ edit: "edit";
38209
+ extend: "extend";
37771
38210
  image_to_video: "image_to_video";
37772
38211
  reference_to_video: "reference_to_video";
37773
38212
  text_to_video: "text_to_video";
@@ -37777,6 +38216,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
37777
38216
  "9:16": "9:16";
37778
38217
  }>>;
37779
38218
  duration_seconds: z.ZodOptional<z.ZodNumber>;
38219
+ resolution: z.ZodOptional<z.ZodEnum<{
38220
+ "1080p": "1080p";
38221
+ "360p": "360p";
38222
+ "4k": "4k";
38223
+ "720p": "720p";
38224
+ }>>;
37780
38225
  }, z.core.$strict>, z.ZodObject<{
37781
38226
  _option_id: z.ZodLiteral<"vertexai-grok">;
37782
38227
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -38427,6 +38872,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
38427
38872
  }, z.core.$strict>, z.ZodObject<{
38428
38873
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
38429
38874
  task: z.ZodOptional<z.ZodEnum<{
38875
+ edit: "edit";
38876
+ extend: "extend";
38430
38877
  image_to_video: "image_to_video";
38431
38878
  reference_to_video: "reference_to_video";
38432
38879
  text_to_video: "text_to_video";
@@ -38436,6 +38883,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
38436
38883
  "9:16": "9:16";
38437
38884
  }>>;
38438
38885
  duration_seconds: z.ZodOptional<z.ZodNumber>;
38886
+ resolution: z.ZodOptional<z.ZodEnum<{
38887
+ "1080p": "1080p";
38888
+ "360p": "360p";
38889
+ "4k": "4k";
38890
+ "720p": "720p";
38891
+ }>>;
38439
38892
  }, z.core.$strict>, z.ZodObject<{
38440
38893
  _option_id: z.ZodLiteral<"vertexai-grok">;
38441
38894
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -39136,6 +39589,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
39136
39589
  }, z.core.$strict>, z.ZodObject<{
39137
39590
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
39138
39591
  task: z.ZodOptional<z.ZodEnum<{
39592
+ edit: "edit";
39593
+ extend: "extend";
39139
39594
  image_to_video: "image_to_video";
39140
39595
  reference_to_video: "reference_to_video";
39141
39596
  text_to_video: "text_to_video";
@@ -39145,6 +39600,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
39145
39600
  "9:16": "9:16";
39146
39601
  }>>;
39147
39602
  duration_seconds: z.ZodOptional<z.ZodNumber>;
39603
+ resolution: z.ZodOptional<z.ZodEnum<{
39604
+ "1080p": "1080p";
39605
+ "360p": "360p";
39606
+ "4k": "4k";
39607
+ "720p": "720p";
39608
+ }>>;
39148
39609
  }, z.core.$strict>, z.ZodObject<{
39149
39610
  _option_id: z.ZodLiteral<"vertexai-grok">;
39150
39611
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -39727,6 +40188,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
39727
40188
  }, z.core.$strict>, z.ZodObject<{
39728
40189
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
39729
40190
  task: z.ZodOptional<z.ZodEnum<{
40191
+ edit: "edit";
40192
+ extend: "extend";
39730
40193
  image_to_video: "image_to_video";
39731
40194
  reference_to_video: "reference_to_video";
39732
40195
  text_to_video: "text_to_video";
@@ -39736,6 +40199,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
39736
40199
  "9:16": "9:16";
39737
40200
  }>>;
39738
40201
  duration_seconds: z.ZodOptional<z.ZodNumber>;
40202
+ resolution: z.ZodOptional<z.ZodEnum<{
40203
+ "1080p": "1080p";
40204
+ "360p": "360p";
40205
+ "4k": "4k";
40206
+ "720p": "720p";
40207
+ }>>;
39739
40208
  }, z.core.$strict>, z.ZodObject<{
39740
40209
  _option_id: z.ZodLiteral<"vertexai-grok">;
39741
40210
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -40437,6 +40906,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
40437
40906
  }, z.core.$strict>, z.ZodObject<{
40438
40907
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
40439
40908
  task: z.ZodOptional<z.ZodEnum<{
40909
+ edit: "edit";
40910
+ extend: "extend";
40440
40911
  image_to_video: "image_to_video";
40441
40912
  reference_to_video: "reference_to_video";
40442
40913
  text_to_video: "text_to_video";
@@ -40446,6 +40917,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
40446
40917
  "9:16": "9:16";
40447
40918
  }>>;
40448
40919
  duration_seconds: z.ZodOptional<z.ZodNumber>;
40920
+ resolution: z.ZodOptional<z.ZodEnum<{
40921
+ "1080p": "1080p";
40922
+ "360p": "360p";
40923
+ "4k": "4k";
40924
+ "720p": "720p";
40925
+ }>>;
40449
40926
  }, z.core.$strict>, z.ZodObject<{
40450
40927
  _option_id: z.ZodLiteral<"vertexai-grok">;
40451
40928
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -41029,6 +41506,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
41029
41506
  }, z.core.$strict>, z.ZodObject<{
41030
41507
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
41031
41508
  task: z.ZodOptional<z.ZodEnum<{
41509
+ edit: "edit";
41510
+ extend: "extend";
41032
41511
  image_to_video: "image_to_video";
41033
41512
  reference_to_video: "reference_to_video";
41034
41513
  text_to_video: "text_to_video";
@@ -41038,6 +41517,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
41038
41517
  "9:16": "9:16";
41039
41518
  }>>;
41040
41519
  duration_seconds: z.ZodOptional<z.ZodNumber>;
41520
+ resolution: z.ZodOptional<z.ZodEnum<{
41521
+ "1080p": "1080p";
41522
+ "360p": "360p";
41523
+ "4k": "4k";
41524
+ "720p": "720p";
41525
+ }>>;
41041
41526
  }, z.core.$strict>, z.ZodObject<{
41042
41527
  _option_id: z.ZodLiteral<"vertexai-grok">;
41043
41528
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -41688,6 +42173,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
41688
42173
  }, z.core.$strict>, z.ZodObject<{
41689
42174
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
41690
42175
  task: z.ZodOptional<z.ZodEnum<{
42176
+ edit: "edit";
42177
+ extend: "extend";
41691
42178
  image_to_video: "image_to_video";
41692
42179
  reference_to_video: "reference_to_video";
41693
42180
  text_to_video: "text_to_video";
@@ -41697,6 +42184,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
41697
42184
  "9:16": "9:16";
41698
42185
  }>>;
41699
42186
  duration_seconds: z.ZodOptional<z.ZodNumber>;
42187
+ resolution: z.ZodOptional<z.ZodEnum<{
42188
+ "1080p": "1080p";
42189
+ "360p": "360p";
42190
+ "4k": "4k";
42191
+ "720p": "720p";
42192
+ }>>;
41700
42193
  }, z.core.$strict>, z.ZodObject<{
41701
42194
  _option_id: z.ZodLiteral<"vertexai-grok">;
41702
42195
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -42279,6 +42772,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
42279
42772
  }, z.core.$strict>, z.ZodObject<{
42280
42773
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
42281
42774
  task: z.ZodOptional<z.ZodEnum<{
42775
+ edit: "edit";
42776
+ extend: "extend";
42282
42777
  image_to_video: "image_to_video";
42283
42778
  reference_to_video: "reference_to_video";
42284
42779
  text_to_video: "text_to_video";
@@ -42288,6 +42783,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
42288
42783
  "9:16": "9:16";
42289
42784
  }>>;
42290
42785
  duration_seconds: z.ZodOptional<z.ZodNumber>;
42786
+ resolution: z.ZodOptional<z.ZodEnum<{
42787
+ "1080p": "1080p";
42788
+ "360p": "360p";
42789
+ "4k": "4k";
42790
+ "720p": "720p";
42791
+ }>>;
42291
42792
  }, z.core.$strict>, z.ZodObject<{
42292
42793
  _option_id: z.ZodLiteral<"vertexai-grok">;
42293
42794
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -42886,6 +43387,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
42886
43387
  }, z.core.$strict>, z.ZodObject<{
42887
43388
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
42888
43389
  task: z.ZodOptional<z.ZodEnum<{
43390
+ edit: "edit";
43391
+ extend: "extend";
42889
43392
  image_to_video: "image_to_video";
42890
43393
  reference_to_video: "reference_to_video";
42891
43394
  text_to_video: "text_to_video";
@@ -42895,6 +43398,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
42895
43398
  "9:16": "9:16";
42896
43399
  }>>;
42897
43400
  duration_seconds: z.ZodOptional<z.ZodNumber>;
43401
+ resolution: z.ZodOptional<z.ZodEnum<{
43402
+ "1080p": "1080p";
43403
+ "360p": "360p";
43404
+ "4k": "4k";
43405
+ "720p": "720p";
43406
+ }>>;
42898
43407
  }, z.core.$strict>, z.ZodObject<{
42899
43408
  _option_id: z.ZodLiteral<"vertexai-grok">;
42900
43409
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -43473,6 +43982,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
43473
43982
  }, z.core.$strict>, z.ZodObject<{
43474
43983
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
43475
43984
  task: z.ZodOptional<z.ZodEnum<{
43985
+ edit: "edit";
43986
+ extend: "extend";
43476
43987
  image_to_video: "image_to_video";
43477
43988
  reference_to_video: "reference_to_video";
43478
43989
  text_to_video: "text_to_video";
@@ -43482,6 +43993,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
43482
43993
  "9:16": "9:16";
43483
43994
  }>>;
43484
43995
  duration_seconds: z.ZodOptional<z.ZodNumber>;
43996
+ resolution: z.ZodOptional<z.ZodEnum<{
43997
+ "1080p": "1080p";
43998
+ "360p": "360p";
43999
+ "4k": "4k";
44000
+ "720p": "720p";
44001
+ }>>;
43485
44002
  }, z.core.$strict>, z.ZodObject<{
43486
44003
  _option_id: z.ZodLiteral<"vertexai-grok">;
43487
44004
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -44276,6 +44793,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
44276
44793
  }, z.core.$strict>, z.ZodObject<{
44277
44794
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
44278
44795
  task: z.ZodOptional<z.ZodEnum<{
44796
+ edit: "edit";
44797
+ extend: "extend";
44279
44798
  image_to_video: "image_to_video";
44280
44799
  reference_to_video: "reference_to_video";
44281
44800
  text_to_video: "text_to_video";
@@ -44285,6 +44804,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
44285
44804
  "9:16": "9:16";
44286
44805
  }>>;
44287
44806
  duration_seconds: z.ZodOptional<z.ZodNumber>;
44807
+ resolution: z.ZodOptional<z.ZodEnum<{
44808
+ "1080p": "1080p";
44809
+ "360p": "360p";
44810
+ "4k": "4k";
44811
+ "720p": "720p";
44812
+ }>>;
44288
44813
  }, z.core.$strict>, z.ZodObject<{
44289
44814
  _option_id: z.ZodLiteral<"vertexai-grok">;
44290
44815
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -44863,6 +45388,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
44863
45388
  }, z.core.$strict>, z.ZodObject<{
44864
45389
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
44865
45390
  task: z.ZodOptional<z.ZodEnum<{
45391
+ edit: "edit";
45392
+ extend: "extend";
44866
45393
  image_to_video: "image_to_video";
44867
45394
  reference_to_video: "reference_to_video";
44868
45395
  text_to_video: "text_to_video";
@@ -44872,6 +45399,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
44872
45399
  "9:16": "9:16";
44873
45400
  }>>;
44874
45401
  duration_seconds: z.ZodOptional<z.ZodNumber>;
45402
+ resolution: z.ZodOptional<z.ZodEnum<{
45403
+ "1080p": "1080p";
45404
+ "360p": "360p";
45405
+ "4k": "4k";
45406
+ "720p": "720p";
45407
+ }>>;
44875
45408
  }, z.core.$strict>, z.ZodObject<{
44876
45409
  _option_id: z.ZodLiteral<"vertexai-grok">;
44877
45410
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -45722,6 +46255,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
45722
46255
  }, z.core.$strict>, z.ZodObject<{
45723
46256
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
45724
46257
  task: z.ZodOptional<z.ZodEnum<{
46258
+ edit: "edit";
46259
+ extend: "extend";
45725
46260
  image_to_video: "image_to_video";
45726
46261
  reference_to_video: "reference_to_video";
45727
46262
  text_to_video: "text_to_video";
@@ -45731,6 +46266,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
45731
46266
  "9:16": "9:16";
45732
46267
  }>>;
45733
46268
  duration_seconds: z.ZodOptional<z.ZodNumber>;
46269
+ resolution: z.ZodOptional<z.ZodEnum<{
46270
+ "1080p": "1080p";
46271
+ "360p": "360p";
46272
+ "4k": "4k";
46273
+ "720p": "720p";
46274
+ }>>;
45734
46275
  }, z.core.$strict>, z.ZodObject<{
45735
46276
  _option_id: z.ZodLiteral<"vertexai-grok">;
45736
46277
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -46309,6 +46850,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
46309
46850
  }, z.core.$strict>, z.ZodObject<{
46310
46851
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
46311
46852
  task: z.ZodOptional<z.ZodEnum<{
46853
+ edit: "edit";
46854
+ extend: "extend";
46312
46855
  image_to_video: "image_to_video";
46313
46856
  reference_to_video: "reference_to_video";
46314
46857
  text_to_video: "text_to_video";
@@ -46318,6 +46861,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
46318
46861
  "9:16": "9:16";
46319
46862
  }>>;
46320
46863
  duration_seconds: z.ZodOptional<z.ZodNumber>;
46864
+ resolution: z.ZodOptional<z.ZodEnum<{
46865
+ "1080p": "1080p";
46866
+ "360p": "360p";
46867
+ "4k": "4k";
46868
+ "720p": "720p";
46869
+ }>>;
46321
46870
  }, z.core.$strict>, z.ZodObject<{
46322
46871
  _option_id: z.ZodLiteral<"vertexai-grok">;
46323
46872
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -47112,6 +47661,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
47112
47661
  }, z.core.$strict>, z.ZodObject<{
47113
47662
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
47114
47663
  task: z.ZodOptional<z.ZodEnum<{
47664
+ edit: "edit";
47665
+ extend: "extend";
47115
47666
  image_to_video: "image_to_video";
47116
47667
  reference_to_video: "reference_to_video";
47117
47668
  text_to_video: "text_to_video";
@@ -47121,6 +47672,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
47121
47672
  "9:16": "9:16";
47122
47673
  }>>;
47123
47674
  duration_seconds: z.ZodOptional<z.ZodNumber>;
47675
+ resolution: z.ZodOptional<z.ZodEnum<{
47676
+ "1080p": "1080p";
47677
+ "360p": "360p";
47678
+ "4k": "4k";
47679
+ "720p": "720p";
47680
+ }>>;
47124
47681
  }, z.core.$strict>, z.ZodObject<{
47125
47682
  _option_id: z.ZodLiteral<"vertexai-grok">;
47126
47683
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -47699,6 +48256,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
47699
48256
  }, z.core.$strict>, z.ZodObject<{
47700
48257
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
47701
48258
  task: z.ZodOptional<z.ZodEnum<{
48259
+ edit: "edit";
48260
+ extend: "extend";
47702
48261
  image_to_video: "image_to_video";
47703
48262
  reference_to_video: "reference_to_video";
47704
48263
  text_to_video: "text_to_video";
@@ -47708,6 +48267,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
47708
48267
  "9:16": "9:16";
47709
48268
  }>>;
47710
48269
  duration_seconds: z.ZodOptional<z.ZodNumber>;
48270
+ resolution: z.ZodOptional<z.ZodEnum<{
48271
+ "1080p": "1080p";
48272
+ "360p": "360p";
48273
+ "4k": "4k";
48274
+ "720p": "720p";
48275
+ }>>;
47711
48276
  }, z.core.$strict>, z.ZodObject<{
47712
48277
  _option_id: z.ZodLiteral<"vertexai-grok">;
47713
48278
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -48507,6 +49072,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
48507
49072
  }, z.core.$strict>, z.ZodObject<{
48508
49073
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
48509
49074
  task: z.ZodOptional<z.ZodEnum<{
49075
+ edit: "edit";
49076
+ extend: "extend";
48510
49077
  image_to_video: "image_to_video";
48511
49078
  reference_to_video: "reference_to_video";
48512
49079
  text_to_video: "text_to_video";
@@ -48516,6 +49083,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
48516
49083
  "9:16": "9:16";
48517
49084
  }>>;
48518
49085
  duration_seconds: z.ZodOptional<z.ZodNumber>;
49086
+ resolution: z.ZodOptional<z.ZodEnum<{
49087
+ "1080p": "1080p";
49088
+ "360p": "360p";
49089
+ "4k": "4k";
49090
+ "720p": "720p";
49091
+ }>>;
48519
49092
  }, z.core.$strict>, z.ZodObject<{
48520
49093
  _option_id: z.ZodLiteral<"vertexai-grok">;
48521
49094
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -49094,6 +49667,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
49094
49667
  }, z.core.$strict>, z.ZodObject<{
49095
49668
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
49096
49669
  task: z.ZodOptional<z.ZodEnum<{
49670
+ edit: "edit";
49671
+ extend: "extend";
49097
49672
  image_to_video: "image_to_video";
49098
49673
  reference_to_video: "reference_to_video";
49099
49674
  text_to_video: "text_to_video";
@@ -49103,6 +49678,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
49103
49678
  "9:16": "9:16";
49104
49679
  }>>;
49105
49680
  duration_seconds: z.ZodOptional<z.ZodNumber>;
49681
+ resolution: z.ZodOptional<z.ZodEnum<{
49682
+ "1080p": "1080p";
49683
+ "360p": "360p";
49684
+ "4k": "4k";
49685
+ "720p": "720p";
49686
+ }>>;
49106
49687
  }, z.core.$strict>, z.ZodObject<{
49107
49688
  _option_id: z.ZodLiteral<"vertexai-grok">;
49108
49689
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -50067,6 +50648,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
50067
50648
  }, z.core.$strict>, z.ZodObject<{
50068
50649
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
50069
50650
  task: z.ZodOptional<z.ZodEnum<{
50651
+ edit: "edit";
50652
+ extend: "extend";
50070
50653
  image_to_video: "image_to_video";
50071
50654
  reference_to_video: "reference_to_video";
50072
50655
  text_to_video: "text_to_video";
@@ -50076,6 +50659,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
50076
50659
  "9:16": "9:16";
50077
50660
  }>>;
50078
50661
  duration_seconds: z.ZodOptional<z.ZodNumber>;
50662
+ resolution: z.ZodOptional<z.ZodEnum<{
50663
+ "1080p": "1080p";
50664
+ "360p": "360p";
50665
+ "4k": "4k";
50666
+ "720p": "720p";
50667
+ }>>;
50079
50668
  }, z.core.$strict>, z.ZodObject<{
50080
50669
  _option_id: z.ZodLiteral<"vertexai-grok">;
50081
50670
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -50645,6 +51234,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
50645
51234
  }, z.core.$strict>, z.ZodObject<{
50646
51235
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
50647
51236
  task: z.ZodOptional<z.ZodEnum<{
51237
+ edit: "edit";
51238
+ extend: "extend";
50648
51239
  image_to_video: "image_to_video";
50649
51240
  reference_to_video: "reference_to_video";
50650
51241
  text_to_video: "text_to_video";
@@ -50654,6 +51245,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
50654
51245
  "9:16": "9:16";
50655
51246
  }>>;
50656
51247
  duration_seconds: z.ZodOptional<z.ZodNumber>;
51248
+ resolution: z.ZodOptional<z.ZodEnum<{
51249
+ "1080p": "1080p";
51250
+ "360p": "360p";
51251
+ "4k": "4k";
51252
+ "720p": "720p";
51253
+ }>>;
50657
51254
  }, z.core.$strict>, z.ZodObject<{
50658
51255
  _option_id: z.ZodLiteral<"vertexai-grok">;
50659
51256
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -51487,6 +52084,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
51487
52084
  }, z.core.$strict>, z.ZodObject<{
51488
52085
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
51489
52086
  task: z.ZodOptional<z.ZodEnum<{
52087
+ edit: "edit";
52088
+ extend: "extend";
51490
52089
  image_to_video: "image_to_video";
51491
52090
  reference_to_video: "reference_to_video";
51492
52091
  text_to_video: "text_to_video";
@@ -51496,6 +52095,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
51496
52095
  "9:16": "9:16";
51497
52096
  }>>;
51498
52097
  duration_seconds: z.ZodOptional<z.ZodNumber>;
52098
+ resolution: z.ZodOptional<z.ZodEnum<{
52099
+ "1080p": "1080p";
52100
+ "360p": "360p";
52101
+ "4k": "4k";
52102
+ "720p": "720p";
52103
+ }>>;
51499
52104
  }, z.core.$strict>, z.ZodObject<{
51500
52105
  _option_id: z.ZodLiteral<"vertexai-grok">;
51501
52106
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -52065,6 +52670,8 @@ declare const EXECUTION_RUN_SCHEMAS: {
52065
52670
  }, z.core.$strict>, z.ZodObject<{
52066
52671
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
52067
52672
  task: z.ZodOptional<z.ZodEnum<{
52673
+ edit: "edit";
52674
+ extend: "extend";
52068
52675
  image_to_video: "image_to_video";
52069
52676
  reference_to_video: "reference_to_video";
52070
52677
  text_to_video: "text_to_video";
@@ -52074,6 +52681,12 @@ declare const EXECUTION_RUN_SCHEMAS: {
52074
52681
  "9:16": "9:16";
52075
52682
  }>>;
52076
52683
  duration_seconds: z.ZodOptional<z.ZodNumber>;
52684
+ resolution: z.ZodOptional<z.ZodEnum<{
52685
+ "1080p": "1080p";
52686
+ "360p": "360p";
52687
+ "4k": "4k";
52688
+ "720p": "720p";
52689
+ }>>;
52077
52690
  }, z.core.$strict>, z.ZodObject<{
52078
52691
  _option_id: z.ZodLiteral<"vertexai-grok">;
52079
52692
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -52707,6 +53320,47 @@ declare const EXECUTION_RUN_SCHEMAS: {
52707
53320
  }>>;
52708
53321
  }, z.core.$strict>>;
52709
53322
  message: z.ZodString;
53323
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
53324
+ content: z.ZodString;
53325
+ content_ref: z.ZodOptional<z.ZodObject<{
53326
+ storage_id: z.ZodString;
53327
+ artifact_path: z.ZodString;
53328
+ display_ref: z.ZodString;
53329
+ sha256: z.ZodString;
53330
+ size_bytes: z.ZodNumber;
53331
+ content_type: z.ZodString;
53332
+ }, z.core.$strict>>;
53333
+ is_error: z.ZodBoolean;
53334
+ files: z.ZodOptional<z.ZodArray<z.ZodString>>;
53335
+ display_message: z.ZodOptional<z.ZodString>;
53336
+ meta: z.ZodOptional<z.ZodObject<{
53337
+ resources: z.ZodOptional<z.ZodArray<z.ZodObject<{
53338
+ type: z.ZodEnum<{
53339
+ agent: "agent";
53340
+ collection: "collection";
53341
+ content_type: "content_type";
53342
+ document: "document";
53343
+ interaction: "interaction";
53344
+ interaction_run: "interaction_run";
53345
+ process: "process";
53346
+ process_run: "process_run";
53347
+ prompt: "prompt";
53348
+ view: "view";
53349
+ workflow: "workflow";
53350
+ }>;
53351
+ id: z.ZodString;
53352
+ label: z.ZodString;
53353
+ action: z.ZodEnum<{
53354
+ created: "created";
53355
+ deleted: "deleted";
53356
+ updated: "updated";
53357
+ }>;
53358
+ revision_id: z.ZodOptional<z.ZodString>;
53359
+ }, z.core.$strict>>>;
53360
+ }, z.core.$loose>>;
53361
+ tool_use_id: z.ZodString;
53362
+ thought_signature: z.ZodOptional<z.ZodString>;
53363
+ }, z.core.$strict>>>;
52710
53364
  }, z.core.$strict>;
52711
53365
  readonly ExecutionResponse: z.ZodObject<{
52712
53366
  result: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -53344,6 +53998,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
53344
53998
  }, z.core.$strict>, z.ZodObject<{
53345
53999
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
53346
54000
  task: z.ZodOptional<z.ZodEnum<{
54001
+ edit: "edit";
54002
+ extend: "extend";
53347
54003
  image_to_video: "image_to_video";
53348
54004
  reference_to_video: "reference_to_video";
53349
54005
  text_to_video: "text_to_video";
@@ -53353,6 +54009,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
53353
54009
  "9:16": "9:16";
53354
54010
  }>>;
53355
54011
  duration_seconds: z.ZodOptional<z.ZodNumber>;
54012
+ resolution: z.ZodOptional<z.ZodEnum<{
54013
+ "1080p": "1080p";
54014
+ "360p": "360p";
54015
+ "4k": "4k";
54016
+ "720p": "720p";
54017
+ }>>;
53356
54018
  }, z.core.$strict>, z.ZodObject<{
53357
54019
  _option_id: z.ZodLiteral<"vertexai-grok">;
53358
54020
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -53908,6 +54570,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
53908
54570
  }, z.core.$strict>, z.ZodObject<{
53909
54571
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
53910
54572
  task: z.ZodOptional<z.ZodEnum<{
54573
+ edit: "edit";
54574
+ extend: "extend";
53911
54575
  image_to_video: "image_to_video";
53912
54576
  reference_to_video: "reference_to_video";
53913
54577
  text_to_video: "text_to_video";
@@ -53917,6 +54581,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
53917
54581
  "9:16": "9:16";
53918
54582
  }>>;
53919
54583
  duration_seconds: z.ZodOptional<z.ZodNumber>;
54584
+ resolution: z.ZodOptional<z.ZodEnum<{
54585
+ "1080p": "1080p";
54586
+ "360p": "360p";
54587
+ "4k": "4k";
54588
+ "720p": "720p";
54589
+ }>>;
53920
54590
  }, z.core.$strict>, z.ZodObject<{
53921
54591
  _option_id: z.ZodLiteral<"vertexai-grok">;
53922
54592
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -54508,6 +55178,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
54508
55178
  }, z.core.$strict>, z.ZodObject<{
54509
55179
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
54510
55180
  task: z.ZodOptional<z.ZodEnum<{
55181
+ edit: "edit";
55182
+ extend: "extend";
54511
55183
  image_to_video: "image_to_video";
54512
55184
  reference_to_video: "reference_to_video";
54513
55185
  text_to_video: "text_to_video";
@@ -54517,6 +55189,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
54517
55189
  "9:16": "9:16";
54518
55190
  }>>;
54519
55191
  duration_seconds: z.ZodOptional<z.ZodNumber>;
55192
+ resolution: z.ZodOptional<z.ZodEnum<{
55193
+ "1080p": "1080p";
55194
+ "360p": "360p";
55195
+ "4k": "4k";
55196
+ "720p": "720p";
55197
+ }>>;
54520
55198
  }, z.core.$strict>, z.ZodObject<{
54521
55199
  _option_id: z.ZodLiteral<"vertexai-grok">;
54522
55200
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -55061,6 +55739,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
55061
55739
  }, z.core.$strict>, z.ZodObject<{
55062
55740
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
55063
55741
  task: z.ZodOptional<z.ZodEnum<{
55742
+ edit: "edit";
55743
+ extend: "extend";
55064
55744
  image_to_video: "image_to_video";
55065
55745
  reference_to_video: "reference_to_video";
55066
55746
  text_to_video: "text_to_video";
@@ -55070,6 +55750,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
55070
55750
  "9:16": "9:16";
55071
55751
  }>>;
55072
55752
  duration_seconds: z.ZodOptional<z.ZodNumber>;
55753
+ resolution: z.ZodOptional<z.ZodEnum<{
55754
+ "1080p": "1080p";
55755
+ "360p": "360p";
55756
+ "4k": "4k";
55757
+ "720p": "720p";
55758
+ }>>;
55073
55759
  }, z.core.$strict>, z.ZodObject<{
55074
55760
  _option_id: z.ZodLiteral<"vertexai-grok">;
55075
55761
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -55619,6 +56305,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
55619
56305
  }, z.core.$strict>, z.ZodObject<{
55620
56306
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
55621
56307
  task: z.ZodOptional<z.ZodEnum<{
56308
+ edit: "edit";
56309
+ extend: "extend";
55622
56310
  image_to_video: "image_to_video";
55623
56311
  reference_to_video: "reference_to_video";
55624
56312
  text_to_video: "text_to_video";
@@ -55628,6 +56316,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
55628
56316
  "9:16": "9:16";
55629
56317
  }>>;
55630
56318
  duration_seconds: z.ZodOptional<z.ZodNumber>;
56319
+ resolution: z.ZodOptional<z.ZodEnum<{
56320
+ "1080p": "1080p";
56321
+ "360p": "360p";
56322
+ "4k": "4k";
56323
+ "720p": "720p";
56324
+ }>>;
55631
56325
  }, z.core.$strict>, z.ZodObject<{
55632
56326
  _option_id: z.ZodLiteral<"vertexai-grok">;
55633
56327
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -56259,6 +56953,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
56259
56953
  }, z.core.$strict>, z.ZodObject<{
56260
56954
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
56261
56955
  task: z.ZodOptional<z.ZodEnum<{
56956
+ edit: "edit";
56957
+ extend: "extend";
56262
56958
  image_to_video: "image_to_video";
56263
56959
  reference_to_video: "reference_to_video";
56264
56960
  text_to_video: "text_to_video";
@@ -56268,6 +56964,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
56268
56964
  "9:16": "9:16";
56269
56965
  }>>;
56270
56966
  duration_seconds: z.ZodOptional<z.ZodNumber>;
56967
+ resolution: z.ZodOptional<z.ZodEnum<{
56968
+ "1080p": "1080p";
56969
+ "360p": "360p";
56970
+ "4k": "4k";
56971
+ "720p": "720p";
56972
+ }>>;
56271
56973
  }, z.core.$strict>, z.ZodObject<{
56272
56974
  _option_id: z.ZodLiteral<"vertexai-grok">;
56273
56975
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -56823,6 +57525,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
56823
57525
  }, z.core.$strict>, z.ZodObject<{
56824
57526
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
56825
57527
  task: z.ZodOptional<z.ZodEnum<{
57528
+ edit: "edit";
57529
+ extend: "extend";
56826
57530
  image_to_video: "image_to_video";
56827
57531
  reference_to_video: "reference_to_video";
56828
57532
  text_to_video: "text_to_video";
@@ -56832,6 +57536,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
56832
57536
  "9:16": "9:16";
56833
57537
  }>>;
56834
57538
  duration_seconds: z.ZodOptional<z.ZodNumber>;
57539
+ resolution: z.ZodOptional<z.ZodEnum<{
57540
+ "1080p": "1080p";
57541
+ "360p": "360p";
57542
+ "4k": "4k";
57543
+ "720p": "720p";
57544
+ }>>;
56835
57545
  }, z.core.$strict>, z.ZodObject<{
56836
57546
  _option_id: z.ZodLiteral<"vertexai-grok">;
56837
57547
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -57423,6 +58133,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
57423
58133
  }, z.core.$strict>, z.ZodObject<{
57424
58134
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
57425
58135
  task: z.ZodOptional<z.ZodEnum<{
58136
+ edit: "edit";
58137
+ extend: "extend";
57426
58138
  image_to_video: "image_to_video";
57427
58139
  reference_to_video: "reference_to_video";
57428
58140
  text_to_video: "text_to_video";
@@ -57432,6 +58144,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
57432
58144
  "9:16": "9:16";
57433
58145
  }>>;
57434
58146
  duration_seconds: z.ZodOptional<z.ZodNumber>;
58147
+ resolution: z.ZodOptional<z.ZodEnum<{
58148
+ "1080p": "1080p";
58149
+ "360p": "360p";
58150
+ "4k": "4k";
58151
+ "720p": "720p";
58152
+ }>>;
57435
58153
  }, z.core.$strict>, z.ZodObject<{
57436
58154
  _option_id: z.ZodLiteral<"vertexai-grok">;
57437
58155
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -57976,6 +58694,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
57976
58694
  }, z.core.$strict>, z.ZodObject<{
57977
58695
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
57978
58696
  task: z.ZodOptional<z.ZodEnum<{
58697
+ edit: "edit";
58698
+ extend: "extend";
57979
58699
  image_to_video: "image_to_video";
57980
58700
  reference_to_video: "reference_to_video";
57981
58701
  text_to_video: "text_to_video";
@@ -57985,6 +58705,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
57985
58705
  "9:16": "9:16";
57986
58706
  }>>;
57987
58707
  duration_seconds: z.ZodOptional<z.ZodNumber>;
58708
+ resolution: z.ZodOptional<z.ZodEnum<{
58709
+ "1080p": "1080p";
58710
+ "360p": "360p";
58711
+ "4k": "4k";
58712
+ "720p": "720p";
58713
+ }>>;
57988
58714
  }, z.core.$strict>, z.ZodObject<{
57989
58715
  _option_id: z.ZodLiteral<"vertexai-grok">;
57990
58716
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -58534,6 +59260,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
58534
59260
  }, z.core.$strict>, z.ZodObject<{
58535
59261
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
58536
59262
  task: z.ZodOptional<z.ZodEnum<{
59263
+ edit: "edit";
59264
+ extend: "extend";
58537
59265
  image_to_video: "image_to_video";
58538
59266
  reference_to_video: "reference_to_video";
58539
59267
  text_to_video: "text_to_video";
@@ -58543,6 +59271,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
58543
59271
  "9:16": "9:16";
58544
59272
  }>>;
58545
59273
  duration_seconds: z.ZodOptional<z.ZodNumber>;
59274
+ resolution: z.ZodOptional<z.ZodEnum<{
59275
+ "1080p": "1080p";
59276
+ "360p": "360p";
59277
+ "4k": "4k";
59278
+ "720p": "720p";
59279
+ }>>;
58546
59280
  }, z.core.$strict>, z.ZodObject<{
58547
59281
  _option_id: z.ZodLiteral<"vertexai-grok">;
58548
59282
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -59178,6 +59912,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
59178
59912
  }, z.core.$strict>, z.ZodObject<{
59179
59913
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
59180
59914
  task: z.ZodOptional<z.ZodEnum<{
59915
+ edit: "edit";
59916
+ extend: "extend";
59181
59917
  image_to_video: "image_to_video";
59182
59918
  reference_to_video: "reference_to_video";
59183
59919
  text_to_video: "text_to_video";
@@ -59187,6 +59923,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
59187
59923
  "9:16": "9:16";
59188
59924
  }>>;
59189
59925
  duration_seconds: z.ZodOptional<z.ZodNumber>;
59926
+ resolution: z.ZodOptional<z.ZodEnum<{
59927
+ "1080p": "1080p";
59928
+ "360p": "360p";
59929
+ "4k": "4k";
59930
+ "720p": "720p";
59931
+ }>>;
59190
59932
  }, z.core.$strict>, z.ZodObject<{
59191
59933
  _option_id: z.ZodLiteral<"vertexai-grok">;
59192
59934
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -59742,6 +60484,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
59742
60484
  }, z.core.$strict>, z.ZodObject<{
59743
60485
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
59744
60486
  task: z.ZodOptional<z.ZodEnum<{
60487
+ edit: "edit";
60488
+ extend: "extend";
59745
60489
  image_to_video: "image_to_video";
59746
60490
  reference_to_video: "reference_to_video";
59747
60491
  text_to_video: "text_to_video";
@@ -59751,6 +60495,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
59751
60495
  "9:16": "9:16";
59752
60496
  }>>;
59753
60497
  duration_seconds: z.ZodOptional<z.ZodNumber>;
60498
+ resolution: z.ZodOptional<z.ZodEnum<{
60499
+ "1080p": "1080p";
60500
+ "360p": "360p";
60501
+ "4k": "4k";
60502
+ "720p": "720p";
60503
+ }>>;
59754
60504
  }, z.core.$strict>, z.ZodObject<{
59755
60505
  _option_id: z.ZodLiteral<"vertexai-grok">;
59756
60506
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -60342,6 +61092,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
60342
61092
  }, z.core.$strict>, z.ZodObject<{
60343
61093
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
60344
61094
  task: z.ZodOptional<z.ZodEnum<{
61095
+ edit: "edit";
61096
+ extend: "extend";
60345
61097
  image_to_video: "image_to_video";
60346
61098
  reference_to_video: "reference_to_video";
60347
61099
  text_to_video: "text_to_video";
@@ -60351,6 +61103,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
60351
61103
  "9:16": "9:16";
60352
61104
  }>>;
60353
61105
  duration_seconds: z.ZodOptional<z.ZodNumber>;
61106
+ resolution: z.ZodOptional<z.ZodEnum<{
61107
+ "1080p": "1080p";
61108
+ "360p": "360p";
61109
+ "4k": "4k";
61110
+ "720p": "720p";
61111
+ }>>;
60354
61112
  }, z.core.$strict>, z.ZodObject<{
60355
61113
  _option_id: z.ZodLiteral<"vertexai-grok">;
60356
61114
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -60895,6 +61653,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
60895
61653
  }, z.core.$strict>, z.ZodObject<{
60896
61654
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
60897
61655
  task: z.ZodOptional<z.ZodEnum<{
61656
+ edit: "edit";
61657
+ extend: "extend";
60898
61658
  image_to_video: "image_to_video";
60899
61659
  reference_to_video: "reference_to_video";
60900
61660
  text_to_video: "text_to_video";
@@ -60904,6 +61664,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
60904
61664
  "9:16": "9:16";
60905
61665
  }>>;
60906
61666
  duration_seconds: z.ZodOptional<z.ZodNumber>;
61667
+ resolution: z.ZodOptional<z.ZodEnum<{
61668
+ "1080p": "1080p";
61669
+ "360p": "360p";
61670
+ "4k": "4k";
61671
+ "720p": "720p";
61672
+ }>>;
60907
61673
  }, z.core.$strict>, z.ZodObject<{
60908
61674
  _option_id: z.ZodLiteral<"vertexai-grok">;
60909
61675
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -61453,6 +62219,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
61453
62219
  }, z.core.$strict>, z.ZodObject<{
61454
62220
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
61455
62221
  task: z.ZodOptional<z.ZodEnum<{
62222
+ edit: "edit";
62223
+ extend: "extend";
61456
62224
  image_to_video: "image_to_video";
61457
62225
  reference_to_video: "reference_to_video";
61458
62226
  text_to_video: "text_to_video";
@@ -61462,6 +62230,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
61462
62230
  "9:16": "9:16";
61463
62231
  }>>;
61464
62232
  duration_seconds: z.ZodOptional<z.ZodNumber>;
62233
+ resolution: z.ZodOptional<z.ZodEnum<{
62234
+ "1080p": "1080p";
62235
+ "360p": "360p";
62236
+ "4k": "4k";
62237
+ "720p": "720p";
62238
+ }>>;
61465
62239
  }, z.core.$strict>, z.ZodObject<{
61466
62240
  _option_id: z.ZodLiteral<"vertexai-grok">;
61467
62241
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -62094,6 +62868,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
62094
62868
  }, z.core.$strict>, z.ZodObject<{
62095
62869
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
62096
62870
  task: z.ZodOptional<z.ZodEnum<{
62871
+ edit: "edit";
62872
+ extend: "extend";
62097
62873
  image_to_video: "image_to_video";
62098
62874
  reference_to_video: "reference_to_video";
62099
62875
  text_to_video: "text_to_video";
@@ -62103,6 +62879,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
62103
62879
  "9:16": "9:16";
62104
62880
  }>>;
62105
62881
  duration_seconds: z.ZodOptional<z.ZodNumber>;
62882
+ resolution: z.ZodOptional<z.ZodEnum<{
62883
+ "1080p": "1080p";
62884
+ "360p": "360p";
62885
+ "4k": "4k";
62886
+ "720p": "720p";
62887
+ }>>;
62106
62888
  }, z.core.$strict>, z.ZodObject<{
62107
62889
  _option_id: z.ZodLiteral<"vertexai-grok">;
62108
62890
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -62658,6 +63440,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
62658
63440
  }, z.core.$strict>, z.ZodObject<{
62659
63441
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
62660
63442
  task: z.ZodOptional<z.ZodEnum<{
63443
+ edit: "edit";
63444
+ extend: "extend";
62661
63445
  image_to_video: "image_to_video";
62662
63446
  reference_to_video: "reference_to_video";
62663
63447
  text_to_video: "text_to_video";
@@ -62667,6 +63451,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
62667
63451
  "9:16": "9:16";
62668
63452
  }>>;
62669
63453
  duration_seconds: z.ZodOptional<z.ZodNumber>;
63454
+ resolution: z.ZodOptional<z.ZodEnum<{
63455
+ "1080p": "1080p";
63456
+ "360p": "360p";
63457
+ "4k": "4k";
63458
+ "720p": "720p";
63459
+ }>>;
62670
63460
  }, z.core.$strict>, z.ZodObject<{
62671
63461
  _option_id: z.ZodLiteral<"vertexai-grok">;
62672
63462
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -63258,6 +64048,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
63258
64048
  }, z.core.$strict>, z.ZodObject<{
63259
64049
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
63260
64050
  task: z.ZodOptional<z.ZodEnum<{
64051
+ edit: "edit";
64052
+ extend: "extend";
63261
64053
  image_to_video: "image_to_video";
63262
64054
  reference_to_video: "reference_to_video";
63263
64055
  text_to_video: "text_to_video";
@@ -63267,6 +64059,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
63267
64059
  "9:16": "9:16";
63268
64060
  }>>;
63269
64061
  duration_seconds: z.ZodOptional<z.ZodNumber>;
64062
+ resolution: z.ZodOptional<z.ZodEnum<{
64063
+ "1080p": "1080p";
64064
+ "360p": "360p";
64065
+ "4k": "4k";
64066
+ "720p": "720p";
64067
+ }>>;
63270
64068
  }, z.core.$strict>, z.ZodObject<{
63271
64069
  _option_id: z.ZodLiteral<"vertexai-grok">;
63272
64070
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -63811,6 +64609,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
63811
64609
  }, z.core.$strict>, z.ZodObject<{
63812
64610
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
63813
64611
  task: z.ZodOptional<z.ZodEnum<{
64612
+ edit: "edit";
64613
+ extend: "extend";
63814
64614
  image_to_video: "image_to_video";
63815
64615
  reference_to_video: "reference_to_video";
63816
64616
  text_to_video: "text_to_video";
@@ -63820,6 +64620,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
63820
64620
  "9:16": "9:16";
63821
64621
  }>>;
63822
64622
  duration_seconds: z.ZodOptional<z.ZodNumber>;
64623
+ resolution: z.ZodOptional<z.ZodEnum<{
64624
+ "1080p": "1080p";
64625
+ "360p": "360p";
64626
+ "4k": "4k";
64627
+ "720p": "720p";
64628
+ }>>;
63823
64629
  }, z.core.$strict>, z.ZodObject<{
63824
64630
  _option_id: z.ZodLiteral<"vertexai-grok">;
63825
64631
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -64369,6 +65175,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
64369
65175
  }, z.core.$strict>, z.ZodObject<{
64370
65176
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
64371
65177
  task: z.ZodOptional<z.ZodEnum<{
65178
+ edit: "edit";
65179
+ extend: "extend";
64372
65180
  image_to_video: "image_to_video";
64373
65181
  reference_to_video: "reference_to_video";
64374
65182
  text_to_video: "text_to_video";
@@ -64378,6 +65186,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
64378
65186
  "9:16": "9:16";
64379
65187
  }>>;
64380
65188
  duration_seconds: z.ZodOptional<z.ZodNumber>;
65189
+ resolution: z.ZodOptional<z.ZodEnum<{
65190
+ "1080p": "1080p";
65191
+ "360p": "360p";
65192
+ "4k": "4k";
65193
+ "720p": "720p";
65194
+ }>>;
64381
65195
  }, z.core.$strict>, z.ZodObject<{
64382
65196
  _option_id: z.ZodLiteral<"vertexai-grok">;
64383
65197
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -65010,6 +65824,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
65010
65824
  }, z.core.$strict>, z.ZodObject<{
65011
65825
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
65012
65826
  task: z.ZodOptional<z.ZodEnum<{
65827
+ edit: "edit";
65828
+ extend: "extend";
65013
65829
  image_to_video: "image_to_video";
65014
65830
  reference_to_video: "reference_to_video";
65015
65831
  text_to_video: "text_to_video";
@@ -65019,6 +65835,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
65019
65835
  "9:16": "9:16";
65020
65836
  }>>;
65021
65837
  duration_seconds: z.ZodOptional<z.ZodNumber>;
65838
+ resolution: z.ZodOptional<z.ZodEnum<{
65839
+ "1080p": "1080p";
65840
+ "360p": "360p";
65841
+ "4k": "4k";
65842
+ "720p": "720p";
65843
+ }>>;
65022
65844
  }, z.core.$strict>, z.ZodObject<{
65023
65845
  _option_id: z.ZodLiteral<"vertexai-grok">;
65024
65846
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -65574,6 +66396,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
65574
66396
  }, z.core.$strict>, z.ZodObject<{
65575
66397
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
65576
66398
  task: z.ZodOptional<z.ZodEnum<{
66399
+ edit: "edit";
66400
+ extend: "extend";
65577
66401
  image_to_video: "image_to_video";
65578
66402
  reference_to_video: "reference_to_video";
65579
66403
  text_to_video: "text_to_video";
@@ -65583,6 +66407,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
65583
66407
  "9:16": "9:16";
65584
66408
  }>>;
65585
66409
  duration_seconds: z.ZodOptional<z.ZodNumber>;
66410
+ resolution: z.ZodOptional<z.ZodEnum<{
66411
+ "1080p": "1080p";
66412
+ "360p": "360p";
66413
+ "4k": "4k";
66414
+ "720p": "720p";
66415
+ }>>;
65586
66416
  }, z.core.$strict>, z.ZodObject<{
65587
66417
  _option_id: z.ZodLiteral<"vertexai-grok">;
65588
66418
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -66174,6 +67004,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
66174
67004
  }, z.core.$strict>, z.ZodObject<{
66175
67005
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
66176
67006
  task: z.ZodOptional<z.ZodEnum<{
67007
+ edit: "edit";
67008
+ extend: "extend";
66177
67009
  image_to_video: "image_to_video";
66178
67010
  reference_to_video: "reference_to_video";
66179
67011
  text_to_video: "text_to_video";
@@ -66183,6 +67015,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
66183
67015
  "9:16": "9:16";
66184
67016
  }>>;
66185
67017
  duration_seconds: z.ZodOptional<z.ZodNumber>;
67018
+ resolution: z.ZodOptional<z.ZodEnum<{
67019
+ "1080p": "1080p";
67020
+ "360p": "360p";
67021
+ "4k": "4k";
67022
+ "720p": "720p";
67023
+ }>>;
66186
67024
  }, z.core.$strict>, z.ZodObject<{
66187
67025
  _option_id: z.ZodLiteral<"vertexai-grok">;
66188
67026
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -66727,6 +67565,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
66727
67565
  }, z.core.$strict>, z.ZodObject<{
66728
67566
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
66729
67567
  task: z.ZodOptional<z.ZodEnum<{
67568
+ edit: "edit";
67569
+ extend: "extend";
66730
67570
  image_to_video: "image_to_video";
66731
67571
  reference_to_video: "reference_to_video";
66732
67572
  text_to_video: "text_to_video";
@@ -66736,6 +67576,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
66736
67576
  "9:16": "9:16";
66737
67577
  }>>;
66738
67578
  duration_seconds: z.ZodOptional<z.ZodNumber>;
67579
+ resolution: z.ZodOptional<z.ZodEnum<{
67580
+ "1080p": "1080p";
67581
+ "360p": "360p";
67582
+ "4k": "4k";
67583
+ "720p": "720p";
67584
+ }>>;
66739
67585
  }, z.core.$strict>, z.ZodObject<{
66740
67586
  _option_id: z.ZodLiteral<"vertexai-grok">;
66741
67587
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -67285,6 +68131,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
67285
68131
  }, z.core.$strict>, z.ZodObject<{
67286
68132
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
67287
68133
  task: z.ZodOptional<z.ZodEnum<{
68134
+ edit: "edit";
68135
+ extend: "extend";
67288
68136
  image_to_video: "image_to_video";
67289
68137
  reference_to_video: "reference_to_video";
67290
68138
  text_to_video: "text_to_video";
@@ -67294,6 +68142,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
67294
68142
  "9:16": "9:16";
67295
68143
  }>>;
67296
68144
  duration_seconds: z.ZodOptional<z.ZodNumber>;
68145
+ resolution: z.ZodOptional<z.ZodEnum<{
68146
+ "1080p": "1080p";
68147
+ "360p": "360p";
68148
+ "4k": "4k";
68149
+ "720p": "720p";
68150
+ }>>;
67297
68151
  }, z.core.$strict>, z.ZodObject<{
67298
68152
  _option_id: z.ZodLiteral<"vertexai-grok">;
67299
68153
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -67908,6 +68762,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
67908
68762
  }, z.core.$strict>, z.ZodObject<{
67909
68763
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
67910
68764
  task: z.ZodOptional<z.ZodEnum<{
68765
+ edit: "edit";
68766
+ extend: "extend";
67911
68767
  image_to_video: "image_to_video";
67912
68768
  reference_to_video: "reference_to_video";
67913
68769
  text_to_video: "text_to_video";
@@ -67917,6 +68773,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
67917
68773
  "9:16": "9:16";
67918
68774
  }>>;
67919
68775
  duration_seconds: z.ZodOptional<z.ZodNumber>;
68776
+ resolution: z.ZodOptional<z.ZodEnum<{
68777
+ "1080p": "1080p";
68778
+ "360p": "360p";
68779
+ "4k": "4k";
68780
+ "720p": "720p";
68781
+ }>>;
67920
68782
  }, z.core.$strict>, z.ZodObject<{
67921
68783
  _option_id: z.ZodLiteral<"vertexai-grok">;
67922
68784
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -68472,6 +69334,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
68472
69334
  }, z.core.$strict>, z.ZodObject<{
68473
69335
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
68474
69336
  task: z.ZodOptional<z.ZodEnum<{
69337
+ edit: "edit";
69338
+ extend: "extend";
68475
69339
  image_to_video: "image_to_video";
68476
69340
  reference_to_video: "reference_to_video";
68477
69341
  text_to_video: "text_to_video";
@@ -68481,6 +69345,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
68481
69345
  "9:16": "9:16";
68482
69346
  }>>;
68483
69347
  duration_seconds: z.ZodOptional<z.ZodNumber>;
69348
+ resolution: z.ZodOptional<z.ZodEnum<{
69349
+ "1080p": "1080p";
69350
+ "360p": "360p";
69351
+ "4k": "4k";
69352
+ "720p": "720p";
69353
+ }>>;
68484
69354
  }, z.core.$strict>, z.ZodObject<{
68485
69355
  _option_id: z.ZodLiteral<"vertexai-grok">;
68486
69356
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -69072,6 +69942,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
69072
69942
  }, z.core.$strict>, z.ZodObject<{
69073
69943
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
69074
69944
  task: z.ZodOptional<z.ZodEnum<{
69945
+ edit: "edit";
69946
+ extend: "extend";
69075
69947
  image_to_video: "image_to_video";
69076
69948
  reference_to_video: "reference_to_video";
69077
69949
  text_to_video: "text_to_video";
@@ -69081,6 +69953,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
69081
69953
  "9:16": "9:16";
69082
69954
  }>>;
69083
69955
  duration_seconds: z.ZodOptional<z.ZodNumber>;
69956
+ resolution: z.ZodOptional<z.ZodEnum<{
69957
+ "1080p": "1080p";
69958
+ "360p": "360p";
69959
+ "4k": "4k";
69960
+ "720p": "720p";
69961
+ }>>;
69084
69962
  }, z.core.$strict>, z.ZodObject<{
69085
69963
  _option_id: z.ZodLiteral<"vertexai-grok">;
69086
69964
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -69625,6 +70503,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
69625
70503
  }, z.core.$strict>, z.ZodObject<{
69626
70504
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
69627
70505
  task: z.ZodOptional<z.ZodEnum<{
70506
+ edit: "edit";
70507
+ extend: "extend";
69628
70508
  image_to_video: "image_to_video";
69629
70509
  reference_to_video: "reference_to_video";
69630
70510
  text_to_video: "text_to_video";
@@ -69634,6 +70514,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
69634
70514
  "9:16": "9:16";
69635
70515
  }>>;
69636
70516
  duration_seconds: z.ZodOptional<z.ZodNumber>;
70517
+ resolution: z.ZodOptional<z.ZodEnum<{
70518
+ "1080p": "1080p";
70519
+ "360p": "360p";
70520
+ "4k": "4k";
70521
+ "720p": "720p";
70522
+ }>>;
69637
70523
  }, z.core.$strict>, z.ZodObject<{
69638
70524
  _option_id: z.ZodLiteral<"vertexai-grok">;
69639
70525
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -70183,6 +71069,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
70183
71069
  }, z.core.$strict>, z.ZodObject<{
70184
71070
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
70185
71071
  task: z.ZodOptional<z.ZodEnum<{
71072
+ edit: "edit";
71073
+ extend: "extend";
70186
71074
  image_to_video: "image_to_video";
70187
71075
  reference_to_video: "reference_to_video";
70188
71076
  text_to_video: "text_to_video";
@@ -70192,6 +71080,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
70192
71080
  "9:16": "9:16";
70193
71081
  }>>;
70194
71082
  duration_seconds: z.ZodOptional<z.ZodNumber>;
71083
+ resolution: z.ZodOptional<z.ZodEnum<{
71084
+ "1080p": "1080p";
71085
+ "360p": "360p";
71086
+ "4k": "4k";
71087
+ "720p": "720p";
71088
+ }>>;
70195
71089
  }, z.core.$strict>, z.ZodObject<{
70196
71090
  _option_id: z.ZodLiteral<"vertexai-grok">;
70197
71091
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -70817,6 +71711,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
70817
71711
  }, z.core.$strict>, z.ZodObject<{
70818
71712
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
70819
71713
  task: z.ZodOptional<z.ZodEnum<{
71714
+ edit: "edit";
71715
+ extend: "extend";
70820
71716
  image_to_video: "image_to_video";
70821
71717
  reference_to_video: "reference_to_video";
70822
71718
  text_to_video: "text_to_video";
@@ -70826,6 +71722,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
70826
71722
  "9:16": "9:16";
70827
71723
  }>>;
70828
71724
  duration_seconds: z.ZodOptional<z.ZodNumber>;
71725
+ resolution: z.ZodOptional<z.ZodEnum<{
71726
+ "1080p": "1080p";
71727
+ "360p": "360p";
71728
+ "4k": "4k";
71729
+ "720p": "720p";
71730
+ }>>;
70829
71731
  }, z.core.$strict>, z.ZodObject<{
70830
71732
  _option_id: z.ZodLiteral<"vertexai-grok">;
70831
71733
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -71381,6 +72283,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
71381
72283
  }, z.core.$strict>, z.ZodObject<{
71382
72284
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
71383
72285
  task: z.ZodOptional<z.ZodEnum<{
72286
+ edit: "edit";
72287
+ extend: "extend";
71384
72288
  image_to_video: "image_to_video";
71385
72289
  reference_to_video: "reference_to_video";
71386
72290
  text_to_video: "text_to_video";
@@ -71390,6 +72294,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
71390
72294
  "9:16": "9:16";
71391
72295
  }>>;
71392
72296
  duration_seconds: z.ZodOptional<z.ZodNumber>;
72297
+ resolution: z.ZodOptional<z.ZodEnum<{
72298
+ "1080p": "1080p";
72299
+ "360p": "360p";
72300
+ "4k": "4k";
72301
+ "720p": "720p";
72302
+ }>>;
71393
72303
  }, z.core.$strict>, z.ZodObject<{
71394
72304
  _option_id: z.ZodLiteral<"vertexai-grok">;
71395
72305
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -71981,6 +72891,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
71981
72891
  }, z.core.$strict>, z.ZodObject<{
71982
72892
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
71983
72893
  task: z.ZodOptional<z.ZodEnum<{
72894
+ edit: "edit";
72895
+ extend: "extend";
71984
72896
  image_to_video: "image_to_video";
71985
72897
  reference_to_video: "reference_to_video";
71986
72898
  text_to_video: "text_to_video";
@@ -71990,6 +72902,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
71990
72902
  "9:16": "9:16";
71991
72903
  }>>;
71992
72904
  duration_seconds: z.ZodOptional<z.ZodNumber>;
72905
+ resolution: z.ZodOptional<z.ZodEnum<{
72906
+ "1080p": "1080p";
72907
+ "360p": "360p";
72908
+ "4k": "4k";
72909
+ "720p": "720p";
72910
+ }>>;
71993
72911
  }, z.core.$strict>, z.ZodObject<{
71994
72912
  _option_id: z.ZodLiteral<"vertexai-grok">;
71995
72913
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -72534,6 +73452,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
72534
73452
  }, z.core.$strict>, z.ZodObject<{
72535
73453
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
72536
73454
  task: z.ZodOptional<z.ZodEnum<{
73455
+ edit: "edit";
73456
+ extend: "extend";
72537
73457
  image_to_video: "image_to_video";
72538
73458
  reference_to_video: "reference_to_video";
72539
73459
  text_to_video: "text_to_video";
@@ -72543,6 +73463,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
72543
73463
  "9:16": "9:16";
72544
73464
  }>>;
72545
73465
  duration_seconds: z.ZodOptional<z.ZodNumber>;
73466
+ resolution: z.ZodOptional<z.ZodEnum<{
73467
+ "1080p": "1080p";
73468
+ "360p": "360p";
73469
+ "4k": "4k";
73470
+ "720p": "720p";
73471
+ }>>;
72546
73472
  }, z.core.$strict>, z.ZodObject<{
72547
73473
  _option_id: z.ZodLiteral<"vertexai-grok">;
72548
73474
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -73092,6 +74018,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
73092
74018
  }, z.core.$strict>, z.ZodObject<{
73093
74019
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
73094
74020
  task: z.ZodOptional<z.ZodEnum<{
74021
+ edit: "edit";
74022
+ extend: "extend";
73095
74023
  image_to_video: "image_to_video";
73096
74024
  reference_to_video: "reference_to_video";
73097
74025
  text_to_video: "text_to_video";
@@ -73101,6 +74029,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
73101
74029
  "9:16": "9:16";
73102
74030
  }>>;
73103
74031
  duration_seconds: z.ZodOptional<z.ZodNumber>;
74032
+ resolution: z.ZodOptional<z.ZodEnum<{
74033
+ "1080p": "1080p";
74034
+ "360p": "360p";
74035
+ "4k": "4k";
74036
+ "720p": "720p";
74037
+ }>>;
73104
74038
  }, z.core.$strict>, z.ZodObject<{
73105
74039
  _option_id: z.ZodLiteral<"vertexai-grok">;
73106
74040
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -73736,6 +74670,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
73736
74670
  }, z.core.$strict>, z.ZodObject<{
73737
74671
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
73738
74672
  task: z.ZodOptional<z.ZodEnum<{
74673
+ edit: "edit";
74674
+ extend: "extend";
73739
74675
  image_to_video: "image_to_video";
73740
74676
  reference_to_video: "reference_to_video";
73741
74677
  text_to_video: "text_to_video";
@@ -73745,6 +74681,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
73745
74681
  "9:16": "9:16";
73746
74682
  }>>;
73747
74683
  duration_seconds: z.ZodOptional<z.ZodNumber>;
74684
+ resolution: z.ZodOptional<z.ZodEnum<{
74685
+ "1080p": "1080p";
74686
+ "360p": "360p";
74687
+ "4k": "4k";
74688
+ "720p": "720p";
74689
+ }>>;
73748
74690
  }, z.core.$strict>, z.ZodObject<{
73749
74691
  _option_id: z.ZodLiteral<"vertexai-grok">;
73750
74692
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -74300,6 +75242,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
74300
75242
  }, z.core.$strict>, z.ZodObject<{
74301
75243
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
74302
75244
  task: z.ZodOptional<z.ZodEnum<{
75245
+ edit: "edit";
75246
+ extend: "extend";
74303
75247
  image_to_video: "image_to_video";
74304
75248
  reference_to_video: "reference_to_video";
74305
75249
  text_to_video: "text_to_video";
@@ -74309,6 +75253,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
74309
75253
  "9:16": "9:16";
74310
75254
  }>>;
74311
75255
  duration_seconds: z.ZodOptional<z.ZodNumber>;
75256
+ resolution: z.ZodOptional<z.ZodEnum<{
75257
+ "1080p": "1080p";
75258
+ "360p": "360p";
75259
+ "4k": "4k";
75260
+ "720p": "720p";
75261
+ }>>;
74312
75262
  }, z.core.$strict>, z.ZodObject<{
74313
75263
  _option_id: z.ZodLiteral<"vertexai-grok">;
74314
75264
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -74900,6 +75850,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
74900
75850
  }, z.core.$strict>, z.ZodObject<{
74901
75851
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
74902
75852
  task: z.ZodOptional<z.ZodEnum<{
75853
+ edit: "edit";
75854
+ extend: "extend";
74903
75855
  image_to_video: "image_to_video";
74904
75856
  reference_to_video: "reference_to_video";
74905
75857
  text_to_video: "text_to_video";
@@ -74909,6 +75861,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
74909
75861
  "9:16": "9:16";
74910
75862
  }>>;
74911
75863
  duration_seconds: z.ZodOptional<z.ZodNumber>;
75864
+ resolution: z.ZodOptional<z.ZodEnum<{
75865
+ "1080p": "1080p";
75866
+ "360p": "360p";
75867
+ "4k": "4k";
75868
+ "720p": "720p";
75869
+ }>>;
74912
75870
  }, z.core.$strict>, z.ZodObject<{
74913
75871
  _option_id: z.ZodLiteral<"vertexai-grok">;
74914
75872
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -75453,6 +76411,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
75453
76411
  }, z.core.$strict>, z.ZodObject<{
75454
76412
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
75455
76413
  task: z.ZodOptional<z.ZodEnum<{
76414
+ edit: "edit";
76415
+ extend: "extend";
75456
76416
  image_to_video: "image_to_video";
75457
76417
  reference_to_video: "reference_to_video";
75458
76418
  text_to_video: "text_to_video";
@@ -75462,6 +76422,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
75462
76422
  "9:16": "9:16";
75463
76423
  }>>;
75464
76424
  duration_seconds: z.ZodOptional<z.ZodNumber>;
76425
+ resolution: z.ZodOptional<z.ZodEnum<{
76426
+ "1080p": "1080p";
76427
+ "360p": "360p";
76428
+ "4k": "4k";
76429
+ "720p": "720p";
76430
+ }>>;
75465
76431
  }, z.core.$strict>, z.ZodObject<{
75466
76432
  _option_id: z.ZodLiteral<"vertexai-grok">;
75467
76433
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -76011,6 +76977,8 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
76011
76977
  }, z.core.$strict>, z.ZodObject<{
76012
76978
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
76013
76979
  task: z.ZodOptional<z.ZodEnum<{
76980
+ edit: "edit";
76981
+ extend: "extend";
76014
76982
  image_to_video: "image_to_video";
76015
76983
  reference_to_video: "reference_to_video";
76016
76984
  text_to_video: "text_to_video";
@@ -76020,6 +76988,12 @@ declare const CONTENT_TYPE_CATALOG_SCHEMAS: {
76020
76988
  "9:16": "9:16";
76021
76989
  }>>;
76022
76990
  duration_seconds: z.ZodOptional<z.ZodNumber>;
76991
+ resolution: z.ZodOptional<z.ZodEnum<{
76992
+ "1080p": "1080p";
76993
+ "360p": "360p";
76994
+ "4k": "4k";
76995
+ "720p": "720p";
76996
+ }>>;
76023
76997
  }, z.core.$strict>, z.ZodObject<{
76024
76998
  _option_id: z.ZodLiteral<"vertexai-grok">;
76025
76999
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -79123,6 +80097,8 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
79123
80097
  }, z.core.$strict>, z.ZodObject<{
79124
80098
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
79125
80099
  task: z.ZodOptional<z.ZodEnum<{
80100
+ edit: "edit";
80101
+ extend: "extend";
79126
80102
  image_to_video: "image_to_video";
79127
80103
  reference_to_video: "reference_to_video";
79128
80104
  text_to_video: "text_to_video";
@@ -79132,6 +80108,12 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
79132
80108
  "9:16": "9:16";
79133
80109
  }>>;
79134
80110
  duration_seconds: z.ZodOptional<z.ZodNumber>;
80111
+ resolution: z.ZodOptional<z.ZodEnum<{
80112
+ "1080p": "1080p";
80113
+ "360p": "360p";
80114
+ "4k": "4k";
80115
+ "720p": "720p";
80116
+ }>>;
79135
80117
  }, z.core.$strict>, z.ZodObject<{
79136
80118
  _option_id: z.ZodLiteral<"vertexai-grok">;
79137
80119
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -79676,6 +80658,8 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
79676
80658
  }, z.core.$strict>, z.ZodObject<{
79677
80659
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
79678
80660
  task: z.ZodOptional<z.ZodEnum<{
80661
+ edit: "edit";
80662
+ extend: "extend";
79679
80663
  image_to_video: "image_to_video";
79680
80664
  reference_to_video: "reference_to_video";
79681
80665
  text_to_video: "text_to_video";
@@ -79685,6 +80669,12 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
79685
80669
  "9:16": "9:16";
79686
80670
  }>>;
79687
80671
  duration_seconds: z.ZodOptional<z.ZodNumber>;
80672
+ resolution: z.ZodOptional<z.ZodEnum<{
80673
+ "1080p": "1080p";
80674
+ "360p": "360p";
80675
+ "4k": "4k";
80676
+ "720p": "720p";
80677
+ }>>;
79688
80678
  }, z.core.$strict>, z.ZodObject<{
79689
80679
  _option_id: z.ZodLiteral<"vertexai-grok">;
79690
80680
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -80230,6 +81220,8 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
80230
81220
  }, z.core.$strict>, z.ZodObject<{
80231
81221
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
80232
81222
  task: z.ZodOptional<z.ZodEnum<{
81223
+ edit: "edit";
81224
+ extend: "extend";
80233
81225
  image_to_video: "image_to_video";
80234
81226
  reference_to_video: "reference_to_video";
80235
81227
  text_to_video: "text_to_video";
@@ -80239,6 +81231,12 @@ declare const DOCUMENT_PROCESSING_SCHEMAS: {
80239
81231
  "9:16": "9:16";
80240
81232
  }>>;
80241
81233
  duration_seconds: z.ZodOptional<z.ZodNumber>;
81234
+ resolution: z.ZodOptional<z.ZodEnum<{
81235
+ "1080p": "1080p";
81236
+ "360p": "360p";
81237
+ "4k": "4k";
81238
+ "720p": "720p";
81239
+ }>>;
80242
81240
  }, z.core.$strict>, z.ZodObject<{
80243
81241
  _option_id: z.ZodLiteral<"vertexai-grok">;
80244
81242
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -81896,6 +82894,8 @@ declare const CONTENT_OBJECT_SCHEMAS: {
81896
82894
  }, z.core.$strict>, z.ZodObject<{
81897
82895
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
81898
82896
  task: z.ZodOptional<z.ZodEnum<{
82897
+ edit: "edit";
82898
+ extend: "extend";
81899
82899
  image_to_video: "image_to_video";
81900
82900
  reference_to_video: "reference_to_video";
81901
82901
  text_to_video: "text_to_video";
@@ -81905,6 +82905,12 @@ declare const CONTENT_OBJECT_SCHEMAS: {
81905
82905
  "9:16": "9:16";
81906
82906
  }>>;
81907
82907
  duration_seconds: z.ZodOptional<z.ZodNumber>;
82908
+ resolution: z.ZodOptional<z.ZodEnum<{
82909
+ "1080p": "1080p";
82910
+ "360p": "360p";
82911
+ "4k": "4k";
82912
+ "720p": "720p";
82913
+ }>>;
81908
82914
  }, z.core.$strict>, z.ZodObject<{
81909
82915
  _option_id: z.ZodLiteral<"vertexai-grok">;
81910
82916
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -82460,6 +83466,8 @@ declare const CONTENT_OBJECT_SCHEMAS: {
82460
83466
  }, z.core.$strict>, z.ZodObject<{
82461
83467
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
82462
83468
  task: z.ZodOptional<z.ZodEnum<{
83469
+ edit: "edit";
83470
+ extend: "extend";
82463
83471
  image_to_video: "image_to_video";
82464
83472
  reference_to_video: "reference_to_video";
82465
83473
  text_to_video: "text_to_video";
@@ -82469,6 +83477,12 @@ declare const CONTENT_OBJECT_SCHEMAS: {
82469
83477
  "9:16": "9:16";
82470
83478
  }>>;
82471
83479
  duration_seconds: z.ZodOptional<z.ZodNumber>;
83480
+ resolution: z.ZodOptional<z.ZodEnum<{
83481
+ "1080p": "1080p";
83482
+ "360p": "360p";
83483
+ "4k": "4k";
83484
+ "720p": "720p";
83485
+ }>>;
82472
83486
  }, z.core.$strict>, z.ZodObject<{
82473
83487
  _option_id: z.ZodLiteral<"vertexai-grok">;
82474
83488
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -83060,6 +84074,8 @@ declare const CONTENT_OBJECT_SCHEMAS: {
83060
84074
  }, z.core.$strict>, z.ZodObject<{
83061
84075
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
83062
84076
  task: z.ZodOptional<z.ZodEnum<{
84077
+ edit: "edit";
84078
+ extend: "extend";
83063
84079
  image_to_video: "image_to_video";
83064
84080
  reference_to_video: "reference_to_video";
83065
84081
  text_to_video: "text_to_video";
@@ -83069,6 +84085,12 @@ declare const CONTENT_OBJECT_SCHEMAS: {
83069
84085
  "9:16": "9:16";
83070
84086
  }>>;
83071
84087
  duration_seconds: z.ZodOptional<z.ZodNumber>;
84088
+ resolution: z.ZodOptional<z.ZodEnum<{
84089
+ "1080p": "1080p";
84090
+ "360p": "360p";
84091
+ "4k": "4k";
84092
+ "720p": "720p";
84093
+ }>>;
83072
84094
  }, z.core.$strict>, z.ZodObject<{
83073
84095
  _option_id: z.ZodLiteral<"vertexai-grok">;
83074
84096
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -83613,6 +84635,8 @@ declare const CONTENT_OBJECT_SCHEMAS: {
83613
84635
  }, z.core.$strict>, z.ZodObject<{
83614
84636
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
83615
84637
  task: z.ZodOptional<z.ZodEnum<{
84638
+ edit: "edit";
84639
+ extend: "extend";
83616
84640
  image_to_video: "image_to_video";
83617
84641
  reference_to_video: "reference_to_video";
83618
84642
  text_to_video: "text_to_video";
@@ -83622,6 +84646,12 @@ declare const CONTENT_OBJECT_SCHEMAS: {
83622
84646
  "9:16": "9:16";
83623
84647
  }>>;
83624
84648
  duration_seconds: z.ZodOptional<z.ZodNumber>;
84649
+ resolution: z.ZodOptional<z.ZodEnum<{
84650
+ "1080p": "1080p";
84651
+ "360p": "360p";
84652
+ "4k": "4k";
84653
+ "720p": "720p";
84654
+ }>>;
83625
84655
  }, z.core.$strict>, z.ZodObject<{
83626
84656
  _option_id: z.ZodLiteral<"vertexai-grok">;
83627
84657
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -84171,6 +85201,8 @@ declare const CONTENT_OBJECT_SCHEMAS: {
84171
85201
  }, z.core.$strict>, z.ZodObject<{
84172
85202
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
84173
85203
  task: z.ZodOptional<z.ZodEnum<{
85204
+ edit: "edit";
85205
+ extend: "extend";
84174
85206
  image_to_video: "image_to_video";
84175
85207
  reference_to_video: "reference_to_video";
84176
85208
  text_to_video: "text_to_video";
@@ -84180,6 +85212,12 @@ declare const CONTENT_OBJECT_SCHEMAS: {
84180
85212
  "9:16": "9:16";
84181
85213
  }>>;
84182
85214
  duration_seconds: z.ZodOptional<z.ZodNumber>;
85215
+ resolution: z.ZodOptional<z.ZodEnum<{
85216
+ "1080p": "1080p";
85217
+ "360p": "360p";
85218
+ "4k": "4k";
85219
+ "720p": "720p";
85220
+ }>>;
84183
85221
  }, z.core.$strict>, z.ZodObject<{
84184
85222
  _option_id: z.ZodLiteral<"vertexai-grok">;
84185
85223
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -86272,6 +87310,8 @@ declare const EVENT_SUBSCRIPTION_SCHEMAS: {
86272
87310
  }, z.core.$strict>, z.ZodObject<{
86273
87311
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
86274
87312
  task: z.ZodOptional<z.ZodEnum<{
87313
+ edit: "edit";
87314
+ extend: "extend";
86275
87315
  image_to_video: "image_to_video";
86276
87316
  reference_to_video: "reference_to_video";
86277
87317
  text_to_video: "text_to_video";
@@ -86281,6 +87321,12 @@ declare const EVENT_SUBSCRIPTION_SCHEMAS: {
86281
87321
  "9:16": "9:16";
86282
87322
  }>>;
86283
87323
  duration_seconds: z.ZodOptional<z.ZodNumber>;
87324
+ resolution: z.ZodOptional<z.ZodEnum<{
87325
+ "1080p": "1080p";
87326
+ "360p": "360p";
87327
+ "4k": "4k";
87328
+ "720p": "720p";
87329
+ }>>;
86284
87330
  }, z.core.$strict>, z.ZodObject<{
86285
87331
  _option_id: z.ZodLiteral<"vertexai-grok">;
86286
87332
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -86832,6 +87878,8 @@ declare const EVENT_SUBSCRIPTION_SCHEMAS: {
86832
87878
  }, z.core.$strict>, z.ZodObject<{
86833
87879
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
86834
87880
  task: z.ZodOptional<z.ZodEnum<{
87881
+ edit: "edit";
87882
+ extend: "extend";
86835
87883
  image_to_video: "image_to_video";
86836
87884
  reference_to_video: "reference_to_video";
86837
87885
  text_to_video: "text_to_video";
@@ -86841,6 +87889,12 @@ declare const EVENT_SUBSCRIPTION_SCHEMAS: {
86841
87889
  "9:16": "9:16";
86842
87890
  }>>;
86843
87891
  duration_seconds: z.ZodOptional<z.ZodNumber>;
87892
+ resolution: z.ZodOptional<z.ZodEnum<{
87893
+ "1080p": "1080p";
87894
+ "360p": "360p";
87895
+ "4k": "4k";
87896
+ "720p": "720p";
87897
+ }>>;
86844
87898
  }, z.core.$strict>, z.ZodObject<{
86845
87899
  _option_id: z.ZodLiteral<"vertexai-grok">;
86846
87900
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -88959,6 +90013,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
88959
90013
  }, z.core.$strict>, z.ZodObject<{
88960
90014
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
88961
90015
  task: z.ZodOptional<z.ZodEnum<{
90016
+ edit: "edit";
90017
+ extend: "extend";
88962
90018
  image_to_video: "image_to_video";
88963
90019
  reference_to_video: "reference_to_video";
88964
90020
  text_to_video: "text_to_video";
@@ -88968,6 +90024,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
88968
90024
  "9:16": "9:16";
88969
90025
  }>>;
88970
90026
  duration_seconds: z.ZodOptional<z.ZodNumber>;
90027
+ resolution: z.ZodOptional<z.ZodEnum<{
90028
+ "1080p": "1080p";
90029
+ "360p": "360p";
90030
+ "4k": "4k";
90031
+ "720p": "720p";
90032
+ }>>;
88971
90033
  }, z.core.$strict>, z.ZodObject<{
88972
90034
  _option_id: z.ZodLiteral<"vertexai-grok">;
88973
90035
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -89516,6 +90578,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
89516
90578
  }, z.core.$strict>, z.ZodObject<{
89517
90579
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
89518
90580
  task: z.ZodOptional<z.ZodEnum<{
90581
+ edit: "edit";
90582
+ extend: "extend";
89519
90583
  image_to_video: "image_to_video";
89520
90584
  reference_to_video: "reference_to_video";
89521
90585
  text_to_video: "text_to_video";
@@ -89525,6 +90589,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
89525
90589
  "9:16": "9:16";
89526
90590
  }>>;
89527
90591
  duration_seconds: z.ZodOptional<z.ZodNumber>;
90592
+ resolution: z.ZodOptional<z.ZodEnum<{
90593
+ "1080p": "1080p";
90594
+ "360p": "360p";
90595
+ "4k": "4k";
90596
+ "720p": "720p";
90597
+ }>>;
89528
90598
  }, z.core.$strict>, z.ZodObject<{
89529
90599
  _option_id: z.ZodLiteral<"vertexai-grok">;
89530
90600
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -90184,6 +91254,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
90184
91254
  }, z.core.$strict>, z.ZodObject<{
90185
91255
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
90186
91256
  task: z.ZodOptional<z.ZodEnum<{
91257
+ edit: "edit";
91258
+ extend: "extend";
90187
91259
  image_to_video: "image_to_video";
90188
91260
  reference_to_video: "reference_to_video";
90189
91261
  text_to_video: "text_to_video";
@@ -90193,6 +91265,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
90193
91265
  "9:16": "9:16";
90194
91266
  }>>;
90195
91267
  duration_seconds: z.ZodOptional<z.ZodNumber>;
91268
+ resolution: z.ZodOptional<z.ZodEnum<{
91269
+ "1080p": "1080p";
91270
+ "360p": "360p";
91271
+ "4k": "4k";
91272
+ "720p": "720p";
91273
+ }>>;
90196
91274
  }, z.core.$strict>, z.ZodObject<{
90197
91275
  _option_id: z.ZodLiteral<"vertexai-grok">;
90198
91276
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -90813,6 +91891,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
90813
91891
  }, z.core.$strict>, z.ZodObject<{
90814
91892
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
90815
91893
  task: z.ZodOptional<z.ZodEnum<{
91894
+ edit: "edit";
91895
+ extend: "extend";
90816
91896
  image_to_video: "image_to_video";
90817
91897
  reference_to_video: "reference_to_video";
90818
91898
  text_to_video: "text_to_video";
@@ -90822,6 +91902,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
90822
91902
  "9:16": "9:16";
90823
91903
  }>>;
90824
91904
  duration_seconds: z.ZodOptional<z.ZodNumber>;
91905
+ resolution: z.ZodOptional<z.ZodEnum<{
91906
+ "1080p": "1080p";
91907
+ "360p": "360p";
91908
+ "4k": "4k";
91909
+ "720p": "720p";
91910
+ }>>;
90825
91911
  }, z.core.$strict>, z.ZodObject<{
90826
91912
  _option_id: z.ZodLiteral<"vertexai-grok">;
90827
91913
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -91373,6 +92459,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
91373
92459
  }, z.core.$strict>, z.ZodObject<{
91374
92460
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
91375
92461
  task: z.ZodOptional<z.ZodEnum<{
92462
+ edit: "edit";
92463
+ extend: "extend";
91376
92464
  image_to_video: "image_to_video";
91377
92465
  reference_to_video: "reference_to_video";
91378
92466
  text_to_video: "text_to_video";
@@ -91382,6 +92470,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
91382
92470
  "9:16": "9:16";
91383
92471
  }>>;
91384
92472
  duration_seconds: z.ZodOptional<z.ZodNumber>;
92473
+ resolution: z.ZodOptional<z.ZodEnum<{
92474
+ "1080p": "1080p";
92475
+ "360p": "360p";
92476
+ "4k": "4k";
92477
+ "720p": "720p";
92478
+ }>>;
91385
92479
  }, z.core.$strict>, z.ZodObject<{
91386
92480
  _option_id: z.ZodLiteral<"vertexai-grok">;
91387
92481
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -92030,6 +93124,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
92030
93124
  }, z.core.$strict>, z.ZodObject<{
92031
93125
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
92032
93126
  task: z.ZodOptional<z.ZodEnum<{
93127
+ edit: "edit";
93128
+ extend: "extend";
92033
93129
  image_to_video: "image_to_video";
92034
93130
  reference_to_video: "reference_to_video";
92035
93131
  text_to_video: "text_to_video";
@@ -92039,6 +93135,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
92039
93135
  "9:16": "9:16";
92040
93136
  }>>;
92041
93137
  duration_seconds: z.ZodOptional<z.ZodNumber>;
93138
+ resolution: z.ZodOptional<z.ZodEnum<{
93139
+ "1080p": "1080p";
93140
+ "360p": "360p";
93141
+ "4k": "4k";
93142
+ "720p": "720p";
93143
+ }>>;
92042
93144
  }, z.core.$strict>, z.ZodObject<{
92043
93145
  _option_id: z.ZodLiteral<"vertexai-grok">;
92044
93146
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -92590,6 +93692,8 @@ declare const EVENT_DELIVERY_SCHEMAS: {
92590
93692
  }, z.core.$strict>, z.ZodObject<{
92591
93693
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
92592
93694
  task: z.ZodOptional<z.ZodEnum<{
93695
+ edit: "edit";
93696
+ extend: "extend";
92593
93697
  image_to_video: "image_to_video";
92594
93698
  reference_to_video: "reference_to_video";
92595
93699
  text_to_video: "text_to_video";
@@ -92599,6 +93703,12 @@ declare const EVENT_DELIVERY_SCHEMAS: {
92599
93703
  "9:16": "9:16";
92600
93704
  }>>;
92601
93705
  duration_seconds: z.ZodOptional<z.ZodNumber>;
93706
+ resolution: z.ZodOptional<z.ZodEnum<{
93707
+ "1080p": "1080p";
93708
+ "360p": "360p";
93709
+ "4k": "4k";
93710
+ "720p": "720p";
93711
+ }>>;
92602
93712
  }, z.core.$strict>, z.ZodObject<{
92603
93713
  _option_id: z.ZodLiteral<"vertexai-grok">;
92604
93714
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -93963,6 +95073,8 @@ declare const AGENT_RUN_SCHEMAS: {
93963
95073
  }, z.core.$strict>, z.ZodObject<{
93964
95074
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
93965
95075
  task: z.ZodOptional<z.ZodEnum<{
95076
+ edit: "edit";
95077
+ extend: "extend";
93966
95078
  image_to_video: "image_to_video";
93967
95079
  reference_to_video: "reference_to_video";
93968
95080
  text_to_video: "text_to_video";
@@ -93972,6 +95084,12 @@ declare const AGENT_RUN_SCHEMAS: {
93972
95084
  "9:16": "9:16";
93973
95085
  }>>;
93974
95086
  duration_seconds: z.ZodOptional<z.ZodNumber>;
95087
+ resolution: z.ZodOptional<z.ZodEnum<{
95088
+ "1080p": "1080p";
95089
+ "360p": "360p";
95090
+ "4k": "4k";
95091
+ "720p": "720p";
95092
+ }>>;
93975
95093
  }, z.core.$strict>, z.ZodObject<{
93976
95094
  _option_id: z.ZodLiteral<"vertexai-grok">;
93977
95095
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -94723,6 +95841,8 @@ declare const AGENT_RUN_SCHEMAS: {
94723
95841
  }, z.core.$strict>, z.ZodObject<{
94724
95842
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
94725
95843
  task: z.ZodOptional<z.ZodEnum<{
95844
+ edit: "edit";
95845
+ extend: "extend";
94726
95846
  image_to_video: "image_to_video";
94727
95847
  reference_to_video: "reference_to_video";
94728
95848
  text_to_video: "text_to_video";
@@ -94732,6 +95852,12 @@ declare const AGENT_RUN_SCHEMAS: {
94732
95852
  "9:16": "9:16";
94733
95853
  }>>;
94734
95854
  duration_seconds: z.ZodOptional<z.ZodNumber>;
95855
+ resolution: z.ZodOptional<z.ZodEnum<{
95856
+ "1080p": "1080p";
95857
+ "360p": "360p";
95858
+ "4k": "4k";
95859
+ "720p": "720p";
95860
+ }>>;
94735
95861
  }, z.core.$strict>, z.ZodObject<{
94736
95862
  _option_id: z.ZodLiteral<"vertexai-grok">;
94737
95863
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -95483,6 +96609,8 @@ declare const AGENT_RUN_SCHEMAS: {
95483
96609
  }, z.core.$strict>, z.ZodObject<{
95484
96610
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
95485
96611
  task: z.ZodOptional<z.ZodEnum<{
96612
+ edit: "edit";
96613
+ extend: "extend";
95486
96614
  image_to_video: "image_to_video";
95487
96615
  reference_to_video: "reference_to_video";
95488
96616
  text_to_video: "text_to_video";
@@ -95492,6 +96620,12 @@ declare const AGENT_RUN_SCHEMAS: {
95492
96620
  "9:16": "9:16";
95493
96621
  }>>;
95494
96622
  duration_seconds: z.ZodOptional<z.ZodNumber>;
96623
+ resolution: z.ZodOptional<z.ZodEnum<{
96624
+ "1080p": "1080p";
96625
+ "360p": "360p";
96626
+ "4k": "4k";
96627
+ "720p": "720p";
96628
+ }>>;
95495
96629
  }, z.core.$strict>, z.ZodObject<{
95496
96630
  _option_id: z.ZodLiteral<"vertexai-grok">;
95497
96631
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -96220,6 +97354,8 @@ declare const AGENT_RUN_SCHEMAS: {
96220
97354
  }, z.core.$strict>, z.ZodObject<{
96221
97355
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
96222
97356
  task: z.ZodOptional<z.ZodEnum<{
97357
+ edit: "edit";
97358
+ extend: "extend";
96223
97359
  image_to_video: "image_to_video";
96224
97360
  reference_to_video: "reference_to_video";
96225
97361
  text_to_video: "text_to_video";
@@ -96229,6 +97365,12 @@ declare const AGENT_RUN_SCHEMAS: {
96229
97365
  "9:16": "9:16";
96230
97366
  }>>;
96231
97367
  duration_seconds: z.ZodOptional<z.ZodNumber>;
97368
+ resolution: z.ZodOptional<z.ZodEnum<{
97369
+ "1080p": "1080p";
97370
+ "360p": "360p";
97371
+ "4k": "4k";
97372
+ "720p": "720p";
97373
+ }>>;
96232
97374
  }, z.core.$strict>, z.ZodObject<{
96233
97375
  _option_id: z.ZodLiteral<"vertexai-grok">;
96234
97376
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -97305,6 +98447,8 @@ declare const AGENT_RUN_SCHEMAS: {
97305
98447
  }, z.core.$strict>, z.ZodObject<{
97306
98448
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
97307
98449
  task: z.ZodOptional<z.ZodEnum<{
98450
+ edit: "edit";
98451
+ extend: "extend";
97308
98452
  image_to_video: "image_to_video";
97309
98453
  reference_to_video: "reference_to_video";
97310
98454
  text_to_video: "text_to_video";
@@ -97314,6 +98458,12 @@ declare const AGENT_RUN_SCHEMAS: {
97314
98458
  "9:16": "9:16";
97315
98459
  }>>;
97316
98460
  duration_seconds: z.ZodOptional<z.ZodNumber>;
98461
+ resolution: z.ZodOptional<z.ZodEnum<{
98462
+ "1080p": "1080p";
98463
+ "360p": "360p";
98464
+ "4k": "4k";
98465
+ "720p": "720p";
98466
+ }>>;
97317
98467
  }, z.core.$strict>, z.ZodObject<{
97318
98468
  _option_id: z.ZodLiteral<"vertexai-grok">;
97319
98469
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -99312,6 +100462,8 @@ declare const WORKFLOW_RUN_SCHEMAS: {
99312
100462
  }, z.core.$strict>, z.ZodObject<{
99313
100463
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
99314
100464
  task: z.ZodOptional<z.ZodEnum<{
100465
+ edit: "edit";
100466
+ extend: "extend";
99315
100467
  image_to_video: "image_to_video";
99316
100468
  reference_to_video: "reference_to_video";
99317
100469
  text_to_video: "text_to_video";
@@ -99321,6 +100473,12 @@ declare const WORKFLOW_RUN_SCHEMAS: {
99321
100473
  "9:16": "9:16";
99322
100474
  }>>;
99323
100475
  duration_seconds: z.ZodOptional<z.ZodNumber>;
100476
+ resolution: z.ZodOptional<z.ZodEnum<{
100477
+ "1080p": "1080p";
100478
+ "360p": "360p";
100479
+ "4k": "4k";
100480
+ "720p": "720p";
100481
+ }>>;
99324
100482
  }, z.core.$strict>, z.ZodObject<{
99325
100483
  _option_id: z.ZodLiteral<"vertexai-grok">;
99326
100484
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -99898,6 +101056,8 @@ declare const WORKFLOW_RUN_SCHEMAS: {
99898
101056
  }, z.core.$strict>, z.ZodObject<{
99899
101057
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
99900
101058
  task: z.ZodOptional<z.ZodEnum<{
101059
+ edit: "edit";
101060
+ extend: "extend";
99901
101061
  image_to_video: "image_to_video";
99902
101062
  reference_to_video: "reference_to_video";
99903
101063
  text_to_video: "text_to_video";
@@ -99907,6 +101067,12 @@ declare const WORKFLOW_RUN_SCHEMAS: {
99907
101067
  "9:16": "9:16";
99908
101068
  }>>;
99909
101069
  duration_seconds: z.ZodOptional<z.ZodNumber>;
101070
+ resolution: z.ZodOptional<z.ZodEnum<{
101071
+ "1080p": "1080p";
101072
+ "360p": "360p";
101073
+ "4k": "4k";
101074
+ "720p": "720p";
101075
+ }>>;
99910
101076
  }, z.core.$strict>, z.ZodObject<{
99911
101077
  _option_id: z.ZodLiteral<"vertexai-grok">;
99912
101078
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -108462,6 +109628,7 @@ declare const APP_LIFECYCLE_SCHEMAS: {
108462
109628
  examples: "examples";
108463
109629
  service: "service";
108464
109630
  }>>>;
109631
+ appgen_package_spec: z.ZodOptional<z.ZodString>;
108465
109632
  create_version: z.ZodOptional<z.ZodBoolean>;
108466
109633
  }, z.core.$strict>;
108467
109634
  readonly StartAppDevelopmentTaskRequest: z.ZodObject<{
@@ -111547,6 +112714,8 @@ declare const APP_MANIFEST_SCHEMAS: {
111547
112714
  }, z.core.$strict>, z.ZodObject<{
111548
112715
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
111549
112716
  task: z.ZodOptional<z.ZodEnum<{
112717
+ edit: "edit";
112718
+ extend: "extend";
111550
112719
  image_to_video: "image_to_video";
111551
112720
  reference_to_video: "reference_to_video";
111552
112721
  text_to_video: "text_to_video";
@@ -111556,6 +112725,12 @@ declare const APP_MANIFEST_SCHEMAS: {
111556
112725
  "9:16": "9:16";
111557
112726
  }>>;
111558
112727
  duration_seconds: z.ZodOptional<z.ZodNumber>;
112728
+ resolution: z.ZodOptional<z.ZodEnum<{
112729
+ "1080p": "1080p";
112730
+ "360p": "360p";
112731
+ "4k": "4k";
112732
+ "720p": "720p";
112733
+ }>>;
111559
112734
  }, z.core.$strict>, z.ZodObject<{
111560
112735
  _option_id: z.ZodLiteral<"vertexai-grok">;
111561
112736
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -112111,6 +113286,8 @@ declare const APP_MANIFEST_SCHEMAS: {
112111
113286
  }, z.core.$strict>, z.ZodObject<{
112112
113287
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
112113
113288
  task: z.ZodOptional<z.ZodEnum<{
113289
+ edit: "edit";
113290
+ extend: "extend";
112114
113291
  image_to_video: "image_to_video";
112115
113292
  reference_to_video: "reference_to_video";
112116
113293
  text_to_video: "text_to_video";
@@ -112120,6 +113297,12 @@ declare const APP_MANIFEST_SCHEMAS: {
112120
113297
  "9:16": "9:16";
112121
113298
  }>>;
112122
113299
  duration_seconds: z.ZodOptional<z.ZodNumber>;
113300
+ resolution: z.ZodOptional<z.ZodEnum<{
113301
+ "1080p": "1080p";
113302
+ "360p": "360p";
113303
+ "4k": "4k";
113304
+ "720p": "720p";
113305
+ }>>;
112123
113306
  }, z.core.$strict>, z.ZodObject<{
112124
113307
  _option_id: z.ZodLiteral<"vertexai-grok">;
112125
113308
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -112711,6 +113894,8 @@ declare const APP_MANIFEST_SCHEMAS: {
112711
113894
  }, z.core.$strict>, z.ZodObject<{
112712
113895
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
112713
113896
  task: z.ZodOptional<z.ZodEnum<{
113897
+ edit: "edit";
113898
+ extend: "extend";
112714
113899
  image_to_video: "image_to_video";
112715
113900
  reference_to_video: "reference_to_video";
112716
113901
  text_to_video: "text_to_video";
@@ -112720,6 +113905,12 @@ declare const APP_MANIFEST_SCHEMAS: {
112720
113905
  "9:16": "9:16";
112721
113906
  }>>;
112722
113907
  duration_seconds: z.ZodOptional<z.ZodNumber>;
113908
+ resolution: z.ZodOptional<z.ZodEnum<{
113909
+ "1080p": "1080p";
113910
+ "360p": "360p";
113911
+ "4k": "4k";
113912
+ "720p": "720p";
113913
+ }>>;
112723
113914
  }, z.core.$strict>, z.ZodObject<{
112724
113915
  _option_id: z.ZodLiteral<"vertexai-grok">;
112725
113916
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -113264,6 +114455,8 @@ declare const APP_MANIFEST_SCHEMAS: {
113264
114455
  }, z.core.$strict>, z.ZodObject<{
113265
114456
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
113266
114457
  task: z.ZodOptional<z.ZodEnum<{
114458
+ edit: "edit";
114459
+ extend: "extend";
113267
114460
  image_to_video: "image_to_video";
113268
114461
  reference_to_video: "reference_to_video";
113269
114462
  text_to_video: "text_to_video";
@@ -113273,6 +114466,12 @@ declare const APP_MANIFEST_SCHEMAS: {
113273
114466
  "9:16": "9:16";
113274
114467
  }>>;
113275
114468
  duration_seconds: z.ZodOptional<z.ZodNumber>;
114469
+ resolution: z.ZodOptional<z.ZodEnum<{
114470
+ "1080p": "1080p";
114471
+ "360p": "360p";
114472
+ "4k": "4k";
114473
+ "720p": "720p";
114474
+ }>>;
113276
114475
  }, z.core.$strict>, z.ZodObject<{
113277
114476
  _option_id: z.ZodLiteral<"vertexai-grok">;
113278
114477
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -113822,6 +115021,8 @@ declare const APP_MANIFEST_SCHEMAS: {
113822
115021
  }, z.core.$strict>, z.ZodObject<{
113823
115022
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
113824
115023
  task: z.ZodOptional<z.ZodEnum<{
115024
+ edit: "edit";
115025
+ extend: "extend";
113825
115026
  image_to_video: "image_to_video";
113826
115027
  reference_to_video: "reference_to_video";
113827
115028
  text_to_video: "text_to_video";
@@ -113831,6 +115032,12 @@ declare const APP_MANIFEST_SCHEMAS: {
113831
115032
  "9:16": "9:16";
113832
115033
  }>>;
113833
115034
  duration_seconds: z.ZodOptional<z.ZodNumber>;
115035
+ resolution: z.ZodOptional<z.ZodEnum<{
115036
+ "1080p": "1080p";
115037
+ "360p": "360p";
115038
+ "4k": "4k";
115039
+ "720p": "720p";
115040
+ }>>;
113834
115041
  }, z.core.$strict>, z.ZodObject<{
113835
115042
  _option_id: z.ZodLiteral<"vertexai-grok">;
113836
115043
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -115129,6 +116336,8 @@ declare const APP_MANIFEST_SCHEMAS: {
115129
116336
  }, z.core.$strict>, z.ZodObject<{
115130
116337
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
115131
116338
  task: z.ZodOptional<z.ZodEnum<{
116339
+ edit: "edit";
116340
+ extend: "extend";
115132
116341
  image_to_video: "image_to_video";
115133
116342
  reference_to_video: "reference_to_video";
115134
116343
  text_to_video: "text_to_video";
@@ -115138,6 +116347,12 @@ declare const APP_MANIFEST_SCHEMAS: {
115138
116347
  "9:16": "9:16";
115139
116348
  }>>;
115140
116349
  duration_seconds: z.ZodOptional<z.ZodNumber>;
116350
+ resolution: z.ZodOptional<z.ZodEnum<{
116351
+ "1080p": "1080p";
116352
+ "360p": "360p";
116353
+ "4k": "4k";
116354
+ "720p": "720p";
116355
+ }>>;
115141
116356
  }, z.core.$strict>, z.ZodObject<{
115142
116357
  _option_id: z.ZodLiteral<"vertexai-grok">;
115143
116358
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -115689,6 +116904,8 @@ declare const APP_MANIFEST_SCHEMAS: {
115689
116904
  }, z.core.$strict>, z.ZodObject<{
115690
116905
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
115691
116906
  task: z.ZodOptional<z.ZodEnum<{
116907
+ edit: "edit";
116908
+ extend: "extend";
115692
116909
  image_to_video: "image_to_video";
115693
116910
  reference_to_video: "reference_to_video";
115694
116911
  text_to_video: "text_to_video";
@@ -115698,6 +116915,12 @@ declare const APP_MANIFEST_SCHEMAS: {
115698
116915
  "9:16": "9:16";
115699
116916
  }>>;
115700
116917
  duration_seconds: z.ZodOptional<z.ZodNumber>;
116918
+ resolution: z.ZodOptional<z.ZodEnum<{
116919
+ "1080p": "1080p";
116920
+ "360p": "360p";
116921
+ "4k": "4k";
116922
+ "720p": "720p";
116923
+ }>>;
115701
116924
  }, z.core.$strict>, z.ZodObject<{
115702
116925
  _option_id: z.ZodLiteral<"vertexai-grok">;
115703
116926
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -116909,6 +118132,8 @@ declare const APP_INSTALLATION_SCHEMAS: {
116909
118132
  }, z.core.$strict>, z.ZodObject<{
116910
118133
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
116911
118134
  task: z.ZodOptional<z.ZodEnum<{
118135
+ edit: "edit";
118136
+ extend: "extend";
116912
118137
  image_to_video: "image_to_video";
116913
118138
  reference_to_video: "reference_to_video";
116914
118139
  text_to_video: "text_to_video";
@@ -116918,6 +118143,12 @@ declare const APP_INSTALLATION_SCHEMAS: {
116918
118143
  "9:16": "9:16";
116919
118144
  }>>;
116920
118145
  duration_seconds: z.ZodOptional<z.ZodNumber>;
118146
+ resolution: z.ZodOptional<z.ZodEnum<{
118147
+ "1080p": "1080p";
118148
+ "360p": "360p";
118149
+ "4k": "4k";
118150
+ "720p": "720p";
118151
+ }>>;
116921
118152
  }, z.core.$strict>, z.ZodObject<{
116922
118153
  _option_id: z.ZodLiteral<"vertexai-grok">;
116923
118154
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -117473,6 +118704,8 @@ declare const APP_INSTALLATION_SCHEMAS: {
117473
118704
  }, z.core.$strict>, z.ZodObject<{
117474
118705
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
117475
118706
  task: z.ZodOptional<z.ZodEnum<{
118707
+ edit: "edit";
118708
+ extend: "extend";
117476
118709
  image_to_video: "image_to_video";
117477
118710
  reference_to_video: "reference_to_video";
117478
118711
  text_to_video: "text_to_video";
@@ -117482,6 +118715,12 @@ declare const APP_INSTALLATION_SCHEMAS: {
117482
118715
  "9:16": "9:16";
117483
118716
  }>>;
117484
118717
  duration_seconds: z.ZodOptional<z.ZodNumber>;
118718
+ resolution: z.ZodOptional<z.ZodEnum<{
118719
+ "1080p": "1080p";
118720
+ "360p": "360p";
118721
+ "4k": "4k";
118722
+ "720p": "720p";
118723
+ }>>;
117485
118724
  }, z.core.$strict>, z.ZodObject<{
117486
118725
  _option_id: z.ZodLiteral<"vertexai-grok">;
117487
118726
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -118073,6 +119312,8 @@ declare const APP_INSTALLATION_SCHEMAS: {
118073
119312
  }, z.core.$strict>, z.ZodObject<{
118074
119313
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
118075
119314
  task: z.ZodOptional<z.ZodEnum<{
119315
+ edit: "edit";
119316
+ extend: "extend";
118076
119317
  image_to_video: "image_to_video";
118077
119318
  reference_to_video: "reference_to_video";
118078
119319
  text_to_video: "text_to_video";
@@ -118082,6 +119323,12 @@ declare const APP_INSTALLATION_SCHEMAS: {
118082
119323
  "9:16": "9:16";
118083
119324
  }>>;
118084
119325
  duration_seconds: z.ZodOptional<z.ZodNumber>;
119326
+ resolution: z.ZodOptional<z.ZodEnum<{
119327
+ "1080p": "1080p";
119328
+ "360p": "360p";
119329
+ "4k": "4k";
119330
+ "720p": "720p";
119331
+ }>>;
118085
119332
  }, z.core.$strict>, z.ZodObject<{
118086
119333
  _option_id: z.ZodLiteral<"vertexai-grok">;
118087
119334
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -118626,6 +119873,8 @@ declare const APP_INSTALLATION_SCHEMAS: {
118626
119873
  }, z.core.$strict>, z.ZodObject<{
118627
119874
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
118628
119875
  task: z.ZodOptional<z.ZodEnum<{
119876
+ edit: "edit";
119877
+ extend: "extend";
118629
119878
  image_to_video: "image_to_video";
118630
119879
  reference_to_video: "reference_to_video";
118631
119880
  text_to_video: "text_to_video";
@@ -118635,6 +119884,12 @@ declare const APP_INSTALLATION_SCHEMAS: {
118635
119884
  "9:16": "9:16";
118636
119885
  }>>;
118637
119886
  duration_seconds: z.ZodOptional<z.ZodNumber>;
119887
+ resolution: z.ZodOptional<z.ZodEnum<{
119888
+ "1080p": "1080p";
119889
+ "360p": "360p";
119890
+ "4k": "4k";
119891
+ "720p": "720p";
119892
+ }>>;
118638
119893
  }, z.core.$strict>, z.ZodObject<{
118639
119894
  _option_id: z.ZodLiteral<"vertexai-grok">;
118640
119895
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -119184,6 +120439,8 @@ declare const APP_INSTALLATION_SCHEMAS: {
119184
120439
  }, z.core.$strict>, z.ZodObject<{
119185
120440
  _option_id: z.ZodLiteral<"vertexai-gemini-omni-video">;
119186
120441
  task: z.ZodOptional<z.ZodEnum<{
120442
+ edit: "edit";
120443
+ extend: "extend";
119187
120444
  image_to_video: "image_to_video";
119188
120445
  reference_to_video: "reference_to_video";
119189
120446
  text_to_video: "text_to_video";
@@ -119193,6 +120450,12 @@ declare const APP_INSTALLATION_SCHEMAS: {
119193
120450
  "9:16": "9:16";
119194
120451
  }>>;
119195
120452
  duration_seconds: z.ZodOptional<z.ZodNumber>;
120453
+ resolution: z.ZodOptional<z.ZodEnum<{
120454
+ "1080p": "1080p";
120455
+ "360p": "360p";
120456
+ "4k": "4k";
120457
+ "720p": "720p";
120458
+ }>>;
119196
120459
  }, z.core.$strict>, z.ZodObject<{
119197
120460
  _option_id: z.ZodLiteral<"vertexai-grok">;
119198
120461
  max_tokens: z.ZodOptional<z.ZodNumber>;