@revxui/intellibid-client-ts 1.0.0

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.
Files changed (73) hide show
  1. package/README.md +180 -0
  2. package/api/api.d.ts +13 -0
  3. package/api/businessGeoController.service.d.ts +28 -0
  4. package/api/campaignController.service.d.ts +56 -0
  5. package/api/countryController.service.d.ts +28 -0
  6. package/api/dpaCampaignController.service.d.ts +52 -0
  7. package/api/dpaEngagementController.service.d.ts +83 -0
  8. package/api/packageDetailController.service.d.ts +45 -0
  9. package/api.module.d.ts +11 -0
  10. package/configuration.d.ts +48 -0
  11. package/encoder.d.ts +10 -0
  12. package/esm2020/api/api.mjs +14 -0
  13. package/esm2020/api/businessGeoController.service.mjs +78 -0
  14. package/esm2020/api/campaignController.service.mjs +152 -0
  15. package/esm2020/api/countryController.service.mjs +78 -0
  16. package/esm2020/api/dpaCampaignController.service.mjs +145 -0
  17. package/esm2020/api/dpaEngagementController.service.mjs +224 -0
  18. package/esm2020/api/packageDetailController.service.mjs +123 -0
  19. package/esm2020/api.module.mjs +60 -0
  20. package/esm2020/configuration.mjs +59 -0
  21. package/esm2020/encoder.mjs +17 -0
  22. package/esm2020/index.mjs +6 -0
  23. package/esm2020/model/adSetDetails.mjs +20 -0
  24. package/esm2020/model/audienceDetails.mjs +13 -0
  25. package/esm2020/model/businessGeoResponse.mjs +13 -0
  26. package/esm2020/model/campaignResponse.mjs +32 -0
  27. package/esm2020/model/countryResponse.mjs +13 -0
  28. package/esm2020/model/createCampaignRequest.mjs +13 -0
  29. package/esm2020/model/creativeDetails.mjs +2 -0
  30. package/esm2020/model/dpaCampaignRequest.mjs +2 -0
  31. package/esm2020/model/dpaCampaignResponse.mjs +11 -0
  32. package/esm2020/model/dpaEngagementRequest.mjs +2 -0
  33. package/esm2020/model/dpaEngagementResponse.mjs +32 -0
  34. package/esm2020/model/exclusionRule.mjs +13 -0
  35. package/esm2020/model/facebookDetails.mjs +2 -0
  36. package/esm2020/model/imageOverlaySpecDetails.mjs +13 -0
  37. package/esm2020/model/models.mjs +21 -0
  38. package/esm2020/model/packageDetailResponse.mjs +13 -0
  39. package/esm2020/model/pageCampaignResponse.mjs +2 -0
  40. package/esm2020/model/pageDpaEngagementResponse.mjs +2 -0
  41. package/esm2020/model/pagePackageDetailResponse.mjs +2 -0
  42. package/esm2020/model/pageableObject.mjs +2 -0
  43. package/esm2020/model/sortObject.mjs +13 -0
  44. package/esm2020/revxui-intellibid-client-ts.mjs +5 -0
  45. package/esm2020/variables.mjs +9 -0
  46. package/fesm2015/revxui-intellibid-client-ts.mjs +1010 -0
  47. package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -0
  48. package/fesm2020/revxui-intellibid-client-ts.mjs +1092 -0
  49. package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -0
  50. package/index.d.ts +5 -0
  51. package/model/adSetDetails.d.ts +28 -0
  52. package/model/audienceDetails.d.ts +22 -0
  53. package/model/businessGeoResponse.d.ts +15 -0
  54. package/model/campaignResponse.d.ts +117 -0
  55. package/model/countryResponse.d.ts +16 -0
  56. package/model/createCampaignRequest.d.ts +16 -0
  57. package/model/creativeDetails.d.ts +21 -0
  58. package/model/dpaCampaignRequest.d.ts +17 -0
  59. package/model/dpaCampaignResponse.d.ts +35 -0
  60. package/model/dpaEngagementRequest.d.ts +29 -0
  61. package/model/dpaEngagementResponse.d.ts +90 -0
  62. package/model/exclusionRule.d.ts +15 -0
  63. package/model/facebookDetails.d.ts +27 -0
  64. package/model/imageOverlaySpecDetails.d.ts +20 -0
  65. package/model/models.d.ts +20 -0
  66. package/model/packageDetailResponse.d.ts +16 -0
  67. package/model/pageCampaignResponse.d.ts +27 -0
  68. package/model/pageDpaEngagementResponse.d.ts +27 -0
  69. package/model/pagePackageDetailResponse.d.ts +27 -0
  70. package/model/pageableObject.d.ts +20 -0
  71. package/model/sortObject.d.ts +18 -0
  72. package/package.json +33 -0
  73. package/variables.d.ts +8 -0
