@revxui/intellibid-client-ts 1.0.60 → 1.0.61
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 +0 -23
- package/api/api.d.ts +1 -3
- package/esm2020/api/advertiserController.service.mjs +1 -55
- package/esm2020/api/api.mjs +2 -4
- package/esm2020/api.module.mjs +1 -4
- 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 +1 -8
- package/esm2020/model/pageableObject.mjs +1 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs +2 -232
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +2 -266
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- 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 +0 -7
- package/model/pageableObject.d.ts +2 -2
- 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
|
@@ -250,28 +250,6 @@ class AdvertiserControllerService {
|
|
|
250
250
|
reportProgress: reportProgress
|
|
251
251
|
});
|
|
252
252
|
}
|
|
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
253
|
searchAdvertisers(q, observe = 'body', reportProgress = false) {
|
|
276
254
|
if (q === null || q === undefined) {
|
|
277
255
|
throw new Error('Required parameter q was null or undefined when calling searchAdvertisers.');
|
|
@@ -299,38 +277,6 @@ class AdvertiserControllerService {
|
|
|
299
277
|
reportProgress: reportProgress
|
|
300
278
|
});
|
|
301
279
|
}
|
|
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
280
|
}
|
|
335
281
|
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
282
|
AdvertiserControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdvertiserControllerService });
|
|
@@ -345,109 +291,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
345
291
|
type: Optional
|
|
346
292
|
}] }]; } });
|
|
347
293
|
|
|
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
294
|
/**
|
|
452
295
|
* Intellibid API
|
|
453
296
|
* API documentation for the Intellibid platform
|
|
@@ -965,7 +808,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
965
808
|
type: Optional
|
|
966
809
|
}] }]; } });
|
|
967
810
|
|
|
968
|
-
const APIS = [AdvertiserControllerService,
|
|
811
|
+
const APIS = [AdvertiserControllerService, CampaignControllerService, InsightsControllerService, LookupDataControllerService];
|
|
969
812
|
|
|
970
813
|
/**
|
|
971
814
|
* Intellibid API
|
|
@@ -1003,44 +846,6 @@ const APIS = [AdvertiserControllerService, AudienceControllerService, CampaignCo
|
|
|
1003
846
|
* Do not edit the class manually.
|
|
1004
847
|
*/
|
|
1005
848
|
|
|
1006
|
-
/**
|
|
1007
|
-
* Intellibid API
|
|
1008
|
-
* API documentation for the Intellibid platform
|
|
1009
|
-
*
|
|
1010
|
-
* OpenAPI spec version: 1.0
|
|
1011
|
-
*
|
|
1012
|
-
*
|
|
1013
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1014
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1015
|
-
* 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 = {}));
|
|
1043
|
-
|
|
1044
849
|
/**
|
|
1045
850
|
* Intellibid API
|
|
1046
851
|
* API documentation for the Intellibid platform
|
|
@@ -1124,7 +929,6 @@ var CampaignRequest;
|
|
|
1124
929
|
CampaignRequest.SourcePlatformEnum = {
|
|
1125
930
|
META: 'META',
|
|
1126
931
|
TIKTOK: 'TIKTOK',
|
|
1127
|
-
GOOGLE: 'GOOGLE',
|
|
1128
932
|
SNAPCHAT: 'SNAPCHAT'
|
|
1129
933
|
};
|
|
1130
934
|
CampaignRequest.PayoutTypeEnum = {
|
|
@@ -1146,7 +950,6 @@ var CampaignResponse;
|
|
|
1146
950
|
CampaignResponse.SourcePlatformEnum = {
|
|
1147
951
|
META: 'META',
|
|
1148
952
|
TIKTOK: 'TIKTOK',
|
|
1149
|
-
GOOGLE: 'GOOGLE',
|
|
1150
953
|
SNAPCHAT: 'SNAPCHAT'
|
|
1151
954
|
};
|
|
1152
955
|
CampaignResponse.PayoutTypeEnum = {
|
|
@@ -1175,59 +978,6 @@ var CampaignResponse;
|
|
|
1175
978
|
* Do not edit the class manually.
|
|
1176
979
|
*/
|
|
1177
980
|
|
|
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
981
|
/**
|
|
1232
982
|
* Intellibid API
|
|
1233
983
|
* API documentation for the Intellibid platform
|
|
@@ -1319,18 +1069,6 @@ var ScheduleUpdateRequest;
|
|
|
1319
1069
|
* Do not edit the class manually.
|
|
1320
1070
|
*/
|
|
1321
1071
|
|
|
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
1072
|
class ApiModule {
|
|
1335
1073
|
static forRoot(configurationFactory) {
|
|
1336
1074
|
return {
|
|
@@ -1352,7 +1090,6 @@ ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2
|
|
|
1352
1090
|
ApiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ApiModule });
|
|
1353
1091
|
ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApiModule, providers: [
|
|
1354
1092
|
AdvertiserControllerService,
|
|
1355
|
-
AudienceControllerService,
|
|
1356
1093
|
CampaignControllerService,
|
|
1357
1094
|
InsightsControllerService,
|
|
1358
1095
|
LookupDataControllerService
|
|
@@ -1365,7 +1102,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1365
1102
|
exports: [],
|
|
1366
1103
|
providers: [
|
|
1367
1104
|
AdvertiserControllerService,
|
|
1368
|
-
AudienceControllerService,
|
|
1369
1105
|
CampaignControllerService,
|
|
1370
1106
|
InsightsControllerService,
|
|
1371
1107
|
LookupDataControllerService
|
|
@@ -1383,5 +1119,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1383
1119
|
* Generated bundle index. Do not edit.
|
|
1384
1120
|
*/
|
|
1385
1121
|
|
|
1386
|
-
export { APIS, AdvertiserControllerService, ApiModule,
|
|
1122
|
+
export { APIS, AdvertiserControllerService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CampaignChangeLogResponse, CampaignControllerService, CampaignInsightRecord, CampaignRequest, CampaignResponse, Configuration, InsightsControllerService, LookupDataControllerService, ScheduleUpdateRequest };
|
|
1387
1123
|
//# sourceMappingURL=revxui-intellibid-client-ts.mjs.map
|