flexinet-api 0.0.2222-prerelease0-dev → 0.0.2224-prerelease0-dev

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/esm/api.d.ts CHANGED
@@ -177,10 +177,54 @@ export interface BackofficeConfig {
177
177
  'notificationPreferences'?: Array<NotificationPreference>;
178
178
  /**
179
179
  *
180
- * @type {PromotionConfig}
180
+ * @type {BackofficeConfigPromotionConfig}
181
181
  * @memberof BackofficeConfig
182
182
  */
183
- 'promotionConfig'?: PromotionConfig;
183
+ 'promotionConfig'?: BackofficeConfigPromotionConfig;
184
+ }
185
+ /**
186
+ *
187
+ * @export
188
+ * @interface BackofficeConfigPromotionConfig
189
+ */
190
+ export interface BackofficeConfigPromotionConfig {
191
+ /**
192
+ *
193
+ * @type {number}
194
+ * @memberof BackofficeConfigPromotionConfig
195
+ */
196
+ 'adminClaimGracePeriod'?: number;
197
+ /**
198
+ *
199
+ * @type {number}
200
+ * @memberof BackofficeConfigPromotionConfig
201
+ */
202
+ 'userClaimGracePeriod'?: number;
203
+ /**
204
+ *
205
+ * @type {number}
206
+ * @memberof BackofficeConfigPromotionConfig
207
+ */
208
+ 'refundLapsePeriod'?: number;
209
+ }
210
+ /**
211
+ *
212
+ * @export
213
+ * @interface BackofficeConfigUpdateRequest
214
+ */
215
+ export interface BackofficeConfigUpdateRequest {
216
+ /**
217
+ *
218
+ * @type {NotificationEmailAddress}
219
+ * @memberof BackofficeConfigUpdateRequest
220
+ */
221
+ 'notificationEmailConfig'?: NotificationEmailAddress;
222
+ /**
223
+ *
224
+ * @type {Array<NotificationPreference>}
225
+ * @memberof BackofficeConfigUpdateRequest
226
+ */
227
+ 'notificationPreferences'?: Array<NotificationPreference>;
184
228
  }
185
229
  /**
186
230
  *
@@ -854,6 +898,18 @@ export declare const Condition: {
854
898
  readonly Contains: "contains";
855
899
  };
856
900
  export type Condition = typeof Condition[keyof typeof Condition];
901
+ /**
902
+ *
903
+ * @export
904
+ * @enum {string}
905
+ */
906
+ export declare const Currency: {
907
+ readonly Eur: "EUR";
908
+ readonly Huf: "HUF";
909
+ readonly Ron: "RON";
910
+ readonly Usd: "USD";
911
+ };
912
+ export type Currency = typeof Currency[keyof typeof Currency];
857
913
  /**
858
914
  *
859
915
  * @export
@@ -1000,6 +1056,27 @@ export declare const Feature: {
1000
1056
  readonly OrderStatusPolling: "order_status_polling";
1001
1057
  };
1002
1058
  export type Feature = typeof Feature[keyof typeof Feature];
1059
+ /**
1060
+ *
1061
+ * @export
1062
+ * @interface FeatureFlags
1063
+ */
1064
+ export interface FeatureFlags {
1065
+ /**
1066
+ *
1067
+ * @type {boolean}
1068
+ * @memberof FeatureFlags
1069
+ */
1070
+ 'enforce': boolean;
1071
+ /**
1072
+ *
1073
+ * @type {{ [key: string]: boolean; }}
1074
+ * @memberof FeatureFlags
1075
+ */
1076
+ 'features': {
1077
+ [key: string]: boolean;
1078
+ };
1079
+ }
1003
1080
  /**
1004
1081
  *
1005
1082
  * @export
@@ -1013,6 +1090,67 @@ export interface FeaturesResponse {
1013
1090
  */
1014
1091
  'features': Array<Feature>;
1015
1092
  }