@@ -0,0 +1,1010 @@
1
+ import * as i0 from '@angular/core';
2
+ import { InjectionToken, Injectable, Optional, Inject, NgModule, SkipSelf } from '@angular/core';
3
+ import * as i1 from '@angular/common/http';
4
+ import { HttpHeaders, HttpUrlEncodingCodec, HttpParams } from '@angular/common/http';
5
+
6
+ const BASE_PATH = new InjectionToken('basePath');
7
+ const COLLECTION_FORMATS = {
8
+ 'csv': ',',
9
+ 'tsv': ' ',
10
+ 'ssv': ' ',
11
+ 'pipes': '|'
12
+ };
13
+
14
+ class Configuration {
15
+ constructor(configurationParameters = {}) {
16
+ this.apiKeys = configurationParameters.apiKeys;
17
+ this.username = configurationParameters.username;
18
+ this.password = configurationParameters.password;
19
+ this.accessToken = configurationParameters.accessToken;
20
+ this.basePath = configurationParameters.basePath;
21
+ this.withCredentials = configurationParameters.withCredentials;
22
+ }
23
+ /**
24
+ * Select the correct content-type to use for a request.
25
+ * Uses {@link Configuration#isJsonMime} to determine the correct content-type.
26
+ * If no content type is found return the first found type if the contentTypes is not empty
27
+ * @param contentTypes - the array of content types that are available for selection
28
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
29
+ */
30
+ selectHeaderContentType(contentTypes) {
31
+ if (contentTypes.length == 0) {
32
+ return undefined;
33
+ }
34
+ let type = contentTypes.find(x => this.isJsonMime(x));
35
+ if (type === undefined) {
36
+ return contentTypes[0];
37
+ }
38
+ return type;
39
+ }
40
+ /**
41
+ * Select the correct accept content-type to use for a request.
42
+ * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.
43
+ * If no content type is found return the first found type if the contentTypes is not empty
44
+ * @param accepts - the array of content types that are available for selection.
45
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
46
+ */
47
+ selectHeaderAccept(accepts) {
48
+ if (accepts.length == 0) {
49
+ return undefined;
50
+ }
51
+ let type = accepts.find(x => this.isJsonMime(x));
52
+ if (type === undefined) {
53
+ return accepts[0];
54
+ }
55
+ return type;
56
+ }
57
+ /**
58
+ * Check if the given MIME is a JSON MIME.
59
+ * JSON MIME examples:
60
+ * application/json
61
+ * application/json; charset=UTF8
62
+ * APPLICATION/JSON
63
+ * application/vnd.company+json
64
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
65
+ * @return True if the given MIME is JSON, false otherwise.
66
+ */
67
+ isJsonMime(mime) {
68
+ const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
69
+ return mime != null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
70
+ }
71
+ }
72
+
73
+ /**
74
+ *
75
+ *
76
+ *
77
+ *
78
+ *
79
+ *
80
+ * NOTE: This class is auto generated by the swagger code generator program.
81
+ * https://github.com/swagger-api/swagger-codegen.git
82
+ * Do not edit the class manually.
83
+ */ /* tslint:disable:no-unused-variable member-ordering */
84
+ class BusinessGeoControllerService {
85
+ constructor(httpClient, basePath, configuration) {
86
+ this.httpClient = httpClient;
87
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
88
+ this.defaultHeaders = new HttpHeaders();
89
+ this.configuration = new Configuration();
90
+ if (basePath) {
91
+ this.basePath = basePath;
92
+ }
93
+ if (configuration) {
94
+ this.configuration = configuration;
95
+ this.basePath = basePath || configuration.basePath || this.basePath;
96
+ }
97
+ }
98
+ /**
99
+ * @param consumes string[] mime-types
100
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
101
+ */
102
+ canConsumeForm(consumes) {
103
+ const form = 'multipart/form-data';
104
+ for (const consume of consumes) {
105
+ if (form === consume) {
106
+ return true;
107
+ }
108
+ }
109
+ return false;
110
+ }
111
+ getAllBusinessGeos(observe = 'body', reportProgress = false) {
112
+ let headers = this.defaultHeaders;
113
+ // to determine the Accept header
114
+ let httpHeaderAccepts = [
115
+ '*/*'
116
+ ];
117
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
118
+ if (httpHeaderAcceptSelected != undefined) {
119
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
120
+ }
121
+ // to determine the Content-Type header
122
+ const consumes = [];
123
+ return this.httpClient.request('get', `${this.basePath}/business-geo`, {
124
+ withCredentials: this.configuration.withCredentials,
125
+ headers: headers,
126
+ observe: observe,
127
+ reportProgress: reportProgress
128
+ });
129
+ }
130
+ }
131
+ BusinessGeoControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessGeoControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
132
+ BusinessGeoControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessGeoControllerService });
133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessGeoControllerService, decorators: [{
134
+ type: Injectable
135
+ }], ctorParameters: function () {
136
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
137
+ type: Optional
138
+ }, {
139
+ type: Inject,
140
+ args: [BASE_PATH]
141
+ }] }, { type: Configuration, decorators: [{
142
+ type: Optional
143
+ }] }];
144
+ } });
145
+
146
+ /**
147
+ * CustomHttpUrlEncodingCodec
148
+ * Fix plus sign (+) not encoding, so sent as blank space
149
+ * See: https://github.com/angular/angular/issues/11058#issuecomment-247367318
150
+ */
151
+ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
152
+ encodeKey(k) {
153
+ k = super.encodeKey(k);
154
+ return k.replace(/\+/gi, '%2B');
155
+ }
156
+ encodeValue(v) {
157
+ v = super.encodeValue(v);
158
+ return v.replace(/\+/gi, '%2B');
159
+ }
160
+ }
161
+
162
+ /**
163
+ *
164
+ *
165
+ *
166
+ *
167
+ *
168
+ *
169
+ * NOTE: This class is auto generated by the swagger code generator program.
170
+ * https://github.com/swagger-api/swagger-codegen.git
171
+ * Do not edit the class manually.
172
+ */ /* tslint:disable:no-unused-variable member-ordering */
173
+ class CampaignControllerService {
174
+ constructor(httpClient, basePath, configuration) {
175
+ this.httpClient = httpClient;
176
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
177
+ this.defaultHeaders = new HttpHeaders();
178
+ this.configuration = new Configuration();
179
+ if (basePath) {
180
+ this.basePath = basePath;
181
+ }
182
+ if (configuration) {
183
+ this.configuration = configuration;
184
+ this.basePath = basePath || configuration.basePath || this.basePath;
185
+ }
186
+ }
187
+ /**
188
+ * @param consumes string[] mime-types
189
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
190
+ */
191
+ canConsumeForm(consumes) {
192
+ const form = 'multipart/form-data';
193
+ for (const consume of consumes) {
194
+ if (form === consume) {
195
+ return true;
196
+ }
197
+ }
198
+ return false;
199
+ }
200
+ createCampaign(body, observe = 'body', reportProgress = false) {
201
+ if (body === null || body === undefined) {
202
+ throw new Error('Required parameter body was null or undefined when calling createCampaign.');
203
+ }
204
+ let headers = this.defaultHeaders;
205
+ // to determine the Accept header
206
+ let httpHeaderAccepts = [
207
+ '*/*'
208
+ ];
209
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
210
+ if (httpHeaderAcceptSelected != undefined) {
211
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
212
+ }
213
+ // to determine the Content-Type header
214
+ const consumes = [
215
+ 'application/json'
216
+ ];
217
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
218
+ if (httpContentTypeSelected != undefined) {
219
+ headers = headers.set('Content-Type', httpContentTypeSelected);
220
+ }
221
+ return this.httpClient.request('post', `${this.basePath}/campaign`, {
222
+ body: body,
223
+ withCredentials: this.configuration.withCredentials,
224
+ headers: headers,
225
+ observe: observe,
226
+ reportProgress: reportProgress
227
+ });
228
+ }
229
+ getAllCampaigns(name, vizardPackageId, status, page, size, sort, observe = 'body', reportProgress = false) {
230
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
231
+ if (name !== undefined && name !== null) {
232
+ queryParameters = queryParameters.set('name', name);
233
+ }
234
+ if (vizardPackageId !== undefined && vizardPackageId !== null) {
235
+ queryParameters = queryParameters.set('vizardPackageId', vizardPackageId);
236
+ }
237
+ if (status !== undefined && status !== null) {
238
+ queryParameters = queryParameters.set('status', status);
239
+ }
240
+ if (page !== undefined && page !== null) {
241
+ queryParameters = queryParameters.set('page', page);
242
+ }
243
+ if (size !== undefined && size !== null) {
244
+ queryParameters = queryParameters.set('size', size);
245
+ }
246
+ if (sort) {
247
+ sort.forEach((element) => {
248
+ queryParameters = queryParameters.append('sort', element);
249
+ });
250
+ }
251
+ let headers = this.defaultHeaders;
252
+ // to determine the Accept header
253
+ let httpHeaderAccepts = [
254
+ '*/*'
255
+ ];
256
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
257
+ if (httpHeaderAcceptSelected != undefined) {
258
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
259
+ }
260
+ // to determine the Content-Type header
261
+ const consumes = [];
262
+ return this.httpClient.request('get', `${this.basePath}/campaign`, {
263
+ params: queryParameters,
264
+ withCredentials: this.configuration.withCredentials,
265
+ headers: headers,
266
+ observe: observe,
267
+ reportProgress: reportProgress
268
+ });
269
+ }
270
+ getCampaign(id, observe = 'body', reportProgress = false) {
271
+ if (id === null || id === undefined) {
272
+ throw new Error('Required parameter id was null or undefined when calling getCampaign.');
273
+ }
274
+ let headers = this.defaultHeaders;
275
+ // to determine the Accept header
276
+ let httpHeaderAccepts = [
277
+ '*/*'
278
+ ];
279
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
280
+ if (httpHeaderAcceptSelected != undefined) {
281
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
282
+ }
283
+ // to determine the Content-Type header
284
+ const consumes = [];
285
+ return this.httpClient.request('get', `${this.basePath}/campaign/${encodeURIComponent(String(id))}`, {
286
+ withCredentials: this.configuration.withCredentials,
287
+ headers: headers,
288
+ observe: observe,
289
+ reportProgress: reportProgress
290
+ });
291
+ }
292
+ }
293
+ CampaignControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
294
+ CampaignControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignControllerService });
295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignControllerService, decorators: [{
296
+ type: Injectable
297
+ }], ctorParameters: function () {
298
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
299
+ type: Optional
300
+ }, {
301
+ type: Inject,
302
+ args: [BASE_PATH]
303
+ }] }, { type: Configuration, decorators: [{
304
+ type: Optional
305
+ }] }];
306
+ } });
307
+
308
+ /**
309
+ *
310
+ *
311
+ *
312
+ *
313
+ *
314
+ *
315
+ * NOTE: This class is auto generated by the swagger code generator program.
316
+ * https://github.com/swagger-api/swagger-codegen.git
317
+ * Do not edit the class manually.
318
+ */ /* tslint:disable:no-unused-variable member-ordering */
319
+ class CountryControllerService {
320
+ constructor(httpClient, basePath, configuration) {
321
+ this.httpClient = httpClient;
322
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
323
+ this.defaultHeaders = new HttpHeaders();
324
+ this.configuration = new Configuration();
325
+ if (basePath) {
326
+ this.basePath = basePath;
327
+ }
328
+ if (configuration) {
329
+ this.configuration = configuration;
330
+ this.basePath = basePath || configuration.basePath || this.basePath;
331
+ }
332
+ }
333
+ /**
334
+ * @param consumes string[] mime-types
335
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
336
+ */
337
+ canConsumeForm(consumes) {
338
+ const form = 'multipart/form-data';
339
+ for (const consume of consumes) {
340
+ if (form === consume) {
341
+ return true;
342
+ }
343
+ }
344
+ return false;
345
+ }
346
+ getAllCountries(observe = 'body', reportProgress = false) {
347
+ let headers = this.defaultHeaders;
348
+ // to determine the Accept header
349
+ let httpHeaderAccepts = [
350
+ '*/*'
351
+ ];
352
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
353
+ if (httpHeaderAcceptSelected != undefined) {
354
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
355
+ }
356
+ // to determine the Content-Type header
357
+ const consumes = [];
358
+ return this.httpClient.request('get', `${this.basePath}/country`, {
359
+ withCredentials: this.configuration.withCredentials,
360
+ headers: headers,
361
+ observe: observe,
362
+ reportProgress: reportProgress
363
+ });
364
+ }
365
+ }
366
+ CountryControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CountryControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
367
+ CountryControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CountryControllerService });
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CountryControllerService, decorators: [{
369
+ type: Injectable
370
+ }], ctorParameters: function () {
371
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
372
+ type: Optional
373
+ }, {
374
+ type: Inject,
375
+ args: [BASE_PATH]
376
+ }] }, { type: Configuration, decorators: [{
377
+ type: Optional
378
+ }] }];
379
+ } });
380
+
381
+ /**
382
+ *
383
+ *
384
+ *
385
+ *
386
+ *
387
+ *
388
+ * NOTE: This class is auto generated by the swagger code generator program.
389
+ * https://github.com/swagger-api/swagger-codegen.git
390
+ * Do not edit the class manually.
391
+ */ /* tslint:disable:no-unused-variable member-ordering */
392
+ class DpaCampaignControllerService {
393
+ constructor(httpClient, basePath, configuration) {
394
+ this.httpClient = httpClient;
395
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
396
+ this.defaultHeaders = new HttpHeaders();
397
+ this.configuration = new Configuration();
398
+ if (basePath) {
399
+ this.basePath = basePath;
400
+ }
401
+ if (configuration) {
402
+ this.configuration = configuration;
403
+ this.basePath = basePath || configuration.basePath || this.basePath;
404
+ }
405
+ }
406
+ /**
407
+ * @param consumes string[] mime-types
408
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
409
+ */
410
+ canConsumeForm(consumes) {
411
+ const form = 'multipart/form-data';
412
+ for (const consume of consumes) {
413
+ if (form === consume) {
414
+ return true;
415
+ }
416
+ }
417
+ return false;
418
+ }
419
+ createDpaCampaign(body, id, observe = 'body', reportProgress = false) {
420
+ if (body === null || body === undefined) {
421
+ throw new Error('Required parameter body was null or undefined when calling createDpaCampaign.');
422
+ }
423
+ if (id === null || id === undefined) {
424
+ throw new Error('Required parameter id was null or undefined when calling createDpaCampaign.');
425
+ }
426
+ let headers = this.defaultHeaders;
427
+ // to determine the Accept header
428
+ let httpHeaderAccepts = [
429
+ '*/*'
430
+ ];
431
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
432
+ if (httpHeaderAcceptSelected != undefined) {
433
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
434
+ }
435
+ // to determine the Content-Type header
436
+ const consumes = [
437
+ 'application/json'
438
+ ];
439
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
440
+ if (httpContentTypeSelected != undefined) {
441
+ headers = headers.set('Content-Type', httpContentTypeSelected);
442
+ }
443
+ return this.httpClient.request('post', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
444
+ body: body,
445
+ withCredentials: this.configuration.withCredentials,
446
+ headers: headers,
447
+ observe: observe,
448
+ reportProgress: reportProgress
449
+ });
450
+ }
451
+ getDpaCampaign(id, observe = 'body', reportProgress = false) {
452
+ if (id === null || id === undefined) {
453
+ throw new Error('Required parameter id was null or undefined when calling getDpaCampaign.');
454
+ }
455
+ let headers = this.defaultHeaders;
456
+ // to determine the Accept header
457
+ let httpHeaderAccepts = [
458
+ '*/*'
459
+ ];
460
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
461
+ if (httpHeaderAcceptSelected != undefined) {
462
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
463
+ }
464
+ // to determine the Content-Type header
465
+ const consumes = [];
466
+ return this.httpClient.request('get', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
467
+ withCredentials: this.configuration.withCredentials,
468
+ headers: headers,
469
+ observe: observe,
470
+ reportProgress: reportProgress
471
+ });
472
+ }
473
+ updateDpaCampaign(body, id, observe = 'body', reportProgress = false) {
474
+ if (body === null || body === undefined) {
475
+ throw new Error('Required parameter body was null or undefined when calling updateDpaCampaign.');
476
+ }
477
+ if (id === null || id === undefined) {
478
+ throw new Error('Required parameter id was null or undefined when calling updateDpaCampaign.');
479
+ }
480
+ let headers = this.defaultHeaders;
481
+ // to determine the Accept header
482
+ let httpHeaderAccepts = [
483
+ '*/*'
484
+ ];
485
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
486
+ if (httpHeaderAcceptSelected != undefined) {
487
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
488
+ }
489
+ // to determine the Content-Type header
490
+ const consumes = [
491
+ 'application/json'
492
+ ];
493
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
494
+ if (httpContentTypeSelected != undefined) {
495
+ headers = headers.set('Content-Type', httpContentTypeSelected);
496
+ }
497
+ return this.httpClient.request('put', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
498
+ body: body,
499
+ withCredentials: this.configuration.withCredentials,
500
+ headers: headers,
501
+ observe: observe,
502
+ reportProgress: reportProgress
503
+ });
504
+ }
505
+ }
506
+ DpaCampaignControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaCampaignControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
507
+ DpaCampaignControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaCampaignControllerService });
508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaCampaignControllerService, decorators: [{
509
+ type: Injectable
510
+ }], ctorParameters: function () {
511
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
512
+ type: Optional
513
+ }, {
514
+ type: Inject,
515
+ args: [BASE_PATH]
516
+ }] }, { type: Configuration, decorators: [{
517
+ type: Optional
518
+ }] }];
519
+ } });
520
+
521
+ /**
522
+ *
523
+ *
524
+ *
525
+ *
526
+ *
527
+ *
528
+ * NOTE: This class is auto generated by the swagger code generator program.
529
+ * https://github.com/swagger-api/swagger-codegen.git
530
+ * Do not edit the class manually.
531
+ */ /* tslint:disable:no-unused-variable member-ordering */
532
+ class DpaEngagementControllerService {
533
+ constructor(httpClient, basePath, configuration) {
534
+ this.httpClient = httpClient;
535
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
536
+ this.defaultHeaders = new HttpHeaders();
537
+ this.configuration = new Configuration();
538
+ if (basePath) {
539
+ this.basePath = basePath;
540
+ }
541
+ if (configuration) {
542
+ this.configuration = configuration;
543
+ this.basePath = basePath || configuration.basePath || this.basePath;
544
+ }
545
+ }
546
+ /**
547
+ * @param consumes string[] mime-types
548
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
549
+ */
550
+ canConsumeForm(consumes) {
551
+ const form = 'multipart/form-data';
552
+ for (const consume of consumes) {
553
+ if (form === consume) {
554
+ return true;
555
+ }
556
+ }
557
+ return false;
558
+ }
559
+ createDpaEngagement(body, observe = 'body', reportProgress = false) {
560
+ if (body === null || body === undefined) {
561
+ throw new Error('Required parameter body was null or undefined when calling createDpaEngagement.');
562
+ }
563
+ let headers = this.defaultHeaders;
564
+ // to determine the Accept header
565
+ let httpHeaderAccepts = [
566
+ '*/*'
567
+ ];
568
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
569
+ if (httpHeaderAcceptSelected != undefined) {
570
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
571
+ }
572
+ // to determine the Content-Type header
573
+ const consumes = [
574
+ 'application/json'
575
+ ];
576
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
577
+ if (httpContentTypeSelected != undefined) {
578
+ headers = headers.set('Content-Type', httpContentTypeSelected);
579
+ }
580
+ return this.httpClient.request('post', `${this.basePath}/dpa-engagement`, {
581
+ body: body,
582
+ withCredentials: this.configuration.withCredentials,
583
+ headers: headers,
584
+ observe: observe,
585
+ reportProgress: reportProgress
586
+ });
587
+ }
588
+ getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, page, size, sort, observe = 'body', reportProgress = false) {
589
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
590
+ if (id !== undefined && id !== null) {
591
+ queryParameters = queryParameters.set('id', id);
592
+ }
593
+ if (campaignId !== undefined && campaignId !== null) {
594
+ queryParameters = queryParameters.set('campaignId', campaignId);
595
+ }
596
+ if (facebookCampaignId !== undefined && facebookCampaignId !== null) {
597
+ queryParameters = queryParameters.set('facebookCampaignId', facebookCampaignId);
598
+ }
599
+ if (name !== undefined && name !== null) {
600
+ queryParameters = queryParameters.set('name', name);
601
+ }
602
+ if (payoutType !== undefined && payoutType !== null) {
603
+ queryParameters = queryParameters.set('payoutType', payoutType);
604
+ }
605
+ if (status !== undefined && status !== null) {
606
+ queryParameters = queryParameters.set('status', status);
607
+ }
608
+ if (isIntellibidEnabled !== undefined && isIntellibidEnabled !== null) {
609
+ queryParameters = queryParameters.set('isIntellibidEnabled', isIntellibidEnabled);
610
+ }
611
+ if (isMarketFeedbackEnabled !== undefined && isMarketFeedbackEnabled !== null) {
612
+ queryParameters = queryParameters.set('isMarketFeedbackEnabled', isMarketFeedbackEnabled);
613
+ }
614
+ if (campaignStatus !== undefined && campaignStatus !== null) {
615
+ queryParameters = queryParameters.set('campaignStatus', campaignStatus);
616
+ }
617
+ if (page !== undefined && page !== null) {
618
+ queryParameters = queryParameters.set('page', page);
619
+ }
620
+ if (size !== undefined && size !== null) {
621
+ queryParameters = queryParameters.set('size', size);
622
+ }
623
+ if (sort) {
624
+ sort.forEach((element) => {
625
+ queryParameters = queryParameters.append('sort', element);
626
+ });
627
+ }
628
+ let headers = this.defaultHeaders;
629
+ // to determine the Accept header
630
+ let httpHeaderAccepts = [
631
+ '*/*'
632
+ ];
633
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
634
+ if (httpHeaderAcceptSelected != undefined) {
635
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
636
+ }
637
+ // to determine the Content-Type header
638
+ const consumes = [];
639
+ return this.httpClient.request('get', `${this.basePath}/dpa-engagement`, {
640
+ params: queryParameters,
641
+ withCredentials: this.configuration.withCredentials,
642
+ headers: headers,
643
+ observe: observe,
644
+ reportProgress: reportProgress
645
+ });
646
+ }
647
+ getDpaEngagement(id, observe = 'body', reportProgress = false) {
648
+ if (id === null || id === undefined) {
649
+ throw new Error('Required parameter id was null or undefined when calling getDpaEngagement.');
650
+ }
651
+ let headers = this.defaultHeaders;
652
+ // to determine the Accept header
653
+ let httpHeaderAccepts = [
654
+ '*/*'
655
+ ];
656
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
657
+ if (httpHeaderAcceptSelected != undefined) {
658
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
659
+ }
660
+ // to determine the Content-Type header
661
+ const consumes = [];
662
+ return this.httpClient.request('get', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}`, {
663
+ withCredentials: this.configuration.withCredentials,
664
+ headers: headers,
665
+ observe: observe,
666
+ reportProgress: reportProgress
667
+ });
668
+ }
669
+ publishDpaEngagement(id, observe = 'body', reportProgress = false) {
670
+ if (id === null || id === undefined) {
671
+ throw new Error('Required parameter id was null or undefined when calling publishDpaEngagement.');
672
+ }
673
+ let headers = this.defaultHeaders;
674
+ // to determine the Accept header
675
+ let httpHeaderAccepts = [
676
+ '*/*'
677
+ ];
678
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
679
+ if (httpHeaderAcceptSelected != undefined) {
680
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
681
+ }
682
+ // to determine the Content-Type header
683
+ const consumes = [];
684
+ return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}/publish`, {
685
+ withCredentials: this.configuration.withCredentials,
686
+ headers: headers,
687
+ observe: observe,
688
+ reportProgress: reportProgress
689
+ });
690
+ }
691
+ updateDpaEngagement(body, id, observe = 'body', reportProgress = false) {
692
+ if (body === null || body === undefined) {
693
+ throw new Error('Required parameter body was null or undefined when calling updateDpaEngagement.');
694
+ }
695
+ if (id === null || id === undefined) {
696
+ throw new Error('Required parameter id was null or undefined when calling updateDpaEngagement.');
697
+ }
698
+ let headers = this.defaultHeaders;
699
+ // to determine the Accept header
700
+ let httpHeaderAccepts = [
701
+ '*/*'
702
+ ];
703
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
704
+ if (httpHeaderAcceptSelected != undefined) {
705
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
706
+ }
707
+ // to determine the Content-Type header
708
+ const consumes = [
709
+ 'application/json'
710
+ ];
711
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
712
+ if (httpContentTypeSelected != undefined) {
713
+ headers = headers.set('Content-Type', httpContentTypeSelected);
714
+ }
715
+ return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}`, {
716
+ body: body,
717
+ withCredentials: this.configuration.withCredentials,
718
+ headers: headers,
719
+ observe: observe,
720
+ reportProgress: reportProgress
721
+ });
722
+ }
723
+ }
724
+ DpaEngagementControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaEngagementControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
725
+ DpaEngagementControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaEngagementControllerService });
726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DpaEngagementControllerService, decorators: [{
727
+ type: Injectable
728
+ }], ctorParameters: function () {
729
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
730
+ type: Optional
731
+ }, {
732
+ type: Inject,
733
+ args: [BASE_PATH]
734
+ }] }, { type: Configuration, decorators: [{
735
+ type: Optional
736
+ }] }];
737
+ } });
738
+
739
+ /**
740
+ *
741
+ *
742
+ *
743
+ *
744
+ *
745
+ *
746
+ * NOTE: This class is auto generated by the swagger code generator program.
747
+ * https://github.com/swagger-api/swagger-codegen.git
748
+ * Do not edit the class manually.
749
+ */ /* tslint:disable:no-unused-variable member-ordering */
750
+ class PackageDetailControllerService {
751
+ constructor(httpClient, basePath, configuration) {
752
+ this.httpClient = httpClient;
753
+ this.basePath = 'http://intellibid-api.atomex.net:8081/api';
754
+ this.defaultHeaders = new HttpHeaders();
755
+ this.configuration = new Configuration();
756
+ if (basePath) {
757
+ this.basePath = basePath;
758
+ }
759
+ if (configuration) {
760
+ this.configuration = configuration;
761
+ this.basePath = basePath || configuration.basePath || this.basePath;
762
+ }
763
+ }
764
+ /**
765
+ * @param consumes string[] mime-types
766
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
767
+ */
768
+ canConsumeForm(consumes) {
769
+ const form = 'multipart/form-data';
770
+ for (const consume of consumes) {
771
+ if (form === consume) {
772
+ return true;
773
+ }
774
+ }
775
+ return false;
776
+ }
777
+ getAllPackageDetails(id, name, isActive, page, size, sort, observe = 'body', reportProgress = false) {
778
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
779
+ if (id !== undefined && id !== null) {
780
+ queryParameters = queryParameters.set('id', id);
781
+ }
782
+ if (name !== undefined && name !== null) {
783
+ queryParameters = queryParameters.set('name', name);
784
+ }
785
+ if (isActive !== undefined && isActive !== null) {
786
+ queryParameters = queryParameters.set('isActive', isActive);
787
+ }
788
+ if (page !== undefined && page !== null) {
789
+ queryParameters = queryParameters.set('page', page);
790
+ }
791
+ if (size !== undefined && size !== null) {
792
+ queryParameters = queryParameters.set('size', size);
793
+ }
794
+ if (sort) {
795
+ sort.forEach((element) => {
796
+ queryParameters = queryParameters.append('sort', element);
797
+ });
798
+ }
799
+ let headers = this.defaultHeaders;
800
+ // to determine the Accept header
801
+ let httpHeaderAccepts = [
802
+ '*/*'
803
+ ];
804
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
805
+ if (httpHeaderAcceptSelected != undefined) {
806
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
807
+ }
808
+ // to determine the Content-Type header
809
+ const consumes = [];
810
+ return this.httpClient.request('get', `${this.basePath}/package`, {
811
+ params: queryParameters,
812
+ withCredentials: this.configuration.withCredentials,
813
+ headers: headers,
814
+ observe: observe,
815
+ reportProgress: reportProgress
816
+ });
817
+ }
818
+ getPackageDetail(id, observe = 'body', reportProgress = false) {
819
+ if (id === null || id === undefined) {
820
+ throw new Error('Required parameter id was null or undefined when calling getPackageDetail.');
821
+ }
822
+ let headers = this.defaultHeaders;
823
+ // to determine the Accept header
824
+ let httpHeaderAccepts = [
825
+ '*/*'
826
+ ];
827
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
828
+ if (httpHeaderAcceptSelected != undefined) {
829
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
830
+ }
831
+ // to determine the Content-Type header
832
+ const consumes = [];
833
+ return this.httpClient.request('get', `${this.basePath}/package/${encodeURIComponent(String(id))}`, {
834
+ withCredentials: this.configuration.withCredentials,
835
+ headers: headers,
836
+ observe: observe,
837
+ reportProgress: reportProgress
838
+ });
839
+ }
840
+ }
841
+ PackageDetailControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PackageDetailControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
842
+ PackageDetailControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PackageDetailControllerService });
843
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PackageDetailControllerService, decorators: [{
844
+ type: Injectable
845
+ }], ctorParameters: function () {
846
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
847
+ type: Optional
848
+ }, {
849
+ type: Inject,
850
+ args: [BASE_PATH]
851
+ }] }, { type: Configuration, decorators: [{
852
+ type: Optional
853
+ }] }];
854
+ } });
855
+
856
+ const APIS = [BusinessGeoControllerService, CampaignControllerService, CountryControllerService, DpaCampaignControllerService, DpaEngagementControllerService, PackageDetailControllerService];
857
+
858
+ /**
859
+ *
860
+ *
861
+ *
862
+ *
863
+ *
864
+ *
865
+ * NOTE: This class is auto generated by the swagger code generator program.
866
+ * https://github.com/swagger-api/swagger-codegen.git
867
+ * Do not edit the class manually.
868
+ */
869
+ var AdSetDetails;
870
+ (function (AdSetDetails) {
871
+ AdSetDetails.TypeEnum = {
872
+ IB: 'IB',
873
+ Engage: 'Engage',
874
+ Default: 'Default'
875
+ };
876
+ })(AdSetDetails || (AdSetDetails = {}));
877
+
878
+ /**
879
+ *
880
+ *
881
+ *
882
+ *
883
+ *
884
+ *
885
+ * NOTE: This class is auto generated by the swagger code generator program.
886
+ * https://github.com/swagger-api/swagger-codegen.git
887
+ * Do not edit the class manually.
888
+ */
889
+ var CampaignResponse;
890
+ (function (CampaignResponse) {
891
+ CampaignResponse.StatusEnum = {
892
+ INACTIVE: 'INACTIVE',
893
+ PAUSED: 'PAUSED',
894
+ ACTIVE: 'ACTIVE',
895
+ SOFTPAUSE: 'SOFTPAUSE'
896
+ };
897
+ CampaignResponse.SegDbTypeEnum = {
898
+ SEGMENTATION: 'SEGMENTATION',
899
+ COUNT: 'COUNT'
900
+ };
901
+ CampaignResponse.CampaignTypeEnum = {
902
+ BRANDING: 'BRANDING',
903
+ UA: 'UA',
904
+ RETARGETING: 'RETARGETING',
905
+ DSP: 'DSP',
906
+ DMP: 'DMP'
907
+ };
908
+ })(CampaignResponse || (CampaignResponse = {}));
909
+
910
+ var DpaCampaignResponse;
911
+ (function (DpaCampaignResponse) {
912
+ DpaCampaignResponse.StatusEnum = {
913
+ UNCONFIGURED: 'UNCONFIGURED',
914
+ INITIALIZED: 'INITIALIZED',
915
+ RUNNING: 'RUNNING',
916
+ UPDATING: 'UPDATING',
917
+ PAUSED: 'PAUSED'
918
+ };
919
+ })(DpaCampaignResponse || (DpaCampaignResponse = {}));
920
+
921
+ var DpaEngagementResponse;
922
+ (function (DpaEngagementResponse) {
923
+ DpaEngagementResponse.RunByEnum = {
924
+ CLIENT: 'CLIENT',
925
+ VIZURY: 'VIZURY'
926
+ };
927
+ DpaEngagementResponse.PayoutTypeEnum = {
928
+ CPM: 'CPM',
929
+ CPC: 'CPC',
930
+ CPA: 'CPA',
931
+ CPS: 'CPS',
932
+ CPAClientAttributed: 'CPA - Client Attributed',
933
+ CPSClientAttributed: 'CPS - Client Attributed',
934
+ MARGIN: 'MARGIN'
935
+ };
936
+ DpaEngagementResponse.StatusEnum = {
937
+ UNCONFIGURED: 'UNCONFIGURED',
938
+ INITIALIZED: 'INITIALIZED',
939
+ RUNNING: 'RUNNING',
940
+ UPDATING: 'UPDATING',
941
+ PAUSED: 'PAUSED'
942
+ };
943
+ DpaEngagementResponse.TemplateEnum = {
944
+ None: 'none',
945
+ TextOnImage: 'text-on-image',
946
+ Price: 'price',
947
+ PercentageOff: 'percentage_off',
948
+ StrikethroughPrice: 'strikethrough_price',
949
+ ImageOverlay: 'image-overlay'
950
+ };
951
+ })(DpaEngagementResponse || (DpaEngagementResponse = {}));
952
+
953
+ class ApiModule {
954
+ static forRoot(configurationFactory) {
955
+ return {
956
+ ngModule: ApiModule,
957
+ providers: [{ provide: Configuration, useFactory: configurationFactory }]
958
+ };
959
+ }
960
+ constructor(parentModule, http) {
961
+ if (parentModule) {
962
+ throw new Error('ApiModule is already loaded. Import in your base AppModule only.');
963
+ }
964
+ if (!http) {
965
+ throw new Error('You need to import the HttpClientModule in your AppModule! \n' +
966
+ 'See also https://github.com/angular/angular/issues/20575');
967
+ }
968
+ }
969
+ }
970
+ ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
971
+ ApiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ApiModule });
972
+ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, providers: [
973
+ BusinessGeoControllerService,
974
+ CampaignControllerService,
975
+ CountryControllerService,
976
+ DpaCampaignControllerService,
977
+ DpaEngagementControllerService,
978
+ PackageDetailControllerService
979
+ ] });
980
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, decorators: [{
981
+ type: NgModule,
982
+ args: [{
983
+ imports: [],
984
+ declarations: [],
985
+ exports: [],
986
+ providers: [
987
+ BusinessGeoControllerService,
988
+ CampaignControllerService,
989
+ CountryControllerService,
990
+ DpaCampaignControllerService,
991
+ DpaEngagementControllerService,
992
+ PackageDetailControllerService
993
+ ]
994
+ }]
995
+ }], ctorParameters: function () {
996
+ return [{ type: ApiModule, decorators: [{
997
+ type: Optional
998
+ }, {
999
+ type: SkipSelf
1000
+ }] }, { type: i1.HttpClient, decorators: [{
1001
+ type: Optional
1002
+ }] }];
1003
+ } });
1004
+
1005
+ /**
1006
+ * Generated bundle index. Do not edit.
1007
+ */
1008
+
1009
+ export { APIS, AdSetDetails, ApiModule, BASE_PATH, BusinessGeoControllerService, COLLECTION_FORMATS, CampaignControllerService, CampaignResponse, Configuration, CountryControllerService, DpaCampaignControllerService, DpaCampaignResponse, DpaEngagementControllerService, DpaEngagementResponse, PackageDetailControllerService };
1010
+ //# sourceMappingURL=revxui-intellibid-client-ts.mjs.map