flexinet-api 0.0.2303 → 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 +753 -209
- package/dist/api.d.ts +678 -113
- package/dist/api.js +142 -180
- package/dist/esm/api.d.ts +678 -113
- package/dist/esm/api.js +140 -174
- 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
|
@@ -1234,6 +1340,27 @@ export interface FeatureFlags {
|
|
1234
1340
|
[key: string]: boolean;
|
1235
1341
|
};
|
1236
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
|
+
}
|
1237
1364
|
/**
|
1238
1365
|
*
|
1239
1366
|
* @export
|
@@ -1314,6 +1441,73 @@ export interface IntegrationsConfig {
|
|
1314
1441
|
*/
|
1315
1442
|
'externalUserServiceEnabled': boolean;
|
1316
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
|
+
}
|
1317
1511
|
/**
|
1318
1512
|
*
|
1319
1513
|
* @export
|
@@ -1366,6 +1560,39 @@ export interface LedgerConfig {
|
|
1366
1560
|
[key: string]: string;
|
1367
1561
|
};
|
1368
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
|
+
}
|
1369
1596
|
/**
|
1370
1597
|
*
|
1371
1598
|
* @export
|
@@ -1697,6 +1924,51 @@ export interface NotificationConfig {
|
|
1697
1924
|
*/
|
1698
1925
|
'templateDir'?: string;
|
1699
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
|
+
}
|
1700
1972
|
/**
|
1701
1973
|
*
|
1702
1974
|
* @export
|
@@ -2982,6 +3254,55 @@ export interface PromotionConfig {
|
|
2982
3254
|
*/
|
2983
3255
|
'allowRunningPromotionsUpdate': boolean;
|
2984
3256
|
}
|
3257
|
+
/**
|
3258
|
+
*
|
3259
|
+
* @export
|
3260
|
+
* @interface PromotionConfigRequest
|
3261
|
+
*/
|
3262
|
+
export interface PromotionConfigRequest {
|
3263
|
+
/**
|
3264
|
+
*
|
3265
|
+
* @type {number}
|
3266
|
+
* @memberof PromotionConfigRequest
|
3267
|
+
*/
|
3268
|
+
'adminClaimGracePeriod'?: number;
|
3269
|
+
/**
|
3270
|
+
*
|
3271
|
+
* @type {number}
|
3272
|
+
* @memberof PromotionConfigRequest
|
3273
|
+
*/
|
3274
|
+
'userClaimGracePeriod'?: number;
|
3275
|
+
/**
|
3276
|
+
*
|
3277
|
+
* @type {number}
|
3278
|
+
* @memberof PromotionConfigRequest
|
3279
|
+
*/
|
3280
|
+
'refundLapsePeriod'?: number;
|
3281
|
+
/**
|
3282
|
+
*
|
3283
|
+
* @type {number}
|
3284
|
+
* @memberof PromotionConfigRequest
|
3285
|
+
*/
|
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
|
+
}
|
2985
3306
|
/**
|
2986
3307
|
*
|
2987
3308
|
* @export
|
@@ -4287,27 +4608,297 @@ export interface TenantConfing {
|
|
4287
4608
|
/**
|
4288
4609
|
*
|
4289
4610
|
* @export
|
4290
|
-
* @interface
|
4611
|
+
* @interface TenantConfingRequest
|
4291
4612
|
*/
|
4292
|
-
export interface
|
4613
|
+
export interface TenantConfingRequest {
|
4293
4614
|
/**
|
4294
4615
|
*
|
4295
|
-
* @type {
|
4296
|
-
* @memberof
|
4616
|
+
* @type {string}
|
4617
|
+
* @memberof TenantConfingRequest
|
4297
4618
|
*/
|
4298
|
-
'
|
4619
|
+
'id': string;
|
4299
4620
|
/**
|
4300
4621
|
*
|
4301
|
-
* @type {
|
4302
|
-
* @memberof
|
4622
|
+
* @type {string}
|
4623
|
+
* @memberof TenantConfingRequest
|
4303
4624
|
*/
|
4304
|
-
'
|
4625
|
+
'name'?: string;
|
4305
4626
|
/**
|
4306
4627
|
*
|
4307
|
-
* @type {
|
4308
|
-
* @memberof
|
4628
|
+
* @type {string}
|
4629
|
+
* @memberof TenantConfingRequest
|
4309
4630
|
*/
|
4310
|
-
'
|
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
|
4783
|
+
*/
|
4784
|
+
'name'?: string;
|
4785
|
+
/**
|
4786
|
+
*
|
4787
|
+
* @type {string}
|
4788
|
+
* @memberof TenantRequest
|
4789
|
+
*/
|
4790
|
+
'adminKeyConfig'?: string;
|
4791
|
+
/**
|
4792
|
+
*
|
4793
|
+
* @type {string}
|
4794
|
+
* @memberof TenantRequest
|
4795
|
+
*/
|
4796
|
+
'adminIssuer'?: string;
|
4797
|
+
/**
|
4798
|
+
*
|
4799
|
+
* @type {string}
|
4800
|
+
* @memberof TenantRequest
|
4801
|
+
*/
|
4802
|
+
'customerOpenIDKeyConfig'?: string;
|
4803
|
+
/**
|
4804
|
+
*
|
4805
|
+
* @type {string}
|
4806
|
+
* @memberof TenantRequest
|
4807
|
+
*/
|
4808
|
+
'customerOpenIDIssuer'?: string;
|
4809
|
+
/**
|
4810
|
+
*
|
4811
|
+
* @type {string}
|
4812
|
+
* @memberof TenantRequest
|
4813
|
+
*/
|
4814
|
+
'customerOpenIDClientID'?: string;
|
4815
|
+
/**
|
4816
|
+
*
|
4817
|
+
* @type {string}
|
4818
|
+
* @memberof TenantRequest
|
4819
|
+
*/
|
4820
|
+
'customerOpenIDMetadataURL'?: string;
|
4821
|
+
/**
|
4822
|
+
*
|
4823
|
+
* @type {{ [key: string]: string; }}
|
4824
|
+
* @memberof TenantRequest
|
4825
|
+
*/
|
4826
|
+
'customerOpenIDParameters'?: {
|
4827
|
+
[key: string]: string;
|
4828
|
+
};
|
4829
|
+
/**
|
4830
|
+
*
|
4831
|
+
* @type {string}
|
4832
|
+
* @memberof TenantRequest
|
4833
|
+
*/
|
4834
|
+
'ppURL'?: string;
|
4835
|
+
/**
|
4836
|
+
*
|
4837
|
+
* @type {string}
|
4838
|
+
* @memberof TenantRequest
|
4839
|
+
*/
|
4840
|
+
'tcURL'?: string;
|
4841
|
+
/**
|
4842
|
+
*
|
4843
|
+
* @type {string}
|
4844
|
+
* @memberof TenantRequest
|
4845
|
+
*/
|
4846
|
+
'cookiesURL'?: string;
|
4847
|
+
/**
|
4848
|
+
*
|
4849
|
+
* @type {string}
|
4850
|
+
* @memberof TenantRequest
|
4851
|
+
*/
|
4852
|
+
'azureEntraTenantID'?: string;
|
4853
|
+
/**
|
4854
|
+
*
|
4855
|
+
* @type {string}
|
4856
|
+
* @memberof TenantRequest
|
4857
|
+
*/
|
4858
|
+
'azureEntraClientID'?: string;
|
4859
|
+
/**
|
4860
|
+
*
|
4861
|
+
* @type {Locale}
|
4862
|
+
* @memberof TenantRequest
|
4863
|
+
*/
|
4864
|
+
'locale'?: Locale;
|
4865
|
+
/**
|
4866
|
+
*
|
4867
|
+
* @type {string}
|
4868
|
+
* @memberof TenantRequest
|
4869
|
+
*/
|
4870
|
+
'announcement'?: string;
|
4871
|
+
/**
|
4872
|
+
*
|
4873
|
+
* @type {Currency}
|
4874
|
+
* @memberof TenantRequest
|
4875
|
+
*/
|
4876
|
+
'currency'?: Currency;
|
4877
|
+
}
|
4878
|
+
/**
|
4879
|
+
*
|
4880
|
+
* @export
|
4881
|
+
* @interface Transaction
|
4882
|
+
*/
|
4883
|
+
export interface Transaction {
|
4884
|
+
/**
|
4885
|
+
*
|
4886
|
+
* @type {TransactionKind}
|
4887
|
+
* @memberof Transaction
|
4888
|
+
*/
|
4889
|
+
'kind': TransactionKind;
|
4890
|
+
/**
|
4891
|
+
*
|
4892
|
+
* @type {TransactionSource}
|
4893
|
+
* @memberof Transaction
|
4894
|
+
*/
|
4895
|
+
'source': TransactionSource;
|
4896
|
+
/**
|
4897
|
+
*
|
4898
|
+
* @type {TransactionSourceReference}
|
4899
|
+
* @memberof Transaction
|
4900
|
+
*/
|
4901
|
+
'sourceReference'?: TransactionSourceReference;
|
4311
4902
|
/**
|
4312
4903
|
*
|
4313
4904
|
* @type {number}
|
@@ -5925,11 +6516,11 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
|
|
5925
6516
|
/**
|
5926
6517
|
* Create or update backoffice configuration for the current tenant
|
5927
6518
|
* @summary Create configuration
|
5928
|
-
* @param {
|
6519
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5929
6520
|
* @param {*} [options] Override http request option.
|
5930
6521
|
* @throws {RequiredError}
|
5931
6522
|
*/
|
5932
|
-
createV2Configuration: (
|
6523
|
+
createV2Configuration: (tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5933
6524
|
/**
|
5934
6525
|
* List backoffice configurations for the current tenant
|
5935
6526
|
* @summary List configurations
|
@@ -5983,11 +6574,11 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
|
|
5983
6574
|
/**
|
5984
6575
|
* Create or update backoffice configuration for the current tenant
|
5985
6576
|
* @summary Create configuration
|
5986
|
-
* @param {
|
6577
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5987
6578
|
* @param {*} [options] Override http request option.
|
5988
6579
|
* @throws {RequiredError}
|
5989
6580
|
*/
|
5990
|
-
createV2Configuration(
|
6581
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
5991
6582
|
/**
|
5992
6583
|
* List backoffice configurations for the current tenant
|
5993
6584
|
* @summary List configurations
|
@@ -6041,11 +6632,11 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
|
|
6041
6632
|
/**
|
6042
6633
|
* Create or update backoffice configuration for the current tenant
|
6043
6634
|
* @summary Create configuration
|
6044
|
-
* @param {
|
6635
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
6045
6636
|
* @param {*} [options] Override http request option.
|
6046
6637
|
* @throws {RequiredError}
|
6047
6638
|
*/
|
6048
|
-
createV2Configuration(
|
6639
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: any): AxiosPromise<void>;
|
6049
6640
|
/**
|
6050
6641
|
* List backoffice configurations for the current tenant
|
6051
6642
|
* @summary List configurations
|
@@ -6102,12 +6693,12 @@ export declare class ConfigurationsApi extends BaseAPI {
|
|
6102
6693
|
/**
|
6103
6694
|
* Create or update backoffice configuration for the current tenant
|
6104
6695
|
* @summary Create configuration
|
6105
|
-
* @param {
|
6696
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
6106
6697
|
* @param {*} [options] Override http request option.
|
6107
6698
|
* @throws {RequiredError}
|
6108
6699
|
* @memberof ConfigurationsApi
|
6109
6700
|
*/
|
6110
|
-
createV2Configuration(
|
6701
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6111
6702
|
/**
|
6112
6703
|
* List backoffice configurations for the current tenant
|
6113
6704
|
* @summary List configurations
|
@@ -6547,94 +7138,6 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
6547
7138
|
*/
|
6548
7139
|
setWebhook(webhook: Webhook, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6549
7140
|
}
|
6550
|
-
/**
|
6551
|
-
* NotificationApi - axios parameter creator
|
6552
|
-
* @export
|
6553
|
-
*/
|
6554
|
-
export declare const NotificationApiAxiosParamCreator: (configuration?: Configuration) => {
|
6555
|
-
/**
|
6556
|
-
* Get preferences for the authenticated user
|
6557
|
-
* @summary Get preferences
|
6558
|
-
* @param {*} [options] Override http request option.
|
6559
|
-
* @throws {RequiredError}
|
6560
|
-
*/
|
6561
|
-
getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6562
|
-
/**
|
6563
|
-
* Update preferences for the authenticated user
|
6564
|
-
* @summary Update preferences
|
6565
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6566
|
-
* @param {*} [options] Override http request option.
|
6567
|
-
* @throws {RequiredError}
|
6568
|
-
*/
|
6569
|
-
updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6570
|
-
};
|
6571
|
-
/**
|
6572
|
-
* NotificationApi - functional programming interface
|
6573
|
-
* @export
|
6574
|
-
*/
|
6575
|
-
export declare const NotificationApiFp: (configuration?: Configuration) => {
|
6576
|
-
/**
|
6577
|
-
* Get preferences for the authenticated user
|
6578
|
-
* @summary Get preferences
|
6579
|
-
* @param {*} [options] Override http request option.
|
6580
|
-
* @throws {RequiredError}
|
6581
|
-
*/
|
6582
|
-
getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
|
6583
|
-
/**
|
6584
|
-
* Update preferences for the authenticated user
|
6585
|
-
* @summary Update preferences
|
6586
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6587
|
-
* @param {*} [options] Override http request option.
|
6588
|
-
* @throws {RequiredError}
|
6589
|
-
*/
|
6590
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
6591
|
-
};
|
6592
|
-
/**
|
6593
|
-
* NotificationApi - factory interface
|
6594
|
-
* @export
|
6595
|
-
*/
|
6596
|
-
export declare const NotificationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
6597
|
-
/**
|
6598
|
-
* Get preferences for the authenticated user
|
6599
|
-
* @summary Get preferences
|
6600
|
-
* @param {*} [options] Override http request option.
|
6601
|
-
* @throws {RequiredError}
|
6602
|
-
*/
|
6603
|
-
getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
|
6604
|
-
/**
|
6605
|
-
* Update preferences for the authenticated user
|
6606
|
-
* @summary Update preferences
|
6607
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6608
|
-
* @param {*} [options] Override http request option.
|
6609
|
-
* @throws {RequiredError}
|
6610
|
-
*/
|
6611
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
|
6612
|
-
};
|
6613
|
-
/**
|
6614
|
-
* NotificationApi - object-oriented interface
|
6615
|
-
* @export
|
6616
|
-
* @class NotificationApi
|
6617
|
-
* @extends {BaseAPI}
|
6618
|
-
*/
|
6619
|
-
export declare class NotificationApi extends BaseAPI {
|
6620
|
-
/**
|
6621
|
-
* Get preferences for the authenticated user
|
6622
|
-
* @summary Get preferences
|
6623
|
-
* @param {*} [options] Override http request option.
|
6624
|
-
* @throws {RequiredError}
|
6625
|
-
* @memberof NotificationApi
|
6626
|
-
*/
|
6627
|
-
getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
|
6628
|
-
/**
|
6629
|
-
* Update preferences for the authenticated user
|
6630
|
-
* @summary Update preferences
|
6631
|
-
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
6632
|
-
* @param {*} [options] Override http request option.
|
6633
|
-
* @throws {RequiredError}
|
6634
|
-
* @memberof NotificationApi
|
6635
|
-
*/
|
6636
|
-
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6637
|
-
}
|
6638
7141
|
/**
|
6639
7142
|
* NotificationsApi - axios parameter creator
|
6640
7143
|
* @export
|
@@ -6663,6 +7166,13 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6663
7166
|
* @throws {RequiredError}
|
6664
7167
|
*/
|
6665
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>;
|
6666
7176
|
/**
|
6667
7177
|
* Get notification preferences for the authenticated user
|
6668
7178
|
* @summary Get notification preferences
|
@@ -6695,6 +7205,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6695
7205
|
* @throws {RequiredError}
|
6696
7206
|
*/
|
6697
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>;
|
6698
7216
|
/**
|
6699
7217
|
* Update notification preferences for the authenticated user
|
6700
7218
|
* @summary Update notification preferences
|
@@ -6732,6 +7250,13 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6732
7250
|
* @throws {RequiredError}
|
6733
7251
|
*/
|
6734
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>>>;
|
6735
7260
|
/**
|
6736
7261
|
* Get notification preferences for the authenticated user
|
6737
7262
|
* @summary Get notification preferences
|
@@ -6764,6 +7289,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6764
7289
|
* @throws {RequiredError}
|
6765
7290
|
*/
|
6766
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>>;
|
6767
7300
|
/**
|
6768
7301
|
* Update notification preferences for the authenticated user
|
6769
7302
|
* @summary Update notification preferences
|
@@ -6801,6 +7334,13 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6801
7334
|
* @throws {RequiredError}
|
6802
7335
|
*/
|
6803
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>>;
|
6804
7344
|
/**
|
6805
7345
|
* Get notification preferences for the authenticated user
|
6806
7346
|
* @summary Get notification preferences
|
@@ -6833,6 +7373,14 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6833
7373
|
* @throws {RequiredError}
|
6834
7374
|
*/
|
6835
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>;
|
6836
7384
|
/**
|
6837
7385
|
* Update notification preferences for the authenticated user
|
6838
7386
|
* @summary Update notification preferences
|
@@ -6875,6 +7423,14 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6875
7423
|
* @memberof NotificationsApi
|
6876
7424
|
*/
|
6877
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>>;
|
6878
7434
|
/**
|
6879
7435
|
* Get notification preferences for the authenticated user
|
6880
7436
|
* @summary Get notification preferences
|
@@ -6911,6 +7467,15 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6911
7467
|
* @memberof NotificationsApi
|
6912
7468
|
*/
|
6913
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>>;
|
6914
7479
|
/**
|
6915
7480
|
* Update notification preferences for the authenticated user
|
6916
7481
|
* @summary Update notification preferences
|