flexinet-api 0.0.2274 → 0.0.2275
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 +97 -5
- package/dist/api.d.ts +94 -0
- package/dist/api.js +6 -5
- package/dist/esm/api.d.ts +94 -0
- package/dist/esm/api.js +6 -5
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@
|
1
|
+
## flexinet-api@0.0.2275
|
2
2
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
4
4
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
36
36
|
_published:_
|
37
37
|
|
38
38
|
```
|
39
|
-
npm install flexinet-api@
|
39
|
+
npm install flexinet-api@0.0.2275 --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -182,6 +182,91 @@ export const AuditLogObjectType = {
|
|
182
182
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
183
183
|
|
184
184
|
|
185
|
+
/**
|
186
|
+
*
|
187
|
+
* @export
|
188
|
+
* @interface AuthorizationConfig
|
189
|
+
*/
|
190
|
+
export interface AuthorizationConfig {
|
191
|
+
/**
|
192
|
+
*
|
193
|
+
* @type {string}
|
194
|
+
* @memberof AuthorizationConfig
|
195
|
+
*/
|
196
|
+
'adminKeyConfig': string;
|
197
|
+
/**
|
198
|
+
*
|
199
|
+
* @type {string}
|
200
|
+
* @memberof AuthorizationConfig
|
201
|
+
*/
|
202
|
+
'adminIssuer': string;
|
203
|
+
/**
|
204
|
+
*
|
205
|
+
* @type {string}
|
206
|
+
* @memberof AuthorizationConfig
|
207
|
+
*/
|
208
|
+
'adminAudience': string;
|
209
|
+
/**
|
210
|
+
*
|
211
|
+
* @type {string}
|
212
|
+
* @memberof AuthorizationConfig
|
213
|
+
*/
|
214
|
+
'customerAudience': string;
|
215
|
+
/**
|
216
|
+
*
|
217
|
+
* @type {string}
|
218
|
+
* @memberof AuthorizationConfig
|
219
|
+
*/
|
220
|
+
'customerOpenIDKeyConfig': string;
|
221
|
+
/**
|
222
|
+
*
|
223
|
+
* @type {string}
|
224
|
+
* @memberof AuthorizationConfig
|
225
|
+
*/
|
226
|
+
'customerOpenIDIssuer': string;
|
227
|
+
/**
|
228
|
+
*
|
229
|
+
* @type {string}
|
230
|
+
* @memberof AuthorizationConfig
|
231
|
+
*/
|
232
|
+
'customerOpenIDClientID': string;
|
233
|
+
/**
|
234
|
+
*
|
235
|
+
* @type {string}
|
236
|
+
* @memberof AuthorizationConfig
|
237
|
+
*/
|
238
|
+
'customerOpenIDSecret': string;
|
239
|
+
/**
|
240
|
+
*
|
241
|
+
* @type {string}
|
242
|
+
* @memberof AuthorizationConfig
|
243
|
+
*/
|
244
|
+
'customerOpenIDMetadataURL': string;
|
245
|
+
/**
|
246
|
+
*
|
247
|
+
* @type {{ [key: string]: string; }}
|
248
|
+
* @memberof AuthorizationConfig
|
249
|
+
*/
|
250
|
+
'customerOpenIDParameters': { [key: string]: string; };
|
251
|
+
/**
|
252
|
+
*
|
253
|
+
* @type {string}
|
254
|
+
* @memberof AuthorizationConfig
|
255
|
+
*/
|
256
|
+
'azureEntraTenantID': string;
|
257
|
+
/**
|
258
|
+
*
|
259
|
+
* @type {string}
|
260
|
+
* @memberof AuthorizationConfig
|
261
|
+
*/
|
262
|
+
'azureEntraClientID': string;
|
263
|
+
/**
|
264
|
+
*
|
265
|
+
* @type {string}
|
266
|
+
* @memberof AuthorizationConfig
|
267
|
+
*/
|
268
|
+
'customerLoginUrl': string;
|
269
|
+
}
|
185
270
|
/**
|
186
271
|
*
|
187
272
|
* @export
|
@@ -1151,7 +1236,8 @@ export const Feature = {
|
|
1151
1236
|
UserInfo: 'user_info',
|
1152
1237
|
ExternalInventory: 'external_inventory',
|
1153
1238
|
OrderEvents: 'order_events',
|
1154
|
-
OrderStatusPolling: 'order_status_polling'
|
1239
|
+
OrderStatusPolling: 'order_status_polling',
|
1240
|
+
SmsSending: 'sms_sending'
|
1155
1241
|
} as const;
|
1156
1242
|
|
1157
1243
|
export type Feature = typeof Feature[keyof typeof Feature];
|
@@ -4326,6 +4412,12 @@ export interface TenantConfing {
|
|
4326
4412
|
* @memberof TenantConfing
|
4327
4413
|
*/
|
4328
4414
|
'branding': BrandingConfig;
|
4415
|
+
/**
|
4416
|
+
*
|
4417
|
+
* @type {AuthorizationConfig}
|
4418
|
+
* @memberof TenantConfing
|
4419
|
+
*/
|
4420
|
+
'auth': AuthorizationConfig;
|
4329
4421
|
}
|
4330
4422
|
|
4331
4423
|
|
@@ -7974,7 +8066,7 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
7974
8066
|
const localVarHeaderParameter = {} as any;
|
7975
8067
|
const localVarQueryParameter = {} as any;
|
7976
8068
|
|
7977
|
-
// authentication
|
8069
|
+
// authentication systemJWT required
|
7978
8070
|
// http bearer authentication required
|
7979
8071
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
7980
8072
|
|
@@ -8011,7 +8103,7 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
8011
8103
|
const localVarHeaderParameter = {} as any;
|
8012
8104
|
const localVarQueryParameter = {} as any;
|
8013
8105
|
|
8014
|
-
// authentication
|
8106
|
+
// authentication systemJWT required
|
8015
8107
|
// http bearer authentication required
|
8016
8108
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
8017
8109
|
|
@@ -8228,7 +8320,7 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
|
|
8228
8320
|
const localVarHeaderParameter = {} as any;
|
8229
8321
|
const localVarQueryParameter = {} as any;
|
8230
8322
|
|
8231
|
-
// authentication
|
8323
|
+
// authentication systemJWT required
|
8232
8324
|
// http bearer authentication required
|
8233
8325
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
8234
8326
|
|
@@ -8381,7 +8473,7 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
|
|
8381
8473
|
const localVarHeaderParameter = {} as any;
|
8382
8474
|
const localVarQueryParameter = {} as any;
|
8383
8475
|
|
8384
|
-
// authentication
|
8476
|
+
// authentication systemJWT required
|
8385
8477
|
// http bearer authentication required
|
8386
8478
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
8387
8479
|
|
package/dist/api.d.ts
CHANGED
@@ -157,6 +157,93 @@ export declare const AuditLogObjectType: {
|
|
157
157
|
readonly ApiKey: "api_key";
|
158
158
|
};
|
159
159
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
160
|
+
/**
|
161
|
+
*
|
162
|
+
* @export
|
163
|
+
* @interface AuthorizationConfig
|
164
|
+
*/
|
165
|
+
export interface AuthorizationConfig {
|
166
|
+
/**
|
167
|
+
*
|
168
|
+
* @type {string}
|
169
|
+
* @memberof AuthorizationConfig
|
170
|
+
*/
|
171
|
+
'adminKeyConfig': string;
|
172
|
+
/**
|
173
|
+
*
|
174
|
+
* @type {string}
|
175
|
+
* @memberof AuthorizationConfig
|
176
|
+
*/
|
177
|
+
'adminIssuer': string;
|
178
|
+
/**
|
179
|
+
*
|
180
|
+
* @type {string}
|
181
|
+
* @memberof AuthorizationConfig
|
182
|
+
*/
|
183
|
+
'adminAudience': string;
|
184
|
+
/**
|
185
|
+
*
|
186
|
+
* @type {string}
|
187
|
+
* @memberof AuthorizationConfig
|
188
|
+
*/
|
189
|
+
'customerAudience': string;
|
190
|
+
/**
|
191
|
+
*
|
192
|
+
* @type {string}
|
193
|
+
* @memberof AuthorizationConfig
|
194
|
+
*/
|
195
|
+
'customerOpenIDKeyConfig': string;
|
196
|
+
/**
|
197
|
+
*
|
198
|
+
* @type {string}
|
199
|
+
* @memberof AuthorizationConfig
|
200
|
+
*/
|
201
|
+
'customerOpenIDIssuer': string;
|
202
|
+
/**
|
203
|
+
*
|
204
|
+
* @type {string}
|
205
|
+
* @memberof AuthorizationConfig
|
206
|
+
*/
|
207
|
+
'customerOpenIDClientID': string;
|
208
|
+
/**
|
209
|
+
*
|
210
|
+
* @type {string}
|
211
|
+
* @memberof AuthorizationConfig
|
212
|
+
*/
|
213
|
+
'customerOpenIDSecret': string;
|
214
|
+
/**
|
215
|
+
*
|
216
|
+
* @type {string}
|
217
|
+
* @memberof AuthorizationConfig
|
218
|
+
*/
|
219
|
+
'customerOpenIDMetadataURL': string;
|
220
|
+
/**
|
221
|
+
*
|
222
|
+
* @type {{ [key: string]: string; }}
|
223
|
+
* @memberof AuthorizationConfig
|
224
|
+
*/
|
225
|
+
'customerOpenIDParameters': {
|
226
|
+
[key: string]: string;
|
227
|
+
};
|
228
|
+
/**
|
229
|
+
*
|
230
|
+
* @type {string}
|
231
|
+
* @memberof AuthorizationConfig
|
232
|
+
*/
|
233
|
+
'azureEntraTenantID': string;
|
234
|
+
/**
|
235
|
+
*
|
236
|
+
* @type {string}
|
237
|
+
* @memberof AuthorizationConfig
|
238
|
+
*/
|
239
|
+
'azureEntraClientID': string;
|
240
|
+
/**
|
241
|
+
*
|
242
|
+
* @type {string}
|
243
|
+
* @memberof AuthorizationConfig
|
244
|
+
*/
|
245
|
+
'customerLoginUrl': string;
|
246
|
+
}
|
160
247
|
/**
|
161
248
|
*
|
162
249
|
* @export
|
@@ -1085,6 +1172,7 @@ export declare const Feature: {
|
|
1085
1172
|
readonly ExternalInventory: "external_inventory";
|
1086
1173
|
readonly OrderEvents: "order_events";
|
1087
1174
|
readonly OrderStatusPolling: "order_status_polling";
|
1175
|
+
readonly SmsSending: "sms_sending";
|
1088
1176
|
};
|
1089
1177
|
export type Feature = typeof Feature[keyof typeof Feature];
|
1090
1178
|
/**
|
@@ -4132,6 +4220,12 @@ export interface TenantConfing {
|
|
4132
4220
|
* @memberof TenantConfing
|
4133
4221
|
*/
|
4134
4222
|
'branding': BrandingConfig;
|
4223
|
+
/**
|
4224
|
+
*
|
4225
|
+
* @type {AuthorizationConfig}
|
4226
|
+
* @memberof TenantConfing
|
4227
|
+
*/
|
4228
|
+
'auth': AuthorizationConfig;
|
4135
4229
|
}
|
4136
4230
|
/**
|
4137
4231
|
*
|
package/dist/api.js
CHANGED
@@ -117,7 +117,8 @@ exports.Feature = {
|
|
117
117
|
UserInfo: 'user_info',
|
118
118
|
ExternalInventory: 'external_inventory',
|
119
119
|
OrderEvents: 'order_events',
|
120
|
-
OrderStatusPolling: 'order_status_polling'
|
120
|
+
OrderStatusPolling: 'order_status_polling',
|
121
|
+
SmsSending: 'sms_sending'
|
121
122
|
};
|
122
123
|
/**
|
123
124
|
*
|
@@ -2920,7 +2921,7 @@ const NotificationApiAxiosParamCreator = function (configuration) {
|
|
2920
2921
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
2921
2922
|
const localVarHeaderParameter = {};
|
2922
2923
|
const localVarQueryParameter = {};
|
2923
|
-
// authentication
|
2924
|
+
// authentication systemJWT required
|
2924
2925
|
// http bearer authentication required
|
2925
2926
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
2926
2927
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
@@ -2951,7 +2952,7 @@ const NotificationApiAxiosParamCreator = function (configuration) {
|
|
2951
2952
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
2952
2953
|
const localVarHeaderParameter = {};
|
2953
2954
|
const localVarQueryParameter = {};
|
2954
|
-
// authentication
|
2955
|
+
// authentication systemJWT required
|
2955
2956
|
// http bearer authentication required
|
2956
2957
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
2957
2958
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
@@ -3149,7 +3150,7 @@ const NotificationsApiAxiosParamCreator = function (configuration) {
|
|
3149
3150
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
3150
3151
|
const localVarHeaderParameter = {};
|
3151
3152
|
const localVarQueryParameter = {};
|
3152
|
-
// authentication
|
3153
|
+
// authentication systemJWT required
|
3153
3154
|
// http bearer authentication required
|
3154
3155
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
3155
3156
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
@@ -3276,7 +3277,7 @@ const NotificationsApiAxiosParamCreator = function (configuration) {
|
|
3276
3277
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
3277
3278
|
const localVarHeaderParameter = {};
|
3278
3279
|
const localVarQueryParameter = {};
|
3279
|
-
// authentication
|
3280
|
+
// authentication systemJWT required
|
3280
3281
|
// http bearer authentication required
|
3281
3282
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
3282
3283
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
package/dist/esm/api.d.ts
CHANGED
@@ -157,6 +157,93 @@ export declare const AuditLogObjectType: {
|
|
157
157
|
readonly ApiKey: "api_key";
|
158
158
|
};
|
159
159
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
160
|
+
/**
|
161
|
+
*
|
162
|
+
* @export
|
163
|
+
* @interface AuthorizationConfig
|
164
|
+
*/
|
165
|
+
export interface AuthorizationConfig {
|
166
|
+
/**
|
167
|
+
*
|
168
|
+
* @type {string}
|
169
|
+
* @memberof AuthorizationConfig
|
170
|
+
*/
|
171
|
+
'adminKeyConfig': string;
|
172
|
+
/**
|
173
|
+
*
|
174
|
+
* @type {string}
|
175
|
+
* @memberof AuthorizationConfig
|
176
|
+
*/
|
177
|
+
'adminIssuer': string;
|
178
|
+
/**
|
179
|
+
*
|
180
|
+
* @type {string}
|
181
|
+
* @memberof AuthorizationConfig
|
182
|
+
*/
|
183
|
+
'adminAudience': string;
|
184
|
+
/**
|
185
|
+
*
|
186
|
+
* @type {string}
|
187
|
+
* @memberof AuthorizationConfig
|
188
|
+
*/
|
189
|
+
'customerAudience': string;
|
190
|
+
/**
|
191
|
+
*
|
192
|
+
* @type {string}
|
193
|
+
* @memberof AuthorizationConfig
|
194
|
+
*/
|
195
|
+
'customerOpenIDKeyConfig': string;
|
196
|
+
/**
|
197
|
+
*
|
198
|
+
* @type {string}
|
199
|
+
* @memberof AuthorizationConfig
|
200
|
+
*/
|
201
|
+
'customerOpenIDIssuer': string;
|
202
|
+
/**
|
203
|
+
*
|
204
|
+
* @type {string}
|
205
|
+
* @memberof AuthorizationConfig
|
206
|
+
*/
|
207
|
+
'customerOpenIDClientID': string;
|
208
|
+
/**
|
209
|
+
*
|
210
|
+
* @type {string}
|
211
|
+
* @memberof AuthorizationConfig
|
212
|
+
*/
|
213
|
+
'customerOpenIDSecret': string;
|
214
|
+
/**
|
215
|
+
*
|
216
|
+
* @type {string}
|
217
|
+
* @memberof AuthorizationConfig
|
218
|
+
*/
|
219
|
+
'customerOpenIDMetadataURL': string;
|
220
|
+
/**
|
221
|
+
*
|
222
|
+
* @type {{ [key: string]: string; }}
|
223
|
+
* @memberof AuthorizationConfig
|
224
|
+
*/
|
225
|
+
'customerOpenIDParameters': {
|
226
|
+
[key: string]: string;
|
227
|
+
};
|
228
|
+
/**
|
229
|
+
*
|
230
|
+
* @type {string}
|
231
|
+
* @memberof AuthorizationConfig
|
232
|
+
*/
|
233
|
+
'azureEntraTenantID': string;
|
234
|
+
/**
|
235
|
+
*
|
236
|
+
* @type {string}
|
237
|
+
* @memberof AuthorizationConfig
|
238
|
+
*/
|
239
|
+
'azureEntraClientID': string;
|
240
|
+
/**
|
241
|
+
*
|
242
|
+
* @type {string}
|
243
|
+
* @memberof AuthorizationConfig
|
244
|
+
*/
|
245
|
+
'customerLoginUrl': string;
|
246
|
+
}
|
160
247
|
/**
|
161
248
|
*
|
162
249
|
* @export
|
@@ -1085,6 +1172,7 @@ export declare const Feature: {
|
|
1085
1172
|
readonly ExternalInventory: "external_inventory";
|
1086
1173
|
readonly OrderEvents: "order_events";
|
1087
1174
|
readonly OrderStatusPolling: "order_status_polling";
|
1175
|
+
readonly SmsSending: "sms_sending";
|
1088
1176
|
};
|
1089
1177
|
export type Feature = typeof Feature[keyof typeof Feature];
|
1090
1178
|
/**
|
@@ -4132,6 +4220,12 @@ export interface TenantConfing {
|
|
4132
4220
|
* @memberof TenantConfing
|
4133
4221
|
*/
|
4134
4222
|
'branding': BrandingConfig;
|
4223
|
+
/**
|
4224
|
+
*
|
4225
|
+
* @type {AuthorizationConfig}
|
4226
|
+
* @memberof TenantConfing
|
4227
|
+
*/
|
4228
|
+
'auth': AuthorizationConfig;
|
4135
4229
|
}
|
4136
4230
|
/**
|
4137
4231
|
*
|
package/dist/esm/api.js
CHANGED
@@ -112,7 +112,8 @@ export const Feature = {
|
|
112
112
|
UserInfo: 'user_info',
|
113
113
|
ExternalInventory: 'external_inventory',
|
114
114
|
OrderEvents: 'order_events',
|
115
|
-
OrderStatusPolling: 'order_status_polling'
|
115
|
+
OrderStatusPolling: 'order_status_polling',
|
116
|
+
SmsSending: 'sms_sending'
|
116
117
|
};
|
117
118
|
/**
|
118
119
|
*
|
@@ -2879,7 +2880,7 @@ export const NotificationApiAxiosParamCreator = function (configuration) {
|
|
2879
2880
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
2880
2881
|
const localVarHeaderParameter = {};
|
2881
2882
|
const localVarQueryParameter = {};
|
2882
|
-
// authentication
|
2883
|
+
// authentication systemJWT required
|
2883
2884
|
// http bearer authentication required
|
2884
2885
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
2885
2886
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
@@ -2910,7 +2911,7 @@ export const NotificationApiAxiosParamCreator = function (configuration) {
|
|
2910
2911
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
2911
2912
|
const localVarHeaderParameter = {};
|
2912
2913
|
const localVarQueryParameter = {};
|
2913
|
-
// authentication
|
2914
|
+
// authentication systemJWT required
|
2914
2915
|
// http bearer authentication required
|
2915
2916
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
2916
2917
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
@@ -3104,7 +3105,7 @@ export const NotificationsApiAxiosParamCreator = function (configuration) {
|
|
3104
3105
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
3105
3106
|
const localVarHeaderParameter = {};
|
3106
3107
|
const localVarQueryParameter = {};
|
3107
|
-
// authentication
|
3108
|
+
// authentication systemJWT required
|
3108
3109
|
// http bearer authentication required
|
3109
3110
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
3110
3111
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
@@ -3231,7 +3232,7 @@ export const NotificationsApiAxiosParamCreator = function (configuration) {
|
|
3231
3232
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
3232
3233
|
const localVarHeaderParameter = {};
|
3233
3234
|
const localVarQueryParameter = {};
|
3234
|
-
// authentication
|
3235
|
+
// authentication systemJWT required
|
3235
3236
|
// http bearer authentication required
|
3236
3237
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
3237
3238
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|