@revxui/api-clients-ts 3.0.0-beta02-06 → 3.0.0-beta02-08

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.
@@ -617,10 +617,12 @@ class AdvertiserControllerService extends BaseService {
617
617
  reportProgress: reportProgress
618
618
  });
619
619
  }
620
- getAdvertiserCohortDetails(advertiserCohortDTO, observe = 'body', reportProgress = false, options) {
621
- if (advertiserCohortDTO === null || advertiserCohortDTO === undefined) {
622
- throw new Error('Required parameter advertiserCohortDTO was null or undefined when calling getAdvertiserCohortDetails.');
620
+ getAdvertiserById(id, refresh, observe = 'body', reportProgress = false, options) {
621
+ if (id === null || id === undefined) {
622
+ throw new Error('Required parameter id was null or undefined when calling getAdvertiserById.');
623
623
  }
624
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
625
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
624
626
  let localVarHeaders = this.defaultHeaders;
625
627
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
626
628
  'application/json'
@@ -630,14 +632,6 @@ class AdvertiserControllerService extends BaseService {
630
632
  }
631
633
  const localVarHttpContext = options?.context ?? new HttpContext();
632
634
  const localVarTransferCache = options?.transferCache ?? true;
633
- // to determine the Content-Type header
634
- const consumes = [
635
- 'application/json'
636
- ];
637
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
638
- if (httpContentTypeSelected !== undefined) {
639
- localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
640
- }
641
635
  let responseType_ = 'json';
642
636
  if (localVarHttpHeaderAcceptSelected) {
643
637
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -650,11 +644,11 @@ class AdvertiserControllerService extends BaseService {
650
644
  responseType_ = 'blob';
651
645
  }
652
646
  }
653
- let localVarPath = `/v2/api/advertisers/cohort/details`;
647
+ let localVarPath = `/v2/api/advertisers/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
654
648
  const { basePath, withCredentials } = this.configuration;
655
- return this.httpClient.request('post', `${basePath}${localVarPath}`, {
649
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
656
650
  context: localVarHttpContext,
657
- body: advertiserCohortDTO,
651
+ params: localVarQueryParameters.toHttpParams(),
658
652
  responseType: responseType_,
659
653
  ...(withCredentials ? { withCredentials } : {}),
660
654
  headers: localVarHeaders,
@@ -663,9 +657,9 @@ class AdvertiserControllerService extends BaseService {
663
657
  reportProgress: reportProgress
664
658
  });
665
659
  }
666
- getAdvertiserSettings(id, observe = 'body', reportProgress = false, options) {
667
- if (id === null || id === undefined) {
668
- throw new Error('Required parameter id was null or undefined when calling getAdvertiserSettings.');
660
+ getAdvertiserCohortDetails(advertiserCohortDTO, observe = 'body', reportProgress = false, options) {
661
+ if (advertiserCohortDTO === null || advertiserCohortDTO === undefined) {
662
+ throw new Error('Required parameter advertiserCohortDTO was null or undefined when calling getAdvertiserCohortDetails.');
669
663
  }
670
664
  let localVarHeaders = this.defaultHeaders;
671
665
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -676,6 +670,14 @@ class AdvertiserControllerService extends BaseService {
676
670
  }
677
671
  const localVarHttpContext = options?.context ?? new HttpContext();
678
672
  const localVarTransferCache = options?.transferCache ?? true;
673
+ // to determine the Content-Type header
674
+ const consumes = [
675
+ 'application/json'
676
+ ];
677
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
678
+ if (httpContentTypeSelected !== undefined) {
679
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
680
+ }
679
681
  let responseType_ = 'json';
680
682
  if (localVarHttpHeaderAcceptSelected) {
681
683
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -688,10 +690,11 @@ class AdvertiserControllerService extends BaseService {
688
690
  responseType_ = 'blob';
689
691
  }
690
692
  }
691
- let localVarPath = `/v2/api/advertisers/settings/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
693
+ let localVarPath = `/v2/api/advertisers/cohort/details`;
692
694
  const { basePath, withCredentials } = this.configuration;
693
- return this.httpClient.request('get', `${basePath}${localVarPath}`, {
695
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
694
696
  context: localVarHttpContext,
697
+ body: advertiserCohortDTO,
695
698
  responseType: responseType_,
696
699
  ...(withCredentials ? { withCredentials } : {}),
697
700
  headers: localVarHeaders,
@@ -700,12 +703,10 @@ class AdvertiserControllerService extends BaseService {
700
703
  reportProgress: reportProgress
701
704
  });
702
705
  }
703
- getById3(id, refresh, observe = 'body', reportProgress = false, options) {
706
+ getAdvertiserSettings(id, observe = 'body', reportProgress = false, options) {
704
707
  if (id === null || id === undefined) {
705
- throw new Error('Required parameter id was null or undefined when calling getById3.');
708
+ throw new Error('Required parameter id was null or undefined when calling getAdvertiserSettings.');
706
709
  }
707
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
708
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
709
710
  let localVarHeaders = this.defaultHeaders;
710
711
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
711
712
  'application/json'
@@ -727,11 +728,10 @@ class AdvertiserControllerService extends BaseService {
727
728
  responseType_ = 'blob';
728
729
  }
729
730
  }
730
- let localVarPath = `/v2/api/advertisers/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
731
+ let localVarPath = `/v2/api/advertisers/settings/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
731
732
  const { basePath, withCredentials } = this.configuration;
732
733
  return this.httpClient.request('get', `${basePath}${localVarPath}`, {
733
734
  context: localVarHttpContext,
734
- params: localVarQueryParameters.toHttpParams(),
735
735
  responseType: responseType_,
736
736
  ...(withCredentials ? { withCredentials } : {}),
737
737
  headers: localVarHeaders,
@@ -1075,10 +1075,10 @@ class AdvertiserControllerService extends BaseService {
1075
1075
  reportProgress: reportProgress
1076
1076
  });
1077
1077
  }
1078
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdvertiserControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1079
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdvertiserControllerService, providedIn: 'root' });
1078
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AdvertiserControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1079
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AdvertiserControllerService, providedIn: 'root' });
1080
1080
  }
1081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdvertiserControllerService, decorators: [{
1081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AdvertiserControllerService, decorators: [{
1082
1082
  type: Injectable,
1083
1083
  args: [{
1084
1084
  providedIn: 'root'
@@ -1355,10 +1355,10 @@ class AppSettingsControllerService extends BaseService {
1355
1355
  reportProgress: reportProgress
1356
1356
  });
1357
1357
  }
1358
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppSettingsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1359
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppSettingsControllerService, providedIn: 'root' });
1358
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppSettingsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1359
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppSettingsControllerService, providedIn: 'root' });
1360
1360
  }
1361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppSettingsControllerService, decorators: [{
1361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppSettingsControllerService, decorators: [{
1362
1362
  type: Injectable,
1363
1363
  args: [{
1364
1364
  providedIn: 'root'
@@ -1394,7 +1394,7 @@ class AppsFlyerAudienceControllerService extends BaseService {
1394
1394
  }
1395
1395
  let localVarHeaders = this.defaultHeaders;
1396
1396
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1397
- '*/*'
1397
+ 'application/json'
1398
1398
  ]);
1399
1399
  if (localVarHttpHeaderAcceptSelected !== undefined) {
1400
1400
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -1484,7 +1484,7 @@ class AppsFlyerAudienceControllerService extends BaseService {
1484
1484
  }
1485
1485
  let localVarHeaders = this.defaultHeaders;
1486
1486
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1487
- '*/*'
1487
+ 'application/json'
1488
1488
  ]);
1489
1489
  if (localVarHttpHeaderAcceptSelected !== undefined) {
1490
1490
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -1524,10 +1524,10 @@ class AppsFlyerAudienceControllerService extends BaseService {
1524
1524
  reportProgress: reportProgress
1525
1525
  });
1526
1526
  }
1527
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1528
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerAudienceControllerService, providedIn: 'root' });
1527
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1528
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerAudienceControllerService, providedIn: 'root' });
1529
1529
  }
