@revxui/api-clients-ts 1.1.470 → 1.1.472
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/advertiserController.service.d.ts +12 -0
- package/api/dCOVideoSettingsController.service.d.ts +1 -1
- package/esm2020/api/advertiserController.service.mjs +26 -1
- package/esm2020/api/dCOVideoSettingsController.service.mjs +1 -1
- package/esm2020/model/apiResponseObjectApiListResponseBaseModel.mjs +2 -0
- package/esm2020/model/dcoVideoMusicTrackDTO.mjs +1 -1
- package/esm2020/model/models.mjs +2 -1
- package/fesm2015/revxui-api-clients-ts.mjs +25 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +25 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectApiListResponseBaseModel.d.ts +17 -0
- package/model/dcoVideoMusicTrackDTO.d.ts +2 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -407,6 +407,31 @@ class AdvertiserControllerService {
|
|
|
407
407
|
reportProgress: reportProgress
|
|
408
408
|
});
|
|
409
409
|
}
|
|
410
|
+
getActiveAdvertisersWithoutSlackChannelUsingGET(reqId, token, observe = 'body', reportProgress = false) {
|
|
411
|
+
let headers = this.defaultHeaders;
|
|
412
|
+
if (reqId !== undefined && reqId !== null) {
|
|
413
|
+
headers = headers.set('reqId', String(reqId));
|
|
414
|
+
}
|
|
415
|
+
if (token !== undefined && token !== null) {
|
|
416
|
+
headers = headers.set('token', String(token));
|
|
417
|
+
}
|
|
418
|
+
// to determine the Accept header
|
|
419
|
+
let httpHeaderAccepts = [
|
|
420
|
+
'application/json'
|
|
421
|
+
];
|
|
422
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
423
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
424
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
425
|
+
}
|
|
426
|
+
// to determine the Content-Type header
|
|
427
|
+
const consumes = [];
|
|
428
|
+
return this.httpClient.get(`${this.basePath}/v2/api/advertisers/missing-slack-channel`, {
|
|
429
|
+
withCredentials: this.configuration.withCredentials,
|
|
430
|
+
headers: headers,
|
|
431
|
+
observe: observe,
|
|
432
|
+
reportProgress: reportProgress
|
|
433
|
+
});
|
|
434
|
+
}
|
|
410
435
|
getAdvertiserAnalyticsUsingGET(id, type, reqId, token, observe = 'body', reportProgress = false) {
|
|
411
436
|
if (id === null || id === undefined) {
|
|
412
437
|
throw new Error('Required parameter id was null or undefined when calling getAdvertiserAnalyticsUsingGET.');
|