@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,
|
|
@@ -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('
|
|
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,
|
|
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 (
|
|
968
|
-
queryParameters = queryParameters.set('
|
|
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);
|