flexinet-api 0.0.2304 → 0.0.2307

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/dist/api.d.ts CHANGED
@@ -110,6 +110,12 @@ export interface AuditLog {
110
110
  * @memberof AuditLog
111
111
  */
112
112
  'objectId'?: string;
113
+ /**
114
+ *
115
+ * @type {string}
116
+ * @memberof AuditLog
117
+ */
118
+ 'diff'?: string;
113
119
  }
114
120
  export declare const AuditLogActionEnum: {
115
121
  readonly Create: "create";
@@ -155,6 +161,7 @@ export interface AuditLogListResponse {
155
161
  export declare const AuditLogObjectType: {
156
162
  readonly Promotion: "promotion";
157
163
  readonly ApiKey: "api_key";
164
+ readonly Config: "config";
158
165
  };
159
166
  export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
160
167
  /**
@@ -205,12 +212,6 @@ export interface AuthorizationConfig {
205
212
  * @memberof AuthorizationConfig
206
213
  */
207
214
  'customerOpenIDClientID': string;
208
- /**
209
- *
210
- * @type {string}
211
- * @memberof AuthorizationConfig
212
- */
213
- 'customerOpenIDSecret': string;
214
215
  /**
215
216
  *
216
217
  * @type {string}
@@ -244,6 +245,87 @@ export interface AuthorizationConfig {
244
245
  */
245
246
  'customerLoginUrl': string;
246
247
  }
248
+ /**
249
+ *
250
+ * @export
251
+ * @interface AuthorizationConfigRequest
252
+ */
253
+ export interface AuthorizationConfigRequest {
254
+ /**
255
+ *
256
+ * @type {string}
257
+ * @memberof AuthorizationConfigRequest
258
+ */
259
+ 'adminKeyConfig'?: string;
260
+ /**
261
+ *
262
+ * @type {string}
263
+ * @memberof AuthorizationConfigRequest
264
+ */
265
+ 'adminIssuer'?: string;
266
+ /**
267
+ *
268
+ * @type {string}
269
+ * @memberof AuthorizationConfigRequest
270
+ */
271
+ 'adminAudience'?: string;
272
+ /**
273
+ *
274
+ * @type {string}
275
+ * @memberof AuthorizationConfigRequest
276
+ */
277
+ 'customerAudience'?: string;
278
+ /**
279
+ *
280
+ * @type {string}
281
+ * @memberof AuthorizationConfigRequest
282
+ */
283
+ 'customerOpenIDKeyConfig'?: string;
284
+ /**
285
+ *
286
+ * @type {string}
287
+ * @memberof AuthorizationConfigRequest
288
+ */
289
+ 'customerOpenIDIssuer'?: string;
290
+ /**
291
+ *
292
+ * @type {string}
293
+ * @memberof AuthorizationConfigRequest
294
+ */
295
+ 'customerOpenIDClientID'?: string;
296
+ /**
297
+ *
298
+ * @type {string}
299
+ * @memberof AuthorizationConfigRequest
300
+ */
301
+ 'customerOpenIDMetadataURL'?: string;
302
+ /**
303
+ *
304
+ * @type {{ [key: string]: string; }}
305
+ * @memberof AuthorizationConfigRequest
306
+ */
307
+ 'customerOpenIDParameters'?: {
308
+ [key: string]: string;
309
+ };
310
+ /**
311
+ *
312
+ * @type {string}
313
+ * @memberof AuthorizationConfigRequest
314
+ */
315
+ 'azureEntraTenantID'?: string;
316
+ /**
317
+ *
318
+ * @type {string}
319
+ * @memberof AuthorizationConfigRequest
320
+ */
321
+ 'azureEntraClientID'?: string;
322
+ /**
323
+ *
324
+ * @type {string}
325
+ * @memberof AuthorizationConfigRequest
326
+ */
327
+ 'customerLoginUrl'?: string;
328
+ }
247
329
  /**
248
330
  *
249
331
  * @export
@@ -650,6 +732,37 @@ export interface BrandingConfig {
650
732
  */
651
733
  'coinLogoURL': string;
652
734
  }
735
+ /**
736
+ *
737
+ * @export
738
+ * @interface BrandingConfigRequest
739
+ */
740
+ export interface BrandingConfigRequest {
741
+ /**
742
+ *
743
+ * @type {string}
744
+ * @memberof BrandingConfigRequest
745
+ */
746
+ 'logoURL'?: string;
747
+ /**
748
+ *
749
+ * @type {string}
750
+ * @memberof BrandingConfigRequest
751
+ */
752
+ 'mainColor'?: string;
753
+ /**
754
+ *
755
+ * @type {string}
756
+ * @memberof BrandingConfigRequest
757
+ */
758
+ 'coinName'?: string;
759
+ /**
760
+ *
761
+ * @type {string}
762
+ * @memberof BrandingConfigRequest
763
+ */
764
+ 'coinLogoURL'?: string;
765
+ }
653
766
  /**
654
767
  *
655
768
  * @export
@@ -1103,6 +1216,25 @@ export interface CustomerUserDetails {
1103
1216
  */
1104
1217
  'lastName'?: string;
1105
1218
  }