1530
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerAudienceControllerService, decorators: [{
1530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerAudienceControllerService, decorators: [{
1531
1531
  type: Injectable,
1532
1532
  args: [{
1533
1533
  providedIn: 'root'
@@ -1597,10 +1597,10 @@ class AppsFlyerControllerService extends BaseService {
1597
1597
  reportProgress: reportProgress
1598
1598
  });
1599
1599
  }
1600
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1601
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerControllerService, providedIn: 'root' });
1600
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1601
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerControllerService, providedIn: 'root' });
1602
1602
  }
1603
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AppsFlyerControllerService, decorators: [{
1603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AppsFlyerControllerService, decorators: [{
1604
1604
  type: Injectable,
1605
1605
  args: [{
1606
1606
  providedIn: 'root'
@@ -1679,7 +1679,7 @@ class AudienceControllerService extends BaseService {
1679
1679
  }
1680
1680
  let localVarHeaders = this.defaultHeaders;
1681
1681
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1682
- '*/*'
1682
+ 'application/json'
1683
1683
  ]);
1684
1684
  if (localVarHttpHeaderAcceptSelected !== undefined) {
1685
1685
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -1894,7 +1894,7 @@ class AudienceControllerService extends BaseService {
1894
1894
  }
1895
1895
  let localVarHeaders = this.defaultHeaders;
1896
1896
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1897
- '*/*'
1897
+ 'application/json'
1898
1898
  ]);
1899
1899
  if (localVarHttpHeaderAcceptSelected !== undefined) {
1900
1900
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2032,7 +2032,7 @@ class AudienceControllerService extends BaseService {
2032
2032
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'stype', stype, QueryParamStyle.Form, true);
2033
2033
  let localVarHeaders = this.defaultHeaders;
2034
2034
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2035
- '*/*'
2035
+ 'application/json'
2036
2036
  ]);
2037
2037
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2038
2038
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2070,7 +2070,7 @@ class AudienceControllerService extends BaseService {
2070
2070
  }
2071
2071
  let localVarHeaders = this.defaultHeaders;
2072
2072
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2073
- '*/*'
2073
+ 'application/json'
2074
2074
  ]);
2075
2075
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2076
2076
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2110,13 +2110,15 @@ class AudienceControllerService extends BaseService {
2110
2110
  reportProgress: reportProgress
2111
2111
  });
2112
2112
  }
2113
- getAudienceStrategyMapping(id, observe = 'body', reportProgress = false, options) {
2113
+ getAudienceById(id, refresh, observe = 'body', reportProgress = false, options) {
2114
2114
  if (id === null || id === undefined) {
2115
- throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMapping.');
2115
+ throw new Error('Required parameter id was null or undefined when calling getAudienceById.');
2116
2116
  }
2117
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2118
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
2117
2119
  let localVarHeaders = this.defaultHeaders;
2118
2120
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2119
- '*/*'
2121
+ 'application/json'
2120
2122
  ]);
2121
2123
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2122
2124
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2135,10 +2137,11 @@ class AudienceControllerService extends BaseService {
2135
2137
  responseType_ = 'blob';
2136
2138
  }
2137
2139
  }
2138
- let localVarPath = `/v2/api/audience/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/strategies`;
2140
+ let localVarPath = `/v2/api/audience/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
2139
2141
  const { basePath, withCredentials } = this.configuration;
2140
2142
  return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2141
2143
  context: localVarHttpContext,
2144
+ params: localVarQueryParameters.toHttpParams(),
2142
2145
  responseType: responseType_,
2143
2146
  ...(withCredentials ? { withCredentials } : {}),
2144
2147
  headers: localVarHeaders,
@@ -2147,15 +2150,13 @@ class AudienceControllerService extends BaseService {
2147
2150
  reportProgress: reportProgress
2148
2151
  });
2149
2152
  }
2150
- getById2(id, refresh, observe = 'body', reportProgress = false, options) {
2153
+ getAudienceStrategyMapping(id, observe = 'body', reportProgress = false, options) {
2151
2154
  if (id === null || id === undefined) {
2152
- throw new Error('Required parameter id was null or undefined when calling getById2.');
2155
+ throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMapping.');
2153
2156
  }
2154
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2155
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
2156
2157
  let localVarHeaders = this.defaultHeaders;
2157
2158
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2158
- '*/*'
2159
+ 'application/json'
2159
2160
  ]);
2160
2161
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2161
2162
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2174,11 +2175,10 @@ class AudienceControllerService extends BaseService {
2174
2175
  responseType_ = 'blob';
2175
2176
  }
2176
2177
  }
2177
- let localVarPath = `/v2/api/audience/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
2178
+ let localVarPath = `/v2/api/audience/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/strategies`;
2178
2179
  const { basePath, withCredentials } = this.configuration;
2179
2180
  return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2180
2181
  context: localVarHttpContext,
2181
- params: localVarQueryParameters.toHttpParams(),
2182
2182
  responseType: responseType_,
2183
2183
  ...(withCredentials ? { withCredentials } : {}),
2184
2184
  headers: localVarHeaders,
@@ -2254,7 +2254,7 @@ class AudienceControllerService extends BaseService {
2254
2254
  }
2255
2255
  let localVarHeaders = this.defaultHeaders;
2256
2256
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2257
- '*/*'
2257
+ 'application/json'
2258
2258
  ]);
2259
2259
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2260
2260
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2300,7 +2300,7 @@ class AudienceControllerService extends BaseService {
2300
2300
  }
2301
2301
  let localVarHeaders = this.defaultHeaders;
2302
2302
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2303
- '*/*'
2303
+ 'application/json'
2304
2304
  ]);
2305
2305
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2306
2306
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2343,7 +2343,7 @@ class AudienceControllerService extends BaseService {
2343
2343
  getMetaRules(observe = 'body', reportProgress = false, options) {
2344
2344
  let localVarHeaders = this.defaultHeaders;
2345
2345
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2346
- '*/*'
2346
+ 'application/json'
2347
2347
  ]);
2348
2348
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2349
2349
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2382,7 +2382,7 @@ class AudienceControllerService extends BaseService {
2382
2382
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'advertiser_id', advertiserId, QueryParamStyle.Form, true);
2383
2383
  let localVarHeaders = this.defaultHeaders;
2384
2384
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2385
- '*/*'
2385
+ 'application/json'
2386
2386
  ]);
2387
2387
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2388
2388
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2420,7 +2420,7 @@ class AudienceControllerService extends BaseService {
2420
2420
  }
2421
2421
  let localVarHeaders = this.defaultHeaders;
2422
2422
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2423
- '*/*'
2423
+ 'application/json'
2424
2424
  ]);
2425
2425
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2426
2426
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2459,7 +2459,7 @@ class AudienceControllerService extends BaseService {
2459
2459
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'advIds', advIds, QueryParamStyle.Form, true);
2460
2460
  let localVarHeaders = this.defaultHeaders;
2461
2461
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2462
- '*/*'
2462
+ 'application/json'
2463
2463
  ]);
2464
2464
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2465
2465
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2543,7 +2543,7 @@ class AudienceControllerService extends BaseService {
2543
2543
  }
2544
2544
  let localVarHeaders = this.defaultHeaders;
2545
2545
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2546
- '*/*'
2546
+ 'application/json'
2547
2547
  ]);
2548
2548
  if (localVarHttpHeaderAcceptSelected !== undefined) {
2549
2549
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -2669,10 +2669,10 @@ class AudienceControllerService extends BaseService {
2669
2669
  reportProgress: reportProgress
2670
2670
  });
2671
2671
  }
2672
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2673
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AudienceControllerService, providedIn: 'root' });
2672
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2673
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AudienceControllerService, providedIn: 'root' });
2674
2674
  }
2675
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AudienceControllerService, decorators: [{
2675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AudienceControllerService, decorators: [{
2676
2676
  type: Injectable,
2677
2677
  args: [{
2678
2678
  providedIn: 'root'
@@ -2848,10 +2848,10 @@ class AuditControllerService extends BaseService {
2848
2848
  reportProgress: reportProgress
2849
2849
  });
2850
2850
  }
2851
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AuditControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2852
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AuditControllerService, providedIn: 'root' });
2851
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AuditControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2852
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AuditControllerService, providedIn: 'root' });
2853
2853
  }
2854
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AuditControllerService, decorators: [{
2854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: AuditControllerService, decorators: [{
2855
2855
  type: Injectable,
2856
2856
  args: [{
2857
2857
  providedIn: 'root'
@@ -2983,10 +2983,10 @@ class BidFunnelControllerService extends BaseService {
2983
2983
  reportProgress: reportProgress
2984
2984
  });
2985
2985
  }
2986
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BidFunnelControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2987
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BidFunnelControllerService, providedIn: 'root' });
2986
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BidFunnelControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2987
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BidFunnelControllerService, providedIn: 'root' });
2988
2988
  }
2989
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BidFunnelControllerService, decorators: [{
2989
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BidFunnelControllerService, decorators: [{
2990
2990
  type: Injectable,
2991
2991
  args: [{
2992
2992
  providedIn: 'root'
@@ -3239,10 +3239,10 @@ class BulkStrategyControllerService extends BaseService {
3239
3239
  reportProgress: reportProgress
3240
3240
  });
3241
3241
  }
3242
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BulkStrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3243
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BulkStrategyControllerService, providedIn: 'root' });
3242
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BulkStrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3243
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BulkStrategyControllerService, providedIn: 'root' });
3244
3244
  }
3245
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: BulkStrategyControllerService, decorators: [{
3245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: BulkStrategyControllerService, decorators: [{
3246
3246
  type: Injectable,
3247
3247
  args: [{
3248
3248
  providedIn: 'root'
@@ -3278,7 +3278,7 @@ class CSSThemeControllerService extends BaseService {
3278
3278
  }
3279
3279
  let localVarHeaders = this.defaultHeaders;
3280
3280
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3281
- '*/*'
3281
+ 'application/json'
3282
3282
  ]);
3283
3283
  if (localVarHttpHeaderAcceptSelected !== undefined) {
3284
3284
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -3315,7 +3315,7 @@ class CSSThemeControllerService extends BaseService {
3315
3315
  }
3316
3316
  let localVarHeaders = this.defaultHeaders;
3317
3317
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3318
- '*/*'
3318
+ 'application/json'
3319
3319
  ]);
3320
3320
  if (localVarHttpHeaderAcceptSelected !== undefined) {
3321
3321
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -3346,10 +3346,10 @@ class CSSThemeControllerService extends BaseService {
3346
3346
  reportProgress: reportProgress
3347
3347
  });
3348
3348
  }
3349
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CSSThemeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3350
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CSSThemeControllerService, providedIn: 'root' });
3349
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CSSThemeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3350
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CSSThemeControllerService, providedIn: 'root' });
3351
3351
  }
3352
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CSSThemeControllerService, decorators: [{
3352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CSSThemeControllerService, decorators: [{
3353
3353
  type: Injectable,
3354
3354
  args: [{
3355
3355
  providedIn: 'root'
@@ -3564,7 +3564,7 @@ class CampaignControllerService extends BaseService {
3564
3564
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
3565
3565
  let localVarHeaders = this.defaultHeaders;
3566
3566
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3567
- '*/*'
3567
+ 'application/json'
3568
3568
  ]);
3569
3569
  if (localVarHttpHeaderAcceptSelected !== undefined) {
3570
3570
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -3602,7 +3602,7 @@ class CampaignControllerService extends BaseService {
3602
3602
  }
3603
3603
  let localVarHeaders = this.defaultHeaders;
3604
3604
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3605
- '*/*'
3605
+ 'application/json'
3606
3606
  ]);
3607
3607
  if (localVarHttpHeaderAcceptSelected !== undefined) {
3608
3608
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -3641,7 +3641,7 @@ class CampaignControllerService extends BaseService {
3641
3641
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
3642
3642
  let localVarHeaders = this.defaultHeaders;
3643
3643
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3644
- '*/*'
3644
+ 'application/json'
3645
3645
  ]);
3646
3646
  if (localVarHttpHeaderAcceptSelected !== undefined) {
3647
3647
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -3866,10 +3866,10 @@ class CampaignControllerService extends BaseService {
3866
3866
  reportProgress: reportProgress
3867
3867
  });
3868
3868
  }
3869
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CampaignControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3870
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CampaignControllerService, providedIn: 'root' });
3869
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CampaignControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3870
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CampaignControllerService, providedIn: 'root' });
3871
3871
  }
3872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CampaignControllerService, decorators: [{
3872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CampaignControllerService, decorators: [{
3873
3873
  type: Injectable,
3874
3874
  args: [{
3875
3875
  providedIn: 'root'
@@ -3899,10 +3899,13 @@ class CatalogControllerService extends BaseService {
3899
3899
  super(basePath, configuration);
3900
3900
  this.httpClient = httpClient;
3901
3901
  }
3902
- getById5(id, observe = 'body', reportProgress = false, options) {
3903
- if (id === null || id === undefined) {
3904
- throw new Error('Required parameter id was null or undefined when calling getById5.');
3902
+ getCatalogFeeds(advertiserId, refresh, searchRequest, observe = 'body', reportProgress = false, options) {
3903
+ if (advertiserId === null || advertiserId === undefined) {
3904
+ throw new Error('Required parameter advertiserId was null or undefined when calling getCatalogFeeds.');
3905
3905
  }
3906
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
3907
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'advertiser_id', advertiserId, QueryParamStyle.Form, true);
3908
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
3906
3909
  let localVarHeaders = this.defaultHeaders;
3907
3910
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3908
3911
  'application/json'
@@ -3912,6 +3915,14 @@ class CatalogControllerService extends BaseService {
3912
3915
  }
3913
3916
  const localVarHttpContext = options?.context ?? new HttpContext();
3914
3917
  const localVarTransferCache = options?.transferCache ?? true;
3918
+ // to determine the Content-Type header
3919
+ const consumes = [
3920
+ 'application/json'
3921
+ ];
3922
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3923
+ if (httpContentTypeSelected !== undefined) {
3924
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
3925
+ }
3915
3926
  let responseType_ = 'json';
3916
3927
  if (localVarHttpHeaderAcceptSelected) {
3917
3928
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -3924,10 +3935,12 @@ class CatalogControllerService extends BaseService {
3924
3935
  responseType_ = 'blob';
3925
3936
  }
3926
3937
  }
3927
- let localVarPath = `/v2/api/catalog/feeds/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
3938
+ let localVarPath = `/v2/api/catalog/feeds`;
3928
3939
  const { basePath, withCredentials } = this.configuration;
3929
- return this.httpClient.request('get', `${basePath}${localVarPath}`, {
3940
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
3930
3941
  context: localVarHttpContext,
3942
+ body: searchRequest,
3943
+ params: localVarQueryParameters.toHttpParams(),
3931
3944
  responseType: responseType_,
3932
3945
  ...(withCredentials ? { withCredentials } : {}),
3933
3946
  headers: localVarHeaders,
@@ -3936,13 +3949,10 @@ class CatalogControllerService extends BaseService {
3936
3949
  reportProgress: reportProgress
3937
3950
  });
3938
3951
  }
3939
- getCatalogFeeds(advertiserId, refresh, searchRequest, observe = 'body', reportProgress = false, options) {
3940
- if (advertiserId === null || advertiserId === undefined) {
3941
- throw new Error('Required parameter advertiserId was null or undefined when calling getCatalogFeeds.');
3952
+ getFeedByFeedId(id, observe = 'body', reportProgress = false, options) {
3953
+ if (id === null || id === undefined) {
3954
+ throw new Error('Required parameter id was null or undefined when calling getFeedByFeedId.');
3942
3955
  }
3943
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
3944
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'advertiser_id', advertiserId, QueryParamStyle.Form, true);
3945
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
3946
3956
  let localVarHeaders = this.defaultHeaders;
3947
3957
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3948
3958
  'application/json'
@@ -3952,14 +3962,6 @@ class CatalogControllerService extends BaseService {
3952
3962
  }
3953
3963
  const localVarHttpContext = options?.context ?? new HttpContext();
3954
3964
  const localVarTransferCache = options?.transferCache ?? true;
3955
- // to determine the Content-Type header
3956
- const consumes = [
3957
- 'application/json'
3958
- ];
3959
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3960
- if (httpContentTypeSelected !== undefined) {
3961
- localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
3962
- }
3963
3965
  let responseType_ = 'json';
3964
3966
  if (localVarHttpHeaderAcceptSelected) {
3965
3967
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -3972,12 +3974,10 @@ class CatalogControllerService extends BaseService {
3972
3974
  responseType_ = 'blob';
3973
3975
  }
3974
3976
  }
3975
- let localVarPath = `/v2/api/catalog/feeds`;
3977
+ let localVarPath = `/v2/api/catalog/feeds/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
3976
3978
  const { basePath, withCredentials } = this.configuration;
3977
- return this.httpClient.request('post', `${basePath}${localVarPath}`, {
3979
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
3978
3980
  context: localVarHttpContext,
3979
- body: searchRequest,
3980
- params: localVarQueryParameters.toHttpParams(),
3981
3981
  responseType: responseType_,
3982
3982
  ...(withCredentials ? { withCredentials } : {}),
3983
3983
  headers: localVarHeaders,
@@ -4127,10 +4127,10 @@ class CatalogControllerService extends BaseService {
4127
4127
  reportProgress: reportProgress
4128
4128
  });
4129
4129
  }
4130
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CatalogControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4131
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CatalogControllerService, providedIn: 'root' });
4130
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CatalogControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4131
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CatalogControllerService, providedIn: 'root' });
4132
4132
  }
4133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CatalogControllerService, decorators: [{
4133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CatalogControllerService, decorators: [{
4134
4134
  type: Injectable,
4135
4135
  args: [{
4136
4136
  providedIn: 'root'
@@ -4385,10 +4385,10 @@ class ClickDestinationControllerService extends BaseService {
4385
4385
  reportProgress: reportProgress
4386
4386
  });
4387
4387
  }
4388
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ClickDestinationControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4389
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ClickDestinationControllerService, providedIn: 'root' });
4388
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ClickDestinationControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4389
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ClickDestinationControllerService, providedIn: 'root' });
4390
4390
  }
4391
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ClickDestinationControllerService, decorators: [{
4391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ClickDestinationControllerService, decorators: [{
4392
4392
  type: Injectable,
4393
4393
  args: [{
4394
4394
  providedIn: 'root'
@@ -4421,7 +4421,7 @@ class ConsoleCreativeControllerService extends BaseService {
4421
4421
  consoleCreativeTrigger(observe = 'body', reportProgress = false, options) {
4422
4422
  let localVarHeaders = this.defaultHeaders;
4423
4423
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
4424
- '*/*'
4424
+ 'application/json'
4425
4425
  ]);
4426
4426
  if (localVarHttpHeaderAcceptSelected !== undefined) {
4427
4427
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -4452,10 +4452,10 @@ class ConsoleCreativeControllerService extends BaseService {
4452
4452
  reportProgress: reportProgress
4453
4453
  });
4454
4454
  }
4455
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ConsoleCreativeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4456
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ConsoleCreativeControllerService, providedIn: 'root' });
4455
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ConsoleCreativeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4456
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ConsoleCreativeControllerService, providedIn: 'root' });
4457
4457
  }
4458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ConsoleCreativeControllerService, decorators: [{
4458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ConsoleCreativeControllerService, decorators: [{
4459
4459
  type: Injectable,
4460
4460
  args: [{
4461
4461
  providedIn: 'root'
@@ -5170,10 +5170,10 @@ class CreativeControllerService extends BaseService {
5170
5170
  reportProgress: reportProgress
5171
5171
  });
5172
5172
  }
5173
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5174
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeControllerService, providedIn: 'root' });
5173
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5174
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeControllerService, providedIn: 'root' });
5175
5175
  }
5176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeControllerService, decorators: [{
5176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeControllerService, decorators: [{
5177
5177
  type: Injectable,
5178
5178
  args: [{
5179
5179
  providedIn: 'root'
@@ -5288,9 +5288,9 @@ class CreativeSetsControllerService extends BaseService {
5288
5288
  reportProgress: reportProgress
5289
5289
  });
5290
5290
  }
5291
- create1(creativeSetRequest, observe = 'body', reportProgress = false, options) {
5291
+ createCreativeSet(creativeSetRequest, observe = 'body', reportProgress = false, options) {
5292
5292
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
5293
- throw new Error('Required parameter creativeSetRequest was null or undefined when calling create1.');
5293
+ throw new Error('Required parameter creativeSetRequest was null or undefined when calling createCreativeSet.');
5294
5294
  }
5295
5295
  let localVarHeaders = this.defaultHeaders;
5296
5296
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -5423,9 +5423,9 @@ class CreativeSetsControllerService extends BaseService {
5423
5423
  reportProgress: reportProgress
5424
5424
  });
5425
5425
  }
5426
- getById1(id, refresh, observe = 'body', reportProgress = false, options) {
5427
- if (id === null || id === undefined) {
5428
- throw new Error('Required parameter id was null or undefined when calling getById1.');
5426
+ getCreativePerformanceData(dashboardRequest, refresh, observe = 'body', reportProgress = false, options) {
5427
+ if (dashboardRequest === null || dashboardRequest === undefined) {
5428
+ throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativePerformanceData.');
5429
5429
  }
5430
5430
  let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
5431
5431
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
@@ -5438,6 +5438,14 @@ class CreativeSetsControllerService extends BaseService {
5438
5438
  }
5439
5439
  const localVarHttpContext = options?.context ?? new HttpContext();
5440
5440
  const localVarTransferCache = options?.transferCache ?? true;
5441
+ // to determine the Content-Type header
5442
+ const consumes = [
5443
+ 'application/json'
5444
+ ];
5445
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5446
+ if (httpContentTypeSelected !== undefined) {
5447
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
5448
+ }
5441
5449
  let responseType_ = 'json';
5442
5450
  if (localVarHttpHeaderAcceptSelected) {
5443
5451
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -5450,10 +5458,11 @@ class CreativeSetsControllerService extends BaseService {
5450
5458
  responseType_ = 'blob';
5451
5459
  }
5452
5460
  }
5453
- let localVarPath = `/v2/api/creativesets/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
5461
+ let localVarPath = `/v2/api/creativesets/performance/new/creative`;
5454
5462
  const { basePath, withCredentials } = this.configuration;
5455
- return this.httpClient.request('get', `${basePath}${localVarPath}`, {
5463
+ return this.httpClient.request('post', `${basePath}${localVarPath}`, {
5456
5464
  context: localVarHttpContext,
5465
+ body: dashboardRequest,
5457
5466
  params: localVarQueryParameters.toHttpParams(),
5458
5467
  responseType: responseType_,
5459
5468
  ...(withCredentials ? { withCredentials } : {}),
@@ -5463,12 +5472,10 @@ class CreativeSetsControllerService extends BaseService {
5463
5472
  reportProgress: reportProgress
5464
5473
  });
5465
5474
  }
5466
- getCreativePerformanceData(dashboardRequest, refresh, observe = 'body', reportProgress = false, options) {
5467
- if (dashboardRequest === null || dashboardRequest === undefined) {
5468
- throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativePerformanceData.');
5475
+ getCreativePreviewModalData(id, observe = 'body', reportProgress = false, options) {
5476
+ if (id === null || id === undefined) {
5477
+ throw new Error('Required parameter id was null or undefined when calling getCreativePreviewModalData.');
5469
5478
  }
5470
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
5471
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
5472
5479
  let localVarHeaders = this.defaultHeaders;
5473
5480
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
5474
5481
  'application/json'
@@ -5478,14 +5485,6 @@ class CreativeSetsControllerService extends BaseService {
5478
5485
  }
5479
5486
  const localVarHttpContext = options?.context ?? new HttpContext();
5480
5487
  const localVarTransferCache = options?.transferCache ?? true;
5481
- // to determine the Content-Type header
5482
- const consumes = [
5483
- 'application/json'
5484
- ];
5485
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5486
- if (httpContentTypeSelected !== undefined) {
5487
- localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
5488
- }
5489
5488
  let responseType_ = 'json';
5490
5489
  if (localVarHttpHeaderAcceptSelected) {
5491
5490
  if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
@@ -5498,12 +5497,10 @@ class CreativeSetsControllerService extends BaseService {
5498
5497
  responseType_ = 'blob';
5499
5498
  }
5500
5499
  }
5501
- let localVarPath = `/v2/api/creativesets/performance/new/creative`;
5500
+ let localVarPath = `/v2/api/creativesets/creative/perview/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
5502
5501
  const { basePath, withCredentials } = this.configuration;
5503
- return this.httpClient.request('post', `${basePath}${localVarPath}`, {
5502
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
5504
5503
  context: localVarHttpContext,
5505
- body: dashboardRequest,
5506
- params: localVarQueryParameters.toHttpParams(),
5507
5504
  responseType: responseType_,
5508
5505
  ...(withCredentials ? { withCredentials } : {}),
5509
5506
  headers: localVarHeaders,
@@ -5512,10 +5509,12 @@ class CreativeSetsControllerService extends BaseService {
5512
5509
  reportProgress: reportProgress
5513
5510
  });
5514
5511
  }
5515
- getCreativePreviewModalData(id, observe = 'body', reportProgress = false, options) {
5512
+ getCreativeSetById(id, refresh, observe = 'body', reportProgress = false, options) {
5516
5513
  if (id === null || id === undefined) {
5517
- throw new Error('Required parameter id was null or undefined when calling getCreativePreviewModalData.');
5514
+ throw new Error('Required parameter id was null or undefined when calling getCreativeSetById.');
5518
5515
  }
5516
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
5517
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
5519
5518
  let localVarHeaders = this.defaultHeaders;
5520
5519
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
5521
5520
  'application/json'
@@ -5537,10 +5536,11 @@ class CreativeSetsControllerService extends BaseService {
5537
5536
  responseType_ = 'blob';
5538
5537
  }
5539
5538
  }
5540
- let localVarPath = `/v2/api/creativesets/creative/perview/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
5539
+ let localVarPath = `/v2/api/creativesets/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
5541
5540
  const { basePath, withCredentials } = this.configuration;
5542
5541
  return this.httpClient.request('get', `${basePath}${localVarPath}`, {
5543
5542
  context: localVarHttpContext,
5543
+ params: localVarQueryParameters.toHttpParams(),
5544
5544
  responseType: responseType_,
5545
5545
  ...(withCredentials ? { withCredentials } : {}),
5546
5546
  headers: localVarHeaders,
@@ -5844,12 +5844,12 @@ class CreativeSetsControllerService extends BaseService {
5844
5844
  reportProgress: reportProgress
5845
5845
  });
5846
5846
  }
5847
- update1(id, creativeSetRequest, observe = 'body', reportProgress = false, options) {
5847
+ updateCreativeSetById(id, creativeSetRequest, observe = 'body', reportProgress = false, options) {
5848
5848
  if (id === null || id === undefined) {
5849
- throw new Error('Required parameter id was null or undefined when calling update1.');
5849
+ throw new Error('Required parameter id was null or undefined when calling updateCreativeSetById.');
5850
5850
  }
5851
5851
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
5852
- throw new Error('Required parameter creativeSetRequest was null or undefined when calling update1.');
5852
+ throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateCreativeSetById.');
5853
5853
  }
5854
5854
  let localVarHeaders = this.defaultHeaders;
5855
5855
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -5936,10 +5936,10 @@ class CreativeSetsControllerService extends BaseService {
5936
5936
  reportProgress: reportProgress
5937
5937
  });
5938
5938
  }
5939
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5940
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsControllerService, providedIn: 'root' });
5939
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5940
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsControllerService, providedIn: 'root' });
5941
5941
  }
5942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsControllerService, decorators: [{
5942
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsControllerService, decorators: [{
5943
5943
  type: Injectable,
5944
5944
  args: [{
5945
5945
  providedIn: 'root'
@@ -6092,12 +6092,12 @@ class CreativeSetsV2ControllerService extends BaseService {
6092
6092
  reportProgress: reportProgress
6093
6093
  });
6094
6094
  }
6095
- update2(id, creativeAssetOptimizationRequest, observe = 'body', reportProgress = false, options) {
6095
+ update1(id, creativeAssetOptimizationRequest, observe = 'body', reportProgress = false, options) {
6096
6096
  if (id === null || id === undefined) {
6097
- throw new Error('Required parameter id was null or undefined when calling update2.');
6097
+ throw new Error('Required parameter id was null or undefined when calling update1.');
6098
6098
  }
6099
6099
  if (creativeAssetOptimizationRequest === null || creativeAssetOptimizationRequest === undefined) {
6100
- throw new Error('Required parameter creativeAssetOptimizationRequest was null or undefined when calling update2.');
6100
+ throw new Error('Required parameter creativeAssetOptimizationRequest was null or undefined when calling update1.');
6101
6101
  }
6102
6102
  let localVarHeaders = this.defaultHeaders;
6103
6103
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -6209,10 +6209,10 @@ class CreativeSetsV2ControllerService extends BaseService {
6209
6209
  reportProgress: reportProgress
6210
6210
  });
6211
6211
  }
6212
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsV2ControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6213
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsV2ControllerService, providedIn: 'root' });
6212
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsV2ControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6213
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsV2ControllerService, providedIn: 'root' });
6214
6214
  }
6215
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeSetsV2ControllerService, decorators: [{
6215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeSetsV2ControllerService, decorators: [{
6216
6216
  type: Injectable,
6217
6217
  args: [{
6218
6218
  providedIn: 'root'
@@ -6414,10 +6414,10 @@ class CreativeTemplateThemesControllerService extends BaseService {
6414
6414
  reportProgress: reportProgress
6415
6415
  });
6416
6416
  }
6417
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateThemesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6418
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateThemesControllerService, providedIn: 'root' });
6417
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateThemesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6418
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateThemesControllerService, providedIn: 'root' });
6419
6419
  }
