@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,
@@ -278,7 +278,7 @@ class AdVideoControllerService {
278
278
  }
279
279
  // to determine the Content-Type header
280
280
  const consumes = [];
281
- return this.httpClient.request('delete', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}`, {
281
+ return this.httpClient.request('post', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}/delete`, {
282
282
  withCredentials: this.configuration.withCredentials,
283
283
  headers: headers,
284
284
  observe: observe,
@@ -935,7 +935,7 @@ class DpaEngagementControllerService {
935
935
  reportProgress: reportProgress
936
936
  });
937
937
  }
938
- getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, isStatic, page, size, sort, observe = 'body', reportProgress = false) {
938
+ getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, staticCampaign, page, size, sort, observe = 'body', reportProgress = false) {
939
939
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
940
940
  if (id !== undefined && id !== null) {
941
941
  queryParameters = queryParameters.set('id', id);
@@ -964,8 +964,8 @@ class DpaEngagementControllerService {
964
964
  if (campaignStatus !== undefined && campaignStatus !== null) {
965
965
  queryParameters = queryParameters.set('campaignStatus', campaignStatus);
966
966
  }
967
- if (isStatic !== undefined && isStatic !== null) {
968
- queryParameters = queryParameters.set('isStatic', isStatic);
967
+ if (staticCampaign !== undefined && staticCampaign !== null) {
968
+ queryParameters = queryParameters.set('staticCampaign', staticCampaign);
969
969
  }
970
970
  if (page !== undefined && page !== null) {
971
971
  queryParameters = queryParameters.set('page', page);