@wevion/cli 1.0.2792 → 1.0.2804

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 (2) hide show
  1. package/openapi.json +83 -28
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -118553,12 +118553,12 @@
118553
118553
  "/api/v1/creative-hub/ugc/audio/upload": {
118554
118554
  "post": {
118555
118555
  "operationId": "creativeHubUploadUgcAudio",
118556
- "summary": "Upload an audio track for UGC your-audio mode",
118556
+ "summary": "Upload an audio track to the voiceover library",
118557
118557
  "tags": [
118558
118558
  "creative-hub",
118559
118559
  "creative-generation"
118560
118560
  ],
118561
- "description": "Uploads one MP3 or WAV audio track for the UGC your-audio generation mode and returns the stored URL plus a best-effort duration probe.",
118561
+ "description": "Uploads one MP3 or WAV audio track into the team voiceover library (Voices page) and returns the stored URL plus a best-effort duration probe.",
118562
118562
  "security": [
118563
118563
  {
118564
118564
  "bearerAuth": []
@@ -118752,12 +118752,12 @@
118752
118752
  "/api/v1/creative-hub/ugc/models": {
118753
118753
  "get": {
118754
118754
  "operationId": "creativeHubListUgcModels",
118755
- "summary": "List available UGC avatar/lip-sync models",
118755
+ "summary": "List available UGC avatar/lip-sync models and Marketing Studio generation modes",
118756
118756
  "tags": [
118757
118757
  "creative-hub",
118758
118758
  "creative-generation"
118759
118759
  ],
118760
- "description": "Returns the curated UGC avatar and lip-sync model choices available to the composer.",
118760
+ "description": "Returns the curated UGC avatar/lip-sync model choices and the hardcoded Higgsfield Marketing Studio `mode` catalog (talking head, product review, how-to, unboxing, showcase) available to the composer.",
118761
118761
  "security": [
118762
118762
  {
118763
118763
  "bearerAuth": []
@@ -118774,7 +118774,8 @@
118774
118774
  "schema": {
118775
118775
  "type": "object",
118776
118776
  "required": [
118777
- "items"
118777
+ "items",
118778
+ "marketing_studio_modes"
118778
118779
  ],
118779
118780
  "properties": {
118780
118781
  "items": {
@@ -118809,6 +118810,32 @@
118809
118810
  }
118810
118811
  }
118811
118812
  }
118813
+ },
118814
+ "marketing_studio_modes": {
118815
+ "type": "array",
118816
+ "items": {
118817
+ "type": "object",
118818
+ "required": [
118819
+ "id",
118820
+ "label",
118821
+ "description",
118822
+ "is_default"
118823
+ ],
118824
+ "properties": {
118825
+ "id": {
118826
+ "type": "string"
118827
+ },
118828
+ "label": {
118829
+ "type": "string"
118830
+ },
118831
+ "description": {
118832
+ "type": "string"
118833
+ },
118834
+ "is_default": {
118835
+ "type": "boolean"
118836
+ }
118837
+ }
118838
+ }
118812
118839
  }
118813
118840
  }
118814
118841
  }
@@ -118863,12 +118890,6 @@
118863
118890
  "ai_script"
118864
118891
  ]
118865
118892
  },
118866
- {
118867
- "type": "string",
118868
- "enum": [
118869
- "your_audio"
118870
- ]
118871
- },
118872
118893
  {
118873
118894
  "type": "string",
118874
118895
  "enum": [
@@ -118907,9 +118928,6 @@
118907
118928
  "maxLength": 100,
118908
118929
  "type": "string"
118909
118930
  },
118910
- "voice_id": {
118911
- "type": "string"
118912
- },
118913
118931
  "product_id": {
118914
118932
  "type": "string"
118915
118933
  },
@@ -118924,9 +118942,6 @@
118924
118942
  "hook_key": {
118925
118943
  "type": "string"
118926
118944
  },
118927
- "audio_url": {
118928
- "type": "string"
118929
- },
118930
118945
  "product_image_url": {
118931
118946
  "type": "string"
118932
118947
  },
@@ -118991,6 +119006,12 @@
118991
119006
  },
118992
119007
  "resolution": {
118993
119008
  "anyOf": [
119009
+ {
119010
+ "type": "string",
119011
+ "enum": [
119012
+ "480p"
119013
+ ]
119014
+ },
118994
119015
  {
118995
119016
  "type": "string",
118996
119017
  "enum": [
@@ -119013,8 +119034,42 @@
119013
119034
  },
119014
119035
  "duration_seconds": {
119015
119036
  "minimum": 3,
119016
- "maximum": 60,
119037
+ "maximum": 15,
119017
119038
  "type": "integer"
119039
+ },
119040
+ "marketing_studio_mode": {
119041
+ "anyOf": [
119042
+ {
119043
+ "type": "string",
119044
+ "enum": [
119045
+ "ugc"
119046
+ ]
119047
+ },
119048
+ {
119049
+ "type": "string",
119050
+ "enum": [
119051
+ "product_review"
119052
+ ]
119053
+ },
119054
+ {
119055
+ "type": "string",
119056
+ "enum": [
119057
+ "ugc_how_to"
119058
+ ]
119059
+ },
119060
+ {
119061
+ "type": "string",
119062
+ "enum": [
119063
+ "ugc_unboxing"
119064
+ ]
119065
+ },
119066
+ {
119067
+ "type": "string",
119068
+ "enum": [
119069
+ "product_showcase"
119070
+ ]
119071
+ }
119072
+ ]
119018
119073
  }
119019
119074
  }
119020
119075
  }
@@ -119251,12 +119306,6 @@
119251
119306
  "ai_script"
119252
119307
  ]
119253
119308
  },
119254
- {
119255
- "type": "string",
119256
- "enum": [
119257
- "your_audio"
119258
- ]
119259
- },
119260
119309
  {
119261
119310
  "type": "string",
119262
119311
  "enum": [
@@ -119267,11 +119316,17 @@
119267
119316
  },
119268
119317
  "duration_seconds": {
119269
119318
  "minimum": 3,
119270
- "maximum": 60,
119319
+ "maximum": 15,
119271
119320
  "type": "integer"
119272
119321
  },
119273
119322
  "resolution": {
119274
119323
  "anyOf": [
119324
+ {
119325
+ "type": "string",
119326
+ "enum": [
119327
+ "480p"
119328
+ ]
119329
+ },
119275
119330
  {
119276
119331
  "type": "string",
119277
119332
  "enum": [
@@ -120353,7 +120408,7 @@
120353
120408
  {
120354
120409
  "type": "string",
120355
120410
  "enum": [
120356
- "kling_2_6"
120411
+ "kling_3_0"
120357
120412
  ]
120358
120413
  },
120359
120414
  {
@@ -120905,7 +120960,7 @@
120905
120960
  {
120906
120961
  "type": "string",
120907
120962
  "enum": [
120908
- "kling_2_6"
120963
+ "kling_3_0"
120909
120964
  ]
120910
120965
  },
120911
120966
  {
@@ -121268,7 +121323,7 @@
121268
121323
  {
121269
121324
  "type": "string",
121270
121325
  "enum": [
121271
- "kling_2_6"
121326
+ "kling_3_0"
121272
121327
  ]
121273
121328
  },
121274
121329
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.2792",
3
+ "version": "1.0.2804",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {