flexinet-api 0.0.2314 → 0.0.2319
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 +1133 -230
- package/dist/api.d.ts +952 -151
- package/dist/api.js +353 -182
- package/dist/esm/api.d.ts +952 -151
- package/dist/esm/api.js +351 -176
- package/package.json +1 -1
package/dist/esm/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
|
@@ -1872,23 +2190,91 @@ export interface OrderCreationRequest {
|
|
1872
2190
|
/**
|
1873
2191
|
*
|
1874
2192
|
* @export
|
1875
|
-
* @interface
|
2193
|
+
* @interface OrderEvent
|
1876
2194
|
*/
|
1877
|
-
export interface
|
2195
|
+
export interface OrderEvent {
|
2196
|
+
/**
|
2197
|
+
*
|
2198
|
+
* @type {string}
|
2199
|
+
* @memberof OrderEvent
|
2200
|
+
*/
|
2201
|
+
'id': string;
|
2202
|
+
/**
|
2203
|
+
*
|
2204
|
+
* @type {string}
|
2205
|
+
* @memberof OrderEvent
|
2206
|
+
*/
|
2207
|
+
'orderID': string;
|
2208
|
+
/**
|
2209
|
+
*
|
2210
|
+
* @type {Order}
|
2211
|
+
* @memberof OrderEvent
|
2212
|
+
*/
|
2213
|
+
'order': Order;
|
2214
|
+
/**
|
2215
|
+
*
|
2216
|
+
* @type {string}
|
2217
|
+
* @memberof OrderEvent
|
2218
|
+
*/
|
2219
|
+
'status': string;
|
1878
2220
|
/**
|
1879
2221
|
*
|
1880
2222
|
* @type {number}
|
1881
|
-
* @memberof
|
2223
|
+
* @memberof OrderEvent
|
1882
2224
|
*/
|
1883
|
-
'
|
2225
|
+
'httpResponse'?: number;
|
1884
2226
|
/**
|
1885
2227
|
*
|
1886
2228
|
* @type {string}
|
1887
|
-
* @memberof
|
2229
|
+
* @memberof OrderEvent
|
1888
2230
|
*/
|
1889
|
-
'
|
1890
|
-
|
1891
|
-
|
2231
|
+
'lastRun'?: string;
|
2232
|
+
/**
|
2233
|
+
*
|
2234
|
+
* @type {string}
|
2235
|
+
* @memberof OrderEvent
|
2236
|
+
*/
|
2237
|
+
'body'?: string;
|
2238
|
+
}
|
2239
|
+
/**
|
2240
|
+
*
|
2241
|
+
* @export
|
2242
|
+
* @interface OrderEventListResponse
|
2243
|
+
*/
|
2244
|
+
export interface OrderEventListResponse {
|
2245
|
+
/**
|
2246
|
+
*
|
2247
|
+
* @type {Array<OrderEvent>}
|
2248
|
+
* @memberof OrderEventListResponse
|
2249
|
+
*/
|
2250
|
+
'events': Array<OrderEvent>;
|
2251
|
+
/**
|
2252
|
+
* This is the pagination token
|
2253
|
+
* @type {string}
|
2254
|
+
* @memberof OrderEventListResponse
|
2255
|
+
*/
|
2256
|
+
'nextToken'?: string;
|
2257
|
+
}
|
2258
|
+
/**
|
2259
|
+
*
|
2260
|
+
* @export
|
2261
|
+
* @interface OrderItemCreationRequest
|
2262
|
+
*/
|
2263
|
+
export interface OrderItemCreationRequest {
|
2264
|
+
/**
|
2265
|
+
*
|
2266
|
+
* @type {number}
|
2267
|
+
* @memberof OrderItemCreationRequest
|
2268
|
+
*/
|
2269
|
+
'qty': number;
|
2270
|
+
/**
|
2271
|
+
*
|
2272
|
+
* @type {string}
|
2273
|
+
* @memberof OrderItemCreationRequest
|
2274
|
+
*/
|
2275
|
+
'productId': string;
|
2276
|
+
}
|
2277
|
+
/**
|
1892
2278
|
*
|
1893
2279
|
* @export
|
1894
2280
|
* @enum {string}
|
@@ -2943,6 +3329,55 @@ export interface PromotionConfig {
|
|
2943
3329
|
*/
|
2944
3330
|
'allowRunningPromotionsUpdate': boolean;
|
2945
3331
|
}
|
3332
|
+
/**
|
3333
|
+
*
|
3334
|
+
* @export
|
3335
|
+
* @interface PromotionConfigRequest
|
3336
|
+
*/
|
3337
|
+
export interface PromotionConfigRequest {
|
3338
|
+
/**
|
3339
|
+
*
|
3340
|
+
* @type {number}
|
3341
|
+
* @memberof PromotionConfigRequest
|
3342
|
+
*/
|
3343
|
+
'adminClaimGracePeriod'?: number;
|
3344
|
+
/**
|
3345
|
+
*
|
3346
|
+
* @type {number}
|
3347
|
+
* @memberof PromotionConfigRequest
|
3348
|
+
*/
|
3349
|
+
'userClaimGracePeriod'?: number;
|
3350
|
+
/**
|
3351
|
+
*
|
3352
|
+
* @type {number}
|
3353
|
+
* @memberof PromotionConfigRequest
|
3354
|
+
*/
|
3355
|
+
'refundLapsePeriod'?: number;
|
3356
|
+
/**
|
3357
|
+
*
|
3358
|
+
* @type {number}
|
3359
|
+
* @memberof PromotionConfigRequest
|
3360
|
+
*/
|
3361
|
+
'customDealMinDuration'?: number;
|
3362
|
+
/**
|
3363
|
+
*
|
3364
|
+
* @type {number}
|
3365
|
+
* @memberof PromotionConfigRequest
|
3366
|
+
*/
|
3367
|
+
'customDealMinTargetValue'?: number;
|
3368
|
+
/**
|
3369
|
+
*
|
3370
|
+
* @type {number}
|
3371
|
+
* @memberof PromotionConfigRequest
|
3372
|
+
*/
|
3373
|
+
'customDealRefundWindow'?: number;
|
3374
|
+
/**
|
3375
|
+
*
|
3376
|
+
* @type {boolean}
|
3377
|
+
* @memberof PromotionConfigRequest
|
3378
|
+
*/
|
3379
|
+
'allowRunningPromotionsUpdate'?: boolean;
|
3380
|
+
}
|
2946
3381
|
/**
|
2947
3382
|
*
|
2948
3383
|
* @export
|
@@ -3288,6 +3723,25 @@ export declare const ReportTypesResponseTypesEnum: {
|
|
3288
3723
|
readonly PromotionExpanded: "promotion_expanded";
|
3289
3724
|
};
|
3290
3725
|
export type ReportTypesResponseTypesEnum = typeof ReportTypesResponseTypesEnum[keyof typeof ReportTypesResponseTypesEnum];
|
3726
|
+
/**
|
3727
|
+
*
|
3728
|
+
* @export
|
3729
|
+
* @interface ReportUrlResponse
|
3730
|
+
*/
|
3731
|
+
export interface ReportUrlResponse {
|
3732
|
+
/**
|
3733
|
+
*
|
3734
|
+
* @type {string}
|
3735
|
+
* @memberof ReportUrlResponse
|
3736
|
+
*/
|
3737
|
+
'datalakeUrl': string;
|
3738
|
+
/**
|
3739
|
+
*
|
3740
|
+
* @type {string}
|
3741
|
+
* @memberof ReportUrlResponse
|
3742
|
+
*/
|
3743
|
+
'token': string;
|
3744
|
+
}
|
3291
3745
|
/**
|
3292
3746
|
* @type Rule
|
3293
3747
|
* @export
|
@@ -4134,97 +4588,367 @@ export interface TenantConfing {
|
|
4134
4588
|
* @type {string}
|
4135
4589
|
* @memberof TenantConfing
|
4136
4590
|
*/
|
4137
|
-
'ppURL': string;
|
4591
|
+
'ppURL': string;
|
4592
|
+
/**
|
4593
|
+
*
|
4594
|
+
* @type {string}
|
4595
|
+
* @memberof TenantConfing
|
4596
|
+
*/
|
4597
|
+
'tcURL': string;
|
4598
|
+
/**
|
4599
|
+
*
|
4600
|
+
* @type {string}
|
4601
|
+
* @memberof TenantConfing
|
4602
|
+
*/
|
4603
|
+
'cookiesURL'?: string;
|
4604
|
+
/**
|
4605
|
+
*
|
4606
|
+
* @type {string}
|
4607
|
+
* @memberof TenantConfing
|
4608
|
+
*/
|
4609
|
+
'azureEntraTenantID': string;
|
4610
|
+
/**
|
4611
|
+
*
|
4612
|
+
* @type {string}
|
4613
|
+
* @memberof TenantConfing
|
4614
|
+
*/
|
4615
|
+
'azureEntraClientID': string;
|
4616
|
+
/**
|
4617
|
+
*
|
4618
|
+
* @type {Locale}
|
4619
|
+
* @memberof TenantConfing
|
4620
|
+
*/
|
4621
|
+
'locale': Locale;
|
4622
|
+
/**
|
4623
|
+
*
|
4624
|
+
* @type {string}
|
4625
|
+
* @memberof TenantConfing
|
4626
|
+
*/
|
4627
|
+
'announcement'?: string;
|
4628
|
+
/**
|
4629
|
+
*
|
4630
|
+
* @type {Currency}
|
4631
|
+
* @memberof TenantConfing
|
4632
|
+
*/
|
4633
|
+
'currency': Currency;
|
4634
|
+
/**
|
4635
|
+
*
|
4636
|
+
* @type {boolean}
|
4637
|
+
* @memberof TenantConfing
|
4638
|
+
*/
|
4639
|
+
'customDealAutoClaim': boolean;
|
4640
|
+
/**
|
4641
|
+
*
|
4642
|
+
* @type {LedgerConfig}
|
4643
|
+
* @memberof TenantConfing
|
4644
|
+
*/
|
4645
|
+
'ledger': LedgerConfig;
|
4646
|
+
/**
|
4647
|
+
*
|
4648
|
+
* @type {PromotionConfig}
|
4649
|
+
* @memberof TenantConfing
|
4650
|
+
*/
|
4651
|
+
'promotion': PromotionConfig;
|
4652
|
+
/**
|
4653
|
+
*
|
4654
|
+
* @type {FeatureFlags}
|
4655
|
+
* @memberof TenantConfing
|
4656
|
+
*/
|
4657
|
+
'featureFlags': FeatureFlags;
|
4658
|
+
/**
|
4659
|
+
*
|
4660
|
+
* @type {NotificationConfig}
|
4661
|
+
* @memberof TenantConfing
|
4662
|
+
*/
|
4663
|
+
'notifications': NotificationConfig;
|
4664
|
+
/**
|
4665
|
+
*
|
4666
|
+
* @type {IntegrationsConfig}
|
4667
|
+
* @memberof TenantConfing
|
4668
|
+
*/
|
4669
|
+
'integrations': IntegrationsConfig;
|
4670
|
+
/**
|
4671
|
+
*
|
4672
|
+
* @type {BrandingConfig}
|
4673
|
+
* @memberof TenantConfing
|
4674
|
+
*/
|
4675
|
+
'branding': BrandingConfig;
|
4676
|
+
/**
|
4677
|
+
*
|
4678
|
+
* @type {AuthorizationConfig}
|
4679
|
+
* @memberof TenantConfing
|
4680
|
+
*/
|
4681
|
+
'auth': AuthorizationConfig;
|
4682
|
+
}
|
4683
|
+
/**
|
4684
|
+
*
|
4685
|
+
* @export
|
4686
|
+
* @interface TenantConfingRequest
|
4687
|
+
*/
|
4688
|
+
export interface TenantConfingRequest {
|
4689
|
+
/**
|
4690
|
+
*
|
4691
|
+
* @type {string}
|
4692
|
+
* @memberof TenantConfingRequest
|
4693
|
+
*/
|
4694
|
+
'id': string;
|
4695
|
+
/**
|
4696
|
+
*
|
4697
|
+
* @type {string}
|
4698
|
+
* @memberof TenantConfingRequest
|
4699
|
+
*/
|
4700
|
+
'name'?: string;
|
4701
|
+
/**
|
4702
|
+
*
|
4703
|
+
* @type {string}
|
4704
|
+
* @memberof TenantConfingRequest
|
4705
|
+
*/
|
4706
|
+
'adminKeyConfig'?: string;
|
4707
|
+
/**
|
4708
|
+
*
|
4709
|
+
* @type {string}
|
4710
|
+
* @memberof TenantConfingRequest
|
4711
|
+
*/
|
4712
|
+
'adminIssuer'?: string;
|
4713
|
+
/**
|
4714
|
+
*
|
4715
|
+
* @type {string}
|
4716
|
+
* @memberof TenantConfingRequest
|
4717
|
+
*/
|
4718
|
+
'customerOpenIDKeyConfig'?: string;
|
4719
|
+
/**
|
4720
|
+
*
|
4721
|
+
* @type {string}
|
4722
|
+
* @memberof TenantConfingRequest
|
4723
|
+
*/
|
4724
|
+
'customerOpenIDIssuer'?: string;
|
4725
|
+
/**
|
4726
|
+
*
|
4727
|
+
* @type {string}
|
4728
|
+
* @memberof TenantConfingRequest
|
4729
|
+
*/
|
4730
|
+
'customerOpenIDClientID'?: string;
|
4731
|
+
/**
|
4732
|
+
*
|
4733
|
+
* @type {string}
|
4734
|
+
* @memberof TenantConfingRequest
|
4735
|
+
*/
|
4736
|
+
'customerOpenIDMetadataURL'?: string;
|
4737
|
+
/**
|
4738
|
+
*
|
4739
|
+
* @type {{ [key: string]: string; }}
|
4740
|
+
* @memberof TenantConfingRequest
|
4741
|
+
*/
|
4742
|
+
'customerOpenIDParameters'?: {
|
4743
|
+
[key: string]: string;
|
4744
|
+
};
|
4745
|
+
/**
|
4746
|
+
*
|
4747
|
+
* @type {string}
|
4748
|
+
* @memberof TenantConfingRequest
|
4749
|
+
*/
|
4750
|
+
'ppURL'?: string;
|
4751
|
+
/**
|
4752
|
+
*
|
4753
|
+
* @type {string}
|
4754
|
+
* @memberof TenantConfingRequest
|
4755
|
+
*/
|
4756
|
+
'tcURL'?: string;
|
4757
|
+
/**
|
4758
|
+
*
|
4759
|
+
* @type {string}
|
4760
|
+
* @memberof TenantConfingRequest
|
4761
|
+
*/
|
4762
|
+
'cookiesURL'?: string;
|
4763
|
+
/**
|
4764
|
+
*
|
4765
|
+
* @type {string}
|
4766
|
+
* @memberof TenantConfingRequest
|
4767
|
+
*/
|
4768
|
+
'azureEntraTenantID'?: string;
|
4769
|
+
/**
|
4770
|
+
*
|
4771
|
+
* @type {string}
|
4772
|
+
* @memberof TenantConfingRequest
|
4773
|
+
*/
|
4774
|
+
'azureEntraClientID'?: string;
|
4775
|
+
/**
|
4776
|
+
*
|
4777
|
+
* @type {Locale}
|
4778
|
+
* @memberof TenantConfingRequest
|
4779
|
+
*/
|
4780
|
+
'locale'?: Locale;
|
4781
|
+
/**
|
4782
|
+
*
|
4783
|
+
* @type {string}
|
4784
|
+
* @memberof TenantConfingRequest
|
4785
|
+
*/
|
4786
|
+
'announcement'?: string;
|
4787
|
+
/**
|
4788
|
+
*
|
4789
|
+
* @type {Currency}
|
4790
|
+
* @memberof TenantConfingRequest
|
4791
|
+
*/
|
4792
|
+
'currency'?: Currency;
|
4793
|
+
/**
|
4794
|
+
*
|
4795
|
+
* @type {boolean}
|
4796
|
+
* @memberof TenantConfingRequest
|
4797
|
+
*/
|
4798
|
+
'customDealAutoClaim'?: boolean;
|
4799
|
+
/**
|
4800
|
+
*
|
4801
|
+
* @type {LedgerConfigRequest}
|
4802
|
+
* @memberof TenantConfingRequest
|
4803
|
+
*/
|
4804
|
+
'ledger'?: LedgerConfigRequest;
|
4805
|
+
/**
|
4806
|
+
*
|
4807
|
+
* @type {PromotionConfigRequest}
|
4808
|
+
* @memberof TenantConfingRequest
|
4809
|
+
*/
|
4810
|
+
'promotion'?: PromotionConfigRequest;
|
4811
|
+
/**
|
4812
|
+
*
|
4813
|
+
* @type {FeatureFlagsRequest}
|
4814
|
+
* @memberof TenantConfingRequest
|
4815
|
+
*/
|
4816
|
+
'featureFlags'?: FeatureFlagsRequest;
|
4817
|
+
/**
|
4818
|
+
*
|
4819
|
+
* @type {NotificationConfigRequest}
|
4820
|
+
* @memberof TenantConfingRequest
|
4821
|
+
*/
|
4822
|
+
'notifications'?: NotificationConfigRequest;
|
4823
|
+
/**
|
4824
|
+
*
|
4825
|
+
* @type {IntegrationsConfigRequest}
|
4826
|
+
* @memberof TenantConfingRequest
|
4827
|
+
*/
|
4828
|
+
'integrations'?: IntegrationsConfigRequest;
|
4829
|
+
/**
|
4830
|
+
*
|
4831
|
+
* @type {BrandingConfigRequest}
|
4832
|
+
* @memberof TenantConfingRequest
|
4833
|
+
*/
|
4834
|
+
'branding'?: BrandingConfigRequest;
|
4835
|
+
/**
|
4836
|
+
*
|
4837
|
+
* @type {AuthorizationConfigRequest}
|
4838
|
+
* @memberof TenantConfingRequest
|
4839
|
+
*/
|
4840
|
+
'auth'?: AuthorizationConfigRequest;
|
4841
|
+
}
|
4842
|
+
/**
|
4843
|
+
*
|
4844
|
+
* @export
|
4845
|
+
* @interface TenantRequest
|
4846
|
+
*/
|
4847
|
+
export interface TenantRequest {
|
4848
|
+
/**
|
4849
|
+
*
|
4850
|
+
* @type {string}
|
4851
|
+
* @memberof TenantRequest
|
4852
|
+
*/
|
4853
|
+
'id': string;
|
4854
|
+
/**
|
4855
|
+
*
|
4856
|
+
* @type {string}
|
4857
|
+
* @memberof TenantRequest
|
4858
|
+
*/
|
4859
|
+
'name'?: string;
|
4138
4860
|
/**
|
4139
4861
|
*
|
4140
4862
|
* @type {string}
|
4141
|
-
* @memberof
|
4863
|
+
* @memberof TenantRequest
|
4142
4864
|
*/
|
4143
|
-
'
|
4865
|
+
'adminKeyConfig'?: string;
|
4144
4866
|
/**
|
4145
4867
|
*
|
4146
4868
|
* @type {string}
|
4147
|
-
* @memberof
|
4869
|
+
* @memberof TenantRequest
|
4148
4870
|
*/
|
4149
|
-
'
|
4871
|
+
'adminIssuer'?: string;
|
4150
4872
|
/**
|
4151
4873
|
*
|
4152
4874
|
* @type {string}
|
4153
|
-
* @memberof
|
4875
|
+
* @memberof TenantRequest
|
4154
4876
|
*/
|
4155
|
-
'
|
4877
|
+
'customerOpenIDKeyConfig'?: string;
|
4156
4878
|
/**
|
4157
4879
|
*
|
4158
4880
|
* @type {string}
|
4159
|
-
* @memberof
|
4881
|
+
* @memberof TenantRequest
|
4160
4882
|
*/
|
4161
|
-
'
|
4883
|
+
'customerOpenIDIssuer'?: string;
|
4162
4884
|
/**
|
4163
4885
|
*
|
4164
|
-
* @type {
|
4165
|
-
* @memberof
|
4886
|
+
* @type {string}
|
4887
|
+
* @memberof TenantRequest
|
4166
4888
|
*/
|
4167
|
-
'
|
4889
|
+
'customerOpenIDClientID'?: string;
|
4168
4890
|
/**
|
4169
4891
|
*
|
4170
4892
|
* @type {string}
|
4171
|
-
* @memberof
|
4893
|
+
* @memberof TenantRequest
|
4172
4894
|
*/
|
4173
|
-
'
|
4895
|
+
'customerOpenIDMetadataURL'?: string;
|
4174
4896
|
/**
|
4175
4897
|
*
|
4176
|
-
* @type {
|
4177
|
-
* @memberof
|
4898
|
+
* @type {{ [key: string]: string; }}
|
4899
|
+
* @memberof TenantRequest
|
4178
4900
|
*/
|
4179
|
-
'
|
4901
|
+
'customerOpenIDParameters'?: {
|
4902
|
+
[key: string]: string;
|
4903
|
+
};
|
4180
4904
|
/**
|
4181
4905
|
*
|
4182
|
-
* @type {
|
4183
|
-
* @memberof
|
4906
|
+
* @type {string}
|
4907
|
+
* @memberof TenantRequest
|
4184
4908
|
*/
|
4185
|
-
'
|
4909
|
+
'ppURL'?: string;
|
4186
4910
|
/**
|
4187
4911
|
*
|
4188
|
-
* @type {
|
4189
|
-
* @memberof
|
4912
|
+
* @type {string}
|
4913
|
+
* @memberof TenantRequest
|
4190
4914
|
*/
|
4191
|
-
'
|
4915
|
+
'tcURL'?: string;
|
4192
4916
|
/**
|
4193
4917
|
*
|
4194
|
-
* @type {
|
4195
|
-
* @memberof
|
4918
|
+
* @type {string}
|
4919
|
+
* @memberof TenantRequest
|
4196
4920
|
*/
|
4197
|
-
'
|
4921
|
+
'cookiesURL'?: string;
|
4198
4922
|
/**
|
4199
4923
|
*
|
4200
|
-
* @type {
|
4201
|
-
* @memberof
|
4924
|
+
* @type {string}
|
4925
|
+
* @memberof TenantRequest
|
4202
4926
|
*/
|
4203
|
-
'
|
4927
|
+
'azureEntraTenantID'?: string;
|
4204
4928
|
/**
|
4205
4929
|
*
|
4206
|
-
* @type {
|
4207
|
-
* @memberof
|
4930
|
+
* @type {string}
|
4931
|
+
* @memberof TenantRequest
|
4208
4932
|
*/
|
4209
|
-
'
|
4933
|
+
'azureEntraClientID'?: string;
|
4210
4934
|
/**
|
4211
4935
|
*
|
4212
|
-
* @type {
|
4213
|
-
* @memberof
|
4936
|
+
* @type {Locale}
|
4937
|
+
* @memberof TenantRequest
|
4214
4938
|
*/
|
4215
|
-
'
|
4939
|
+
'locale'?: Locale;
|
4216
4940
|
/**
|
4217
4941
|
*
|
4218
|
-
* @type {
|
4219
|
-
* @memberof
|
4942
|
+
* @type {string}
|
4943
|
+
* @memberof TenantRequest
|
4220
4944
|
*/
|
4221
|
-
'
|
4945
|
+
'announcement'?: string;
|
4222
4946
|
/**
|
4223
4947
|
*
|
4224
|
-
* @type {
|
4225
|
-
* @memberof
|
4948
|
+
* @type {Currency}
|
4949
|
+
* @memberof TenantRequest
|
4226
4950
|
*/
|
4227
|
-
'
|
4951
|
+
'currency'?: Currency;
|
4228
4952
|
}
|
4229
4953
|
/**
|
4230
4954
|
*
|
@@ -5867,11 +6591,11 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
|
|
5867
6591
|
/**
|
5868
6592
|
* Create or update backoffice configuration for the current tenant
|
5869
6593
|
* @summary Create configuration
|
5870
|
-
* @param {
|
6594
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5871
6595
|
* @param {*} [options] Override http request option.
|
5872
6596
|
* @throws {RequiredError}
|
5873
6597
|
*/
|
5874
|
-
createV2Configuration: (
|
6598
|
+
createV2Configuration: (tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5875
6599
|
/**
|
5876
6600
|
* List backoffice configurations for the current tenant
|
5877
6601
|
* @summary List configurations
|
@@ -5925,11 +6649,11 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
|
|
5925
6649
|
/**
|
5926
6650
|
* Create or update backoffice configuration for the current tenant
|
5927
6651
|
* @summary Create configuration
|
5928
|
-
* @param {
|
6652
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5929
6653
|
* @param {*} [options] Override http request option.
|
5930
6654
|
* @throws {RequiredError}
|
5931
6655
|
*/
|
5932
|
-
createV2Configuration(
|
6656
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
5933
6657
|
/**
|
5934
6658
|
* List backoffice configurations for the current tenant
|
5935
6659
|
* @summary List configurations
|
@@ -5983,11 +6707,11 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
|
|
5983
6707
|
/**
|
5984
6708
|
* Create or update backoffice configuration for the current tenant
|
5985
6709
|
* @summary Create configuration
|
5986
|
-
* @param {
|
6710
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
5987
6711
|
* @param {*} [options] Override http request option.
|
5988
6712
|
* @throws {RequiredError}
|
5989
6713
|
*/
|
5990
|
-
createV2Configuration(
|
6714
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: any): AxiosPromise<void>;
|
5991
6715
|
/**
|
5992
6716
|
* List backoffice configurations for the current tenant
|
5993
6717
|
* @summary List configurations
|
@@ -6044,12 +6768,12 @@ export declare class ConfigurationsApi extends BaseAPI {
|
|
6044
6768
|
/**
|
6045
6769
|
* Create or update backoffice configuration for the current tenant
|
6046
6770
|
* @summary Create configuration
|
6047
|
-
* @param {
|
6771
|
+
* @param {TenantConfingRequest} tenantConfingRequest Configuration data
|
6048
6772
|
* @param {*} [options] Override http request option.
|
6049
6773
|
* @throws {RequiredError}
|
6050
6774
|
* @memberof ConfigurationsApi
|
6051
6775
|
*/
|
6052
|
-
createV2Configuration(
|
6776
|
+
createV2Configuration(tenantConfingRequest: TenantConfingRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6053
6777
|
/**
|
6054
6778
|
* List backoffice configurations for the current tenant
|
6055
6779
|
* @summary List configurations
|
@@ -6285,6 +7009,15 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
|
|
6285
7009
|
* @throws {RequiredError}
|
6286
7010
|
*/
|
6287
7011
|
importEvents: (eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7012
|
+
/**
|
7013
|
+
* Search events
|
7014
|
+
* @summary Search events
|
7015
|
+
* @param {string} reference Reference ID
|
7016
|
+
* @param {string} [nextToken] This is the pagination token
|
7017
|
+
* @param {*} [options] Override http request option.
|
7018
|
+
* @throws {RequiredError}
|
7019
|
+
*/
|
7020
|
+
searchEvents: (reference: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6288
7021
|
};
|
6289
7022
|
/**
|
6290
7023
|
* EventsApi - functional programming interface
|
@@ -6299,6 +7032,15 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
6299
7032
|
* @throws {RequiredError}
|
6300
7033
|
*/
|
6301
7034
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
7035
|
+
/**
|
7036
|
+
* Search events
|
7037
|
+
* @summary Search events
|
7038
|
+
* @param {string} reference Reference ID
|
7039
|
+
* @param {string} [nextToken] This is the pagination token
|
7040
|
+
* @param {*} [options] Override http request option.
|
7041
|
+
* @throws {RequiredError}
|
7042
|
+
*/
|
7043
|
+
searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventsResponse>>;
|
6302
7044
|
};
|
6303
7045
|
/**
|
6304
7046
|
* EventsApi - factory interface
|
@@ -6313,6 +7055,15 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
6313
7055
|
* @throws {RequiredError}
|
6314
7056
|
*/
|
6315
7057
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: any): AxiosPromise<void>;
|
7058
|
+
/**
|
7059
|
+
* Search events
|
7060
|
+
* @summary Search events
|
7061
|
+
* @param {string} reference Reference ID
|
7062
|
+
* @param {string} [nextToken] This is the pagination token
|
7063
|
+
* @param {*} [options] Override http request option.
|
7064
|
+
* @throws {RequiredError}
|
7065
|
+
*/
|
7066
|
+
searchEvents(reference: string, nextToken?: string, options?: any): AxiosPromise<EventsResponse>;
|
6316
7067
|
};
|
6317
7068
|
/**
|
6318
7069
|
* EventsApi - object-oriented interface
|
@@ -6330,6 +7081,16 @@ export declare class EventsApi extends BaseAPI {
|
|
6330
7081
|
* @memberof EventsApi
|
6331
7082
|
*/
|
6332
7083
|
importEvents(eventCreationRequest: Array<EventCreationRequest>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
7084
|
+
/**
|
7085
|
+
* Search events
|
7086
|
+
* @summary Search events
|
7087
|
+
* @param {string} reference Reference ID
|
7088
|
+
* @param {string} [nextToken] This is the pagination token
|
7089
|
+
* @param {*} [options] Override http request option.
|
7090
|
+
* @throws {RequiredError}
|
7091
|
+
* @memberof EventsApi
|
7092
|
+
*/
|
7093
|
+
searchEvents(reference: string, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EventsResponse, any>>;
|
6333
7094
|
}
|
6334
7095
|
/**
|
6335
7096
|
* IntegrationsApi - axios parameter creator
|
@@ -6452,94 +7213,6 @@ export declare class IntegrationsApi extends BaseAPI {
|
|
6452
7213
|
*/
|
6453
7214
|
setWebhook(webhook: Webhook, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6454
7215
|
}
|
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
7216
|
/**
|
6544
7217
|
* NotificationsApi - axios parameter creator
|
6545
7218
|
* @export
|
@@ -6568,6 +7241,13 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6568
7241
|
* @throws {RequiredError}
|
6569
7242
|
*/
|
6570
7243
|
getPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7244
|
+
/**
|
7245
|
+
* Get preferences for the authenticated user
|
7246
|
+
* @summary Get preferences
|
7247
|
+
* @param {*} [options] Override http request option.
|
7248
|
+
* @throws {RequiredError}
|
7249
|
+
*/
|
7250
|
+
getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6571
7251
|
/**
|
6572
7252
|
* Get notification preferences for the authenticated user
|
6573
7253
|
* @summary Get notification preferences
|
@@ -6600,6 +7280,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
6600
7280
|
* @throws {RequiredError}
|
6601
7281
|
*/
|
6602
7282
|
updatePreferences: (preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7283
|
+
/**
|
7284
|
+
* Update preferences for the authenticated user
|
7285
|
+
* @summary Update preferences
|
7286
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7287
|
+
* @param {*} [options] Override http request option.
|
7288
|
+
* @throws {RequiredError}
|
7289
|
+
*/
|
7290
|
+
updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6603
7291
|
/**
|
6604
7292
|
* Update notification preferences for the authenticated user
|
6605
7293
|
* @summary Update notification preferences
|
@@ -6637,6 +7325,13 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6637
7325
|
* @throws {RequiredError}
|
6638
7326
|
*/
|
6639
7327
|
getPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Preferences>>;
|
7328
|
+
/**
|
7329
|
+
* Get preferences for the authenticated user
|
7330
|
+
* @summary Get preferences
|
7331
|
+
* @param {*} [options] Override http request option.
|
7332
|
+
* @throws {RequiredError}
|
7333
|
+
*/
|
7334
|
+
getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
|
6640
7335
|
/**
|
6641
7336
|
* Get notification preferences for the authenticated user
|
6642
7337
|
* @summary Get notification preferences
|
@@ -6669,6 +7364,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
6669
7364
|
* @throws {RequiredError}
|
6670
7365
|
*/
|
6671
7366
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
7367
|
+
/**
|
7368
|
+
* Update preferences for the authenticated user
|
7369
|
+
* @summary Update preferences
|
7370
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7371
|
+
* @param {*} [options] Override http request option.
|
7372
|
+
* @throws {RequiredError}
|
7373
|
+
*/
|
7374
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
6672
7375
|
/**
|
6673
7376
|
* Update notification preferences for the authenticated user
|
6674
7377
|
* @summary Update notification preferences
|
@@ -6706,6 +7409,13 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6706
7409
|
* @throws {RequiredError}
|
6707
7410
|
*/
|
6708
7411
|
getPreferences(options?: any): AxiosPromise<Preferences>;
|
7412
|
+
/**
|
7413
|
+
* Get preferences for the authenticated user
|
7414
|
+
* @summary Get preferences
|
7415
|
+
* @param {*} [options] Override http request option.
|
7416
|
+
* @throws {RequiredError}
|
7417
|
+
*/
|
7418
|
+
getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
|
6709
7419
|
/**
|
6710
7420
|
* Get notification preferences for the authenticated user
|
6711
7421
|
* @summary Get notification preferences
|
@@ -6738,6 +7448,14 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
6738
7448
|
* @throws {RequiredError}
|
6739
7449
|
*/
|
6740
7450
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: any): AxiosPromise<void>;
|
7451
|
+
/**
|
7452
|
+
* Update preferences for the authenticated user
|
7453
|
+
* @summary Update preferences
|
7454
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7455
|
+
* @param {*} [options] Override http request option.
|
7456
|
+
* @throws {RequiredError}
|
7457
|
+
*/
|
7458
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
|
6741
7459
|
/**
|
6742
7460
|
* Update notification preferences for the authenticated user
|
6743
7461
|
* @summary Update notification preferences
|
@@ -6780,6 +7498,14 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6780
7498
|
* @memberof NotificationsApi
|
6781
7499
|
*/
|
6782
7500
|
getPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Preferences, any>>;
|
7501
|
+
/**
|
7502
|
+
* Get preferences for the authenticated user
|
7503
|
+
* @summary Get preferences
|
7504
|
+
* @param {*} [options] Override http request option.
|
7505
|
+
* @throws {RequiredError}
|
7506
|
+
* @memberof NotificationsApi
|
7507
|
+
*/
|
7508
|
+
getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
|
6783
7509
|
/**
|
6784
7510
|
* Get notification preferences for the authenticated user
|
6785
7511
|
* @summary Get notification preferences
|
@@ -6816,6 +7542,15 @@ export declare class NotificationsApi extends BaseAPI {
|
|
6816
7542
|
* @memberof NotificationsApi
|
6817
7543
|
*/
|
6818
7544
|
updatePreferences(preferencesRequest: PreferencesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
7545
|
+
/**
|
7546
|
+
* Update preferences for the authenticated user
|
7547
|
+
* @summary Update preferences
|
7548
|
+
* @param {Array<NotificationPreference>} notificationPreference notification preferences
|
7549
|
+
* @param {*} [options] Override http request option.
|
7550
|
+
* @throws {RequiredError}
|
7551
|
+
* @memberof NotificationsApi
|
7552
|
+
*/
|
7553
|
+
updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
6819
7554
|
/**
|
6820
7555
|
* Update notification preferences for the authenticated user
|
6821
7556
|
* @summary Update notification preferences
|
@@ -6863,6 +7598,15 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
6863
7598
|
* @throws {RequiredError}
|
6864
7599
|
*/
|
6865
7600
|
getUserOrder: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7601
|
+
/**
|
7602
|
+
* List order events
|
7603
|
+
* @summary List order events
|
7604
|
+
* @param {string} [orderId] Order ID
|
7605
|
+
* @param {string} [nextToken] This is the pagination token
|
7606
|
+
* @param {*} [options] Override http request option.
|
7607
|
+
* @throws {RequiredError}
|
7608
|
+
*/
|
7609
|
+
listOrderEvents: (orderId?: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6866
7610
|
/**
|
6867
7611
|
* List orders for the users/clients visible to the authenticated system user. Returns a paginated list of orders. Can be filtered by nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source.
|
6868
7612
|
* @summary List orders
|
@@ -6932,6 +7676,15 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
6932
7676
|
* @throws {RequiredError}
|
6933
7677
|
*/
|
6934
7678
|
getUserOrder(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOrder>>;
|
7679
|
+
/**
|
7680
|
+
* List order events
|
7681
|
+
* @summary List order events
|
7682
|
+
* @param {string} [orderId] Order ID
|
7683
|
+
* @param {string} [nextToken] This is the pagination token
|
7684
|
+
* @param {*} [options] Override http request option.
|
7685
|
+
* @throws {RequiredError}
|
7686
|
+
*/
|
7687
|
+
listOrderEvents(orderId?: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderEventListResponse>>;
|
6935
7688
|
/**
|
6936
7689
|
* List orders for the users/clients visible to the authenticated system user. Returns a paginated list of orders. Can be filtered by nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source.
|
6937
7690
|
* @summary List orders
|
@@ -7001,6 +7754,15 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
7001
7754
|
* @throws {RequiredError}
|
7002
7755
|
*/
|
7003
7756
|
getUserOrder(id: string, options?: any): AxiosPromise<UserOrder>;
|
7757
|
+
/**
|
7758
|
+
* List order events
|
7759
|
+
* @summary List order events
|
7760
|
+
* @param {string} [orderId] Order ID
|
7761
|
+
* @param {string} [nextToken] This is the pagination token
|
7762
|
+
* @param {*} [options] Override http request option.
|
7763
|
+
* @throws {RequiredError}
|
7764
|
+
*/
|
7765
|
+
listOrderEvents(orderId?: string, nextToken?: string, options?: any): AxiosPromise<OrderEventListResponse>;
|
7004
7766
|
/**
|
7005
7767
|
* List orders for the users/clients visible to the authenticated system user. Returns a paginated list of orders. Can be filtered by nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source.
|
7006
7768
|
* @summary List orders
|
@@ -7076,6 +7838,16 @@ export declare class OrdersApi extends BaseAPI {
|
|
7076
7838
|
* @memberof OrdersApi
|
7077
7839
|
*/
|
7078
7840
|
getUserOrder(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOrder, any>>;
|
7841
|
+
/**
|
7842
|
+
* List order events
|
7843
|
+
* @summary List order events
|
7844
|
+
* @param {string} [orderId] Order ID
|
7845
|
+
* @param {string} [nextToken] This is the pagination token
|
7846
|
+
* @param {*} [options] Override http request option.
|
7847
|
+
* @throws {RequiredError}
|
7848
|
+
* @memberof OrdersApi
|
7849
|
+
*/
|
7850
|
+
listOrderEvents(orderId?: string, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderEventListResponse, any>>;
|
7079
7851
|
/**
|
7080
7852
|
* List orders for the users/clients visible to the authenticated system user. Returns a paginated list of orders. Can be filtered by nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source.
|
7081
7853
|
* @summary List orders
|
@@ -8304,6 +9076,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
8304
9076
|
* @throws {RequiredError}
|
8305
9077
|
*/
|
8306
9078
|
generateReport: (type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
9079
|
+
/**
|
9080
|
+
* Get signed access URL for report
|
9081
|
+
* @summary Get signed access URL for report
|
9082
|
+
* @param {*} [options] Override http request option.
|
9083
|
+
* @throws {RequiredError}
|
9084
|
+
*/
|
9085
|
+
getReportUrl: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8307
9086
|
/**
|
8308
9087
|
* List all supported report types, which can be generated by the user
|
8309
9088
|
* @summary List report types
|
@@ -8334,6 +9113,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
8334
9113
|
* @throws {RequiredError}
|
8335
9114
|
*/
|
8336
9115
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportResponse>>;
|
9116
|
+
/**
|
9117
|
+
* Get signed access URL for report
|
9118
|
+
* @summary Get signed access URL for report
|
9119
|
+
* @param {*} [options] Override http request option.
|
9120
|
+
* @throws {RequiredError}
|
9121
|
+
*/
|
9122
|
+
getReportUrl(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportUrlResponse>>;
|
8337
9123
|
/**
|
8338
9124
|
* List all supported report types, which can be generated by the user
|
8339
9125
|
* @summary List report types
|
@@ -8364,6 +9150,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
8364
9150
|
* @throws {RequiredError}
|
8365
9151
|
*/
|
8366
9152
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: any): AxiosPromise<ReportResponse>;
|
9153
|
+
/**
|
9154
|
+
* Get signed access URL for report
|
9155
|
+
* @summary Get signed access URL for report
|
9156
|
+
* @param {*} [options] Override http request option.
|
9157
|
+
* @throws {RequiredError}
|
9158
|
+
*/
|
9159
|
+
getReportUrl(options?: any): AxiosPromise<ReportUrlResponse>;
|
8367
9160
|
/**
|
8368
9161
|
* List all supported report types, which can be generated by the user
|
8369
9162
|
* @summary List report types
|
@@ -8397,6 +9190,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
8397
9190
|
* @memberof ReportsApi
|
8398
9191
|
*/
|
8399
9192
|
generateReport(type: string, reportCreationRequest?: ReportCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any>>;
|
9193
|
+
/**
|
9194
|
+
* Get signed access URL for report
|
9195
|
+
* @summary Get signed access URL for report
|
9196
|
+
* @param {*} [options] Override http request option.
|
9197
|
+
* @throws {RequiredError}
|
9198
|
+
* @memberof ReportsApi
|
9199
|
+
*/
|
9200
|
+
getReportUrl(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportUrlResponse, any>>;
|
8400
9201
|
/**
|
8401
9202
|
* List all supported report types, which can be generated by the user
|
8402
9203
|
* @summary List report types
|