@revxui/api-clients-ts 1.1.463 → 1.1.465

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, 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
  }
@@ -5907,6 +5907,9 @@ 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;
5910
5913
  if (useForm) {
5911
5914
  formParams = new FormData();
5912
5915
  }
@@ -5922,6 +5925,9 @@ class DCOVideoSettingsControllerService {
5922
5925
  if (file_PROMO_BANNER !== undefined) {
5923
5926
  formParams = formParams.append('file_PROMO_BANNER', file_PROMO_BANNER) || formParams;
5924
5927
  }
5928
+ if (file_PROMO_MUSIC !== undefined) {
5929
+ formParams = formParams.append('file_PROMO_MUSIC', file_PROMO_MUSIC) || formParams;
5930
+ }
5925
5931
  if (file_PROMO_VIDEO !== undefined) {
5926
5932
  formParams = formParams.append('file_PROMO_VIDEO', file_PROMO_VIDEO) || formParams;
5927
5933
  }