@revxui/intellibid-client-ts 1.0.60 → 1.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/advertiserController.service.d.ts +11 -23
- package/api/api.d.ts +1 -3
- package/esm2020/api/advertiserController.service.mjs +23 -55
- package/esm2020/api/api.mjs +2 -4
- package/esm2020/api.module.mjs +1 -4
- package/esm2020/model/adAccountResponse.mjs +20 -0
- package/esm2020/model/advertiserResponse.mjs +1 -1
- package/esm2020/model/campaignRequest.mjs +1 -2
- package/esm2020/model/campaignResponse.mjs +1 -2
- package/esm2020/model/models.mjs +2 -8
- package/fesm2015/revxui-intellibid-client-ts.mjs +31 -219
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +34 -256
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/adAccountResponse.d.ts +24 -0
- package/model/advertiserResponse.d.ts +2 -0
- package/model/campaignRequest.d.ts +2 -2
- package/model/campaignResponse.d.ts +2 -2
- package/model/models.d.ts +1 -7
- package/package.json +1 -1
- package/api/audienceController.service.d.ts +0 -41
- package/esm2020/api/audienceController.service.mjs +0 -110
- package/esm2020/model/audienceChildStatusDTO.mjs +0 -22
- package/esm2020/model/audienceGroupStatusResponse.mjs +0 -16
- package/esm2020/model/childPreviewDTO.mjs +0 -13
- package/esm2020/model/createBucketizedLiveAudienceRequest.mjs +0 -19
- package/esm2020/model/createBucketizedLiveAudienceResponse.mjs +0 -10
- package/esm2020/model/productSetResponse.mjs +0 -13
- package/esm2020/model/upsertProductSetRequest.mjs +0 -13
- package/model/audienceChildStatusDTO.d.ts +0 -31
- package/model/audienceGroupStatusResponse.d.ts +0 -42
- package/model/childPreviewDTO.d.ts +0 -19
- package/model/createBucketizedLiveAudienceRequest.d.ts +0 -33
- package/model/createBucketizedLiveAudienceResponse.d.ts +0 -28
- package/model/productSetResponse.d.ts +0 -16
- package/model/upsertProductSetRequest.d.ts +0 -15
|
@@ -124,6 +124,28 @@ class AdvertiserControllerService {
|
|
|
124
124
|
}
|
|
125
125
|
return false;
|
|
126
126
|
}
|
|
127
|
+
getAdAccounts(id, observe = 'body', reportProgress = false) {
|
|
128
|
+
if (id === null || id === undefined) {
|
|
129
|
+
throw new Error('Required parameter id was null or undefined when calling getAdAccounts.');
|
|
130
|
+
}
|
|
131
|
+
let headers = this.defaultHeaders;
|
|
132
|
+
// to determine the Accept header
|
|
133
|
+
let httpHeaderAccepts = [
|
|
134
|
+
'*/*'
|
|
135
|
+
];
|
|
136
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
137
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
138
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
139
|
+
}
|
|
140
|
+
// to determine the Content-Type header
|
|
141
|
+
const consumes = [];
|
|
142
|
+
return this.httpClient.request('get', `${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/ad-accounts`, {
|
|
143
|
+
withCredentials: this.configuration.withCredentials,
|
|
144
|
+
headers: headers,
|
|
145
|
+
observe: observe,
|
|
146
|
+
reportProgress: reportProgress
|
|
147
|
+
});
|
|
148
|
+
}
|
|
127
149
|
getAdvertiser(id, observe = 'body', reportProgress = false) {
|
|
128
150
|
if (id === null || id === undefined) {
|
|
129
151
|
throw new Error('Required parameter id was null or undefined when calling getAdvertiser.');
|
|
@@ -250,28 +272,6 @@ class AdvertiserControllerService {
|
|
|
250
272
|
reportProgress: reportProgress
|
|
251
273
|
});
|
|
252
274
|
}
|
|
253
|
-
listProductSets(id, observe = 'body', reportProgress = false) {
|
|
254
|
-
if (id === null || id === undefined) {
|
|
255
|
-
throw new Error('Required parameter id was null or undefined when calling listProductSets.');
|
|
256
|
-
}
|
|
257
|
-
let headers = this.defaultHeaders;
|
|
258
|
-
// to determine the Accept header
|
|
259
|
-
let httpHeaderAccepts = [
|
|
260
|
-
'*/*'
|
|
261
|
-
];
|
|
262
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
263
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
264
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
265
|
-
}
|
|
266
|
-
// to determine the Content-Type header
|
|
267
|
-
const consumes = [];
|
|
268
|
-
return this.httpClient.request('get', `${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/product-sets`, {
|
|
269
|
-
withCredentials: this.configuration.withCredentials,
|
|
270
|
-
headers: headers,
|
|
271
|
-
observe: observe,
|
|
272
|
-
reportProgress: reportProgress
|
|
273
|
-
});
|
|
274
|
-
}
|
|
275
275
|
searchAdvertisers(q, observe = 'body', reportProgress = false) {
|
|
276
276
|
if (q === null || q === undefined) {
|
|
277
277
|
throw new Error('Required parameter q was null or undefined when calling searchAdvertisers.');
|
|
@@ -299,38 +299,6 @@ class AdvertiserControllerService {
|
|
|
299
299
|
reportProgress: reportProgress
|
|
300
300
|
});
|
|
301
301
|
}
|
|
302
|
-
upsertProductSet(body, id, observe = 'body', reportProgress = false) {
|
|
303
|
-
if (body === null || body === undefined) {
|
|
304
|
-
throw new Error('Required parameter body was null or undefined when calling upsertProductSet.');
|
|
305
|
-
}
|
|
306
|
-
if (id === null || id === undefined) {
|
|
307
|
-
throw new Error('Required parameter id was null or undefined when calling upsertProductSet.');
|
|
308
|
-
}
|
|
309
|
-
let headers = this.defaultHeaders;
|
|
310
|
-
// to determine the Accept header
|
|
311
|
-
let httpHeaderAccepts = [
|
|
312
|
-
'*/*'
|
|
313
|
-
];
|
|
314
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
315
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
316
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
317
|
-
}
|
|
318
|
-
// to determine the Content-Type header
|
|
319
|
-
const consumes = [
|
|
320
|
-
'application/json'
|
|
321
|
-
];
|
|
322
|
-
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
323
|
-
if (httpContentTypeSelected != undefined) {
|
|
324
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
325
|
-
}
|
|
326
|
-
return this.httpClient.request('post', `${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/product-sets`, {
|
|
327
|
-
body: body,
|
|
328
|
-
withCredentials: this.configuration.withCredentials,
|
|
329
|
-
headers: headers,
|
|
330
|
-
observe: observe,
|
|
331
|
-
reportProgress: reportProgress
|
|
332
|
-
});
|
|
333
|
-
}
|
|
334
302
|
}
|
|
335
303
|
AdvertiserControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdvertiserControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
336
304
|
AdvertiserControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdvertiserControllerService });
|
|
@@ -345,109 +313,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
345
313
|
type: Optional
|
|
346
314
|
}] }]; } });
|
|
347
315
|
|
|
348
|
-
/**
|
|
349
|
-
* Intellibid API
|
|
350
|
-
* API documentation for the Intellibid platform
|
|
351
|
-
*
|
|
352
|
-
* OpenAPI spec version: 1.0
|
|
353
|
-
*
|
|
354
|
-
*
|
|
355
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
356
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
357
|
-
* Do not edit the class manually.
|
|
358
|
-
*/ /* tslint:disable:no-unused-variable member-ordering */
|
|
359
|
-
class AudienceControllerService {
|
|
360
|
-
constructor(httpClient, basePath, configuration) {
|
|
361
|
-
this.httpClient = httpClient;
|
|
362
|
-
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
363
|
-
this.defaultHeaders = new HttpHeaders();
|
|
364
|
-
this.configuration = new Configuration();
|
|
365
|
-
if (basePath) {
|
|
366
|
-
this.basePath = basePath;
|
|
367
|
-
}
|
|
368
|
-
if (configuration) {
|
|
369
|
-
this.configuration = configuration;
|
|
370
|
-
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
/**
|
|
374
|
-
* @param consumes string[] mime-types
|
|
375
|
-
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
376
|
-
*/
|
|
377
|
-
canConsumeForm(consumes) {
|
|
378
|
-
const form = 'multipart/form-data';
|
|
379
|
-
for (const consume of consumes) {
|
|
380
|
-
if (form === consume) {
|
|
381
|
-
return true;
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
return false;
|
|
385
|
-
}
|
|
386
|
-
createBucketizedLiveAudience(body, observe = 'body', reportProgress = false) {
|
|
387
|
-
if (body === null || body === undefined) {
|
|
388
|
-
throw new Error('Required parameter body was null or undefined when calling createBucketizedLiveAudience.');
|
|
389
|
-
}
|
|
390
|
-
let headers = this.defaultHeaders;
|
|
391
|
-
// to determine the Accept header
|
|
392
|
-
let httpHeaderAccepts = [
|
|
393
|
-
'*/*'
|
|
394
|
-
];
|
|
395
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
396
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
397
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
398
|
-
}
|
|
399
|
-
// to determine the Content-Type header
|
|
400
|
-
const consumes = [
|
|
401
|
-
'application/json'
|
|
402
|
-
];
|
|
403
|
-
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
404
|
-
if (httpContentTypeSelected != undefined) {
|
|
405
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
406
|
-
}
|
|
407
|
-
return this.httpClient.request('post', `${this.basePath}/api/audience/live/bucketized`, {
|
|
408
|
-
body: body,
|
|
409
|
-
withCredentials: this.configuration.withCredentials,
|
|
410
|
-
headers: headers,
|
|
411
|
-
observe: observe,
|
|
412
|
-
reportProgress: reportProgress
|
|
413
|
-
});
|
|
414
|
-
}
|
|
415
|
-
getGroupStatus(groupId, observe = 'body', reportProgress = false) {
|
|
416
|
-
if (groupId === null || groupId === undefined) {
|
|
417
|
-
throw new Error('Required parameter groupId was null or undefined when calling getGroupStatus.');
|
|
418
|
-
}
|
|
419
|
-
let headers = this.defaultHeaders;
|
|
420
|
-
// to determine the Accept header
|
|
421
|
-
let httpHeaderAccepts = [
|
|
422
|
-
'*/*'
|
|
423
|
-
];
|
|
424
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
425
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
426
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
427
|
-
}
|
|
428
|
-
// to determine the Content-Type header
|
|
429
|
-
const consumes = [];
|
|
430
|
-
return this.httpClient.request('get', `${this.basePath}/api/audience/groups/${encodeURIComponent(String(groupId))}`, {
|
|
431
|
-
withCredentials: this.configuration.withCredentials,
|
|
432
|
-
headers: headers,
|
|
433
|
-
observe: observe,
|
|
434
|
-
reportProgress: reportProgress
|
|
435
|
-
});
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
AudienceControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
439
|
-
AudienceControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService });
|
|
440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService, decorators: [{
|
|
441
|
-
type: Injectable
|
|
442
|
-
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
443
|
-
type: Optional
|
|
444
|
-
}, {
|
|
445
|
-
type: Inject,
|
|
446
|
-
args: [BASE_PATH]
|
|
447
|
-
}] }, { type: Configuration, decorators: [{
|
|
448
|
-
type: Optional
|
|
449
|
-
}] }]; } });
|
|
450
|
-
|
|
451
316
|
/**
|
|
452
317
|
* Intellibid API
|
|
453
318
|
* API documentation for the Intellibid platform
|
|
@@ -965,7 +830,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
965
830
|
type: Optional
|
|
966
831
|
}] }]; } });
|
|
967
832
|
|
|
968
|
-
const APIS = [AdvertiserControllerService,
|
|
833
|
+
const APIS = [AdvertiserControllerService, CampaignControllerService, InsightsControllerService, LookupDataControllerService];
|
|
969
834
|
|
|
970
835
|
/**
|
|
971
836
|
* Intellibid API
|
|
@@ -977,7 +842,15 @@ const APIS = [AdvertiserControllerService, AudienceControllerService, CampaignCo
|
|
|
977
842
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
978
843
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
979
844
|
* Do not edit the class manually.
|
|
980
|
-
*/
|
|
845
|
+
*/
|
|
846
|
+
var AdAccountResponse;
|
|
847
|
+
(function (AdAccountResponse) {
|
|
848
|
+
AdAccountResponse.SourcePlatformEnum = {
|
|
849
|
+
META: 'META',
|
|
850
|
+
TIKTOK: 'TIKTOK',
|
|
851
|
+
SNAPCHAT: 'SNAPCHAT'
|
|
852
|
+
};
|
|
853
|
+
})(AdAccountResponse || (AdAccountResponse = {}));
|
|
981
854
|
|
|
982
855
|
/**
|
|
983
856
|
* Intellibid API
|
|
@@ -1013,33 +886,7 @@ const APIS = [AdvertiserControllerService, AudienceControllerService, CampaignCo
|
|
|
1013
886
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1014
887
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
1015
888
|
* Do not edit the class manually.
|
|
1016
|
-
*/
|
|
1017
|
-
var AudienceChildStatusDTO;
|
|
1018
|
-
(function (AudienceChildStatusDTO) {
|
|
1019
|
-
AudienceChildStatusDTO.StatusEnum = {
|
|
1020
|
-
CREATING: 'CREATING',
|
|
1021
|
-
ACTIVE: 'ACTIVE',
|
|
1022
|
-
UPDATING: 'UPDATING',
|
|
1023
|
-
DELETING: 'DELETING',
|
|
1024
|
-
FAILED: 'FAILED'
|
|
1025
|
-
};
|
|
1026
|
-
})(AudienceChildStatusDTO || (AudienceChildStatusDTO = {}));
|
|
1027
|
-
|
|
1028
|
-
var AudienceGroupStatusResponse;
|
|
1029
|
-
(function (AudienceGroupStatusResponse) {
|
|
1030
|
-
AudienceGroupStatusResponse.GroupTypeEnum = {
|
|
1031
|
-
BUCKETIZEDLIVE: 'BUCKETIZED_LIVE',
|
|
1032
|
-
BLOCKEDLIVE: 'BLOCKED_LIVE',
|
|
1033
|
-
BUCKETIZEDCUSTOM: 'BUCKETIZED_CUSTOM',
|
|
1034
|
-
DSCUSTOMQUERY: 'DS_CUSTOM_QUERY'
|
|
1035
|
-
};
|
|
1036
|
-
AudienceGroupStatusResponse.SyncStatusEnum = {
|
|
1037
|
-
IDLE: 'IDLE',
|
|
1038
|
-
SYNCING: 'SYNCING',
|
|
1039
|
-
PARTIAL: 'PARTIAL',
|
|
1040
|
-
FAILED: 'FAILED'
|
|
1041
|
-
};
|
|
1042
|
-
})(AudienceGroupStatusResponse || (AudienceGroupStatusResponse = {}));
|
|
889
|
+
*/
|
|
1043
890
|
|
|
1044
891
|
/**
|
|
1045
892
|
* Intellibid API
|
|
@@ -1124,7 +971,6 @@ var CampaignRequest;
|
|
|
1124
971
|
CampaignRequest.SourcePlatformEnum = {
|
|
1125
972
|
META: 'META',
|
|
1126
973
|
TIKTOK: 'TIKTOK',
|
|
1127
|
-
GOOGLE: 'GOOGLE',
|
|
1128
974
|
SNAPCHAT: 'SNAPCHAT'
|
|
1129
975
|
};
|
|
1130
976
|
CampaignRequest.PayoutTypeEnum = {
|
|
@@ -1146,7 +992,6 @@ var CampaignResponse;
|
|
|
1146
992
|
CampaignResponse.SourcePlatformEnum = {
|
|
1147
993
|
META: 'META',
|
|
1148
994
|
TIKTOK: 'TIKTOK',
|
|
1149
|
-
GOOGLE: 'GOOGLE',
|
|
1150
995
|
SNAPCHAT: 'SNAPCHAT'
|
|
1151
996
|
};
|
|
1152
997
|
CampaignResponse.PayoutTypeEnum = {
|
|
@@ -1175,59 +1020,6 @@ var CampaignResponse;
|
|
|
1175
1020
|
* Do not edit the class manually.
|
|
1176
1021
|
*/
|
|
1177
1022
|
|
|
1178
|
-
/**
|
|
1179
|
-
* Intellibid API
|
|
1180
|
-
* API documentation for the Intellibid platform
|
|
1181
|
-
*
|
|
1182
|
-
* OpenAPI spec version: 1.0
|
|
1183
|
-
*
|
|
1184
|
-
*
|
|
1185
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1186
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1187
|
-
* Do not edit the class manually.
|
|
1188
|
-
*/
|
|
1189
|
-
|
|
1190
|
-
/**
|
|
1191
|
-
* Intellibid API
|
|
1192
|
-
* API documentation for the Intellibid platform
|
|
1193
|
-
*
|
|
1194
|
-
* OpenAPI spec version: 1.0
|
|
1195
|
-
*
|
|
1196
|
-
*
|
|
1197
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1198
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1199
|
-
* Do not edit the class manually.
|
|
1200
|
-
*/
|
|
1201
|
-
|
|
1202
|
-
/**
|
|
1203
|
-
* Intellibid API
|
|
1204
|
-
* API documentation for the Intellibid platform
|
|
1205
|
-
*
|
|
1206
|
-
* OpenAPI spec version: 1.0
|
|
1207
|
-
*
|
|
1208
|
-
*
|
|
1209
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1210
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1211
|
-
* Do not edit the class manually.
|
|
1212
|
-
*/
|
|
1213
|
-
var CreateBucketizedLiveAudienceRequest;
|
|
1214
|
-
(function (CreateBucketizedLiveAudienceRequest) {
|
|
1215
|
-
CreateBucketizedLiveAudienceRequest.AudienceTypeEnum = {
|
|
1216
|
-
DYNAMIC: 'DYNAMIC',
|
|
1217
|
-
CATALOGUE: 'CATALOGUE'
|
|
1218
|
-
};
|
|
1219
|
-
})(CreateBucketizedLiveAudienceRequest || (CreateBucketizedLiveAudienceRequest = {}));
|
|
1220
|
-
|
|
1221
|
-
var CreateBucketizedLiveAudienceResponse;
|
|
1222
|
-
(function (CreateBucketizedLiveAudienceResponse) {
|
|
1223
|
-
CreateBucketizedLiveAudienceResponse.SyncStatusEnum = {
|
|
1224
|
-
IDLE: 'IDLE',
|
|
1225
|
-
SYNCING: 'SYNCING',
|
|
1226
|
-
PARTIAL: 'PARTIAL',
|
|
1227
|
-
FAILED: 'FAILED'
|
|
1228
|
-
};
|
|
1229
|
-
})(CreateBucketizedLiveAudienceResponse || (CreateBucketizedLiveAudienceResponse = {}));
|
|
1230
|
-
|
|
1231
1023
|
/**
|
|
1232
1024
|
* Intellibid API
|
|
1233
1025
|
* API documentation for the Intellibid platform
|
|
@@ -1319,18 +1111,6 @@ var ScheduleUpdateRequest;
|
|
|
1319
1111
|
* Do not edit the class manually.
|
|
1320
1112
|
*/
|
|
1321
1113
|
|
|
1322
|
-
/**
|
|
1323
|
-
* Intellibid API
|
|
1324
|
-
* API documentation for the Intellibid platform
|
|
1325
|
-
*
|
|
1326
|
-
* OpenAPI spec version: 1.0
|
|
1327
|
-
*
|
|
1328
|
-
*
|
|
1329
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1330
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1331
|
-
* Do not edit the class manually.
|
|
1332
|
-
*/
|
|
1333
|
-
|
|
1334
1114
|
class ApiModule {
|
|
1335
1115
|
static forRoot(configurationFactory) {
|
|
1336
1116
|
return {
|
|
@@ -1352,7 +1132,6 @@ ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2
|
|
|
1352
1132
|
ApiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ApiModule });
|
|
1353
1133
|
ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, providers: [
|
|
1354
1134
|
AdvertiserControllerService,
|
|
1355
|
-
AudienceControllerService,
|
|
1356
1135
|
CampaignControllerService,
|
|
1357
1136
|
InsightsControllerService,
|
|
1358
1137
|
LookupDataControllerService
|
|
@@ -1365,7 +1144,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1365
1144
|
exports: [],
|
|
1366
1145
|
providers: [
|
|
1367
1146
|
AdvertiserControllerService,
|
|
1368
|
-
AudienceControllerService,
|
|
1369
1147
|
CampaignControllerService,
|
|
1370
1148
|
InsightsControllerService,
|
|
1371
1149
|
LookupDataControllerService
|
|
@@ -1383,5 +1161,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1383
1161
|
* Generated bundle index. Do not edit.
|
|
1384
1162
|
*/
|
|
1385
1163
|
|
|
1386
|
-
export { APIS, AdvertiserControllerService, ApiModule,
|
|
1164
|
+
export { APIS, AdAccountResponse, AdvertiserControllerService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CampaignChangeLogResponse, CampaignControllerService, CampaignInsightRecord, CampaignRequest, CampaignResponse, Configuration, InsightsControllerService, LookupDataControllerService, ScheduleUpdateRequest };
|
|
1387
1165
|
//# sourceMappingURL=revxui-intellibid-client-ts.mjs.map
|