@revxui/intellibid-client-ts 1.0.15 → 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,