1219
+ /**
1220
+ *
1221
+ * @export
1222
+ * @interface Event
1223
+ */
1224
+ export interface Event {
1225
+ /**
1226
+ *
1227
+ * @type {TransactionEventDetails}
1228
+ * @memberof Event
1229
+ */
1230
+ 'event': TransactionEventDetails;
1231
+ /**
1232
+ *
1233
+ * @type {Array<Promotion>}
1234
+ * @memberof Event
1235
+ */
1236
+ 'promotions': Array<Promotion>;
1237
+ }
1106
1238
  /**
1107
1239
  *
1108
1240
  * @export
@@ -1159,6 +1291,25 @@ export interface EventsEvaluationResponse {
1159
1291
  [key: string]: Array<Promotion>;
1160
1292
  };
1161
1293
  }
1294
+ /**
1295
+ *
1296
+ * @export
1297
+ * @interface EventsResponse
1298
+ */
1299
+ export interface EventsResponse {
1300
+ /**
1301
+ *
1302
+ * @type {Array<Event>}
1303
+ * @memberof EventsResponse
1304
+ */
1305
+ 'events': Array<Event>;
1306
+ /**
1307
+ * This is the pagination token
1308
+ * @type {string}
1309
+ * @memberof EventsResponse
1310
+ */
1311
+ 'nextToken'?: string;
1312
+ }
1162
1313
  /**
1163
1314
  *
1164
1315
  * @export
@@ -1172,6 +1323,7 @@ export declare const Feature: {
1172
1323
  readonly ExternalInventory: "external_inventory";
1173
1324
  readonly OrderEvents: "order_events";
1174
1325
  readonly OrderStatusPolling: "order_status_polling";
1326
+ readonly SmsSending: "sms_sending";
1175
1327
  };
1176
1328
  export type Feature = typeof Feature[keyof typeof Feature];
1177
1329
  /**
@@ -1195,6 +1347,27 @@ export interface FeatureFlags {
1195
1347
  [key: string]: boolean;
1196
1348
  };
1197
1349
  }
1350
+ /**
1351
+ *
1352
+ * @export
1353
+ * @interface FeatureFlagsRequest
1354
+ */
1355
+ export interface FeatureFlagsRequest {
1356
+ /**
1357
+ *
1358
+ * @type {boolean}
1359
+ * @memberof FeatureFlagsRequest
1360
+ */
1361
+ 'enforce'?: boolean;
1362
+ /**
1363
+ *
1364
+ * @type {{ [key: string]: boolean; }}
1365
+ * @memberof FeatureFlagsRequest
1366
+ */
1367
+ 'features'?: {
1368
+ [key: string]: boolean;
1369
+ };
1370
+ }
1198
1371
  /**
1199
1372
  *
1200
1373
  * @export
@@ -1275,6 +1448,73 @@ export interface IntegrationsConfig {
1275
1448
  */
1276
1449
  'externalUserServiceEnabled': boolean;
1277
1450
  }
1451
+ /**
1452
+ *
1453
+ * @export
1454
+ * @interface IntegrationsConfigRequest
1455
+ */
1456
+ export interface IntegrationsConfigRequest {
1457
+ /**
1458
+ *
1459
+ * @type {string}
1460
+ * @memberof IntegrationsConfigRequest
1461
+ */
1462
+ 'userInfoURL'?: string;
1463
+ /**
1464
+ *
1465
+ * @type {string}
1466
+ * @memberof IntegrationsConfigRequest
1467
+ */
1468
+ 'productInventoryURL'?: string;
1469
+ /**
1470
+ *
1471
+ * @type {string}
1472
+ * @memberof IntegrationsConfigRequest
1473
+ */
1474
+ 'orderStatusURL'?: string;
1475
+ /**
1476
+ *
1477
+ * @type {boolean}
1478
+ * @memberof IntegrationsConfigRequest
1479
+ */
1480
+ 'useOrderEventsExternalID'?: boolean;
1481
+ /**
1482
+ *
1483
+ * @type {string}
1484
+ * @memberof IntegrationsConfigRequest
1485
+ */
1486
+ 'smsURL'?: string;
1487
+ /**
1488
+ *
1489
+ * @type {string}
1490
+ * @memberof IntegrationsConfigRequest
1491
+ */
1492
+ 'smsKey'?: string;
1493
+ /**
1494
+ *
1495
+ * @type {string}
1496
+ * @memberof IntegrationsConfigRequest
1497
+ */
1498
+ 'authEndpoint'?: string;
1499
+ /**
1500
+ *
1501
+ * @type {string}
1502
+ * @memberof IntegrationsConfigRequest
1503
+ */
1504
+ 'authClientID'?: string;
1505
+ /**
1506
+ *
1507
+ * @type {string}
1508
+ * @memberof IntegrationsConfigRequest
1509
+ */
1510
+ 'authClientSecretName'?: string;
1511
+ /**
1512
+ *
1513
+ * @type {boolean}
1514
+ * @memberof IntegrationsConfigRequest
1515
+ */
1516
+ 'externalUserServiceEnabled'?: boolean;
1517
+ }
1278
1518
  /**
1279
1519
  *
1280
1520
  * @export
@@ -1327,6 +1567,39 @@ export interface LedgerConfig {
1327
1567
  [key: string]: string;
1328
1568
  };
1329
1569
  }
1570
+ /**
1571
+ *
1572
+ * @export
1573
+ * @interface LedgerConfigRequest
1574
+ */
1575
+ export interface LedgerConfigRequest {
1576
+ /**
1577
+ *
1578
+ * @type {number}
1579
+ * @memberof LedgerConfigRequest
1580
+ */
1581
+ 'balanceGracePeriod'?: number;
1582
+ /**
1583
+ *
1584
+ * @type {number}
1585
+ * @memberof LedgerConfigRequest
1586
+ */
1587
+ 'maxManagerOrderValue'?: number;
1588
+ /**
1589
+ *
1590
+ * @type {boolean}
1591
+ * @memberof LedgerConfigRequest
1592
+ */
1593
+ 'allowNegativeBalance'?: boolean;
1594
+ /**
1595
+ *
1596
+ * @type {{ [key: string]: string; }}
1597
+ * @memberof LedgerConfigRequest
1598
+ */
1599
+ 'expiry'?: {
1600
+ [key: string]: string;
1601
+ };
1602
+ }
1330
1603
  /**
1331
1604
  *
1332
1605
  * @export
@@ -1658,6 +1931,51 @@ export interface NotificationConfig {
1658
1931
  */
