@revxui/api-clients-ts 1.1.464 → 1.1.466

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.
@@ -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, music_BACKGROUND_IMAGE, music_PROMO_BANNER, music_PROMO_VIDEO, reqId, token, observe = 'body', reportProgress = false) {
5871
+ uploadStagingAssetsUsingPOST(advertiserId, templateId, file_BACKGROUND_IMAGE, file_PROMO_BANNER, file_PROMO_MUSIC, file_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
  }
@@ -5910,12 +5910,6 @@ class DCOVideoSettingsControllerService {
5910
5910
  // use FormData to transmit files using content-type "multipart/form-data"
5911
5911
  // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
5912
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;
5919
5913
  if (useForm) {
5920
5914
  formParams = new FormData();
5921
5915
  }
@@ -5931,18 +5925,12 @@ class DCOVideoSettingsControllerService {
5931
5925
  if (file_PROMO_BANNER !== undefined) {
5932
5926
  formParams = formParams.append('file_PROMO_BANNER', file_PROMO_BANNER) || formParams;
5933
5927
  }
5928
+ if (file_PROMO_MUSIC !== undefined) {
5929
+ formParams = formParams.append('file_PROMO_MUSIC', file_PROMO_MUSIC) || formParams;
5930
+ }
5934
5931
  if (file_PROMO_VIDEO !== undefined) {
5935
5932
  formParams = formParams.append('file_PROMO_VIDEO', file_PROMO_VIDEO) || formParams;
5936
5933
  }
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
- }
5946
5934
  if (templateId !== undefined) {
5947
5935
  formParams = formParams.append('templateId', templateId) || formParams;
5948
5936
  }