6420
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateThemesControllerService, decorators: [{
6420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateThemesControllerService, decorators: [{
6421
6421
  type: Injectable,
6422
6422
  args: [{
6423
6423
  providedIn: 'root'
@@ -6481,10 +6481,10 @@ class CreativeTemplateVariablesControllerService extends BaseService {
6481
6481
  reportProgress: reportProgress
6482
6482
  });
6483
6483
  }
6484
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateVariablesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6485
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateVariablesControllerService, providedIn: 'root' });
6484
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateVariablesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6485
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateVariablesControllerService, providedIn: 'root' });
6486
6486
  }
6487
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplateVariablesControllerService, decorators: [{
6487
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplateVariablesControllerService, decorators: [{
6488
6488
  type: Injectable,
6489
6489
  args: [{
6490
6490
  providedIn: 'root'
@@ -6640,10 +6640,10 @@ class CreativeTemplatesControllerService extends BaseService {
6640
6640
  reportProgress: reportProgress
6641
6641
  });
6642
6642
  }
6643
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplatesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6644
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplatesControllerService, providedIn: 'root' });
6643
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplatesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6644
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplatesControllerService, providedIn: 'root' });
6645
6645
  }
6646
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CreativeTemplatesControllerService, decorators: [{
6646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CreativeTemplatesControllerService, decorators: [{
6647
6647
  type: Injectable,
6648
6648
  args: [{
6649
6649
  providedIn: 'root'
@@ -6810,10 +6810,10 @@ class CustomerReportingControllerService extends BaseService {
6810
6810
  reportProgress: reportProgress
6811
6811
  });
6812
6812
  }
6813
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CustomerReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6814
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CustomerReportingControllerService, providedIn: 'root' });
6813
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CustomerReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6814
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CustomerReportingControllerService, providedIn: 'root' });
6815
6815
  }
