@revxui/api-clients-ts 1.1.462 → 1.1.464
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/dCOVideoSettingsController.service.d.ts +11 -8
- package/esm2020/api/dCOVideoSettingsController.service.mjs +20 -2
- package/esm2020/model/dcoVideoAssetDTO.mjs +1 -1
- package/esm2020/model/dcoVideoGenerateSampleResponse.mjs +1 -1
- package/esm2020/model/dcoVideoUploadedAssetDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +19 -1
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +19 -1
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/dcoVideoAssetDTO.d.ts +1 -0
- package/model/dcoVideoGenerateSampleResponse.d.ts +3 -0
- package/model/dcoVideoUploadedAssetDTO.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5868,7 +5868,7 @@ class DCOVideoSettingsControllerService {
|
|
|
5868
5868
|
reportProgress: reportProgress
|
|
5869
5869
|
});
|
|
5870
5870
|
}
|
|
5871
|
-
uploadStagingAssetsUsingPOST(advertiserId, templateId, file_BACKGROUND_IMAGE, file_PROMO_BANNER, file_PROMO_VIDEO, reqId, token, observe = 'body', reportProgress = false) {
|
|
5871
|
+
uploadStagingAssetsUsingPOST(advertiserId, templateId, file_BACKGROUND_IMAGE, file_PROMO_BANNER, file_PROMO_VIDEO, music_BACKGROUND_IMAGE, music_PROMO_BANNER, music_PROMO_VIDEO, reqId, token, observe = 'body', reportProgress = false) {
|
|
5872
5872
|
if (advertiserId === null || advertiserId === undefined) {
|
|
5873
5873
|
throw new Error('Required parameter advertiserId was null or undefined when calling uploadStagingAssetsUsingPOST.');
|
|
5874
5874
|
}
|
|
@@ -5907,6 +5907,15 @@ class DCOVideoSettingsControllerService {
|
|
|
5907
5907
|
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5908
5908
|
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5909
5909
|
useForm = canConsumeForm;
|
|
5910
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5911
|
+
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5912
|
+
useForm = canConsumeForm;
|
|
5913
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5914
|
+
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5915
|
+
useForm = canConsumeForm;
|
|
5916
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5917
|
+
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5918
|
+
useForm = canConsumeForm;
|
|
5910
5919
|
if (useForm) {
|
|
5911
5920
|
formParams = new FormData();
|
|
5912
5921
|
}
|
|
@@ -5925,6 +5934,15 @@ class DCOVideoSettingsControllerService {
|
|
|
5925
5934
|
if (file_PROMO_VIDEO !== undefined) {
|
|
5926
5935
|
formParams = formParams.append('file_PROMO_VIDEO', file_PROMO_VIDEO) || formParams;
|
|
5927
5936
|
}
|
|
5937
|
+
if (music_BACKGROUND_IMAGE !== undefined) {
|
|
5938
|
+
formParams = formParams.append('music_BACKGROUND_IMAGE', music_BACKGROUND_IMAGE) || formParams;
|
|
5939
|
+
}
|
|
5940
|
+
if (music_PROMO_BANNER !== undefined) {
|
|
5941
|
+
formParams = formParams.append('music_PROMO_BANNER', music_PROMO_BANNER) || formParams;
|
|
5942
|
+
}
|
|
5943
|
+
if (music_PROMO_VIDEO !== undefined) {
|
|
5944
|
+
formParams = formParams.append('music_PROMO_VIDEO', music_PROMO_VIDEO) || formParams;
|
|
5945
|
+
}
|
|
5928
5946
|
if (templateId !== undefined) {
|
|
5929
5947
|
formParams = formParams.append('templateId', templateId) || formParams;
|
|
5930
5948
|
}
|