1659
1932
  'templateDir'?: string;
1660
1933
  }
1934
+ /**
1935
+ *
1936
+ * @export
1937
+ * @interface NotificationConfigRequest
1938
+ */
1939
+ export interface NotificationConfigRequest {
1940
+ /**
1941
+ *
1942
+ * @type {Array<string>}
1943
+ * @memberof NotificationConfigRequest
1944
+ */
1945
+ 'emails'?: Array<string>;
1946
+ /**
1947
+ *
1948
+ * @type {Array<NotificationPreference>}
1949
+ * @memberof NotificationConfigRequest
1950
+ */
1951
+ 'preferences'?: Array<NotificationPreference>;
1952
+ /**
1953
+ *
1954
+ * @type {{ [key: string]: NotificationTemplateConfig; }}
1955
+ * @memberof NotificationConfigRequest
1956
+ */
1957
+ 'templates'?: {
1958
+ [key: string]: NotificationTemplateConfig;
1959
+ };
1960
+ /**
1961
+ *
1962
+ * @type {string}
1963
+ * @memberof NotificationConfigRequest
1964
+ */
1965
+ 'customerWebappHostname'?: string;
1966
+ /**
1967
+ *
1968
+ * @type {string}
1969
+ * @memberof NotificationConfigRequest
1970
+ */
1971
+ 'adminWebappHostname'?: string;
1972
+ /**
1973
+ *
1974
+ * @type {string}
1975
+ * @memberof NotificationConfigRequest
1976
+ */
1977
+ 'templateDir'?: string;
1978
+ }
1661
1979
  /**
1662
1980
  *
1663
1981
  * @export
@@ -2946,34 +3264,83 @@ export interface PromotionConfig {
2946
3264
  /**
2947
3265
  *
2948
3266
  * @export
2949
- * @interface PromotionNotificationConfig
3267
+ * @interface PromotionConfigRequest
2950
3268
  */
