@revxui/intellibid-client-ts 1.0.11 → 1.0.12
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/adVideoController.service.d.ts +63 -0
- package/api/api.d.ts +5 -1
- package/api/dpaEngagementController.service.d.ts +4 -3
- package/api/mobileAppDetailController.service.d.ts +65 -0
- package/esm2020/api/adVideoController.service.mjs +169 -0
- package/esm2020/api/api.mjs +6 -2
- package/esm2020/api/dpaEngagementController.service.mjs +5 -2
- package/esm2020/api/mobileAppDetailController.service.mjs +179 -0
- package/esm2020/api.module.mjs +7 -1
- package/esm2020/model/adVideoResponse.mjs +13 -0
- package/esm2020/model/creativeDetails.mjs +1 -1
- package/esm2020/model/dpaEngagementRequest.mjs +1 -1
- package/esm2020/model/dpaEngagementResponse.mjs +1 -1
- package/esm2020/model/mobileAppDetailRequest.mjs +13 -0
- package/esm2020/model/mobileAppDetailResponse.mjs +13 -0
- package/esm2020/model/models.mjs +5 -1
- package/esm2020/model/pageMobileAppDetailResponse.mjs +2 -0
- package/esm2020/model/pageableObject.mjs +1 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs +346 -3
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +378 -3
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/adVideoResponse.d.ts +18 -0
- package/model/creativeDetails.d.ts +4 -0
- package/model/dpaEngagementRequest.d.ts +1 -0
- package/model/dpaEngagementResponse.d.ts +1 -0
- package/model/mobileAppDetailRequest.d.ts +23 -0
- package/model/mobileAppDetailResponse.d.ts +24 -0
- package/model/models.d.ts +4 -0
- package/model/pageMobileAppDetailResponse.d.ts +27 -0
- package/model/pageableObject.d.ts +1 -1
- package/package.json +1 -1
|
@@ -222,6 +222,167 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
222
222
|
type: Optional
|
|
223
223
|
}] }]; } });
|
|
224
224
|
|
|
225
|
+
/**
|
|
226
|
+
*
|
|
227
|
+
*
|
|
228
|
+
*
|
|
229
|
+
*
|
|
230
|
+
*
|
|
231
|
+
*
|
|
232
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
233
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
234
|
+
* Do not edit the class manually.
|
|
235
|
+
*/ /* tslint:disable:no-unused-variable member-ordering */
|
|
236
|
+
class AdVideoControllerService {
|
|
237
|
+
constructor(httpClient, basePath, configuration) {
|
|
238
|
+
this.httpClient = httpClient;
|
|
239
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
240
|
+
this.defaultHeaders = new HttpHeaders();
|
|
241
|
+
this.configuration = new Configuration();
|
|
242
|
+
if (basePath) {
|
|
243
|
+
this.basePath = basePath;
|
|
244
|
+
}
|
|
245
|
+
if (configuration) {
|
|
246
|
+
this.configuration = configuration;
|
|
247
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* @param consumes string[] mime-types
|
|
252
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
253
|
+
*/
|
|
254
|
+
canConsumeForm(consumes) {
|
|
255
|
+
const form = 'multipart/form-data';
|
|
256
|
+
for (const consume of consumes) {
|
|
257
|
+
if (form === consume) {
|
|
258
|
+
return true;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
return false;
|
|
262
|
+
}
|
|
263
|
+
deleteAdVideo(adAccountId, videoId, observe = 'body', reportProgress = false) {
|
|
264
|
+
if (adAccountId === null || adAccountId === undefined) {
|
|
265
|
+
throw new Error('Required parameter adAccountId was null or undefined when calling deleteAdVideo.');
|
|
266
|
+
}
|
|
267
|
+
if (videoId === null || videoId === undefined) {
|
|
268
|
+
throw new Error('Required parameter videoId was null or undefined when calling deleteAdVideo.');
|
|
269
|
+
}
|
|
270
|
+
let headers = this.defaultHeaders;
|
|
271
|
+
// to determine the Accept header
|
|
272
|
+
let httpHeaderAccepts = [];
|
|
273
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
274
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
275
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
276
|
+
}
|
|
277
|
+
// to determine the Content-Type header
|
|
278
|
+
const consumes = [];
|
|
279
|
+
return this.httpClient.request('delete', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}`, {
|
|
280
|
+
withCredentials: this.configuration.withCredentials,
|
|
281
|
+
headers: headers,
|
|
282
|
+
observe: observe,
|
|
283
|
+
reportProgress: reportProgress
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
getAdVideo(adAccountId, videoId, observe = 'body', reportProgress = false) {
|
|
287
|
+
if (adAccountId === null || adAccountId === undefined) {
|
|
288
|
+
throw new Error('Required parameter adAccountId was null or undefined when calling getAdVideo.');
|
|
289
|
+
}
|
|
290
|
+
if (videoId === null || videoId === undefined) {
|
|
291
|
+
throw new Error('Required parameter videoId was null or undefined when calling getAdVideo.');
|
|
292
|
+
}
|
|
293
|
+
let headers = this.defaultHeaders;
|
|
294
|
+
// to determine the Accept header
|
|
295
|
+
let httpHeaderAccepts = [
|
|
296
|
+
'*/*'
|
|
297
|
+
];
|
|
298
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
299
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
300
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
301
|
+
}
|
|
302
|
+
// to determine the Content-Type header
|
|
303
|
+
const consumes = [];
|
|
304
|
+
return this.httpClient.request('get', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video/${encodeURIComponent(String(videoId))}`, {
|
|
305
|
+
withCredentials: this.configuration.withCredentials,
|
|
306
|
+
headers: headers,
|
|
307
|
+
observe: observe,
|
|
308
|
+
reportProgress: reportProgress
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
getAllAdVideos(adAccountId, videoIds, observe = 'body', reportProgress = false) {
|
|
312
|
+
if (adAccountId === null || adAccountId === undefined) {
|
|
313
|
+
throw new Error('Required parameter adAccountId was null or undefined when calling getAllAdVideos.');
|
|
314
|
+
}
|
|
315
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
316
|
+
if (videoIds) {
|
|
317
|
+
videoIds.forEach((element) => {
|
|
318
|
+
queryParameters = queryParameters.append('videoIds', element);
|
|
319
|
+
});
|
|
320
|
+
}
|
|
321
|
+
let headers = this.defaultHeaders;
|
|
322
|
+
// to determine the Accept header
|
|
323
|
+
let httpHeaderAccepts = [
|
|
324
|
+
'*/*'
|
|
325
|
+
];
|
|
326
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
327
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
328
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
329
|
+
}
|
|
330
|
+
// to determine the Content-Type header
|
|
331
|
+
const consumes = [];
|
|
332
|
+
return this.httpClient.request('get', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video`, {
|
|
333
|
+
params: queryParameters,
|
|
334
|
+
withCredentials: this.configuration.withCredentials,
|
|
335
|
+
headers: headers,
|
|
336
|
+
observe: observe,
|
|
337
|
+
reportProgress: reportProgress
|
|
338
|
+
});
|
|
339
|
+
}
|
|
340
|
+
uploadAdVideos(adAccountId, files, observe = 'body', reportProgress = false) {
|
|
341
|
+
if (adAccountId === null || adAccountId === undefined) {
|
|
342
|
+
throw new Error('Required parameter adAccountId was null or undefined when calling uploadAdVideos.');
|
|
343
|
+
}
|
|
344
|
+
if (files === null || files === undefined) {
|
|
345
|
+
throw new Error('Required parameter files was null or undefined when calling uploadAdVideos.');
|
|
346
|
+
}
|
|
347
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
348
|
+
if (files) {
|
|
349
|
+
files.forEach((element) => {
|
|
350
|
+
queryParameters = queryParameters.append('files', element);
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
let headers = this.defaultHeaders;
|
|
354
|
+
// to determine the Accept header
|
|
355
|
+
let httpHeaderAccepts = [
|
|
356
|
+
'*/*'
|
|
357
|
+
];
|
|
358
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
359
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
360
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
361
|
+
}
|
|
362
|
+
// to determine the Content-Type header
|
|
363
|
+
const consumes = [];
|
|
364
|
+
return this.httpClient.request('post', `${this.basePath}/api/facebook/${encodeURIComponent(String(adAccountId))}/ad-video`, {
|
|
365
|
+
params: queryParameters,
|
|
366
|
+
withCredentials: this.configuration.withCredentials,
|
|
367
|
+
headers: headers,
|
|
368
|
+
observe: observe,
|
|
369
|
+
reportProgress: reportProgress
|
|
370
|
+
});
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
AdVideoControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdVideoControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
374
|
+
AdVideoControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdVideoControllerService });
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdVideoControllerService, decorators: [{
|
|
376
|
+
type: Injectable
|
|
377
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
378
|
+
type: Optional
|
|
379
|
+
}, {
|
|
380
|
+
type: Inject,
|
|
381
|
+
args: [BASE_PATH]
|
|
382
|
+
}] }, { type: Configuration, decorators: [{
|
|
383
|
+
type: Optional
|
|
384
|
+
}] }]; } });
|
|
385
|
+
|
|
225
386
|
/**
|
|
226
387
|
*
|
|
227
388
|
*
|
|
@@ -762,7 +923,7 @@ class DpaEngagementControllerService {
|
|
|
762
923
|
reportProgress: reportProgress
|
|
763
924
|
});
|
|
764
925
|
}
|
|
765
|
-
getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, page, size, sort, observe = 'body', reportProgress = false) {
|
|
926
|
+
getAllDpaEngagements(id, campaignId, facebookCampaignId, name, payoutType, status, isIntellibidEnabled, isMarketFeedbackEnabled, campaignStatus, isStatic, page, size, sort, observe = 'body', reportProgress = false) {
|
|
766
927
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
767
928
|
if (id !== undefined && id !== null) {
|
|
768
929
|
queryParameters = queryParameters.set('id', id);
|
|
@@ -791,6 +952,9 @@ class DpaEngagementControllerService {
|
|
|
791
952
|
if (campaignStatus !== undefined && campaignStatus !== null) {
|
|
792
953
|
queryParameters = queryParameters.set('campaignStatus', campaignStatus);
|
|
793
954
|
}
|
|
955
|
+
if (isStatic !== undefined && isStatic !== null) {
|
|
956
|
+
queryParameters = queryParameters.set('isStatic', isStatic);
|
|
957
|
+
}
|
|
794
958
|
if (page !== undefined && page !== null) {
|
|
795
959
|
queryParameters = queryParameters.set('page', page);
|
|
796
960
|
}
|
|
@@ -1204,6 +1368,177 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1204
1368
|
type: Optional
|
|
1205
1369
|
}] }]; } });
|
|
1206
1370
|
|
|
1371
|
+
/**
|
|
1372
|
+
*
|
|
1373
|
+
*
|
|
1374
|
+
*
|
|
1375
|
+
*
|
|
1376
|
+
*
|
|
1377
|
+
*
|
|
1378
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1379
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
1380
|
+
* Do not edit the class manually.
|
|
1381
|
+
*/ /* tslint:disable:no-unused-variable member-ordering */
|
|
1382
|
+
class MobileAppDetailControllerService {
|
|
1383
|
+
constructor(httpClient, basePath, configuration) {
|
|
1384
|
+
this.httpClient = httpClient;
|
|
1385
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
1386
|
+
this.defaultHeaders = new HttpHeaders();
|
|
1387
|
+
this.configuration = new Configuration();
|
|
1388
|
+
if (basePath) {
|
|
1389
|
+
this.basePath = basePath;
|
|
1390
|
+
}
|
|
1391
|
+
if (configuration) {
|
|
1392
|
+
this.configuration = configuration;
|
|
1393
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
/**
|
|
1397
|
+
* @param consumes string[] mime-types
|
|
1398
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
1399
|
+
*/
|
|
1400
|
+
canConsumeForm(consumes) {
|
|
1401
|
+
const form = 'multipart/form-data';
|
|
1402
|
+
for (const consume of consumes) {
|
|
1403
|
+
if (form === consume) {
|
|
1404
|
+
return true;
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
return false;
|
|
1408
|
+
}
|
|
1409
|
+
createOrUpdateMobileAppDetail(body, id, observe = 'body', reportProgress = false) {
|
|
1410
|
+
if (body === null || body === undefined) {
|
|
1411
|
+
throw new Error('Required parameter body was null or undefined when calling createOrUpdateMobileAppDetail.');
|
|
1412
|
+
}
|
|
1413
|
+
if (id === null || id === undefined) {
|
|
1414
|
+
throw new Error('Required parameter id was null or undefined when calling createOrUpdateMobileAppDetail.');
|
|
1415
|
+
}
|
|
1416
|
+
let headers = this.defaultHeaders;
|
|
1417
|
+
// to determine the Accept header
|
|
1418
|
+
let httpHeaderAccepts = [
|
|
1419
|
+
'*/*'
|
|
1420
|
+
];
|
|
1421
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1422
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1423
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1424
|
+
}
|
|
1425
|
+
// to determine the Content-Type header
|
|
1426
|
+
const consumes = [
|
|
1427
|
+
'application/json'
|
|
1428
|
+
];
|
|
1429
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1430
|
+
if (httpContentTypeSelected != undefined) {
|
|
1431
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
1432
|
+
}
|
|
1433
|
+
return this.httpClient.request('post', `${this.basePath}/api/mobile-app/${encodeURIComponent(String(id))}`, {
|
|
1434
|
+
body: body,
|
|
1435
|
+
withCredentials: this.configuration.withCredentials,
|
|
1436
|
+
headers: headers,
|
|
1437
|
+
observe: observe,
|
|
1438
|
+
reportProgress: reportProgress
|
|
1439
|
+
});
|
|
1440
|
+
}
|
|
1441
|
+
getAllMobileAppDetails(campaignId, altLandingPage, playStoreLink, playStoreId, fbAppIdForPlayStore, itunesLink, itunesId, fbAppIdForItunes, iosAppName, androidAppName, defaultWebSiteUrl, page, size, sort, observe = 'body', reportProgress = false) {
|
|
1442
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
1443
|
+
if (campaignId !== undefined && campaignId !== null) {
|
|
1444
|
+
queryParameters = queryParameters.set('campaignId', campaignId);
|
|
1445
|
+
}
|
|
1446
|
+
if (altLandingPage !== undefined && altLandingPage !== null) {
|
|
1447
|
+
queryParameters = queryParameters.set('altLandingPage', altLandingPage);
|
|
1448
|
+
}
|
|
1449
|
+
if (playStoreLink !== undefined && playStoreLink !== null) {
|
|
1450
|
+
queryParameters = queryParameters.set('playStoreLink', playStoreLink);
|
|
1451
|
+
}
|
|
1452
|
+
if (playStoreId !== undefined && playStoreId !== null) {
|
|
1453
|
+
queryParameters = queryParameters.set('playStoreId', playStoreId);
|
|
1454
|
+
}
|
|
1455
|
+
if (fbAppIdForPlayStore !== undefined && fbAppIdForPlayStore !== null) {
|
|
1456
|
+
queryParameters = queryParameters.set('fbAppIdForPlayStore', fbAppIdForPlayStore);
|
|
1457
|
+
}
|
|
1458
|
+
if (itunesLink !== undefined && itunesLink !== null) {
|
|
1459
|
+
queryParameters = queryParameters.set('itunesLink', itunesLink);
|
|
1460
|
+
}
|
|
1461
|
+
if (itunesId !== undefined && itunesId !== null) {
|
|
1462
|
+
queryParameters = queryParameters.set('itunesId', itunesId);
|
|
1463
|
+
}
|
|
1464
|
+
if (fbAppIdForItunes !== undefined && fbAppIdForItunes !== null) {
|
|
1465
|
+
queryParameters = queryParameters.set('fbAppIdForItunes', fbAppIdForItunes);
|
|
1466
|
+
}
|
|
1467
|
+
if (iosAppName !== undefined && iosAppName !== null) {
|
|
1468
|
+
queryParameters = queryParameters.set('iosAppName', iosAppName);
|
|
1469
|
+
}
|
|
1470
|
+
if (androidAppName !== undefined && androidAppName !== null) {
|
|
1471
|
+
queryParameters = queryParameters.set('androidAppName', androidAppName);
|
|
1472
|
+
}
|
|
1473
|
+
if (defaultWebSiteUrl !== undefined && defaultWebSiteUrl !== null) {
|
|
1474
|
+
queryParameters = queryParameters.set('defaultWebSiteUrl', defaultWebSiteUrl);
|
|
1475
|
+
}
|
|
1476
|
+
if (page !== undefined && page !== null) {
|
|
1477
|
+
queryParameters = queryParameters.set('page', page);
|
|
1478
|
+
}
|
|
1479
|
+
if (size !== undefined && size !== null) {
|
|
1480
|
+
queryParameters = queryParameters.set('size', size);
|
|
1481
|
+
}
|
|
1482
|
+
if (sort) {
|
|
1483
|
+
sort.forEach((element) => {
|
|
1484
|
+
queryParameters = queryParameters.append('sort', element);
|
|
1485
|
+
});
|
|
1486
|
+
}
|
|
1487
|
+
let headers = this.defaultHeaders;
|
|
1488
|
+
// to determine the Accept header
|
|
1489
|
+
let httpHeaderAccepts = [
|
|
1490
|
+
'*/*'
|
|
1491
|
+
];
|
|
1492
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1493
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1494
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1495
|
+
}
|
|
1496
|
+
// to determine the Content-Type header
|
|
1497
|
+
const consumes = [];
|
|
1498
|
+
return this.httpClient.request('get', `${this.basePath}/api/mobile-app`, {
|
|
1499
|
+
params: queryParameters,
|
|
1500
|
+
withCredentials: this.configuration.withCredentials,
|
|
1501
|
+
headers: headers,
|
|
1502
|
+
observe: observe,
|
|
1503
|
+
reportProgress: reportProgress
|
|
1504
|
+
});
|
|
1505
|
+
}
|
|
1506
|
+
getMobileAppDetail(id, observe = 'body', reportProgress = false) {
|
|
1507
|
+
if (id === null || id === undefined) {
|
|
1508
|
+
throw new Error('Required parameter id was null or undefined when calling getMobileAppDetail.');
|
|
1509
|
+
}
|
|
1510
|
+
let headers = this.defaultHeaders;
|
|
1511
|
+
// to determine the Accept header
|
|
1512
|
+
let httpHeaderAccepts = [
|
|
1513
|
+
'*/*'
|
|
1514
|
+
];
|
|
1515
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1516
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1517
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1518
|
+
}
|
|
1519
|
+
// to determine the Content-Type header
|
|
1520
|
+
const consumes = [];
|
|
1521
|
+
return this.httpClient.request('get', `${this.basePath}/api/mobile-app/${encodeURIComponent(String(id))}`, {
|
|
1522
|
+
withCredentials: this.configuration.withCredentials,
|
|
1523
|
+
headers: headers,
|
|
1524
|
+
observe: observe,
|
|
1525
|
+
reportProgress: reportProgress
|
|
1526
|
+
});
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
MobileAppDetailControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileAppDetailControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1530
|
+
MobileAppDetailControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileAppDetailControllerService });
|
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileAppDetailControllerService, decorators: [{
|
|
1532
|
+
type: Injectable
|
|
1533
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1534
|
+
type: Optional
|
|
1535
|
+
}, {
|
|
1536
|
+
type: Inject,
|
|
1537
|
+
args: [BASE_PATH]
|
|
1538
|
+
}] }, { type: Configuration, decorators: [{
|
|
1539
|
+
type: Optional
|
|
1540
|
+
}] }]; } });
|
|
1541
|
+
|
|
1207
1542
|
/**
|
|
1208
1543
|
*
|
|
1209
1544
|
*
|
|
@@ -1319,7 +1654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1319
1654
|
type: Optional
|
|
1320
1655
|
}] }]; } });
|
|
1321
1656
|
|
|
1322
|
-
const APIS = [AdImageControllerService, BusinessGeoControllerService, CampaignControllerService, CountryControllerService, DpaCampaignControllerService, DpaEngagementControllerService, FacebookEngagementControllerService, PackageDetailControllerService];
|
|
1657
|
+
const APIS = [AdImageControllerService, AdVideoControllerService, BusinessGeoControllerService, CampaignControllerService, CountryControllerService, DpaCampaignControllerService, DpaEngagementControllerService, FacebookEngagementControllerService, MobileAppDetailControllerService, PackageDetailControllerService];
|
|
1323
1658
|
|
|
1324
1659
|
/**
|
|
1325
1660
|
*
|
|
@@ -1385,6 +1720,18 @@ var AdSetDetails;
|
|
|
1385
1720
|
* Do not edit the class manually.
|
|
1386
1721
|
*/
|
|
1387
1722
|
|
|
1723
|
+
/**
|
|
1724
|
+
*
|
|
1725
|
+
*
|
|
1726
|
+
*
|
|
1727
|
+
*
|
|
1728
|
+
*
|
|
1729
|
+
*
|
|
1730
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1731
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
1732
|
+
* Do not edit the class manually.
|
|
1733
|
+
*/
|
|
1734
|
+
|
|
1388
1735
|
/**
|
|
1389
1736
|
*
|
|
1390
1737
|
*
|
|
@@ -1627,6 +1974,30 @@ var FacebookEngagementResponse;
|
|
|
1627
1974
|
* Do not edit the class manually.
|
|
1628
1975
|
*/
|
|
1629
1976
|
|
|
1977
|
+
/**
|
|
1978
|
+
*
|
|
1979
|
+
*
|
|
1980
|
+
*
|
|
1981
|
+
*
|
|
1982
|
+
*
|
|
1983
|
+
*
|
|
1984
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1985
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
1986
|
+
* Do not edit the class manually.
|
|
1987
|
+
*/
|
|
1988
|
+
|
|
1989
|
+
/**
|
|
1990
|
+
*
|
|
1991
|
+
*
|
|
1992
|
+
*
|
|
1993
|
+
*
|
|
1994
|
+
*
|
|
1995
|
+
*
|
|
1996
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1997
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
1998
|
+
* Do not edit the class manually.
|
|
1999
|
+
*/
|
|
2000
|
+
|
|
1630
2001
|
class ApiModule {
|
|
1631
2002
|
static forRoot(configurationFactory) {
|
|
1632
2003
|
return {
|
|
@@ -1648,12 +2019,14 @@ ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2
|
|
|
1648
2019
|
ApiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ApiModule });
|
|
1649
2020
|
ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, providers: [
|
|
1650
2021
|
AdImageControllerService,
|
|
2022
|
+
AdVideoControllerService,
|
|
1651
2023
|
BusinessGeoControllerService,
|
|
1652
2024
|
CampaignControllerService,
|
|
1653
2025
|
CountryControllerService,
|
|
1654
2026
|
DpaCampaignControllerService,
|
|
1655
2027
|
DpaEngagementControllerService,
|
|
1656
2028
|
FacebookEngagementControllerService,
|
|
2029
|
+
MobileAppDetailControllerService,
|
|
1657
2030
|
PackageDetailControllerService
|
|
1658
2031
|
] });
|
|
1659
2032
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, decorators: [{
|
|
@@ -1664,12 +2037,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1664
2037
|
exports: [],
|
|
1665
2038
|
providers: [
|
|
1666
2039
|
AdImageControllerService,
|
|
2040
|
+
AdVideoControllerService,
|
|
1667
2041
|
BusinessGeoControllerService,
|
|
1668
2042
|
CampaignControllerService,
|
|
1669
2043
|
CountryControllerService,
|
|
1670
2044
|
DpaCampaignControllerService,
|
|
1671
2045
|
DpaEngagementControllerService,
|
|
1672
2046
|
FacebookEngagementControllerService,
|
|
2047
|
+
MobileAppDetailControllerService,
|
|
1673
2048
|
PackageDetailControllerService
|
|
1674
2049
|
]
|
|
1675
2050
|
}]
|
|
@@ -1685,5 +2060,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1685
2060
|
* Generated bundle index. Do not edit.
|
|
1686
2061
|
*/
|
|
1687
2062
|
|
|
1688
|
-
export { APIS, AdImageControllerService, AdImageResponse, AdSetDetails, ApiModule, BASE_PATH, BusinessGeoControllerService, COLLECTION_FORMATS, CampaignControllerService, CampaignResponse, Configuration, CountryControllerService, DpaCampaignControllerService, DpaCampaignResponse, DpaEngagementChangeLogResponse, DpaEngagementControllerService, DpaEngagementResponse, FacebookEngagementControllerService, FacebookEngagementResponse, PackageDetailControllerService };
|
|
2063
|
+
export { APIS, AdImageControllerService, AdImageResponse, AdSetDetails, AdVideoControllerService, ApiModule, BASE_PATH, BusinessGeoControllerService, COLLECTION_FORMATS, CampaignControllerService, CampaignResponse, Configuration, CountryControllerService, DpaCampaignControllerService, DpaCampaignResponse, DpaEngagementChangeLogResponse, DpaEngagementControllerService, DpaEngagementResponse, FacebookEngagementControllerService, FacebookEngagementResponse, MobileAppDetailControllerService, PackageDetailControllerService };
|
|
1689
2064
|
//# sourceMappingURL=revxui-intellibid-client-ts.mjs.map
|