1093
+ /**
1094
+ *
1095
+ * @export
1096
+ * @interface IntegrationsConfig
1097
+ */
1098
+ export interface IntegrationsConfig {
1099
+ /**
1100
+ *
1101
+ * @type {string}
1102
+ * @memberof IntegrationsConfig
1103
+ */
1104
+ 'userInfoURL': string;
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof IntegrationsConfig
1109
+ */
1110
+ 'productInventoryURL': string;
1111
+ /**
1112
+ *
1113
+ * @type {string}
1114
+ * @memberof IntegrationsConfig
1115
+ */
1116
+ 'orderStatusURL': string;
1117
+ /**
1118
+ *
1119
+ * @type {boolean}
1120
+ * @memberof IntegrationsConfig
1121
+ */
1122
+ 'useOrderEventsExternalID': boolean;
1123
+ /**
1124
+ *
1125
+ * @type {string}
1126
+ * @memberof IntegrationsConfig
1127
+ */
1128
+ 'smsURL': string;
1129
+ /**
1130
+ *
1131
+ * @type {string}
1132
+ * @memberof IntegrationsConfig
1133
+ */
1134
+ 'smsKey': string;
1135
+ /**
1136
+ *
1137
+ * @type {string}
1138
+ * @memberof IntegrationsConfig
1139
+ */
1140
+ 'authEndpoint': string;
1141
+ /**
1142
+ *
1143
+ * @type {string}
1144
+ * @memberof IntegrationsConfig
1145
+ */
1146
+ 'authClientID': string;
1147
+ /**
1148
+ *
1149
+ * @type {string}
1150
+ * @memberof IntegrationsConfig
1151
+ */
1152
+ 'authClientSecretName': string;
1153
+ }
1016
1154
  /**
1017
1155
  *
1018
1156
  * @export
@@ -1032,6 +1170,33 @@ export interface Item {
1032
1170
  */
1033
1171
  'product': Product;
1034
1172
  }
1173
+ /**
1174
+ *
1175
+ * @export
1176
+ * @interface LedgerConfig
1177
+ */
1178
+ export interface LedgerConfig {
1179
+ /**
1180
+ *
1181
+ * @type {number}
1182
+ * @memberof LedgerConfig
1183
+ */
1184
+ 'balanceGracePeriod'?: number;
1185
+ /**
1186
+ *
1187
+ * @type {number}
1188
+ * @memberof LedgerConfig
1189
+ */
1190
+ 'maxManagerOrderValue': number;
1191
+ /**
1192
+ *
1193
+ * @type {{ [key: string]: string; }}
1194
+ * @memberof LedgerConfig
1195
+ */
1196
+ 'expiry': {
1197
+ [key: string]: string;
1198
+ };
1199
+ }
1035
1200
  /**
1036
1201
  *
1037
1202
  * @export
@@ -1318,6 +1483,51 @@ export declare const NotificationChannel: {
1318
1483
  readonly Sms: "sms";
1319
1484
  };
1320
1485
  export type NotificationChannel = typeof NotificationChannel[keyof typeof NotificationChannel];
1486
+ /**
1487
+ *
1488
+ * @export
1489
+ * @interface NotificationConfig
1490
+ */
1491
+ export interface NotificationConfig {
1492
+ /**
1493
+ *
1494
+ * @type {Array<string>}
1495
+ * @memberof NotificationConfig
1496
+ */
1497
+ 'emails': Array<string>;
1498
+ /**
1499
+ *
1500
+ * @type {Array<NotificationPreference>}
1501
+ * @memberof NotificationConfig
1502
+ */
1503
+ 'preferences'?: Array<NotificationPreference>;
1504
+ /**
1505
+ *
1506
+ * @type {{ [key: string]: NotificationTemplateConfig; }}
1507
+ * @memberof NotificationConfig
1508
+ */
1509
+ 'templates': {
1510
+ [key: string]: NotificationTemplateConfig;
1511
+ };
1512
+ /**
1513
+ *
1514
+ * @type {string}
1515
+ * @memberof NotificationConfig
1516
+ */
1517
+ 'customerWebappHostname'?: string;
1518
+ /**
1519
+ *
1520
+ * @type {string}
1521
+ * @memberof NotificationConfig
1522
+ */
1523
+ 'adminWebappHostname'?: string;
1524
+ /**
1525
+ *
1526
+ * @type {string}
1527
+ * @memberof NotificationConfig
1528
+ */
1529
+ 'templateDir'?: string;
1530
+ }
1321
1531
  /**
1322
1532
  *
1323
1533
  * @export
@@ -1424,6 +1634,25 @@ export declare const NotificationStatus: {
1424
1634
  readonly Read: "read";
1425
1635
  };
1426
1636
  export type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
1637
+ /**
1638
+ *
1639
+ * @export
1640
+ * @interface NotificationTemplateConfig
1641
+ */
1642
+ export interface NotificationTemplateConfig {
1643
+ /**
1644
+ *
1645
+ * @type {string}
1646
+ * @memberof NotificationTemplateConfig
1647
+ */
1648
+ 'plainTextFile': string;
1649
+ /**
1650
+ *
1651
+ * @type {string}
1652
+ * @memberof NotificationTemplateConfig
1653
+ */
1654
+ 'htmlFile': string;
1655
+ }
1427
1656
  /**
1428
1657
  *
1429
1658
  * @export
@@ -2559,6 +2788,24 @@ export interface PromotionConfig {
2559
2788
  * @memberof PromotionConfig
2560
2789
  */