2951
- export interface PromotionNotificationConfig {
3269
+ export interface PromotionConfigRequest {
2952
3270
  /**
2953
3271
  *
2954
- * @type {Array<NotificationChannel>}
2955
- * @memberof PromotionNotificationConfig
3272
+ * @type {number}
3273
+ * @memberof PromotionConfigRequest
2956
3274
  */
2957
- 'channels': Array<NotificationChannel>;
3275
+ 'adminClaimGracePeriod'?: number;
2958
3276
  /**
2959
3277
  *
2960
- * @type {Array<NotificationKind>}
2961
- * @memberof PromotionNotificationConfig
3278
+ * @type {number}
3279
+ * @memberof PromotionConfigRequest
2962
3280
  */
2963
- 'kinds': Array<NotificationKind>;
3281
+ 'userClaimGracePeriod'?: number;
2964
3282
  /**
2965
3283
  *
2966
- * @type {boolean}
2967
- * @memberof PromotionNotificationConfig
3284
+ * @type {number}
3285
+ * @memberof PromotionConfigRequest
2968
3286
  */
2969
- 'forEachPeriod': boolean;
2970
- }
2971
- /**
2972
- *
2973
- * @export
2974
- * @interface PromotionRequest
2975
- */
2976
- export interface PromotionRequest {
3287
+ 'refundLapsePeriod'?: number;
3288
+ /**
3289
+ *
3290
+ * @type {number}
3291
+ * @memberof PromotionConfigRequest
3292
+ */
3293
+ 'customDealMinDuration'?: number;
3294
+ /**
3295
+ *
3296
+ * @type {number}
3297
+ * @memberof PromotionConfigRequest
3298
+ */
3299
+ 'customDealMinTargetValue'?: number;
3300
+ /**
3301
+ *
3302
+ * @type {number}
3303
+ * @memberof PromotionConfigRequest
3304
+ */
3305
+ 'customDealRefundWindow'?: number;
3306
+ /**
3307
+ *
3308
+ * @type {boolean}
3309
+ * @memberof PromotionConfigRequest
3310
+ */
3311
+ 'allowRunningPromotionsUpdate'?: boolean;
3312
+ }
3313
+ /**
3314
+ *
3315
+ * @export
3316
+ * @interface PromotionNotificationConfig
3317
+ */
3318
+ export interface PromotionNotificationConfig {
3319
+ /**
3320
+ *
3321
+ * @type {Array<NotificationChannel>}
3322
+ * @memberof PromotionNotificationConfig
3323
+ */
3324
+ 'channels': Array<NotificationChannel>;
3325
+ /**
3326
+ *
3327
+ * @type {Array<NotificationKind>}
3328
+ * @memberof PromotionNotificationConfig
3329
+ */
3330
+ 'kinds': Array<NotificationKind>;
3331
+ /**
3332
+ *
3333
+ * @type {boolean}
3334
+ * @memberof PromotionNotificationConfig
3335
+ */
3336
+ 'forEachPeriod': boolean;
3337
+ }
3338
+ /**
3339
+ *
3340
+ * @export
3341
+ * @interface PromotionRequest
3342
+ */
3343
+ export interface PromotionRequest {
2977
3344
  /**
2978
3345
  *
2979
3346
  * @type {string}
@@ -3288,6 +3655,25 @@ export declare const ReportTypesResponseTypesEnum: {
3288
3655
  readonly PromotionExpanded: "promotion_expanded";
3289
3656
  };
3290
3657
  export type ReportTypesResponseTypesEnum = typeof ReportTypesResponseTypesEnum[keyof typeof ReportTypesResponseTypesEnum];
3658
+ /**
3659
+ *
3660
+ * @export
3661
+ * @interface ReportUrlResponse
3662
+ */
3663
+ export interface ReportUrlResponse {
3664
+ /**
3665
+ *
3666
+ * @type {string}
3667
+ * @memberof ReportUrlResponse
3668
+ */
3669
+ 'datalakeUrl': string;
3670
+ /**
3671
+ *
3672
+ * @type {string}
3673
+ * @memberof ReportUrlResponse
3674
+ */
3675
+ 'token': string;
3676
+ }
3291
3677
  /**
3292
3678
  * @type Rule
3293
3679
  * @export
@@ -4082,49 +4468,367 @@ export interface TenantConfing {
4082
4468
  /**
4083
4469
  *
4084
4470
  * @type {string}
4085
- * @memberof TenantConfing
4471
+ * @memberof TenantConfing
4472
+ */
4473
+ 'name': string;
4474
+ /**
4475
+ *
4476
+ * @type {string}
4477
+ * @memberof TenantConfing
4478
+ */
4479
+ 'adminKeyConfig': string;
4480
+ /**
4481
+ *
4482
+ * @type {string}
4483
+ * @memberof TenantConfing
4484
+ */
4485
+ 'adminIssuer': string;
4486
+ /**
4487
+ *
4488
+ * @type {string}
4489
+ * @memberof TenantConfing
4490
+ */
4491
+ 'customerOpenIDKeyConfig': string;
4492
+ /**
4493
+ *
4494
+ * @type {string}
4495
+ * @memberof TenantConfing
4496
+ */
4497
+ 'customerOpenIDIssuer': string;
4498
+ /**
4499
+ *
4500
+ * @type {string}
4501
+ * @memberof TenantConfing
4502
+ */
4503
+ 'customerOpenIDClientID': string;
4504
+ /**
4505
+ *
4506
+ * @type {string}
4507
+ * @memberof TenantConfing
4508
+ */
4509
+ 'customerOpenIDMetadataURL': string;
4510
+ /**
4511
+ *
4512
+ * @type {{ [key: string]: string; }}
4513
+ * @memberof TenantConfing
4514
+ */
4515
+ 'customerOpenIDParameters'?: {
4516
+ [key: string]: string;
4517
+ };
4518
+ /**
4519
+ *
4520
+ * @type {string}
4521
+ * @memberof TenantConfing
4522
+ */
4523
+ 'ppURL': string;
4524
+ /**
4525
+ *
4526
+ * @type {string}
4527
+ * @memberof TenantConfing
4528
+ */
4529
+ 'tcURL': string;
4530
+ /**
4531
+ *
4532
+ * @type {string}
4533
+ * @memberof TenantConfing
4534
+ */
4535
+ 'cookiesURL'?: string;
4536
+ /**
4537
+ *
4538
+ * @type {string}
4539
+ * @memberof TenantConfing
4540
+ */
4541
+ 'azureEntraTenantID': string;
4542
+ /**
4543
+ *
4544
+ * @type {string}
4545
+ * @memberof TenantConfing
4546
+ */
4547
+ 'azureEntraClientID': string;
4548
+ /**
4549
+ *
4550
+ * @type {Locale}
4551
+ * @memberof TenantConfing
4552
+ */
4553
+ 'locale': Locale;
4554
+ /**
4555
+ *
4556
+ * @type {string}
4557
+ * @memberof TenantConfing
4558
+ */
4559
+ 'announcement'?: string;
4560
+ /**
4561
+ *
4562
+ * @type {Currency}
4563
+ * @memberof TenantConfing
4564
+ */
4565
+ 'currency': Currency;
4566
+ /**
4567
+ *
4568
+ * @type {boolean}
4569
+ * @memberof TenantConfing
4570
+ */
4571
+ 'customDealAutoClaim': boolean;
4572
+ /**
4573
+ *
4574
+ * @type {LedgerConfig}
4575
+ * @memberof TenantConfing
4576
+ */
4577
+ 'ledger': LedgerConfig;
4578
+ /**
4579
+ *
4580
+ * @type {PromotionConfig}
4581
+ * @memberof TenantConfing
4582
+ */
4583
+ 'promotion': PromotionConfig;
4584
+ /**
4585
+ *
4586
+ * @type {FeatureFlags}
4587
+ * @memberof TenantConfing
4588
+ */
4589
+ 'featureFlags': FeatureFlags;
4590
+ /**
4591
+ *
4592
+ * @type {NotificationConfig}
4593
+ * @memberof TenantConfing
4594
+ */
4595
+ 'notifications': NotificationConfig;
4596
+ /**
4597
+ *
4598
+ * @type {IntegrationsConfig}
4599
+ * @memberof TenantConfing
4600
+ */
4601
+ 'integrations': IntegrationsConfig;
4602
+ /**
4603
+ *
4604
+ * @type {BrandingConfig}
4605
+ * @memberof TenantConfing
4606
+ */
4607
+ 'branding': BrandingConfig;
4608
+ /**
4609
+ *
4610
+ * @type {AuthorizationConfig}
4611
+ * @memberof TenantConfing
4612
+ */
4613
+ 'auth': AuthorizationConfig;
4614
+ }
4615
+ /**
4616
+ *
4617
+ * @export
4618
+ * @interface TenantConfingRequest
4619
+ */
4620
+ export interface TenantConfingRequest {
4621
+ /**
4622
+ *
4623
+ * @type {string}
4624
+ * @memberof TenantConfingRequest
4625
+ */
4626
+ 'id': string;
4627
+ /**
4628
+ *
4629
+ * @type {string}
4630
+ * @memberof TenantConfingRequest
4631
+ */
4632
+ 'name'?: string;
4633
+ /**
4634
+ *
4635
+ * @type {string}
4636
+ * @memberof TenantConfingRequest
4637
+ */
4638
+ 'adminKeyConfig'?: string;
4639
+ /**
4640
+ *
4641
+ * @type {string}
4642
+ * @memberof TenantConfingRequest
4643
+ */
4644
+ 'adminIssuer'?: string;
4645
+ /**
4646
+ *
4647
+ * @type {string}
4648
+ * @memberof TenantConfingRequest
4649
+ */
4650
+ 'customerOpenIDKeyConfig'?: string;
4651
+ /**
4652
+ *
4653
+ * @type {string}
4654
+ * @memberof TenantConfingRequest
4655
+ */
4656
+ 'customerOpenIDIssuer'?: string;
4657
+ /**
4658
+ *
4659
+ * @type {string}
4660
+ * @memberof TenantConfingRequest
4661
+ */
4662
+ 'customerOpenIDClientID'?: string;
4663
+ /**
4664
+ *
4665
+ * @type {string}
4666
+ * @memberof TenantConfingRequest
4667
+ */
4668
+ 'customerOpenIDMetadataURL'?: string;
4669
+ /**
4670
+ *
4671
+ * @type {{ [key: string]: string; }}
4672
+ * @memberof TenantConfingRequest
4673
+ */
4674
+ 'customerOpenIDParameters'?: {
4675
+ [key: string]: string;
4676
+ };
4677
+ /**
4678
+ *
4679
+ * @type {string}
4680
+ * @memberof TenantConfingRequest
4681
+ */
4682
+ 'ppURL'?: string;
4683
+ /**
4684
+ *
4685
+ * @type {string}
4686
+ * @memberof TenantConfingRequest
4687
+ */
4688
+ 'tcURL'?: string;
4689
+ /**
4690
+ *
4691
+ * @type {string}
4692
+ * @memberof TenantConfingRequest
4693
+ */
4694
+ 'cookiesURL'?: string;
4695
+ /**
4696
+ *
4697
+ * @type {string}
4698
+ * @memberof TenantConfingRequest
4699
+ */
4700
+ 'azureEntraTenantID'?: string;
4701
+ /**
4702
+ *
4703
+ * @type {string}
4704
+ * @memberof TenantConfingRequest
4705
+ */
4706
+ 'azureEntraClientID'?: string;
4707
+ /**
4708
+ *
4709
+ * @type {Locale}
4710
+ * @memberof TenantConfingRequest
4711
+ */
4712
+ 'locale'?: Locale;
4713
+ /**
4714
+ *
4715
+ * @type {string}
4716
+ * @memberof TenantConfingRequest
4717
+ */
4718
+ 'announcement'?: string;
4719
+ /**
4720
+ *
4721
+ * @type {Currency}
4722
+ * @memberof TenantConfingRequest
4723
+ */
4724
+ 'currency'?: Currency;
4725
+ /**
4726
+ *
4727
+ * @type {boolean}
4728
+ * @memberof TenantConfingRequest
4729
+ */
4730
+ 'customDealAutoClaim'?: boolean;
4731
+ /**
4732
+ *
4733
+ * @type {LedgerConfigRequest}
4734
+ * @memberof TenantConfingRequest
4735
+ */
4736
+ 'ledger'?: LedgerConfigRequest;
4737
+ /**
4738
+ *
4739
+ * @type {PromotionConfigRequest}
4740
+ * @memberof TenantConfingRequest
4741
+ */
4742
+ 'promotion'?: PromotionConfigRequest;
4743
+ /**
4744
+ *
4745
+ * @type {FeatureFlagsRequest}
4746
+ * @memberof TenantConfingRequest
4747
+ */
4748
+ 'featureFlags'?: FeatureFlagsRequest;
4749
+ /**
4750
+ *
4751
+ * @type {NotificationConfigRequest}
4752
+ * @memberof TenantConfingRequest
4753
+ */
4754
+ 'notifications'?: NotificationConfigRequest;
4755
+ /**
4756
+ *
4757
+ * @type {IntegrationsConfigRequest}
4758
+ * @memberof TenantConfingRequest
4759
+ */
4760
+ 'integrations'?: IntegrationsConfigRequest;
4761
+ /**
4762
+ *
4763
+ * @type {BrandingConfigRequest}
4764
+ * @memberof TenantConfingRequest
4765
+ */
4766
+ 'branding'?: BrandingConfigRequest;
4767
+ /**
4768
+ *
4769
+ * @type {AuthorizationConfigRequest}
4770
+ * @memberof TenantConfingRequest
4771
+ */
4772
+ 'auth'?: AuthorizationConfigRequest;
4773
+ }
4774
+ /**
4775
+ *
4776
+ * @export
4777
+ * @interface TenantRequest
4778
+ */
4779
+ export interface TenantRequest {
4780
+ /**
4781
+ *
4782
+ * @type {string}
4783
+ * @memberof TenantRequest
4784
+ */
4785
+ 'id': string;
4786
+ /**
4787
+ *
4788
+ * @type {string}
4789
+ * @memberof TenantRequest
4086
4790
  */
4087
- 'name': string;
4791
+ 'name'?: string;
4088
4792
  /**
4089
4793
  *
4090
4794
  * @type {string}
4091
- * @memberof TenantConfing
4795
+ * @memberof TenantRequest
4092
4796
  */
4093
- 'adminKeyConfig': string;
4797
+ 'adminKeyConfig'?: string;
4094
4798
  /**
4095
4799
  *
4096
4800
  * @type {string}
4097
- * @memberof TenantConfing
4801
+ * @memberof TenantRequest
4098
4802
  */
4099
- 'adminIssuer': string;
4803
+ 'adminIssuer'?: string;
4100
4804
  /**
4101
4805
  *
4102
4806
  * @type {string}
4103
- * @memberof TenantConfing
4807
+ * @memberof TenantRequest
4104
4808
  */
4105
- 'customerOpenIDKeyConfig': string;
4809
+ 'customerOpenIDKeyConfig'?: string;
4106
4810
  /**
4107
4811
  *
4108
4812
  * @type {string}
4109
- * @memberof TenantConfing
4813
+ * @memberof TenantRequest
4110
4814
  */
4111
- 'customerOpenIDIssuer': string;
4815
+ 'customerOpenIDIssuer'?: string;
4112
4816
  /**
4113
4817
  *
4114
4818
  * @type {string}
4115
- * @memberof TenantConfing
4819
+ * @memberof TenantRequest
4116
4820
  */
4117
- 'customerOpenIDClientID': string;
4821
+ 'customerOpenIDClientID'?: string;
4118
4822
  /**
4119
4823
  *
4120
4824
  * @type {string}
4121
- * @memberof TenantConfing
4825
+ * @memberof TenantRequest
4122
4826
  */
4123
- 'customerOpenIDMetadataURL': string;
4827
+ 'customerOpenIDMetadataURL'?: string;
4124
4828
  /**
4125
4829
  *
4126
4830
  * @type {{ [key: string]: string; }}
4127
- * @memberof TenantConfing
4831
+ * @memberof TenantRequest
4128
4832
  */
4129
4833
  'customerOpenIDParameters'?: {
4130
4834
  [key: string]: string;
@@ -4132,99 +4836,51 @@ export interface TenantConfing {
4132
4836
  /**
4133
4837
  *
4134
4838
  * @type {string}
4135
- * @memberof TenantConfing
4839
+ * @memberof TenantRequest
4136
4840
  */
4137
- 'ppURL': string;
4841
+ 'ppURL'?: string;
4138
4842
  /**
4139
4843
  *
4140
4844
  * @type {string}
4141
- * @memberof TenantConfing
4845
+ * @memberof TenantRequest
4142
4846
  */
4143
- 'tcURL': string;
4847
+ 'tcURL'?: string;
4144
4848
  /**
4145
4849
  *
4146
4850
  * @type {string}
4147
- * @memberof TenantConfing
4851
+ * @memberof TenantRequest
4148
4852
  */
4149
4853
  'cookiesURL'?: string;
4150
4854
  /**
4151
4855
  *
4152
4856
  * @type {string}
4153
- * @memberof TenantConfing
4857
+ * @memberof TenantRequest
4154
4858
  */
4155
- 'azureEntraTenantID': string;
4859
+ 'azureEntraTenantID'?: string;
4156
4860
  /**
4157
4861
  *
4158
4862
  * @type {string}
4159
- * @memberof TenantConfing
4863
+ * @memberof TenantRequest
4160
4864
  */
4161
- 'azureEntraClientID': string;
4865
+ 'azureEntraClientID'?: string;
4162
4866
  /**
4163
4867
  *
4164
4868
  * @type {Locale}
4165
- * @memberof TenantConfing
4869
+ * @memberof TenantRequest
4166
4870
  */
4167
- 'locale': Locale;
4871
+ 'locale'?: Locale;
4168
4872
  /**
4169
4873
  *
4170
4874
  * @type {string}
4171
- * @memberof TenantConfing
4875
+ * @memberof TenantRequest
4172
4876
  */
4173
4877
  'announcement'?: string;
4174
4878
  /**
4175
4879
  *
4176
4880
  * @type {Currency}
4177
- * @memberof TenantConfing
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
4881
+ * @memberof TenantRequest
4220
4882
  */
4221
- 'branding': BrandingConfig;
4222
- /**
4223
- *
4224
- * @type {AuthorizationConfig}
4225
- * @memberof TenantConfing
4226
- */
4227
- 'auth': AuthorizationConfig;
4883
+ 'currency'?: Currency;
4228
4884
  }
4229
4885
  /**
4230
4886
  *
@@ -5867,11 +6523,11 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
5867
6523
  /**
5868
6524
  * Create or update backoffice configuration for the current tenant
5869
6525
  * @summary Create configuration
5870
- * @param {TenantConfing} tenantConfing Configuration data
6526
+ * @param {TenantConfingRequest} tenantConfingRequest Configuration data
5871
6527
  * @param {*} [options] Override http request option.
5872
6528
  * @throws {RequiredError}
5873
6529
  */
5874
- createV2Configuration: (tenantConfing: TenantConfing, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6530
+ createV2Configuration: (tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5875
6531
  /**
5876
6532
  * List backoffice configurations for the current tenant
5877
6533
  * @summary List configurations
@@ -5925,11 +6581,11 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
5925
6581
  /**
5926
6582
  * Create or update backoffice configuration for the current tenant
5927
6583
  * @summary Create configuration
5928
- * @param {TenantConfing} tenantConfing Configuration data
6584
+ * @param {TenantConfingRequest} tenantConfingRequest Configuration data
5929
6585
  * @param {*} [options] Override http request option.
5930
6586
  * @throws {RequiredError}
5931
6587
  */
5932
- createV2Configuration(tenantConfing: TenantConfing, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6588
+ createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5933
6589
  /**
5934
6590
  * List backoffice configurations for the current tenant
5935
6591
  * @summary List configurations
@@ -5983,11 +6639,11 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
5983
6639
  /**
5984
6640
  * Create or update backoffice configuration for the current tenant
5985
6641
  * @summary Create configuration
5986
- * @param {TenantConfing} tenantConfing Configuration data
6642
+ * @param {TenantConfingRequest} tenantConfingRequest Configuration data
5987
6643
  * @param {*} [options] Override http request option.
5988
6644
  * @throws {RequiredError}
5989
6645
  */
5990
- createV2Configuration(tenantConfing: TenantConfing, options?: any): AxiosPromise<void>;
6646
+ createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: any): AxiosPromise<void>;
5991
6647
  /**
5992
6648
  * List backoffice configurations for the current tenant
5993
6649
  * @summary List configurations
@@ -6044,12 +6700,12 @@ export declare class ConfigurationsApi extends BaseAPI {
6044
6700
  /**
6045
6701
  * Create or update backoffice configuration for the current tenant
6046
6702
  * @summary Create configuration
6047
- * @param {TenantConfing} tenantConfing Configuration data
6703
+ * @param {TenantConfingRequest} tenantConfingRequest Configuration data
6048
6704
  * @param {*} [options] Override http request option.
6049
6705
  * @throws {RequiredError}
6050
6706
  * @memberof ConfigurationsApi
6051
6707
  */
6052
- createV2Configuration(tenantConfing: TenantConfing, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6708
+ createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6053
6709
  /**
6054
6710
  * List backoffice configurations for the current tenant
6055
6711
  * @summary List configurations
@@ -6285,6 +6941,15 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
6285
6941
  * @throws {RequiredError}
6286
6942
  */
6287
6943
  importEvents: (eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6944
+ /**
6945
+ * Search events
6946
+ * @summary Search events
6947
+ * @param {string} reference Reference ID
6948
+ * @param {string} [nextToken] This is the pagination token
6949
+ * @param {*} [options] Override http request option.
6950
+ * @throws {RequiredError}
6951
+ */
6952
+ searchEvents: (reference: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6288
6953
  };
6289
6954
  /**
6290
6955
  * EventsApi - functional programming interface
@@ -6299,6 +6964,15 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
6299
6964
  * @throws {RequiredError}
6300
6965
  */
6301
6966
  importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6967
+ /**
6968
+ * Search events
6969
+ * @summary Search events
6970
+ * @param {string} reference Reference ID
6971
+ * @param {string} [nextToken] This is the pagination token
6972
+ * @param {*} [options] Override http request option.
6973
+ * @throws {RequiredError}
6974
+ */
6975
+ searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventsResponse>>;
6302
6976
  };
6303
6977
  /**
6304
6978
  * EventsApi - factory interface
@@ -6313,6 +6987,15 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
6313
6987
  * @throws {RequiredError}
6314
6988
  */
6315
6989
  importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: any): AxiosPromise<void>;
6990
+ /**
6991
+ * Search events
6992
+ * @summary Search events
6993
+ * @param {string} reference Reference ID
6994
+ * @param {string} [nextToken] This is the pagination token
6995
+ * @param {*} [options] Override http request option.
6996
+ * @throws {RequiredError}
6997
+ */
6998
+ searchEvents(reference: string, nextToken?: string, options?: any): AxiosPromise<EventsResponse>;
6316
6999
  };
6317
7000
  /**
6318
7001
  * EventsApi - object-oriented interface
@@ -6330,6 +7013,16 @@ export declare class EventsApi extends BaseAPI {
6330
7013
  * @memberof EventsApi
6331
7014
  */
6332
7015
  importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
7016
+ /**
7017
+ * Search events
7018
+ * @summary Search events
7019
+ * @param {string} reference Reference ID
7020
+ * @param {string} [nextToken] This is the pagination token
7021
+ * @param {*} [options] Override http request option.
7022
+ * @throws {RequiredError}
7023
+ * @memberof EventsApi
7024
+ */
7025
+ searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EventsResponse, any>>;
6333
7026
  }
6334
7027
  /**
6335
7028
  * IntegrationsApi - axios parameter creator
@@ -6452,94 +7145,6 @@ export declare class IntegrationsApi extends BaseAPI {
6452
7145
  */
6453
7146
  setWebhook(webhook: Webhook, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6454
7147
  }
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
7148
  /**
6544
7149
  * NotificationsApi - axios parameter creator
6545
7150
  * @export
@@ -6568,6 +7173,13 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
6568
7173
  * @throws {RequiredError}
6569
7174
  */
6570
7175
  getPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
7176
+ /**
7177
+ * Get preferences for the authenticated user
7178
+ * @summary Get preferences
7179
+ * @param {*} [options] Override http request option.
7180
+ * @throws {RequiredError}
7181
+ */
7182
+ getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
6571
7183
  /**
6572
7184
  * Get notification preferences for the authenticated user
6573
7185
  * @summary Get notification preferences
@@ -6600,6 +7212,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
6600
7212
  * @throws {RequiredError}
6601
7213
  */
6602
7214
  updatePreferences: (preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7215
+ /**
7216
+ * Update preferences for the authenticated user
7217
+ * @summary Update preferences
7218
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
7219
+ * @param {*} [options] Override http request option.
7220
+ * @throws {RequiredError}
7221
+ */
7222
+ updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6603
7223
  /**
6604
7224
  * Update notification preferences for the authenticated user
6605
7225
  * @summary Update notification preferences
@@ -6637,6 +7257,13 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
6637
7257
  * @throws {RequiredError}
6638
7258
  */
6639
7259
  getPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Preferences>>;
7260
+ /**
7261
+ * Get preferences for the authenticated user
7262
+ * @summary Get preferences
7263
+ * @param {*} [options] Override http request option.
7264
+ * @throws {RequiredError}
7265
+ */
7266
+ getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
6640
7267
  /**
6641
7268
  * Get notification preferences for the authenticated user
6642
7269
  * @summary Get notification preferences
@@ -6669,6 +7296,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
6669
7296
  * @throws {RequiredError}
6670
7297
  */
6671
7298
  updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7299
+ /**
7300
+ * Update preferences for the authenticated user
7301
+ * @summary Update preferences
7302
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
7303
+ * @param {*} [options] Override http request option.
7304
+ * @throws {RequiredError}
7305
+ */
7306
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6672
7307
  /**
6673
7308
  * Update notification preferences for the authenticated user
6674
7309
  * @summary Update notification preferences
@@ -6706,6 +7341,13 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
6706
7341
  * @throws {RequiredError}
6707
7342
  */
6708
7343
  getPreferences(options?: any): AxiosPromise<Preferences>;
7344
+ /**
7345
+ * Get preferences for the authenticated user
7346
+ * @summary Get preferences
7347
+ * @param {*} [options] Override http request option.
7348
+ * @throws {RequiredError}
7349
+ */
7350
+ getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
6709
7351
  /**
6710
7352
  * Get notification preferences for the authenticated user
6711
7353
  * @summary Get notification preferences
@@ -6738,6 +7380,14 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
6738
7380
  * @throws {RequiredError}
6739
7381
  */
6740
7382
  updatePreferences(preferencesRequest: PreferencesRequest, options?: any): AxiosPromise<void>;
7383
+ /**
7384
+ * Update preferences for the authenticated user
7385
+ * @summary Update preferences
7386
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
7387
+ * @param {*} [options] Override http request option.
7388
+ * @throws {RequiredError}
7389
+ */
7390
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
6741
7391
  /**
6742
7392
  * Update notification preferences for the authenticated user
6743
7393
  * @summary Update notification preferences
@@ -6780,6 +7430,14 @@ export declare class NotificationsApi extends BaseAPI {
6780
7430
  * @memberof NotificationsApi
6781
7431
  */
6782
7432
  getPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Preferences, any>>;
7433
+ /**
7434
+ * Get preferences for the authenticated user
7435
+ * @summary Get preferences
7436
+ * @param {*} [options] Override http request option.
7437
+ * @throws {RequiredError}
7438
+ * @memberof NotificationsApi
7439
+ */
7440
+ getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
6783
7441
  /**
6784
7442
  * Get notification preferences for the authenticated user
6785
7443
  * @summary Get notification preferences
@@ -6816,6 +7474,15 @@ export declare class NotificationsApi extends BaseAPI {
6816
7474
  * @memberof NotificationsApi
6817
7475
  */
6818
7476
  updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
7477
+ /**
7478
+ * Update preferences for the authenticated user
7479
+ * @summary Update preferences
7480
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
7481
+ * @param {*} [options] Override http request option.
7482
+ * @throws {RequiredError}
7483
+ * @memberof NotificationsApi
7484
+ */
7485
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6819
7486
  /**
6820
7487
  * Update notification preferences for the authenticated user
6821
7488
  * @summary Update notification preferences
@@ -8304,6 +8971,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
8304
8971
  * @throws {RequiredError}
8305
8972
  */
8306
8973
  generateReport: (type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8974
+ /**
8975
+ * Get signed access URL for report
8976
+ * @summary Get signed access URL for report
8977
+ * @param {*} [options] Override http request option.
8978
+ * @throws {RequiredError}
8979
+ */
8980
+ getReportUrl: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
8307
8981
  /**
8308
8982
  * List all supported report types, which can be generated by the user
8309
8983
  * @summary List report types
@@ -8334,6 +9008,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
8334
9008
  * @throws {RequiredError}
8335
9009
  */
8336
9010
  generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportResponse>>;
9011
+ /**
9012
+ * Get signed access URL for report
9013
+ * @summary Get signed access URL for report
9014
+ * @param {*} [options] Override http request option.
9015
+ * @throws {RequiredError}
9016
+ */
9017
+ getReportUrl(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportUrlResponse>>;
8337
9018
  /**
8338
9019
  * List all supported report types, which can be generated by the user
8339
9020
  * @summary List report types
@@ -8364,6 +9045,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
8364
9045
  * @throws {RequiredError}
8365
9046
  */
8366
9047
  generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: any): AxiosPromise<ReportResponse>;
9048
+ /**
9049
+ * Get signed access URL for report
9050
+ * @summary Get signed access URL for report
9051
+ * @param {*} [options] Override http request option.
9052
+ * @throws {RequiredError}
9053
+ */
9054
+ getReportUrl(options?: any): AxiosPromise<ReportUrlResponse>;
8367
9055
  /**
8368
9056
  * List all supported report types, which can be generated by the user
8369
9057
  * @summary List report types
@@ -8397,6 +9085,14 @@ export declare class ReportsApi extends BaseAPI {
8397
9085
  * @memberof ReportsApi
8398
9086
  */
8399
9087
  generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any>>;
9088
+ /**
9089
+ * Get signed access URL for report
9090
+ * @summary Get signed access URL for report
9091
+ * @param {*} [options] Override http request option.
9092
+ * @throws {RequiredError}
9093
+ * @memberof ReportsApi
9094
+ */
9095
+ getReportUrl(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportUrlResponse, any>>;
8400
9096
  /**
8401
9097
  * List all supported report types, which can be generated by the user
8402
9098
  * @summary List report types