@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.
- package/README.md +2 -2
- package/api/dpaEngagementController.service.d.ts +4 -4
- package/esm2020/api/adImageController.service.mjs +2 -2
- package/esm2020/api/adVideoController.service.mjs +2 -2
- package/esm2020/api/dpaEngagementController.service.mjs +4 -4
- package/esm2020/model/dpaEngagementRequest.mjs +1 -1
- package/esm2020/model/dpaEngagementResponse.mjs +1 -1
- package/esm2020/model/pageableObject.mjs +1 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs +5 -5
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +5 -5
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/dpaEngagementRequest.d.ts +2 -1
- package/model/dpaEngagementResponse.d.ts +2 -2
- package/model/pageableObject.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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('
|
|
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('
|
|
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,
|
|
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 (
|
|
956
|
-
queryParameters = queryParameters.set('
|
|
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);
|