@revxui/intellibid-client-ts 1.0.14 → 1.0.16

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.
@@ -140,7 +140,7 @@ class AdImageControllerService {
140
140
  }
141
141
  // to determine the Content-Type header
142
142
  const consumes = [];
143
- return this.httpClient.request('delete', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-image/${encodeURIComponent(String(hash))}`, {
143
+ return this.httpClient.request('post', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-image/${encodeURIComponent(String(hash))}/delete`, {
144
144
  withCredentials: this.configuration.withCredentials,
145
145
  headers: headers,
146
146
  observe: observe,
@@ -276,7 +276,7 @@ class AdVideoControllerService {
276
276
  }
277
277
  // to determine the Content-Type header
278
278
  const consumes = [];
279
- return this.httpClient.request('delete', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}`, {
279
+ return this.httpClient.request('post', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}/delete`, {
280
280
  withCredentials: this.configuration.withCredentials,
281
281
  headers: headers,
282
282
  observe: observe,
@@ -923,7 +923,7 @@ class DpaEngagementControllerService {
923
923
  reportProgress: reportProgress
924
924
  });
925
925
  }
926
- getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, isStatic, page, size, sort, observe = 'body', reportProgress = false) {
926
+ getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, staticCampaign, page, size, sort, observe = 'body', reportProgress = false) {
927
927
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
928
928
  if (id !== undefined && id !== null) {
929
929
  queryParameters = queryParameters.set('id', id);
@@ -952,8 +952,8 @@ class DpaEngagementControllerService {
952
952
  if (campaignStatus !== undefined && campaignStatus !== null) {
953
953
  queryParameters = queryParameters.set('campaignStatus', campaignStatus);
954
954
  }
955
- if (isStatic !== undefined && isStatic !== null) {
956
- queryParameters = queryParameters.set('isStatic', isStatic);
955
+ if (staticCampaign !== undefined && staticCampaign !== null) {
956
+ queryParameters = queryParameters.set('staticCampaign', staticCampaign);
957
957
  }
958
958
  if (page !== undefined && page !== null) {
959
959
  queryParameters = queryParameters.set('page', page);