2561
2790
  'refundLapsePeriod'?: number;
2791
+ /**
2792
+ *
2793
+ * @type {number}
2794
+ * @memberof PromotionConfig
2795
+ */
2796
+ 'customDealMinDuration'?: number;
2797
+ /**
2798
+ *
2799
+ * @type {number}
2800
+ * @memberof PromotionConfig
2801
+ */
2802
+ 'customDealMinTargetValue'?: number;
2803
+ /**
2804
+ *
2805
+ * @type {number}
2806
+ * @memberof PromotionConfig
2807
+ */
2808
+ 'customDealRefundWindow'?: number;
2562
2809
  }
2563
2810
  /**
2564
2811
  *
@@ -3585,6 +3832,12 @@ export interface Tenant {
3585
3832
  * @memberof Tenant
3586
3833
  */
3587
3834
  'id': string;
3835
+ /**
3836
+ *
3837
+ * @type {string}
3838
+ * @memberof Tenant
3839
+ */
3840
+ 'name': string;
3588
3841
  /**
3589
3842
  *
3590
3843
  * @type {string}
@@ -3671,6 +3924,159 @@ export interface Tenant {
3671
3924
  * @memberof Tenant
3672
3925
  */
3673
3926
  'announcement'?: string;
3927
+ /**
3928
+ *
3929
+ * @type {Currency}
3930
+ * @memberof Tenant
3931
+ */
3932
+ 'currency': Currency;
3933
+ }
3934
+ /**
3935
+ *
3936
+ * @export
3937
+ * @interface TenantConfing
3938
+ */
3939
+ export interface TenantConfing {
3940
+ /**
3941
+ *
3942
+ * @type {string}
3943
+ * @memberof TenantConfing
3944
+ */
3945
+ 'id': string;
3946
+ /**
3947
+ *
3948
+ * @type {string}
3949
+ * @memberof TenantConfing
3950
+ */
3951
+ 'name': string;
3952
+ /**
3953
+ *
3954
+ * @type {string}
3955
+ * @memberof TenantConfing
3956
+ */
3957
+ 'adminKeyConfig': string;
3958
+ /**
3959
+ *
3960
+ * @type {string}
3961
+ * @memberof TenantConfing
3962
+ */
3963
+ 'adminIssuer': string;
3964
+ /**
3965
+ *
3966
+ * @type {string}
3967
+ * @memberof TenantConfing
3968
+ */
3969
+ 'customerOpenIDKeyConfig': string;
3970
+ /**
3971
+ *
3972
+ * @type {string}
3973
+ * @memberof TenantConfing
3974
+ */
3975
+ 'customerOpenIDIssuer': string;
3976
+ /**
3977
+ *
3978
+ * @type {string}
3979
+ * @memberof TenantConfing
3980
+ */
3981
+ 'customerOpenIDClientID': string;
3982
+ /**
3983
+ *
3984
+ * @type {string}
3985
+ * @memberof TenantConfing
3986
+ */
3987
+ 'customerOpenIDMetadataURL': string;
3988
+ /**
3989
+ *
3990
+ * @type {{ [key: string]: string; }}
3991
+ * @memberof TenantConfing
3992
+ */
3993
+ 'customerOpenIDParameters'?: {
3994
+ [key: string]: string;
3995
+ };
3996
+ /**
3997
+ *
3998
+ * @type {string}
3999
+ * @memberof TenantConfing
4000
+ */
4001
+ 'ppURL': string;
4002
+ /**
4003
+ *
4004
+ * @type {string}
4005
+ * @memberof TenantConfing
4006
+ */
4007
+ 'tcURL': string;
4008
+ /**
4009
+ *
4010
+ * @type {string}
4011
+ * @memberof TenantConfing
4012
+ */
4013
+ 'cookiesURL'?: string;
4014
+ /**
4015
+ *
4016
+ * @type {string}
4017
+ * @memberof TenantConfing
4018
+ */
4019
+ 'azureEntraTenantID': string;
4020
+ /**
4021
+ *
4022
+ * @type {string}
4023
+ * @memberof TenantConfing
4024
+ */
4025
+ 'azureEntraClientID': string;
4026
+ /**
4027
+ *
4028
+ * @type {Locale}
4029
+ * @memberof TenantConfing
4030
+ */
4031
+ 'locale': Locale;
4032
+ /**
4033
+ *
4034
+ * @type {string}
4035
+ * @memberof TenantConfing
4036
+ */
4037
+ 'announcement'?: string;
4038
+ /**
4039
+ *
4040
+ * @type {Currency}
4041
+ * @memberof TenantConfing
4042
+ */
4043
+ 'currency': Currency;
4044
+ /**
4045
+ *
4046
+ * @type {boolean}
4047
+ * @memberof TenantConfing
4048
+ */
4049
+ 'customDealAutoClaim': boolean;
4050
+ /**
4051
+ *
4052
+ * @type {LedgerConfig}
4053
+ * @memberof TenantConfing
4054
+ */
4055
+ 'ledger': LedgerConfig;
4056
+ /**
4057
+ *
4058
+ * @type {PromotionConfig}
4059
+ * @memberof TenantConfing
4060
+ */
4061
+ 'promotion': PromotionConfig;
4062
+ /**
4063
+ *
4064
+ * @type {FeatureFlags}
4065
+ * @memberof TenantConfing
4066
+ */
4067
+ 'featureFlags': FeatureFlags;
4068
+ /**
4069
+ *
4070
+ * @type {NotificationConfig}
4071
+ * @memberof TenantConfing
4072
+ */
4073
+ 'notifications': NotificationConfig;
4074
+ /**
4075
+ *
4076
+ * @type {IntegrationsConfig}
4077
+ * @memberof TenantConfing
4078
+ */
4079
+ 'integrations': IntegrationsConfig;
3674
4080
  }