6816
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CustomerReportingControllerService, decorators: [{
6816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: CustomerReportingControllerService, decorators: [{
6817
6817
  type: Injectable,
6818
6818
  args: [{
6819
6819
  providedIn: 'root'
@@ -7469,10 +7469,10 @@ class DCOVideoSettingsControllerService extends BaseService {
7469
7469
  reportProgress: reportProgress
7470
7470
  });
7471
7471
  }
7472
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DCOVideoSettingsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
7473
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DCOVideoSettingsControllerService, providedIn: 'root' });
7472
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DCOVideoSettingsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
7473
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DCOVideoSettingsControllerService, providedIn: 'root' });
7474
7474
  }
7475
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DCOVideoSettingsControllerService, decorators: [{
7475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DCOVideoSettingsControllerService, decorators: [{
7476
7476
  type: Injectable,
7477
7477
  args: [{
7478
7478
  providedIn: 'root'
@@ -7545,46 +7545,6 @@ class DashboardControllerService extends BaseService {
7545
7545
  reportProgress: reportProgress
7546
7546
  });
7547
7547
  }
7548
- getById4(tableEntity, id, observe = 'body', reportProgress = false, options) {
7549
- if (tableEntity === null || tableEntity === undefined) {
7550
- throw new Error('Required parameter tableEntity was null or undefined when calling getById4.');
7551
- }
7552
- if (id === null || id === undefined) {
7553
- throw new Error('Required parameter id was null or undefined when calling getById4.');
7554
- }
7555
- let localVarHeaders = this.defaultHeaders;
7556
- const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
7557
- 'application/json'
7558
- ]);
7559
- if (localVarHttpHeaderAcceptSelected !== undefined) {
7560
- localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
7561
- }
7562
- const localVarHttpContext = options?.context ?? new HttpContext();
7563
- const localVarTransferCache = options?.transferCache ?? true;
7564
- let responseType_ = 'json';
7565
- if (localVarHttpHeaderAcceptSelected) {
7566
- if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
7567
- responseType_ = 'text';
7568
- }
7569
- else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
7570
- responseType_ = 'json';
7571
- }
7572
- else {
7573
- responseType_ = 'blob';
7574
- }
7575
- }
7576
- let localVarPath = `/v2/api/${this.configuration.encodeParam({ name: "tableEntity", value: tableEntity, in: "path", style: "simple", explode: false, dataType: "'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'LOOKALIKE_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING' | 'MMP_EVENT_NAME' | 'CONTENT_GENRE' | 'CONTENT_LANGUAGE' | 'AD_POD' | 'AD_BREAK' | 'INCREMENTALITY_TEST' | 'DEAL' | 'WEATHER' | 'ADO_KKTU' | 'CLICK_SIGNING' | 'CLICK_SIGNING_AUDIT'", dataFormat: undefined })}/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
7577
- const { basePath, withCredentials } = this.configuration;
7578
- return this.httpClient.request('get', `${basePath}${localVarPath}`, {
7579
- context: localVarHttpContext,
7580
- responseType: responseType_,
7581
- ...(withCredentials ? { withCredentials } : {}),
7582
- headers: localVarHeaders,
7583
- observe: observe,
7584
- ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
7585
- reportProgress: reportProgress
7586
- });
7587
- }
7588
7548
  getDashboardDataChart(showuu, dashboardRequest, refresh, observe = 'body', reportProgress = false, options) {
7589
7549
  if (showuu === null || showuu === undefined) {
7590
7550
  throw new Error('Required parameter showuu was null or undefined when calling getDashboardDataChart.');
@@ -8024,6 +7984,46 @@ class DashboardControllerService extends BaseService {
8024
7984
  reportProgress: reportProgress
8025
7985
  });
8026
7986
  }
7987
+ getEntityById(tableEntity, id, observe = 'body', reportProgress = false, options) {
7988
+ if (tableEntity === null || tableEntity === undefined) {
7989
+ throw new Error('Required parameter tableEntity was null or undefined when calling getEntityById.');
7990
+ }
7991
+ if (id === null || id === undefined) {
7992
+ throw new Error('Required parameter id was null or undefined when calling getEntityById.');
7993
+ }
7994
+ let localVarHeaders = this.defaultHeaders;
7995
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
7996
+ 'application/json'
7997
+ ]);
7998
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
7999
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
8000
+ }
8001
+ const localVarHttpContext = options?.context ?? new HttpContext();
8002
+ const localVarTransferCache = options?.transferCache ?? true;
8003
+ let responseType_ = 'json';
8004
+ if (localVarHttpHeaderAcceptSelected) {
8005
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
8006
+ responseType_ = 'text';
8007
+ }
8008
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
8009
+ responseType_ = 'json';
8010
+ }
8011
+ else {
8012
+ responseType_ = 'blob';
8013
+ }
8014
+ }
8015
+ let localVarPath = `/v2/api/${this.configuration.encodeParam({ name: "tableEntity", value: tableEntity, in: "path", style: "simple", explode: false, dataType: "'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'LOOKALIKE_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING' | 'MMP_EVENT_NAME' | 'CONTENT_GENRE' | 'CONTENT_LANGUAGE' | 'AD_POD' | 'AD_BREAK' | 'INCREMENTALITY_TEST' | 'DEAL' | 'WEATHER' | 'ADO_KKTU' | 'CLICK_SIGNING' | 'CLICK_SIGNING_AUDIT'", dataFormat: undefined })}/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
8016
+ const { basePath, withCredentials } = this.configuration;
8017
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
8018
+ context: localVarHttpContext,
8019
+ responseType: responseType_,
8020
+ ...(withCredentials ? { withCredentials } : {}),
8021
+ headers: localVarHeaders,
8022
+ observe: observe,
8023
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
8024
+ reportProgress: reportProgress
8025
+ });
8026
+ }
8027
8027
  getMenuCrumbs(observe = 'body', reportProgress = false, options) {
8028
8028
  let localVarHeaders = this.defaultHeaders;
8029
8029
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -8239,10 +8239,10 @@ class DashboardControllerService extends BaseService {
8239
8239
  reportProgress: reportProgress
8240
8240
  });
8241
8241
  }
8242
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DashboardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
8243
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DashboardControllerService, providedIn: 'root' });
8242
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DashboardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
8243
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DashboardControllerService, providedIn: 'root' });
8244
8244
  }
8245
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DashboardControllerService, decorators: [{
8245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: DashboardControllerService, decorators: [{
8246
8246
  type: Injectable,
8247
8247
  args: [{
8248
8248
  providedIn: 'root'
@@ -9094,10 +9094,10 @@ class ExperimentsControllerService extends BaseService {
9094
9094
  reportProgress: reportProgress
9095
9095
  });
9096
9096
  }
9097
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ExperimentsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9098
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ExperimentsControllerService, providedIn: 'root' });
9097
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ExperimentsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9098
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ExperimentsControllerService, providedIn: 'root' });
9099
9099
  }
9100
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ExperimentsControllerService, decorators: [{
9100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ExperimentsControllerService, decorators: [{
9101
9101
  type: Injectable,
9102
9102
  args: [{
9103
9103
  providedIn: 'root'
@@ -9265,10 +9265,10 @@ class FileUploadControllerService extends BaseService {
9265
9265
  reportProgress: reportProgress
9266
9266
  });
9267
9267
  }
9268
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FileUploadControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9269
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FileUploadControllerService, providedIn: 'root' });
9268
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: FileUploadControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9269
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: FileUploadControllerService, providedIn: 'root' });
9270
9270
  }
