@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.
@@ -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.');