3675
4081
  /**
3676
4082
  *
@@ -5305,11 +5711,19 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
5305
5711
  /**
5306
5712
  * Create or update backoffice configuration for the current tenant
5307
5713
  * @summary Create configuration
5308
- * @param {BackofficeConfig} backofficeConfig Configuration data
5714
+ * @param {BackofficeConfigUpdateRequest} backofficeConfigUpdateRequest Configuration data
5715
+ * @param {*} [options] Override http request option.
5716
+ * @throws {RequiredError}
5717
+ */
5718
+ createConfiguration: (backofficeConfigUpdateRequest: BackofficeConfigUpdateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5719
+ /**
5720
+ * Create or update backoffice configuration for the current tenant
5721
+ * @summary Create configuration
5722
+ * @param {TenantConfing} tenantConfing Configuration data
5309
5723
  * @param {*} [options] Override http request option.
5310
5724
  * @throws {RequiredError}
5311
5725
  */
5312
- createConfiguration: (backofficeConfig: BackofficeConfig, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5726
+ createV2Configuration: (tenantConfing: TenantConfing, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5313
5727
  /**
5314
5728
  * List backoffice configurations for the current tenant
5315
5729
  * @summary List configurations
@@ -5339,6 +5753,13 @@ export declare const ConfigurationsApiAxiosParamCreator: (configuration?: Config
5339
5753
  * @throws {RequiredError}
5340
5754
  */
5341
5755
  listUserFeatures: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
5756
+ /**
5757
+ * List backoffice configurations for the current tenant
5758
+ * @summary List configurations
5759
+ * @param {*} [options] Override http request option.
5760
+ * @throws {RequiredError}
5761
+ */
5762
+ listV2Configurations: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
5342
5763
  };
5343
5764
  /**
5344
5765
  * ConfigurationsApi - functional programming interface
@@ -5348,11 +5769,19 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
5348
5769
  /**
5349
5770
  * Create or update backoffice configuration for the current tenant
5350
5771
  * @summary Create configuration
5351
- * @param {BackofficeConfig} backofficeConfig Configuration data
5772
+ * @param {BackofficeConfigUpdateRequest} backofficeConfigUpdateRequest Configuration data
5352
5773
  * @param {*} [options] Override http request option.
5353
5774
  * @throws {RequiredError}
5354
5775
  */
5355
- createConfiguration(backofficeConfig: BackofficeConfig, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5776
+ createConfiguration(backofficeConfigUpdateRequest: BackofficeConfigUpdateRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5777
+ /**
5778
+ * Create or update backoffice configuration for the current tenant
5779
+ * @summary Create configuration
5780
+ * @param {TenantConfing} tenantConfing Configuration data
5781
+ * @param {*} [options] Override http request option.
5782
+ * @throws {RequiredError}
5783
+ */
5784
+ createV2Configuration(tenantConfing: TenantConfing, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5356
5785
  /**
5357
5786
  * List backoffice configurations for the current tenant
5358
5787
  * @summary List configurations
@@ -5382,6 +5811,13 @@ export declare const ConfigurationsApiFp: (configuration?: Configuration) => {
5382
5811
  * @throws {RequiredError}
5383
5812
  */
5384
5813
  listUserFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>>;
5814
+ /**
5815
+ * List backoffice configurations for the current tenant
5816
+ * @summary List configurations
5817
+ * @param {*} [options] Override http request option.
5818
+ * @throws {RequiredError}
5819
+ */
5820
+ listV2Configurations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfing>>;
5385
5821
  };
5386
5822
  /**
5387
5823
  * ConfigurationsApi - factory interface
@@ -5391,11 +5827,19 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
5391
5827
  /**
5392
5828
  * Create or update backoffice configuration for the current tenant
5393
5829
  * @summary Create configuration
5394
- * @param {BackofficeConfig} backofficeConfig Configuration data
5830
+ * @param {BackofficeConfigUpdateRequest} backofficeConfigUpdateRequest Configuration data
5831
+ * @param {*} [options] Override http request option.
5832
+ * @throws {RequiredError}
5833
+ */
5834
+ createConfiguration(backofficeConfigUpdateRequest: BackofficeConfigUpdateRequest, options?: any): AxiosPromise<void>;
5835
+ /**
5836
+ * Create or update backoffice configuration for the current tenant
5837
+ * @summary Create configuration
5838
+ * @param {TenantConfing} tenantConfing Configuration data
5395
5839
  * @param {*} [options] Override http request option.
5396
5840
  * @throws {RequiredError}
5397
5841
  */
5398
- createConfiguration(backofficeConfig: BackofficeConfig, options?: any): AxiosPromise<void>;
5842
+ createV2Configuration(tenantConfing: TenantConfing, options?: any): AxiosPromise<void>;
5399
5843
  /**
5400
5844
  * List backoffice configurations for the current tenant
5401
5845
  * @summary List configurations
@@ -5425,6 +5869,13 @@ export declare const ConfigurationsApiFactory: (configuration?: Configuration, b
5425
5869
  * @throws {RequiredError}
5426
5870
  */
5427
5871
  listUserFeatures(options?: any): AxiosPromise<FeaturesResponse>;
5872
+ /**
5873
+ * List backoffice configurations for the current tenant
5874
+ * @summary List configurations
5875
+ * @param {*} [options] Override http request option.
5876
+ * @throws {RequiredError}
5877
+ */
5878
+ listV2Configurations(options?: any): AxiosPromise<TenantConfing>;
5428
5879
  };
5429
5880
  /**
5430
5881
  * ConfigurationsApi - object-oriented interface
@@ -5436,12 +5887,21 @@ export declare class ConfigurationsApi extends BaseAPI {
5436
5887
  /**
5437
5888
  * Create or update backoffice configuration for the current tenant
5438
5889
  * @summary Create configuration
5439
- * @param {BackofficeConfig} backofficeConfig Configuration data
5890
+ * @param {BackofficeConfigUpdateRequest} backofficeConfigUpdateRequest Configuration data
5440
5891
  * @param {*} [options] Override http request option.
5441
5892
  * @throws {RequiredError}
5442
5893
  * @memberof ConfigurationsApi
5443
5894
  */
5444
- createConfiguration(backofficeConfig: BackofficeConfig, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5895
+ createConfiguration(backofficeConfigUpdateRequest: BackofficeConfigUpdateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5896
+ /**
5897
+ * Create or update backoffice configuration for the current tenant
5898
+ * @summary Create configuration
5899
+ * @param {TenantConfing} tenantConfing Configuration data
5900
+ * @param {*} [options] Override http request option.
5901
+ * @throws {RequiredError}
5902
+ * @memberof ConfigurationsApi
5903
+ */
5904
+ createV2Configuration(tenantConfing: TenantConfing, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5445
5905
  /**
5446
5906
  * List backoffice configurations for the current tenant
5447
5907
  * @summary List configurations
@@ -5475,6 +5935,14 @@ export declare class ConfigurationsApi extends BaseAPI {
5475
5935
  * @memberof ConfigurationsApi
5476
5936
  */
5477
5937
  listUserFeatures(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FeaturesResponse, any>>;
5938
+ /**
5939
+ * List backoffice configurations for the current tenant
5940
+ * @summary List configurations
5941
+ * @param {*} [options] Override http request option.
5942
+ * @throws {RequiredError}
5943
+ * @memberof ConfigurationsApi
5944
+ */
5945
+ listV2Configurations(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TenantConfing, any>>;
5478
5946
  }
5479
5947
  /**
5480
5948
  * CustomDealsApi - axios parameter creator
@@ -5836,6 +6304,94 @@ export declare class IntegrationsApi extends BaseAPI {
5836
6304
  */
5837
6305
  setWebhook(webhook: Webhook, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5838
6306
  }
6307
+ /**
6308
+ * NotificationApi - axios parameter creator
6309
+ * @export
6310
+ */
6311
+ export declare const NotificationApiAxiosParamCreator: (configuration?: Configuration) => {
6312
+ /**
6313
+ * Get preferences for the authenticated user
6314
+ * @summary Get preferences
6315
+ * @param {*} [options] Override http request option.
6316
+ * @throws {RequiredError}
6317
+ */
6318
+ getSystemPreferences: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
6319
+ /**
6320
+ * Update preferences for the authenticated user
6321
+ * @summary Update preferences
6322
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
6323
+ * @param {*} [options] Override http request option.
6324
+ * @throws {RequiredError}
6325
+ */
6326
+ updateSystemPreferences: (notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6327
+ };
6328
+ /**
6329
+ * NotificationApi - functional programming interface
6330
+ * @export
6331
+ */
6332
+ export declare const NotificationApiFp: (configuration?: Configuration) => {
6333
+ /**
6334
+ * Get preferences for the authenticated user
6335
+ * @summary Get preferences
6336
+ * @param {*} [options] Override http request option.
6337
+ * @throws {RequiredError}
6338
+ */
6339
+ getSystemPreferences(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NotificationPreference>>>;
6340
+ /**
6341
+ * Update preferences for the authenticated user
6342
+ * @summary Update preferences
6343
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
6344
+ * @param {*} [options] Override http request option.
6345
+ * @throws {RequiredError}
6346
+ */
6347
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6348
+ };
6349
+ /**
6350
+ * NotificationApi - factory interface
6351
+ * @export
6352
+ */
6353
+ export declare const NotificationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6354
+ /**
6355
+ * Get preferences for the authenticated user
6356
+ * @summary Get preferences
6357
+ * @param {*} [options] Override http request option.
6358
+ * @throws {RequiredError}
6359
+ */
6360
+ getSystemPreferences(options?: any): AxiosPromise<Array<NotificationPreference>>;
6361
+ /**
6362
+ * Update preferences for the authenticated user
6363
+ * @summary Update preferences
6364
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
6365
+ * @param {*} [options] Override http request option.
6366
+ * @throws {RequiredError}
6367
+ */
6368
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: any): AxiosPromise<void>;
6369
+ };
6370
+ /**
6371
+ * NotificationApi - object-oriented interface
6372
+ * @export
6373
+ * @class NotificationApi
6374
+ * @extends {BaseAPI}
6375
+ */
6376
+ export declare class NotificationApi extends BaseAPI {
6377
+ /**
6378
+ * Get preferences for the authenticated user
6379
+ * @summary Get preferences
6380
+ * @param {*} [options] Override http request option.
6381
+ * @throws {RequiredError}
6382
+ * @memberof NotificationApi
6383
+ */
6384
+ getSystemPreferences(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationPreference[], any>>;
6385
+ /**
6386
+ * Update preferences for the authenticated user
6387
+ * @summary Update preferences
6388
+ * @param {Array<NotificationPreference>} notificationPreference notification preferences
6389
+ * @param {*} [options] Override http request option.
6390
+ * @throws {RequiredError}
6391
+ * @memberof NotificationApi
6392
+ */
6393
+ updateSystemPreferences(notificationPreference: Array<NotificationPreference>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6394
+ }
5839
6395
  /**
5840
6396
  * NotificationsApi - axios parameter creator
5841
6397
  * @export