flexinet-api 0.0.2304 → 0.0.2306
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.ts +999 -251
- package/dist/api.d.ts +889 -200
- package/dist/api.js +280 -183
- package/dist/esm/api.d.ts +889 -200
- package/dist/esm/api.js +278 -177
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
@@ -205,12 +205,6 @@ export interface AuthorizationConfig {
|
|
205
205
|
* @memberof AuthorizationConfig
|
206
206
|
*/
|
207
207
|
'customerOpenIDClientID': string;
|
208
|
-
/**
|
209
|
-
*
|
210
|
-
* @type {string}
|
211
|
-
* @memberof AuthorizationConfig
|
212
|
-
*/
|
213
|
-
'customerOpenIDSecret': string;
|
214
208
|
/**
|
215
209
|
*
|
216
210
|
* @type {string}
|
@@ -244,6 +238,87 @@ export interface AuthorizationConfig {
|
|
244
238
|
*/
|
245
239
|
'customerLoginUrl': string;
|
246
240
|
}
|
241
|
+
/**
|
242
|
+
*
|
243
|
+
* @export
|
244
|
+
* @interface AuthorizationConfigRequest
|
245
|
+
*/
|
246
|
+
export interface AuthorizationConfigRequest {
|
247
|
+
/**
|
248
|
+
*
|
249
|
+
* @type {string}
|
250
|
+
* @memberof AuthorizationConfigRequest
|
251
|
+
*/
|
252
|
+
'adminKeyConfig'?: string;
|
253
|
+
/**
|
254
|
+
*
|
255
|
+
* @type {string}
|
256
|
+
* @memberof AuthorizationConfigRequest
|
257
|
+
*/
|
258
|
+
'adminIssuer'?: string;
|
259
|
+
/**
|
260
|
+
*
|
261
|
+
* @type {string}
|
262
|
+
* @memberof AuthorizationConfigRequest
|
263
|
+
*/
|
264
|
+
'adminAudience'?: string;
|
265
|
+
/**
|
266
|
+
*
|
267
|
+
* @type {string}
|
268
|
+
* @memberof AuthorizationConfigRequest
|
269
|
+
*/
|
270
|
+
'customerAudience'?: string;
|
271
|
+
/**
|
272
|
+
*
|
273
|
+
* @type {string}
|
274
|
+
* @memberof AuthorizationConfigRequest
|
275
|
+
*/
|
276
|
+
'customerOpenIDKeyConfig'?: string;
|
277
|
+
/**
|
278
|
+
*
|
279
|
+
* @type {string}
|
280
|
+
* @memberof AuthorizationConfigRequest
|
281
|
+
*/
|
282
|
+
'customerOpenIDIssuer'?: string;
|
283
|
+
/**
|
284
|
+
*
|
285
|
+
* @type {string}
|
286
|
+
* @memberof AuthorizationConfigRequest
|
287
|
+
*/
|
288
|
+
'customerOpenIDClientID'?: string;
|
289
|
+
/**
|
290
|
+
*
|
291
|
+
* @type {string}
|
292
|
+
* @memberof AuthorizationConfigRequest
|
293
|
+
*/
|
294
|
+
'customerOpenIDMetadataURL'?: string;
|
295
|
+
/**
|
296
|
+
*
|
297
|
+
* @type {{ [key: string]: string; }}
|
298
|
+
* @memberof AuthorizationConfigRequest
|
299
|
+
*/
|
300
|
+
'customerOpenIDParameters'?: {
|
301
|
+
[key: string]: string;
|
302
|
+
};
|
303
|
+
/**
|
304
|
+
*
|
305
|
+
* @type {string}
|
306
|
+
* @memberof AuthorizationConfigRequest
|
307
|
+
*/
|
308
|
+
'azureEntraTenantID'?: string;
|
309
|
+
/**
|
310
|
+
*
|
311
|
+
* @type {string}
|
312
|
+
* @memberof AuthorizationConfigRequest
|
313
|
+
*/
|
314
|
+
'azureEntraClientID'?: string;
|
315
|
+
/**
|
316
|
+
*
|
317
|
+
* @type {string}
|
318
|
+
* @memberof AuthorizationConfigRequest
|
319
|
+
*/
|
320
|
+
'customerLoginUrl'?: string;
|
321
|
+
}
|
247
322
|
/**
|
248
323
|
*
|
249
324
|
* @export
|
@@ -650,6 +725,37 @@ export interface BrandingConfig {
|
|
650
725
|
*/
|
651
726
|
'coinLogoURL': string;
|
652
727
|
}
|
728
|
+
/**
|
729
|
+
*
|
730
|
+
* @export
|
731
|
+
* @interface BrandingConfigRequest
|
732
|
+
*/
|
733
|
+
export interface BrandingConfigRequest {
|
734
|
+
/**
|
735
|
+
*
|
736
|
+
* @type {string}
|
737
|
+
* @memberof BrandingConfigRequest
|
738
|
+
*/
|
739
|
+
'logoURL'?: string;
|
740
|
+
/**
|
741
|
+
*
|
742
|
+
* @type {string}
|
743
|
+
* @memberof BrandingConfigRequest
|
744
|
+
*/
|
745
|
+
'mainColor'?: string;
|
746
|
+
/**
|
747
|
+
*
|
748
|
+
* @type {string}
|
749
|
+
* @memberof BrandingConfigRequest
|
750
|
+
*/
|
751
|
+
'coinName'?: string;
|
752
|
+
/**
|
753
|
+
*
|
754
|
+
* @type {string}
|
755
|
+
* @memberof BrandingConfigRequest
|
756
|
+
*/
|
757
|
+
'coinLogoURL'?: string;
|
758
|
+
}
|
653
759
|
/**
|
654
760
|
*
|
655
761
|
* @export
|
@@ -1103,6 +1209,25 @@ export interface CustomerUserDetails {
|
|
1103
1209
|
*/
|
1104
1210
|
'lastName'?: string;
|
1105
1211
|
}
|
1212
|
+
/**
|
1213
|
+
*
|
1214
|
+
* @export
|
1215
|
+
* @interface Event
|
1216
|
+
*/
|
1217
|
+
export interface Event {
|
1218
|
+
/**
|
1219
|
+
*
|
1220
|
+
* @type {TransactionEventDetails}
|
1221
|
+
* @memberof Event
|
1222
|
+
*/
|
1223
|
+
'event': TransactionEventDetails;
|
1224
|
+
/**
|
1225
|
+
*
|
1226
|
+
* @type {Array<Promotion>}
|
1227
|
+
* @memberof Event
|
1228
|
+
*/
|
1229
|
+
'promotions': Array<Promotion>;
|
1230
|
+
}
|
1106
1231
|
/**
|
1107
1232
|
*
|
1108
1233
|
* @export
|
@@ -1159,6 +1284,25 @@ export interface EventsEvaluationResponse {
|
|
1159
1284
|
[key: string]: Array<Promotion>;
|
1160
1285
|
};
|
1161
1286
|
}
|
1287
|
+
/**
|
1288
|
+
*
|
1289
|
+
* @export
|
1290
|
+
* @interface EventsResponse
|
1291
|
+
*/
|
1292
|
+
export interface EventsResponse {
|
1293
|
+
/**
|
1294
|
+
*
|
1295
|
+
* @type {Array<Event>}
|
1296
|
+
* @memberof EventsResponse
|
1297
|
+
*/
|
1298
|
+
'events': Array<Event>;
|
1299
|
+
/**
|
1300
|
+
* This is the pagination token
|
1301
|
+
* @type {string}
|
1302
|
+
* @memberof EventsResponse
|
1303
|
+
*/
|
1304
|
+
'nextToken'?: string;
|
1305
|
+
}
|
1162
1306
|
/**
|
1163
1307
|
*
|
1164
1308
|
* @export
|
@@ -1172,6 +1316,7 @@ export declare const Feature: {
|
|
1172
1316
|
readonly ExternalInventory: "external_inventory";
|
1173
1317
|
readonly OrderEvents: "order_events";
|
1174
1318
|
readonly OrderStatusPolling: "order_status_polling";
|
1319
|
+
readonly SmsSending: "sms_sending";
|
1175
1320
|
};
|
1176
1321
|
export type Feature = typeof Feature[keyof typeof Feature];
|
1177
1322
|
/**
|
@@ -1195,6 +1340,27 @@ export interface FeatureFlags {
|
|
1195
1340
|
[key: string]: boolean;
|
1196
1341
|
};
|
1197
1342
|
}
|
1343
|
+
/**
|
1344
|
+
*
|
1345
|
+
* @export
|
1346
|
+
* @interface FeatureFlagsRequest
|
1347
|
+
*/
|
1348
|
+
export interface FeatureFlagsRequest {
|
1349
|
+
/**
|
1350
|
+
*
|
1351
|
+
* @type {boolean}
|
1352
|
+
* @memberof FeatureFlagsRequest
|
1353
|
+
*/
|
1354
|
+
'enforce'?: boolean;
|
1355
|
+
/**
|
1356
|
+
*
|
1357
|
+
* @type {{ [key: string]: boolean; }}
|
1358
|
+
* @memberof FeatureFlagsRequest
|
1359
|
+
*/
|
1360
|
+
'features'?: {
|
1361
|
+
[key: string]: boolean;
|
1362
|
+
};
|
1363
|
+
}
|
1198
1364
|
/**
|
1199
1365
|
*
|
1200
1366
|
* @export
|
@@ -1275,6 +1441,73 @@ export interface IntegrationsConfig {
|
|
1275
1441
|
*/
|
1276
1442
|
'externalUserServiceEnabled': boolean;
|
1277
1443
|
}
|
1444
|
+
/**
|
1445
|
+
*
|
1446
|
+
* @export
|
1447
|
+
* @interface IntegrationsConfigRequest
|
1448
|
+
*/
|
1449
|
+
export interface IntegrationsConfigRequest {
|
1450
|
+
/**
|
1451
|
+
*
|
1452
|
+
* @type {string}
|
1453
|
+
* @memberof IntegrationsConfigRequest
|
1454
|
+
*/
|
1455
|
+
'userInfoURL'?: string;
|
1456
|
+
/**
|
1457
|
+
*
|
1458
|
+
* @type {string}
|
1459
|
+
* @memberof IntegrationsConfigRequest
|
1460
|
+
*/
|
1461
|
+
'productInventoryURL'?: string;
|
1462
|
+
/**
|
1463
|
+
*
|
1464
|
+
* @type {string}
|
1465
|
+
* @memberof IntegrationsConfigRequest
|
1466
|
+
*/
|
1467
|
+
'orderStatusURL'?: string;
|
1468
|
+
/**
|
1469
|
+
*
|
1470
|
+
* @type {boolean}
|
1471
|
+
* @memberof IntegrationsConfigRequest
|
1472
|
+
*/
|
1473
|
+
'useOrderEventsExternalID'?: boolean;
|
1474
|
+
/**
|
1475
|
+
*
|
1476
|
+
* @type {string}
|
1477
|
+
* @memberof IntegrationsConfigRequest
|
1478
|
+
*/
|
1479
|
+
'smsURL'?: string;
|
1480
|
+
/**
|
1481
|
+
*
|
1482
|
+
* @type {string}
|
1483
|
+
* @memberof IntegrationsConfigRequest
|
1484
|
+
*/
|
1485
|
+
'smsKey'?: string;
|
1486
|
+
/**
|
1487
|
+
*
|
1488
|
+
* @type {string}
|
1489
|
+
* @memberof IntegrationsConfigRequest
|
1490
|
+
*/
|
1491
|
+
'authEndpoint'?: string;
|
1492
|
+
/**
|
1493
|
+
*
|
1494
|
+
* @type {string}
|
1495
|
+
* @memberof IntegrationsConfigRequest
|
1496
|
+
*/
|
1497
|
+
'authClientID'?: string;
|
1498
|
+
/**
|
1499
|
+
*
|
1500
|
+
* @type {string}
|
1501
|
+
* @memberof IntegrationsConfigRequest
|
1502
|
+
*/
|
1503
|
+
'authClientSecretName'?: string;
|
1504
|
+
/**
|
1505
|
+
*
|
1506
|
+
* @type {boolean}
|
1507
|
+
* @memberof IntegrationsConfigRequest
|
1508
|
+
*/
|
1509
|
+
'externalUserServiceEnabled'?: boolean;
|
1510
|
+
}
|
1278
1511
|
/**
|
1279
1512
|
*
|
1280
1513
|
* @export
|
@@ -1327,6 +1560,39 @@ export interface LedgerConfig {
|
|
1327
1560
|
[key: string]: string;
|
1328
1561
|
};
|
1329
1562
|
}
|
1563
|
+
/**
|
1564
|
+
*
|
1565
|
+
* @export
|
1566
|
+
* @interface LedgerConfigRequest
|
1567
|
+
*/
|
1568
|
+
export interface LedgerConfigRequest {
|
1569
|
+
/**
|
1570
|
+
*
|
1571
|
+
* @type {number}
|
1572
|
+
* @memberof LedgerConfigRequest
|
1573
|
+
*/
|
1574
|
+
'balanceGracePeriod'?: number;
|
1575
|
+
/**
|
1576
|
+
*
|
1577
|
+
* @type {number}
|
1578
|
+
* @memberof LedgerConfigRequest
|
1579
|
+
*/
|
1580
|
+
'maxManagerOrderValue'?: number;
|
1581
|
+
/**
|
1582
|
+
*
|
1583
|
+
* @type {boolean}
|
1584
|
+
* @memberof LedgerConfigRequest
|
1585
|
+
*/
|
1586
|
+
'allowNegativeBalance'?: boolean;
|
1587
|
+
/**
|
1588
|
+
*
|
1589
|
+
* @type {{ [key: string]: string; }}
|
1590
|
+
* @memberof LedgerConfigRequest
|
1591
|
+
*/
|
1592
|
+
'expiry'?: {
|
1593
|
+
[key: string]: string;
|
1594
|
+
};
|
1595
|
+
}
|
1330
1596
|
/**
|
1331
1597
|
*
|
1332
1598
|
* @export
|
@@ -1658,6 +1924,51 @@ export interface NotificationConfig {
|
|
1658
1924
|
*/
|
1659
1925
|
'templateDir'?: string;
|
1660
1926
|
}
|
1927
|
+
/**
|
1928
|
+
*
|
1929
|
+
* @export
|
1930
|
+
* @interface NotificationConfigRequest
|
1931
|
+
*/
|
1932
|
+
export interface NotificationConfigRequest {
|
1933
|
+
/**
|
1934
|
+
*
|
1935
|
+
* @type {Array<string>}
|
1936
|
+
* @memberof NotificationConfigRequest
|
1937
|
+
*/
|
1938
|
+
'emails'?: Array<string>;
|
1939
|
+
/**
|
1940
|
+
*
|
1941
|
+
* @type {Array<NotificationPreference>}
|
1942
|
+
* @memberof NotificationConfigRequest
|
1943
|
+
*/
|
1944
|
+
'preferences'?: Array<NotificationPreference>;
|
1945
|
+
/**
|
1946
|
+
*
|
1947
|
+
* @type {{ [key: string]: NotificationTemplateConfig; }}
|
1948
|
+
* @memberof NotificationConfigRequest
|
1949
|
+
*/
|
1950
|
+
'templates'?: {
|
1951
|
+
[key: string]: NotificationTemplateConfig;
|
1952
|
+
};
|
1953
|
+
/**
|
1954
|
+
*
|
1955
|
+
* @type {string}
|
1956
|
+
* @memberof NotificationConfigRequest
|
1957
|
+
*/
|
1958
|
+
'customerWebappHostname'?: string;
|
1959
|
+
/**
|
1960
|
+
*
|
1961
|
+
* @type {string}
|
1962
|
+
* @memberof NotificationConfigRequest
|
1963
|
+
*/
|
1964
|
+
'adminWebappHostname'?: string;
|
1965
|
+
/**
|
1966
|
+
*
|
1967
|
+
* @type {string}
|
1968
|
+
* @memberof NotificationConfigRequest
|
1969
|
+
*/
|
1970
|
+
'templateDir'?: string;
|
1971
|
+
}
|
1661
1972
|
/**
|
1662
1973
|
*
|
1663
1974
|
* @export
|
@@ -2946,40 +3257,89 @@ export interface PromotionConfig {
|
|
2946
3257
|
/**
|
2947
3258
|
*
|
2948
3259
|
* @export
|
2949
|
-
* @interface
|
3260
|
+
* @interface PromotionConfigRequest
|
2950
3261
|
*/
|
2951
|
-
export interface
|
3262
|
+
export interface PromotionConfigRequest {
|
2952
3263
|
/**
|
2953
3264
|
*
|
2954
|
-
* @type {
|
2955
|
-
* @memberof
|
3265
|
+
* @type {number}
|
3266
|
+
* @memberof PromotionConfigRequest
|
2956
3267
|
*/
|
2957
|
-
'
|
3268
|
+
'adminClaimGracePeriod'?: number;
|
2958
3269
|
/**
|
2959
3270
|
*
|
2960
|
-
* @type {
|
2961
|
-
* @memberof
|
3271
|
+
* @type {number}
|
3272
|
+
* @memberof PromotionConfigRequest
|
2962
3273
|
*/
|
2963
|
-
'
|
3274
|
+
'userClaimGracePeriod'?: number;
|
2964
3275
|
/**
|
2965
3276
|
*
|
2966
|
-
* @type {
|
2967
|
-
* @memberof
|
3277
|
+
* @type {number}
|
3278
|
+
* @memberof PromotionConfigRequest
|
2968
3279
|
*/
|
2969
|
-
'
|
2970
|
-
}
|
2971
|
-
/**
|
2972
|
-
*
|
2973
|
-
* @export
|
2974
|
-
* @interface PromotionRequest
|
2975
|
-
*/
|
2976
|
-
export interface PromotionRequest {
|
3280
|
+
'refundLapsePeriod'?: number;
|
2977
3281
|
/**
|
2978
3282
|
*
|
2979
|
-
* @type {
|
2980
|
-
* @memberof
|
3283
|
+
* @type {number}
|
3284
|
+
* @memberof PromotionConfigRequest
|
2981
3285
|
*/
|
2982
|
-
'
|
3286
|
+
'customDealMinDuration'?: number;
|
3287
|
+
/**
|
3288
|
+
*
|
3289
|
+
* @type {number}
|
3290
|
+
* @memberof PromotionConfigRequest
|
3291
|
+
*/
|
3292
|
+
'customDealMinTargetValue'?: number;
|
3293
|
+
/**
|
3294
|
+
*
|
3295
|
+
* @type {number}
|
3296
|
+
* @memberof PromotionConfigRequest
|
3297
|
+
*/
|
3298
|
+
'customDealRefundWindow'?: number;
|
3299
|
+
/**
|
3300
|
+
*
|
3301
|
+
* @type {boolean}
|
3302
|
+
* @memberof PromotionConfigRequest
|
3303
|
+
*/
|
3304
|
+
'allowRunningPromotionsUpdate'?: boolean;
|
3305
|
+
}
|
3306
|
+
/**
|
3307
|
+
*
|
3308
|
+
* @export
|
3309
|
+
* @interface PromotionNotificationConfig
|
3310
|
+
*/
|
3311
|
+
export interface PromotionNotificationConfig {
|
3312
|
+
/**
|
3313
|
+
*
|
3314
|
+
* @type {Array<NotificationChannel>}
|
3315
|
+
* @memberof PromotionNotificationConfig
|
3316
|
+
*/
|
3317
|
+
'channels': Array<NotificationChannel>;
|
3318
|
+
/**
|
3319
|
+
*
|
3320
|
+
* @type {Array<NotificationKind>}
|
3321
|
+
* @memberof PromotionNotificationConfig
|
3322
|
+
*/
|
3323
|
+
'kinds': Array<NotificationKind>;
|
3324
|
+
/**
|
3325
|
+
*
|
3326
|
+
* @type {boolean}
|
3327
|
+
* @memberof PromotionNotificationConfig
|
3328
|
+
*/
|
3329
|
+
'forEachPeriod': boolean;
|
3330
|
+
}
|
3331
|
+
/**
|
3332
|
+
*
|
3333
|
+
* @export
|
3334
|
+
* @interface PromotionRequest
|
3335
|
+
*/
|
3336
|
+
export interface PromotionRequest {
|
3337
|
+
/**
|
3338
|
+
*
|
3339
|
+
* @type {string}
|
3340
|
+
* @memberof PromotionRequest
|
3341
|
+
*/
|
3342
|
+
'name': string;
|
2983
3343
|
/**
|
2984
3344
|
*
|
2985
3345
|
* @type {string}
|
@@ -3288,6 +3648,25 @@ export declare const ReportTypesResponseTypesEnum: {
|
|
3288
3648
|
readonly PromotionExpanded: "promotion_expanded";
|
3289
3649
|
};
|
3290
3650
|
export type ReportTypesResponseTypesEnum = typeof ReportTypesResponseTypesEnum[keyof typeof ReportTypesResponseTypesEnum];
|
3651
|
+
/**
|
3652
|
+
*
|
3653
|
+
* @export
|
3654
|
+
* @interface ReportUrlResponse
|
3655
|
+
*/
|
3656
|
+
export interface ReportUrlResponse {
|
3657
|
+
/**
|
3658
|
+
*
|
3659
|
+
* @type {string}
|
3660
|
+
* @memberof ReportUrlResponse
|
3661
|
+
*/
|
3662
|
+
'datalakeUrl': string;
|
3663
|
+
/**
|
3664
|
+
*
|
3665
|
+
* @type {string}
|
3666
|
+
* @memberof ReportUrlResponse
|
3667
|
+
*/
|
3668
|
+
'token': string;
|
3669
|
+
}
|
3291
3670
|
/**
|
3292
3671
|
* @type Rule
|
3293
3672
|
* @export
|
@@ -4082,49 +4461,367 @@ export interface TenantConfing {
|
|
4082
4461
|
/**
|
4083
4462
|
*
|
4084
4463
|
* @type {string}
|
4085
|
-
* @memberof TenantConfing
|
4464
|
+
* @memberof TenantConfing
|
4465
|
+
*/
|
4466
|
+
'name': string;
|
4467
|
+
/**
|
4468
|
+
*
|
4469
|
+
* @type {string}
|
4470
|
+
* @memberof TenantConfing
|
4471
|
+
*/
|
4472
|
+
'adminKeyConfig': string;
|
4473
|
+
/**
|
4474
|
+
*
|
4475
|
+
* @type {string}
|
4476
|
+
* @memberof TenantConfing
|
4477
|
+
*/
|
4478
|
+
'adminIssuer': string;
|
4479
|
+
/**
|
4480
|
+
*
|
4481
|
+
* @type {string}
|
4482
|
+
* @memberof TenantConfing
|
4483
|
+
*/
|
4484
|
+
'customerOpenIDKeyConfig': string;
|
4485
|
+
/**
|
4486
|
+
*
|
4487
|
+
* @type {string}
|
4488
|
+
* @memberof TenantConfing
|
4489
|
+
*/
|
4490
|
+
'customerOpenIDIssuer': string;
|
4491
|
+
/**
|
4492
|
+
*
|
4493
|
+
* @type {string}
|
4494
|
+
* @memberof TenantConfing
|
4495
|
+
*/
|
4496
|
+
'customerOpenIDClientID': string;
|
4497
|
+
/**
|
4498
|
+
*
|
4499
|
+
* @type {string}
|
4500
|
+
* @memberof TenantConfing
|
4501
|
+
*/
|
4502
|
+
'customerOpenIDMetadataURL': string;
|
4503
|
+
/**
|
4504
|
+
*
|
4505
|
+
* @type {{ [key: string]: string; }}
|
4506
|
+
* @memberof TenantConfing
|
4507
|
+
*/
|
4508
|
+
'customerOpenIDParameters'?: {
|
4509
|
+
[key: string]: string;
|
4510
|
+
};
|
4511
|
+
/**
|
4512
|
+
*
|
4513
|
+
* @type {string}
|
4514
|
+
* @memberof TenantConfing
|
4515
|
+
*/
|
4516
|
+
'ppURL': string;
|
4517
|
+
/**
|
4518
|
+
*
|
4519
|
+
* @type {string}
|
4520
|
+
* @memberof TenantConfing
|
4521
|
+
*/
|
4522
|
+
'tcURL': string;
|
4523
|
+
/**
|
4524
|
+
*
|
4525
|
+
* @type {string}
|
4526
|
+
* @memberof TenantConfing
|
4527
|
+
*/
|
4528
|
+
'cookiesURL'?: string;
|
4529
|
+
/**
|
4530
|
+
*
|
4531
|
+
* @type {string}
|
4532
|
+
* @memberof TenantConfing
|
4533
|
+
*/
|
4534
|
+
'azureEntraTenantID': string;
|
4535
|
+
/**
|
4536
|
+
*
|
4537
|
+
* @type {string}
|
4538
|
+
* @memberof TenantConfing
|
4539
|
+
*/
|
4540
|
+
'azureEntraClientID': string;
|
4541
|
+
/**
|
4542
|
+
*
|
4543
|
+
* @type {Locale}
|
4544
|
+
* @memberof TenantConfing
|
4545
|
+
*/
|
4546
|
+
'locale': Locale;
|
4547
|
+
/**
|
4548
|
+
*
|
4549
|
+
* @type {string}
|
4550
|
+
* @memberof TenantConfing
|
4551
|
+
*/
|
4552
|
+
'announcement'?: string;
|
4553
|
+
/**
|
4554
|
+
*
|
4555
|
+
* @type {Currency}
|
4556
|
+
* @memberof TenantConfing
|
4557
|
+
*/
|
4558
|
+
'currency': Currency;
|
4559
|
+
/**
|
4560
|
+
*
|
4561
|
+
* @type {boolean}
|
4562
|
+
* @memberof TenantConfing
|
4563
|
+
*/
|
4564
|
+
'customDealAutoClaim': boolean;
|
4565
|
+
/**
|
4566
|
+
*
|
4567
|
+
* @type {LedgerConfig}
|
4568
|
+
* @memberof TenantConfing
|
4569
|
+
*/
|
4570
|
+
'ledger': LedgerConfig;
|
4571
|
+
/**
|
4572
|
+
*
|
4573
|
+
* @type {PromotionConfig}
|
4574
|
+
* @memberof TenantConfing
|
4575
|
+
*/
|
4576
|
+
'promotion': PromotionConfig;
|
4577
|
+
/**
|
4578
|
+
*
|
4579
|
+
* @type {FeatureFlags}
|
4580
|
+
* @memberof TenantConfing
|
4581
|
+
*/
|
4582
|
+
'featureFlags': FeatureFlags;
|
4583
|
+
/**
|
4584
|
+
*
|
4585
|
+
* @type {NotificationConfig}
|
4586
|
+
* @memberof TenantConfing
|
4587
|
+
*/
|
4588
|
+
'notifications': NotificationConfig;
|
4589
|
+
/**
|
4590
|
+
*
|
4591
|
+
* @type {IntegrationsConfig}
|
4592
|
+
* @memberof TenantConfing
|
4593
|
+
*/
|
4594
|
+
'integrations': IntegrationsConfig;
|
4595
|
+
/**
|
4596
|
+
*
|
4597
|
+
* @type {BrandingConfig}
|
4598
|
+
* @memberof TenantConfing
|
4599
|
+
*/
|
4600
|
+
'branding': BrandingConfig;
|
4601
|
+
/**
|
4602
|
+
*
|
4603
|
+
* @type {AuthorizationConfig}
|
4604
|
+
* @memberof TenantConfing
|
4605
|
+
*/
|
4606
|
+
'auth': AuthorizationConfig;
|
4607
|
+
}
|
4608
|
+
/**
|
4609
|
+
*
|
4610
|
+
* @export
|
4611
|
+
* @interface TenantConfingRequest
|
4612
|
+
*/
|
4613
|
+
export interface TenantConfingRequest {
|
4614
|
+
/**
|
4615
|
+
*
|
4616
|
+
* @type {string}
|
4617
|
+
* @memberof TenantConfingRequest
|
4618
|
+
*/
|
4619
|
+
'id': string;
|
4620
|
+
/**
|
4621
|
+
*
|
4622
|
+
* @type {string}
|
4623
|
+
* @memberof TenantConfingRequest
|
4624
|
+
*/
|
4625
|
+
'name'?: string;
|
4626
|
+
/**
|
4627
|
+
*
|
4628
|
+
* @type {string}
|
4629
|
+
* @memberof TenantConfingRequest
|
4630
|
+
*/
|
4631
|
+
'adminKeyConfig'?: string;
|
4632
|
+
/**
|
4633
|
+
*
|
4634
|
+
* @type {string}
|
4635
|
+
* @memberof TenantConfingRequest
|
4636
|
+
*/
|
4637
|
+
'adminIssuer'?: string;
|
4638
|
+
/**
|
4639
|
+
*
|
4640
|
+
* @type {string}
|
4641
|
+
* @memberof TenantConfingRequest
|
4642
|
+
*/
|
4643
|
+
'customerOpenIDKeyConfig'?: string;
|
4644
|
+
/**
|
4645
|
+
*
|
4646
|
+
* @type {string}
|
4647
|
+
* @memberof TenantConfingRequest
|
4648
|
+
*/
|
4649
|
+
'customerOpenIDIssuer'?: string;
|
4650
|
+
/**
|
4651
|
+
*
|
4652
|
+
* @type {string}
|
4653
|
+
* @memberof TenantConfingRequest
|
4654
|
+
*/
|
4655
|
+
'customerOpenIDClientID'?: string;
|
4656
|
+
/**
|
4657
|
+
*
|
4658
|
+
* @type {string}
|
4659
|
+
* @memberof TenantConfingRequest
|
4660
|
+
*/
|
4661
|
+
'customerOpenIDMetadataURL'?: string;
|
4662
|
+
/**
|
4663
|
+
*
|
4664
|
+
* @type {{ [key: string]: string; }}
|
4665
|
+
* @memberof TenantConfingRequest
|
4666
|
+
*/
|
4667
|
+
'customerOpenIDParameters'?: {
|
4668
|
+
[key: string]: string;
|
4669
|
+
};
|
4670
|
+
/**
|
4671
|
+
*
|
4672
|
+
* @type {string}
|
4673
|
+
* @memberof TenantConfingRequest
|
4674
|
+
*/
|
4675
|
+
'ppURL'?: string;
|
4676
|
+
/**
|
4677
|
+
*
|
4678
|
+
* @type {string}
|
4679
|
+
* @memberof TenantConfingRequest
|
4680
|
+
*/
|
4681
|
+
'tcURL'?: string;
|
4682
|
+
/**
|
4683
|
+
*
|
4684
|
+
* @type {string}
|
4685
|
+
* @memberof TenantConfingRequest
|
4686
|
+
*/
|
4687
|
+
'cookiesURL'?: string;
|
4688
|
+
/**
|
4689
|
+
*
|
4690
|
+
* @type {string}
|
4691
|
+
* @memberof TenantConfingRequest
|
4692
|
+
*/
|
4693
|
+
'azureEntraTenantID'?: string;
|
4694
|
+
/**
|
4695
|
+
*
|
4696
|
+
* @type {string}
|
4697
|
+
* @memberof TenantConfingRequest
|
4698
|
+
*/
|
4699
|
+
'azureEntraClientID'?: string;
|
4700
|
+
/**
|
4701
|
+
*
|
4702
|
+
* @type {Locale}
|
4703
|
+
* @memberof TenantConfingRequest
|
4704
|
+
*/
|
4705
|
+
'locale'?: Locale;
|
4706
|
+
/**
|
4707
|
+
*
|
4708
|
+
* @type {string}
|
4709
|
+
* @memberof TenantConfingRequest
|
4710
|
+
*/
|
4711
|
+
'announcement'?: string;
|
4712
|
+
/**
|
4713
|
+
*
|
4714
|
+
* @type {Currency}
|
4715
|
+
* @memberof TenantConfingRequest
|
4716
|
+
*/
|
4717
|
+
'currency'?: Currency;
|
4718
|
+
/**
|
4719
|
+
*
|
4720
|
+
* @type {boolean}
|
4721
|
+
* @memberof TenantConfingRequest
|
4722
|
+
*/
|
4723
|
+
'customDealAutoClaim'?: boolean;
|
4724
|
+
/**
|
4725
|
+
*
|
4726
|
+
* @type {LedgerConfigRequest}
|
4727
|
+
* @memberof TenantConfingRequest
|
4728
|
+
*/
|
4729
|
+
'ledger'?: LedgerConfigRequest;
|
4730
|
+
/**
|
4731
|
+
*
|
4732
|
+
* @type {PromotionConfigRequest}
|
4733
|
+
* @memberof TenantConfingRequest
|
4734
|
+
*/
|
4735
|
+
'promotion'?: PromotionConfigRequest;
|
4736
|
+
/**
|
4737
|
+
*
|
4738
|
+
* @type {FeatureFlagsRequest}
|
4739
|
+
* @memberof TenantConfingRequest
|
4740
|
+
*/
|
4741
|
+
'featureFlags'?: FeatureFlagsRequest;
|
4742
|
+
/**
|
4743
|
+
*
|
4744
|
+
* @type {NotificationConfigRequest}
|
4745
|
+
* @memberof TenantConfingRequest
|
4746
|
+
*/
|
4747
|
+
'notifications'?: NotificationConfigRequest;
|
4748
|
+
/**
|
4749
|
+
*
|
4750
|
+
* @type {IntegrationsConfigRequest}
|
4751
|
+
* @memberof TenantConfingRequest
|
4752
|
+
*/
|
4753
|
+
'integrations'?: IntegrationsConfigRequest;
|
4754
|
+
/**
|
4755
|
+
*
|
4756
|
+
* @type {BrandingConfigRequest}
|
4757
|
+
* @memberof TenantConfingRequest
|
4758
|
+
*/
|
4759
|
+
'branding'?: BrandingConfigRequest;
|
4760
|
+
/**
|
4761
|
+
*
|
4762
|
+
* @type {AuthorizationConfigRequest}
|
4763
|
+
* @memberof TenantConfingRequest
|
4764
|
+
*/
|
4765
|
+
'auth'?: AuthorizationConfigRequest;
|
4766
|
+
}
|
4767
|
+
/**
|
4768
|
+
*
|
4769
|
+
* @export
|
4770
|
+
* @interface TenantRequest
|
4771
|
+
*/
|
4772
|
+
export interface TenantRequest {
|
4773
|
+
/**
|
4774
|
+
*
|
4775
|
+
* @type {string}
|
4776
|
+
* @memberof TenantRequest
|
4777
|
+
*/
|
4778
|
+
'id': string;
|
4779
|
+
/**
|
4780
|
+
*
|
4781
|
+
* @type {string}
|
4782
|
+
* @memberof TenantRequest
|
4086
4783
|
*/
|
4087
|
-
'name'
|
4784
|
+
'name'?: string;
|
4088
4785
|
/**
|
4089
4786
|
*
|
4090
4787
|
* @type {string}
|
4091
|
-
* @memberof
|
4788
|
+
* @memberof TenantRequest
|
4092
4789
|
*/
|
4093
|
-
'adminKeyConfig'
|
4790
|
+
'adminKeyConfig'?: string;
|
4094
4791
|
/**
|
4095
4792
|
*
|
4096
4793
|
* @type {string}
|
4097
|
-
* @memberof
|
4794
|
+
* @memberof TenantRequest
|
4098
4795
|
*/
|
4099
|
-
'adminIssuer'
|
4796
|
+
'adminIssuer'?: string;
|
4100
4797
|
/**
|
4101
4798
|
*
|
4102
4799
|
* @type {string}
|
4103
|
-
* @memberof
|
4800
|
+
* @memberof TenantRequest
|
4104
4801
|
*/
|
4105
|
-
'customerOpenIDKeyConfig'
|
4802
|
+
'customerOpenIDKeyConfig'?: string;
|
4106
4803
|
/**
|
4107
4804
|
*
|
4108
4805
|
* @type {string}
|
4109
|
-
* @memberof
|
4806
|
+
* @memberof TenantRequest
|
4110
4807
|
*/
|
4111
|
-
'customerOpenIDIssuer'
|
4808
|
+
'customerOpenIDIssuer'?: string;
|
4112
4809
|
/**
|
4113
4810
|
*
|
4114
4811
|
* @type {string}
|
4115
|
-
* @memberof
|
4812
|
+
* @memberof TenantRequest
|
4116
4813
|
*/
|
4117
|
-
'customerOpenIDClientID'
|
4814
|
+
'customerOpenIDClientID'?: string;
|
4118
4815
|
/**
|
4119
4816
|
*
|
4120
4817
|
* @type {string}
|
4121
|
-
* @memberof
|
4818
|
+
* @memberof TenantRequest
|
4122
4819
|
*/
|
4123
|
-
'customerOpenIDMetadataURL'
|
4820
|
+
'customerOpenIDMetadataURL'?: string;
|
4124
4821
|
/**
|
4125
4822
|
*
|
4126
4823
|
* @type {{ [key: string]: string; }}
|
4127
|
-
* @memberof
|
4824
|
+
* @memberof TenantRequest
|
4128
4825
|
*/
|
4129
4826
|
'customerOpenIDParameters'?: {
|
4130
4827
|
[key: string]: string;
|
@@ -4132,99 +4829,51 @@ export interface TenantConfing {
|
|
4132
4829
|
/**
|
4133
4830
|
*
|
4134
4831
|
* @type {string}
|
4135
|
-
* @memberof
|
4832
|
+
* @memberof TenantRequest
|
4136
4833
|
*/
|
4137
|
-
'ppURL'
|
4834
|
+
'ppURL'?: string;
|
4138
4835
|
/**
|
4139
4836
|
*
|
4140
4837
|
* @type {string}
|
4141
|
-
* @memberof
|
4838
|
+
* @memberof TenantRequest
|
4142
4839
|
*/
|
4143
|
-
'tcURL'
|
4840
|
+
'tcURL'?: string;
|
4144
4841
|
/**
|
4145
4842
|
*
|
4146
4843
|
* @type {string}
|
4147
|
-
* @memberof
|
4844
|
+
* @memberof TenantRequest
|
4148
4845
|
*/
|
4149
4846
|
'cookiesURL'?: string;
|
4150
4847
|
/**
|
4151
4848
|
*
|
4152
4849
|
* @type {string}
|
4153
|
-
* @memberof
|
4850
|
+
* @memberof TenantRequest
|
4154
4851
|
*/
|
4155
|
-
'azureEntraTenantID'
|
4852
|
+
'azureEntraTenantID'?: string;
|
4156
4853
|
/**
|
4157
4854
|
*
|
4158
4855
|
* @type {string}
|
4159
|
-
* @memberof
|
4856
|
+
* @memberof TenantRequest
|
4160
4857
|
*/
|
4161
|
-
'azureEntraClientID'
|
4858
|
+
'azureEntraClientID'?: string;
|
4162
4859
|
/**
|
4163
4860
|
*
|
4164
4861
|
* @type {Locale}
|
4165
|
-
* @memberof
|
4862
|
+
* @memberof TenantRequest
|
4166
4863
|
*/
|
4167
|
-
'locale'
|
4864
|
+
'locale'?: Locale;
|
4168
4865
|
/**
|
4169
4866
|
*
|
4170
4867
|
* @type {string}
|
4171
|
-
* @memberof
|
4868
|
+
* @memberof TenantRequest
|
4172
4869
|
*/
|
4173
4870
|
'announcement'?: string;
|
4174
4871
|
/**
|
4175
4872
|
*
|
4176
4873
|
* @type {Currency}
|
4177
|
-
* @memberof
|
4178
|
-
*/
|
4179
|
-
'currency': Currency;
|
4180
|
-
/**
|
4181
|
-
*
|
4182
|
-
* @type {boolean}
|
4183
|
-
* @memberof TenantConfing
|
4184
|
-
*/
|
4185
|
-
'customDealAutoClaim': boolean;
|
4186
|
-
/**
|
4187
|
-
*
|
4188
|
-
* @type {LedgerConfig}
|
4189
|
-
* @memberof TenantConfing
|
4190
|
-
*/
|
4191
|
-
'ledger': LedgerConfig;
|
4192
|
-
/**
|
4193
|
-
*
|
4194
|
-
* @type {PromotionConfig}
|
4195
|
-
* @memberof TenantConfing
|
4196
|
-
*/
|
4197
|
-
'promotion': PromotionConfig;
|
4198
|
-
/**
|
4199
|
-
*
|
4200
|
-
* @type {FeatureFlags}
|
4201
|
-
* @memberof TenantConfing
|
4202
|
-
*/
|
4203
|
-
'featureFlags': FeatureFlags;
|
4204
|
-
/**
|
4205
|
-
*
|
4206
|
-
* @type {NotificationConfig}
|
4207
|
-
* @memberof TenantConfing
|
4208
|
-
*/
|
4209
|
-
'notifications': NotificationConfig;
|
4210
|
-
/**
|
4211
|
-
*
|
4212
|
-
* @type {IntegrationsConfig}
|
4213
|
-
* @memberof TenantConfing
|
4214
|
-
*/
|
4215
|
-
'integrations': IntegrationsConfig;
|
4216
|
-
/**
|
4217
|
-
*
|
4218
|
-
* @type {BrandingConfig}
|
4219
|
-
* @memberof TenantConfing
|
4874
|
+
* @memberof TenantRequest
|
4220
4875
|
*/
|
4221
|
-
'
|
4222
|
-
/**
|
4223
|
-
*
|
4224
|
-
* @type {AuthorizationConfig}
|
4225
|
-
* @memberof TenantConfing
|
4226
|
-
*/
|
4227
|
-
'auth': AuthorizationConfig;
|
4876
|
+
'currency'?: Currency;
|
4228
4877
|
}
|
4229
4878
|
/**
|
4230
4879
|
*
|
@@ -5867,11 +6516,11 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
|
|
5867
6516
|
/**
|
5868
6517
|
* Create or update backoffice configuration for the current tenant
|
5869
6518
|
* @summary Create configuration
|
5870
|
-
* @param {
|
6519
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5871
6520
|
* @param {*} [options] Override http request option.
|
5872
6521
|
* @throws {RequiredError}
|
5873
6522
|
*/
|
5874
|
-
createV2Configuration: (
|
6523
|
+
createV2Configuration: (tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5875
6524
|
/**
|
5876
6525
|
* List backoffice configurations for the current tenant
|
5877
6526
|
* @summary List configurations
|
@@ -5925,11 +6574,11 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
|
|
5925
6574
|
/**
|
5926
6575
|
* Create or update backoffice configuration for the current tenant
|
5927
6576
|
* @summary Create configuration
|
5928
|
-
* @param {
|
6577
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5929
6578
|
* @param {*} [options] Override http request option.
|
5930
6579
|
* @throws {RequiredError}
|
5931
6580
|
*/
|
5932
|
-
createV2Configuration(
|
6581
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
5933
6582
|
/**
|
5934
6583
|
* List backoffice configurations for the current tenant
|
5935
6584
|
* @summary List configurations
|
@@ -5983,11 +6632,11 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
|
|
5983
6632
|
/**
|
5984
6633
|
* Create or update backoffice configuration for the current tenant
|
5985
6634
|
* @summary Create configuration
|
5986
|
-
* @param {
|
6635
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5987
6636
|
* @param {*} [options] Override http request option.
|
5988
6637
|
* @throws {RequiredError}
|
5989
6638
|
*/
|
5990
|
-
createV2Configuration(
|
6639
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: any): AxiosPromise<void>;
|
5991
6640
|
/**
|
5992
6641
|
* List backoffice configurations for the current tenant
|
5993
6642
|
* @summary List configurations
|
@@ -6044,12 +6693,12 @@ export declare class ConfigurationsApi extends BaseAPI {
|
|
6044
6693
|
/**
|
6045
6694
|
* Create or update backoffice configuration for the current tenant
|
6046
6695
|
* @summary Create configuration
|
6047
|
-
* @param {
|
6696
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
6048
6697
|
* @param {*} [options] Override http request option.
|
6049
6698
|
* @throws {RequiredError}
|
6050
6699
|
* @memberof ConfigurationsApi
|
6051
6700
|
*/
|
6052
|
-
createV2Configuration(
|
6701
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6053
6702
|
/**
|
6054
6703
|
* List backoffice configurations for the current tenant
|
6055
6704
|
* @summary List configurations
|
@@ -6285,6 +6934,15 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
|
|
6285
6934
|
* @throws {RequiredError}
|
6286
6935
|
*/
|
6287
6936
|
importEvents: (eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6937
|
+
/**
|
6938
|
+
* Search events
|
6939
|
+
* @summary Search events
|
6940
|
+
* @param {string} reference Reference ID
|
6941
|
+
* @param {string} [nextToken] This is the pagination token
|
6942
|
+
* @param {*} [options] Override http request option.
|
6943
|
+
* @throws {RequiredError}
|
6944
|
+
*/
|
6945
|
+
searchEvents: (reference: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6288
6946
|
};
|
6289
6947
|
/**
|
6290
6948
|
* EventsApi - functional programming interface
|
@@ -6299,6 +6957,15 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
6299
6957
|
* @throws {RequiredError}
|
6300
6958
|
*/
|
6301
6959
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
6960
|
+
/**
|
6961
|
+
* Search events
|
6962
|
+
* @summary Search events
|
6963
|
+
* @param {string} reference Reference ID
|
6964
|
+
* @param {string} [nextToken] This is the pagination token
|
6965
|
+
* @param {*} [options] Override http request option.
|
6966
|
+
* @throws {RequiredError}
|
6967
|
+
*/
|
6968
|
+
searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventsResponse>>;
|
6302
6969
|
};
|
6303
6970
|
/**
|
6304
6971
|
* EventsApi - factory interface
|
@@ -6313,6 +6980,15 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
6313
6980
|
* @throws {RequiredError}
|
6314
6981
|
*/
|
6315
6982
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: any): AxiosPromise<void>;
|
6983
|
+
/**
|
6984
|
+
* Search events
|
6985
|
+
* @summary Search events
|
6986
|
+
* @param {string} reference Reference ID
|
6987
|
+
* @param {string} [nextToken] This is the pagination token
|
6988
|
+
* @param {*} [options] Override http request option.
|
6989
|
+
* @throws {RequiredError}
|
6990
|
+
*/
|
6991
|
+
searchEvents(reference: string, nextToken?: string, options?: any): AxiosPromise<EventsResponse>;
|
6316
6992
|
};
|
6317
6993
|
/**
|
6318
6994
|
* EventsApi - object-oriented interface
|
@@ -6330,6 +7006,16 @@ export declare class EventsApi extends BaseAPI {
|
|
6330
7006
|
* @memberof EventsApi
|
6331
7007
|
*/
|
6332
7008
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
7009
|
+
/**
|
7010
|
+
* Search events
|
7011
|
+
* @summary Search events
|
7012
|
+
* @param {string} reference Reference ID
|
7013
|
+
* @param {string} [nextToken] This is the pagination token
|
7014
|
+
* @param {*} [options] Override http request option.
|
7015
|
+
* @throws {RequiredError}
|
7016
|
+
* @memberof EventsApi
|
7017
|
+
*/
|
7018
|
+
searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EventsResponse, any>>;
|
6333
7019
|
}
|
6334
7020
|
/**
|
6335
7021
|
* IntegrationsApi - axios parameter creator
|
@@ -6452,94 +7138,6 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
6452
7138
|
*/
|
6453
7139
|
setWebhook(webhook: Webhook, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6454
7140
|
}
|
6455
|
-
/**
|
6456
|
-
* NotificationApi - axios parameter creator
|
6457
|
-
* @export
|
6458
|
-
*/
|
6459
|
-
export declare const NotificationApiAxiosParamCreator: (configuration?: Configuration) => {
|
6460
|
-
/**
|
6461
|
-
* Get preferences for the authenticated user
|
6462
|
-
* @summary Get preferences
|
6463
|
-
* @param {*} [options] Override http request option.
|
6464
|
-
* @throws {RequiredError}
|
6465
|
-
*/
|
6466
|
-
getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6467
|
-
/**
|
6468
|
-
* Update preferences for the authenticated user
|
6469
|
-
* @summary Update preferences
|
6470
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6471
|
-
* @param {*} [options] Override http request option.
|
6472
|
-
* @throws {RequiredError}
|
6473
|
-
*/
|
6474
|
-
updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6475
|
-
};
|
6476
|
-
/**
|
6477
|
-
* NotificationApi - functional programming interface
|
6478
|
-
* @export
|
6479
|
-
*/
|
6480
|
-
export declare const NotificationApiFp: (configuration?: Configuration) => {
|
6481
|
-
/**
|
6482
|
-
* Get preferences for the authenticated user
|
6483
|
-
* @summary Get preferences
|
6484
|
-
* @param {*} [options] Override http request option.
|
6485
|
-
* @throws {RequiredError}
|
6486
|
-
*/
|
6487
|
-
getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
|
6488
|
-
/**
|
6489
|
-
* Update preferences for the authenticated user
|
6490
|
-
* @summary Update preferences
|
6491
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6492
|
-
* @param {*} [options] Override http request option.
|
6493
|
-
* @throws {RequiredError}
|
6494
|
-
*/
|
6495
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
6496
|
-
};
|
6497
|
-
/**
|
6498
|
-
* NotificationApi - factory interface
|
6499
|
-
* @export
|
6500
|
-
*/
|
6501
|
-
export declare const NotificationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
6502
|
-
/**
|
6503
|
-
* Get preferences for the authenticated user
|
6504
|
-
* @summary Get preferences
|
6505
|
-
* @param {*} [options] Override http request option.
|
6506
|
-
* @throws {RequiredError}
|
6507
|
-
*/
|
6508
|
-
getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
|
6509
|
-
/**
|
6510
|
-
* Update preferences for the authenticated user
|
6511
|
-
* @summary Update preferences
|
6512
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6513
|
-
* @param {*} [options] Override http request option.
|
6514
|
-
* @throws {RequiredError}
|
6515
|
-
*/
|
6516
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
|
6517
|
-
};
|
6518
|
-
/**
|
6519
|
-
* NotificationApi - object-oriented interface
|
6520
|
-
* @export
|
6521
|
-
* @class NotificationApi
|
6522
|
-
* @extends {BaseAPI}
|
6523
|
-
*/
|
6524
|
-
export declare class NotificationApi extends BaseAPI {
|
6525
|
-
/**
|
6526
|
-
* Get preferences for the authenticated user
|
6527
|
-
* @summary Get preferences
|
6528
|
-
* @param {*} [options] Override http request option.
|
6529
|
-
* @throws {RequiredError}
|
6530
|
-
* @memberof NotificationApi
|
6531
|
-
*/
|
6532
|
-
getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
|
6533
|
-
/**
|
6534
|
-
* Update preferences for the authenticated user
|
6535
|
-
* @summary Update preferences
|
6536
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6537
|
-
* @param {*} [options] Override http request option.
|
6538
|
-
* @throws {RequiredError}
|
6539
|
-
* @memberof NotificationApi
|
6540
|
-
*/
|
6541
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6542
|
-
}
|
6543
7141
|
/**
|
6544
7142
|
* NotificationsApi - axios parameter creator
|
6545
7143
|
* @export
|
@@ -6568,6 +7166,13 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6568
7166
|
* @throws {RequiredError}
|
6569
7167
|
*/
|
6570
7168
|
getPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7169
|
+
/**
|
7170
|
+
* Get preferences for the authenticated user
|
7171
|
+
* @summary Get preferences
|
7172
|
+
* @param {*} [options] Override http request option.
|
7173
|
+
* @throws {RequiredError}
|
7174
|
+
*/
|
7175
|
+
getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6571
7176
|
/**
|
6572
7177
|
* Get notification preferences for the authenticated user
|
6573
7178
|
* @summary Get notification preferences
|
@@ -6600,6 +7205,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6600
7205
|
* @throws {RequiredError}
|
6601
7206
|
*/
|
6602
7207
|
updatePreferences: (preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7208
|
+
/**
|
7209
|
+
* Update preferences for the authenticated user
|
7210
|
+
* @summary Update preferences
|
7211
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7212
|
+
* @param {*} [options] Override http request option.
|
7213
|
+
* @throws {RequiredError}
|
7214
|
+
*/
|
7215
|
+
updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6603
7216
|
/**
|
6604
7217
|
* Update notification preferences for the authenticated user
|
6605
7218
|
* @summary Update notification preferences
|
@@ -6637,6 +7250,13 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6637
7250
|
* @throws {RequiredError}
|
6638
7251
|
*/
|
6639
7252
|
getPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Preferences>>;
|
7253
|
+
/**
|
7254
|
+
* Get preferences for the authenticated user
|
7255
|
+
* @summary Get preferences
|
7256
|
+
* @param {*} [options] Override http request option.
|
7257
|
+
* @throws {RequiredError}
|
7258
|
+
*/
|
7259
|
+
getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
|
6640
7260
|
/**
|
6641
7261
|
* Get notification preferences for the authenticated user
|
6642
7262
|
* @summary Get notification preferences
|
@@ -6669,6 +7289,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6669
7289
|
* @throws {RequiredError}
|
6670
7290
|
*/
|
6671
7291
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
7292
|
+
/**
|
7293
|
+
* Update preferences for the authenticated user
|
7294
|
+
* @summary Update preferences
|
7295
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7296
|
+
* @param {*} [options] Override http request option.
|
7297
|
+
* @throws {RequiredError}
|
7298
|
+
*/
|
7299
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
6672
7300
|
/**
|
6673
7301
|
* Update notification preferences for the authenticated user
|
6674
7302
|
* @summary Update notification preferences
|
@@ -6706,6 +7334,13 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6706
7334
|
* @throws {RequiredError}
|
6707
7335
|
*/
|
6708
7336
|
getPreferences(options?: any): AxiosPromise<Preferences>;
|
7337
|
+
/**
|
7338
|
+
* Get preferences for the authenticated user
|
7339
|
+
* @summary Get preferences
|
7340
|
+
* @param {*} [options] Override http request option.
|
7341
|
+
* @throws {RequiredError}
|
7342
|
+
*/
|
7343
|
+
getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
|
6709
7344
|
/**
|
6710
7345
|
* Get notification preferences for the authenticated user
|
6711
7346
|
* @summary Get notification preferences
|
@@ -6738,6 +7373,14 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6738
7373
|
* @throws {RequiredError}
|
6739
7374
|
*/
|
6740
7375
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: any): AxiosPromise<void>;
|
7376
|
+
/**
|
7377
|
+
* Update preferences for the authenticated user
|
7378
|
+
* @summary Update preferences
|
7379
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7380
|
+
* @param {*} [options] Override http request option.
|
7381
|
+
* @throws {RequiredError}
|
7382
|
+
*/
|
7383
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
|
6741
7384
|
/**
|
6742
7385
|
* Update notification preferences for the authenticated user
|
6743
7386
|
* @summary Update notification preferences
|
@@ -6780,6 +7423,14 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6780
7423
|
* @memberof NotificationsApi
|
6781
7424
|
*/
|
6782
7425
|
getPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Preferences, any>>;
|
7426
|
+
/**
|
7427
|
+
* Get preferences for the authenticated user
|
7428
|
+
* @summary Get preferences
|
7429
|
+
* @param {*} [options] Override http request option.
|
7430
|
+
* @throws {RequiredError}
|
7431
|
+
* @memberof NotificationsApi
|
7432
|
+
*/
|
7433
|
+
getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
|
6783
7434
|
/**
|
6784
7435
|
* Get notification preferences for the authenticated user
|
6785
7436
|
* @summary Get notification preferences
|
@@ -6816,6 +7467,15 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6816
7467
|
* @memberof NotificationsApi
|
6817
7468
|
*/
|
6818
7469
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
7470
|
+
/**
|
7471
|
+
* Update preferences for the authenticated user
|
7472
|
+
* @summary Update preferences
|
7473
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7474
|
+
* @param {*} [options] Override http request option.
|
7475
|
+
* @throws {RequiredError}
|
7476
|
+
* @memberof NotificationsApi
|
7477
|
+
*/
|
7478
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6819
7479
|
/**
|
6820
7480
|
* Update notification preferences for the authenticated user
|
6821
7481
|
* @summary Update notification preferences
|
@@ -8304,6 +8964,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
8304
8964
|
* @throws {RequiredError}
|
8305
8965
|
*/
|
8306
8966
|
generateReport: (type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8967
|
+
/**
|
8968
|
+
* Get signed access URL for report
|
8969
|
+
* @summary Get signed access URL for report
|
8970
|
+
* @param {*} [options] Override http request option.
|
8971
|
+
* @throws {RequiredError}
|
8972
|
+
*/
|
8973
|
+
getReportUrl: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8307
8974
|
/**
|
8308
8975
|
* List all supported report types, which can be generated by the user
|
8309
8976
|
* @summary List report types
|
@@ -8334,6 +9001,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
8334
9001
|
* @throws {RequiredError}
|
8335
9002
|
*/
|
8336
9003
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportResponse>>;
|
9004
|
+
/**
|
9005
|
+
* Get signed access URL for report
|
9006
|
+
* @summary Get signed access URL for report
|
9007
|
+
* @param {*} [options] Override http request option.
|
9008
|
+
* @throws {RequiredError}
|
9009
|
+
*/
|
9010
|
+
getReportUrl(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportUrlResponse>>;
|
8337
9011
|
/**
|
8338
9012
|
* List all supported report types, which can be generated by the user
|
8339
9013
|
* @summary List report types
|
@@ -8364,6 +9038,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
8364
9038
|
* @throws {RequiredError}
|
8365
9039
|
*/
|
8366
9040
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: any): AxiosPromise<ReportResponse>;
|
9041
|
+
/**
|
9042
|
+
* Get signed access URL for report
|
9043
|
+
* @summary Get signed access URL for report
|
9044
|
+
* @param {*} [options] Override http request option.
|
9045
|
+
* @throws {RequiredError}
|
9046
|
+
*/
|
9047
|
+
getReportUrl(options?: any): AxiosPromise<ReportUrlResponse>;
|
8367
9048
|
/**
|
8368
9049
|
* List all supported report types, which can be generated by the user
|
8369
9050
|
* @summary List report types
|
@@ -8397,6 +9078,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
8397
9078
|
* @memberof ReportsApi
|
8398
9079
|
*/
|
8399
9080
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any>>;
|
9081
|
+
/**
|
9082
|
+
* Get signed access URL for report
|
9083
|
+
* @summary Get signed access URL for report
|
9084
|
+
* @param {*} [options] Override http request option.
|
9085
|
+
* @throws {RequiredError}
|
9086
|
+
* @memberof ReportsApi
|
9087
|
+
*/
|
9088
|
+
getReportUrl(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportUrlResponse, any>>;
|
8400
9089
|
/**
|
8401
9090
|
* List all supported report types, which can be generated by the user
|
8402
9091
|
* @summary List report types
|