flexinet-api 0.0.2240-prerelease0-dev → 0.0.2242-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/README.md +2 -2
- package/api.ts +91 -0
- package/dist/api.d.ts +93 -0
- package/dist/esm/api.d.ts +93 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.2242-prerelease0-dev
|
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@0.0.
|
39
|
+
npm install flexinet-api@0.0.2242-prerelease0-dev --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
|
@@ -4326,6 +4411,12 @@ export interface TenantConfing {
|
|
4326
4411
|
* @memberof TenantConfing
|
4327
4412
|
*/
|
4328
4413
|
'branding': BrandingConfig;
|
4414
|
+
/**
|
4415
|
+
*
|
4416
|
+
* @type {AuthorizationConfig}
|
4417
|
+
* @memberof TenantConfing
|
4418
|
+
*/
|
4419
|
+
'auth': AuthorizationConfig;
|
4329
4420
|
}
|
4330
4421
|
|
4331
4422
|
|
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
|
@@ -4132,6 +4219,12 @@ export interface TenantConfing {
|
|
4132
4219
|
* @memberof TenantConfing
|
4133
4220
|
*/
|
4134
4221
|
'branding': BrandingConfig;
|
4222
|
+
/**
|
4223
|
+
*
|
4224
|
+
* @type {AuthorizationConfig}
|
4225
|
+
* @memberof TenantConfing
|
4226
|
+
*/
|
4227
|
+
'auth': AuthorizationConfig;
|
4135
4228
|
}
|
4136
4229
|
/**
|
4137
4230
|
*
|
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
|
@@ -4132,6 +4219,12 @@ export interface TenantConfing {
|
|
4132
4219
|
* @memberof TenantConfing
|
4133
4220
|
*/
|
4134
4221
|
'branding': BrandingConfig;
|
4222
|
+
/**
|
4223
|
+
*
|
4224
|
+
* @type {AuthorizationConfig}
|
4225
|
+
* @memberof TenantConfing
|
4226
|
+
*/
|
4227
|
+
'auth': AuthorizationConfig;
|
4135
4228
|
}
|
4136
4229
|
/**
|
4137
4230
|
*
|