9271
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FileUploadControllerService, decorators: [{
9271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: FileUploadControllerService, decorators: [{
9272
9272
  type: Injectable,
9273
9273
  args: [{
9274
9274
  providedIn: 'root'
@@ -9304,7 +9304,7 @@ class MDMPAudienceControllerService extends BaseService {
9304
9304
  }
9305
9305
  let localVarHeaders = this.defaultHeaders;
9306
9306
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
9307
- '*/*'
9307
+ 'application/json'
9308
9308
  ]);
9309
9309
  if (localVarHttpHeaderAcceptSelected !== undefined) {
9310
9310
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -9344,10 +9344,10 @@ class MDMPAudienceControllerService extends BaseService {
9344
9344
  reportProgress: reportProgress
9345
9345
  });
9346
9346
  }
9347
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MDMPAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9348
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MDMPAudienceControllerService, providedIn: 'root' });
9347
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: MDMPAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9348
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: MDMPAudienceControllerService, providedIn: 'root' });
9349
9349
  }
9350
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MDMPAudienceControllerService, decorators: [{
9350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: MDMPAudienceControllerService, decorators: [{
9351
9351
  type: Injectable,
9352
9352
  args: [{
9353
9353
  providedIn: 'root'
@@ -9566,10 +9566,10 @@ class NotificationsControllerService extends BaseService {
9566
9566
  reportProgress: reportProgress
9567
9567
  });
9568
9568
  }
9569
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NotificationsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9570
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NotificationsControllerService, providedIn: 'root' });
9569
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: NotificationsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9570
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: NotificationsControllerService, providedIn: 'root' });
9571
9571
  }
9572
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NotificationsControllerService, decorators: [{
9572
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: NotificationsControllerService, decorators: [{
9573
9573
  type: Injectable,
9574
9574
  args: [{
9575
9575
  providedIn: 'root'
@@ -9639,9 +9639,9 @@ class PixelControllerService extends BaseService {
9639
9639
  reportProgress: reportProgress
9640
9640
  });
9641
9641
  }
9642
- create(pixel, observe = 'body', reportProgress = false, options) {
9642
+ createPixel(pixel, observe = 'body', reportProgress = false, options) {
9643
9643
  if (pixel === null || pixel === undefined) {
9644
- throw new Error('Required parameter pixel was null or undefined when calling create.');
9644
+ throw new Error('Required parameter pixel was null or undefined when calling createPixel.');
9645
9645
  }
9646
9646
  let localVarHeaders = this.defaultHeaders;
9647
9647
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
@@ -9725,9 +9725,9 @@ class PixelControllerService extends BaseService {
9725
9725
  reportProgress: reportProgress
9726
9726
  });
9727
9727
  }
9728
- getById(id, observe = 'body', reportProgress = false, options) {
9728
+ getPixelById(id, observe = 'body', reportProgress = false, options) {
9729
9729
  if (id === null || id === undefined) {
9730
- throw new Error('Required parameter id was null or undefined when calling getById.');
9730
+ throw new Error('Required parameter id was null or undefined when calling getPixelById.');
9731
9731
  }
9732
9732
  let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
9733
9733
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'id', id, QueryParamStyle.Form, true);
@@ -9907,10 +9907,10 @@ class PixelControllerService extends BaseService {
9907
9907
  reportProgress: reportProgress
9908
9908
  });
9909
9909
  }
9910
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: PixelControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9911
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: PixelControllerService, providedIn: 'root' });
9910
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: PixelControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
9911
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: PixelControllerService, providedIn: 'root' });
9912
9912
  }
9913
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: PixelControllerService, decorators: [{
9913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: PixelControllerService, decorators: [{
9914
9914
  type: Injectable,
9915
9915
  args: [{
9916
9916
  providedIn: 'root'
@@ -10044,10 +10044,10 @@ class ReportControllerService extends BaseService {
10044
10044
  reportProgress: reportProgress
10045
10045
  });
10046
10046
  }
10047
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10048
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportControllerService, providedIn: 'root' });
10047
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10048
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportControllerService, providedIn: 'root' });
10049
10049
  }
10050
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportControllerService, decorators: [{
10050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportControllerService, decorators: [{
10051
10051
  type: Injectable,
10052
10052
  args: [{
10053
10053
  providedIn: 'root'
@@ -10221,10 +10221,10 @@ class ReportingControllerService extends BaseService {
10221
10221
  reportProgress: reportProgress
10222
10222
  });
10223
10223
  }
10224
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10225
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingControllerService, providedIn: 'root' });
10224
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10225
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingControllerService, providedIn: 'root' });
10226
10226
  }
10227
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingControllerService, decorators: [{
10227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingControllerService, decorators: [{
10228
10228
  type: Injectable,
10229
10229
  args: [{
10230
10230
  providedIn: 'root'
@@ -10565,10 +10565,10 @@ class ReportingSchedulerControllerService extends BaseService {
10565
10565
  reportProgress: reportProgress
10566
10566
  });
10567
10567
  }
10568
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingSchedulerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10569
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingSchedulerControllerService, providedIn: 'root' });
10568
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingSchedulerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
10569
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingSchedulerControllerService, providedIn: 'root' });
10570
10570
  }
10571
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ReportingSchedulerControllerService, decorators: [{
10571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ReportingSchedulerControllerService, decorators: [{
10572
10572
  type: Injectable,
10573
10573
  args: [{
10574
10574
  providedIn: 'root'
@@ -11155,10 +11155,10 @@ class SafeGuardControllerService extends BaseService {
11155
11155
  reportProgress: reportProgress
11156
11156
  });
11157
11157
  }
11158
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SafeGuardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11159
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SafeGuardControllerService, providedIn: 'root' });
11158
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SafeGuardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11159
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SafeGuardControllerService, providedIn: 'root' });
11160
11160
  }
11161
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SafeGuardControllerService, decorators: [{
11161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SafeGuardControllerService, decorators: [{
11162
11162
  type: Injectable,
11163
11163
  args: [{
11164
11164
  providedIn: 'root'
@@ -11203,7 +11203,7 @@ class ShopeeAudienceControllerService extends BaseService {
11203
11203
  localVarHeaders = localVarHeaders.set('Authorization', String(authorization));
11204
11204
  }
11205
11205
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
11206
- '*/*'
11206
+ 'application/json'
11207
11207
  ]);
11208
11208
  if (localVarHttpHeaderAcceptSelected !== undefined) {
11209
11209
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -11400,7 +11400,7 @@ class ShopeeAudienceControllerService extends BaseService {
11400
11400
  localVarHeaders = localVarHeaders.set('Authorization', String(authorization));
11401
11401
  }
11402
11402
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
11403
- '*/*'
11403
+ 'application/json'
11404
11404
  ]);
11405
11405
  if (localVarHttpHeaderAcceptSelected !== undefined) {
11406
11406
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -11458,7 +11458,7 @@ class ShopeeAudienceControllerService extends BaseService {
11458
11458
  localVarHeaders = localVarHeaders.set('Authorization', String(authorization));
11459
11459
  }
11460
11460
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
11461
- '*/*'
11461
+ 'application/json'
11462
11462
  ]);
11463
11463
  if (localVarHttpHeaderAcceptSelected !== undefined) {
11464
11464
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -11498,10 +11498,10 @@ class ShopeeAudienceControllerService extends BaseService {
11498
11498
  reportProgress: reportProgress
11499
11499
  });
11500
11500
  }
11501
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ShopeeAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11502
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ShopeeAudienceControllerService, providedIn: 'root' });
11501
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ShopeeAudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11502
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ShopeeAudienceControllerService, providedIn: 'root' });
11503
11503
  }
11504
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ShopeeAudienceControllerService, decorators: [{
11504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ShopeeAudienceControllerService, decorators: [{
11505
11505
  type: Injectable,
11506
11506
  args: [{
11507
11507
  providedIn: 'root'
@@ -11978,10 +11978,10 @@ class SliceXControllerService extends BaseService {
11978
11978
  reportProgress: reportProgress
11979
11979
  });
11980
11980
  }
11981
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliceXControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11982
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliceXControllerService, providedIn: 'root' });
11981
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SliceXControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
11982
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SliceXControllerService, providedIn: 'root' });
11983
11983
  }
11984
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliceXControllerService, decorators: [{
11984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SliceXControllerService, decorators: [{
11985
11985
  type: Injectable,
11986
11986
  args: [{
11987
11987
  providedIn: 'root'
@@ -12014,7 +12014,7 @@ class SmartCachingControllerService extends BaseService {
12014
12014
  scheduleSmartCaching(observe = 'body', reportProgress = false, options) {
12015
12015
  let localVarHeaders = this.defaultHeaders;
12016
12016
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
12017
- '*/*'
12017
+ 'application/json'
12018
12018
  ]);
12019
12019
  if (localVarHttpHeaderAcceptSelected !== undefined) {
12020
12020
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -12045,10 +12045,10 @@ class SmartCachingControllerService extends BaseService {
12045
12045
  reportProgress: reportProgress
12046
12046
  });
12047
12047
  }
12048
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SmartCachingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
12049
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SmartCachingControllerService, providedIn: 'root' });
12048
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SmartCachingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
12049
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SmartCachingControllerService, providedIn: 'root' });
12050
12050
  }
12051
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SmartCachingControllerService, decorators: [{
12051
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SmartCachingControllerService, decorators: [{
12052
12052
  type: Injectable,
12053
12053
  args: [{
12054
12054
  providedIn: 'root'
@@ -12248,10 +12248,10 @@ class SpringRoleTestingControllerService extends BaseService {
12248
12248
  reportProgress: reportProgress
12249
12249
  });
12250
12250
  }
12251
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SpringRoleTestingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
12252
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SpringRoleTestingControllerService, providedIn: 'root' });
12251
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SpringRoleTestingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
12252
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SpringRoleTestingControllerService, providedIn: 'root' });
12253
12253
  }
12254
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SpringRoleTestingControllerService, decorators: [{
12254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: SpringRoleTestingControllerService, decorators: [{
12255
12255
  type: Injectable,
12256
12256
  args: [{
12257
12257
  providedIn: 'root'
@@ -12800,7 +12800,7 @@ class StrategyControllerService extends BaseService {
12800
12800
  }
12801
12801
  let localVarHeaders = this.defaultHeaders;
12802
12802
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
12803
- '*/*'
12803
+ 'application/json'
12804
12804
  ]);
12805
12805
  if (localVarHttpHeaderAcceptSelected !== undefined) {
12806
12806
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13030,7 +13030,7 @@ class StrategyControllerService extends BaseService {
13030
13030
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
13031
13031
  let localVarHeaders = this.defaultHeaders;
13032
13032
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13033
- '*/*'
13033
+ 'application/json'
13034
13034
  ]);
13035
13035
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13036
13036
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13068,7 +13068,7 @@ class StrategyControllerService extends BaseService {
13068
13068
  }
13069
13069
  let localVarHeaders = this.defaultHeaders;
13070
13070
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13071
- '*/*'
13071
+ 'application/json'
13072
13072
  ]);
13073
13073
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13074
13074
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13108,7 +13108,7 @@ class StrategyControllerService extends BaseService {
13108
13108
  }
13109
13109
  let localVarHeaders = this.defaultHeaders;
13110
13110
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13111
- '*/*'
13111
+ 'application/json'
13112
13112
  ]);
13113
13113
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13114
13114
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13148,7 +13148,7 @@ class StrategyControllerService extends BaseService {
13148
13148
  }
13149
13149
  let localVarHeaders = this.defaultHeaders;
13150
13150
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13151
- '*/*'
13151
+ 'application/json'
13152
13152
  ]);
13153
13153
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13154
13154
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13320,7 +13320,7 @@ class StrategyControllerService extends BaseService {
13320
13320
  }
13321
13321
  let localVarHeaders = this.defaultHeaders;
13322
13322
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13323
- '*/*'
13323
+ 'application/json'
13324
13324
  ]);
13325
13325
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13326
13326
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13783,10 +13783,10 @@ class StrategyControllerService extends BaseService {
13783
13783
  reportProgress: reportProgress
13784
13784
  });
13785
13785
  }
13786
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13787
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyControllerService, providedIn: 'root' });
13786
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13787
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyControllerService, providedIn: 'root' });
13788
13788
  }
13789
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyControllerService, decorators: [{
13789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyControllerService, decorators: [{
13790
13790
  type: Injectable,
13791
13791
  args: [{
13792
13792
  providedIn: 'root'
@@ -13873,7 +13873,7 @@ class StrategyTemplateControllerService extends BaseService {
13873
13873
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'refresh', refresh, QueryParamStyle.Form, true);
13874
13874
  let localVarHeaders = this.defaultHeaders;
13875
13875
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
13876
- '*/*'
13876
+ 'application/json'
13877
13877
  ]);
13878
13878
  if (localVarHttpHeaderAcceptSelected !== undefined) {
13879
13879
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -13905,10 +13905,10 @@ class StrategyTemplateControllerService extends BaseService {
13905
13905
  reportProgress: reportProgress
13906
13906
  });
13907
13907
  }
13908
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyTemplateControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13909
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyTemplateControllerService, providedIn: 'root' });
13908
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyTemplateControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13909
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyTemplateControllerService, providedIn: 'root' });
13910
13910
  }
13911
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: StrategyTemplateControllerService, decorators: [{
13911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: StrategyTemplateControllerService, decorators: [{
13912
13912
  type: Injectable,
13913
13913
  args: [{
13914
13914
  providedIn: 'root'
@@ -13987,10 +13987,10 @@ class UILoggerControllerService extends BaseService {
13987
13987
  reportProgress: reportProgress
13988
13988
  });
13989
13989
  }
13990
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UILoggerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13991
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UILoggerControllerService, providedIn: 'root' });
13990
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UILoggerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
13991
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UILoggerControllerService, providedIn: 'root' });
13992
13992
  }
13993
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UILoggerControllerService, decorators: [{
13993
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UILoggerControllerService, decorators: [{
13994
13994
  type: Injectable,
13995
13995
  args: [{
13996
13996
  providedIn: 'root'
@@ -14026,7 +14026,7 @@ class UserPreferenceControllerService extends BaseService {
14026
14026
  }
14027
14027
  let localVarHeaders = this.defaultHeaders;
14028
14028
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
14029
- '*/*'
14029
+ 'application/json'
14030
14030
  ]);
14031
14031
  if (localVarHttpHeaderAcceptSelected !== undefined) {
14032
14032
  localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
@@ -14174,10 +14174,10 @@ class UserPreferenceControllerService extends BaseService {
14174
14174
  reportProgress: reportProgress
14175
14175
  });
14176
14176
  }
14177
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UserPreferenceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
14178
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UserPreferenceControllerService, providedIn: 'root' });
14177
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UserPreferenceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
14178
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UserPreferenceControllerService, providedIn: 'root' });
14179
14179
  }
14180
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: UserPreferenceControllerService, decorators: [{
14180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: UserPreferenceControllerService, decorators: [{
14181
14181
  type: Injectable,
14182
14182
  args: [{
14183
14183
  providedIn: 'root'
@@ -17373,11 +17373,11 @@ class ApiModule {
17373
17373
  'See also https://github.com/angular/angular/issues/20575');
17374
17374
  }
17375
17375
  }
17376
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
17377
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: ApiModule });
17378
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiModule });
17376
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
17377
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.28", ngImport: i0, type: ApiModule });
17378
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ApiModule });
17379
17379
  }
17380
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiModule, decorators: [{
17380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.28", ngImport: i0, type: ApiModule, decorators: [{
17381
17381
  type: NgModule,
17382
17382
  args: [{
17383
17383
  imports: [],