@flipdish/authorization 0.0.5-rc.1756734017 → 0.0.6-rc.1764848166
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 +164 -107
- package/api.ts +2701 -594
- package/base.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +2073 -478
- package/dist/api.js +2413 -483
- package/dist/base.js +1 -1
- package/dist/configuration.js +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -30,7 +30,7 @@ import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerM
|
|
|
30
30
|
*/
|
|
31
31
|
export interface AssignRoleRequestBody {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
*
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof AssignRoleRequestBody
|
|
36
36
|
*/
|
|
@@ -47,6 +47,12 @@ export interface AssignRoleRequestBody {
|
|
|
47
47
|
* @memberof AssignRoleRequestBody
|
|
48
48
|
*/
|
|
49
49
|
'principal': AuthorizationRequestPrincipal;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof AssignRoleRequestBody
|
|
54
|
+
*/
|
|
55
|
+
'brandId': string;
|
|
50
56
|
}
|
|
51
57
|
|
|
52
58
|
export const AssignRoleRequestBodyRoleEnum = {
|
|
@@ -147,10 +153,10 @@ export interface AssignRoleSuccessResponse {
|
|
|
147
153
|
export interface AuthenticateAndAuthorizeRequest {
|
|
148
154
|
/**
|
|
149
155
|
* Incoming request headers to be used for authentication
|
|
150
|
-
* @type {{ [key: string]:
|
|
156
|
+
* @type {{ [key: string]: string; }}
|
|
151
157
|
* @memberof AuthenticateAndAuthorizeRequest
|
|
152
158
|
*/
|
|
153
|
-
'headers': { [key: string]:
|
|
159
|
+
'headers': { [key: string]: string; };
|
|
154
160
|
/**
|
|
155
161
|
*
|
|
156
162
|
* @type {AuthorizationRequestAction}
|
|
@@ -172,10 +178,10 @@ export interface AuthenticateAndAuthorizeRequest {
|
|
|
172
178
|
export interface AuthenticateAndAuthorizeResponse {
|
|
173
179
|
/**
|
|
174
180
|
*
|
|
175
|
-
* @type {
|
|
181
|
+
* @type {AuthenticateAndCheckIsInRoleResponseAuthentication}
|
|
176
182
|
* @memberof AuthenticateAndAuthorizeResponse
|
|
177
183
|
*/
|
|
178
|
-
'authentication':
|
|
184
|
+
'authentication': AuthenticateAndCheckIsInRoleResponseAuthentication;
|
|
179
185
|
/**
|
|
180
186
|
*
|
|
181
187
|
* @type {AuthorizationResponse}
|
|
@@ -186,30 +192,170 @@ export interface AuthenticateAndAuthorizeResponse {
|
|
|
186
192
|
/**
|
|
187
193
|
*
|
|
188
194
|
* @export
|
|
189
|
-
* @interface
|
|
195
|
+
* @interface AuthenticateAndCheckIsInRoleRequest
|
|
196
|
+
*/
|
|
197
|
+
export interface AuthenticateAndCheckIsInRoleRequest {
|
|
198
|
+
/**
|
|
199
|
+
* Incoming request headers to be used for authentication
|
|
200
|
+
* @type {{ [key: string]: string; }}
|
|
201
|
+
* @memberof AuthenticateAndCheckIsInRoleRequest
|
|
202
|
+
*/
|
|
203
|
+
'headers': { [key: string]: string; };
|
|
204
|
+
/**
|
|
205
|
+
* Array of roles to check if the principal is in
|
|
206
|
+
* @type {Array<string>}
|
|
207
|
+
* @memberof AuthenticateAndCheckIsInRoleRequest
|
|
208
|
+
*/
|
|
209
|
+
'roles': Array<AuthenticateAndCheckIsInRoleRequestRolesEnum>;
|
|
210
|
+
/**
|
|
211
|
+
* How to check if the principal is in any/all of the roles
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof AuthenticateAndCheckIsInRoleRequest
|
|
214
|
+
*/
|
|
215
|
+
'checkMode'?: AuthenticateAndCheckIsInRoleRequestCheckModeEnum;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export const AuthenticateAndCheckIsInRoleRequestRolesEnum = {
|
|
219
|
+
Admin: 'Admin',
|
|
220
|
+
Factory: 'Factory'
|
|
221
|
+
} as const;
|
|
222
|
+
|
|
223
|
+
export type AuthenticateAndCheckIsInRoleRequestRolesEnum = typeof AuthenticateAndCheckIsInRoleRequestRolesEnum[keyof typeof AuthenticateAndCheckIsInRoleRequestRolesEnum];
|
|
224
|
+
export const AuthenticateAndCheckIsInRoleRequestCheckModeEnum = {
|
|
225
|
+
Any: 'any',
|
|
226
|
+
All: 'all'
|
|
227
|
+
} as const;
|
|
228
|
+
|
|
229
|
+
export type AuthenticateAndCheckIsInRoleRequestCheckModeEnum = typeof AuthenticateAndCheckIsInRoleRequestCheckModeEnum[keyof typeof AuthenticateAndCheckIsInRoleRequestCheckModeEnum];
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Response containing whether the principal is in any/all of the roles
|
|
233
|
+
* @export
|
|
234
|
+
* @interface AuthenticateAndCheckIsInRoleResponse
|
|
235
|
+
*/
|
|
236
|
+
export interface AuthenticateAndCheckIsInRoleResponse {
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @type {AuthenticateAndCheckIsInRoleResponseAuthentication}
|
|
240
|
+
* @memberof AuthenticateAndCheckIsInRoleResponse
|
|
241
|
+
*/
|
|
242
|
+
'authentication': AuthenticateAndCheckIsInRoleResponseAuthentication;
|
|
243
|
+
/**
|
|
244
|
+
* result of the check - whether the principal is in any/all of the roles
|
|
245
|
+
* @type {boolean}
|
|
246
|
+
* @memberof AuthenticateAndCheckIsInRoleResponse
|
|
247
|
+
*/
|
|
248
|
+
'authorized': boolean;
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
*
|
|
252
|
+
* @export
|
|
253
|
+
* @interface AuthenticateAndCheckIsInRoleResponseAuthentication
|
|
190
254
|
*/
|
|
191
|
-
export interface
|
|
255
|
+
export interface AuthenticateAndCheckIsInRoleResponseAuthentication {
|
|
192
256
|
/**
|
|
193
257
|
*
|
|
194
258
|
* @type {AuthorizationRequestPrincipal}
|
|
195
|
-
* @memberof
|
|
259
|
+
* @memberof AuthenticateAndCheckIsInRoleResponseAuthentication
|
|
196
260
|
*/
|
|
197
261
|
'principal': AuthorizationRequestPrincipal;
|
|
198
262
|
/**
|
|
199
263
|
* Whether the user is authenticated
|
|
200
264
|
* @type {boolean}
|
|
201
|
-
* @memberof
|
|
265
|
+
* @memberof AuthenticateAndCheckIsInRoleResponseAuthentication
|
|
202
266
|
*/
|
|
203
267
|
'authenticated': boolean;
|
|
204
268
|
/**
|
|
205
269
|
* The reason for the authentication failure
|
|
206
270
|
* @type {string}
|
|
207
|
-
* @memberof
|
|
271
|
+
* @memberof AuthenticateAndCheckIsInRoleResponseAuthentication
|
|
208
272
|
*/
|
|
209
273
|
'reason'?: string;
|
|
210
274
|
}
|
|
211
275
|
/**
|
|
212
|
-
*
|
|
276
|
+
*
|
|
277
|
+
* @export
|
|
278
|
+
* @interface AuthorizationBatchRequest
|
|
279
|
+
*/
|
|
280
|
+
export interface AuthorizationBatchRequest {
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @type {AuthorizationRequestPrincipal}
|
|
284
|
+
* @memberof AuthorizationBatchRequest
|
|
285
|
+
*/
|
|
286
|
+
'principal': AuthorizationRequestPrincipal;
|
|
287
|
+
/**
|
|
288
|
+
*
|
|
289
|
+
* @type {Permissions}
|
|
290
|
+
* @memberof AuthorizationBatchRequest
|
|
291
|
+
*/
|
|
292
|
+
'action': Permissions;
|
|
293
|
+
/**
|
|
294
|
+
* Array of resources to check authorisation for
|
|
295
|
+
* @type {Array<AuthorizationRequestResource>}
|
|
296
|
+
* @memberof AuthorizationBatchRequest
|
|
297
|
+
*/
|
|
298
|
+
'resources': Array<AuthorizationRequestResource>;
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
*
|
|
302
|
+
* @export
|
|
303
|
+
* @interface AuthorizationBatchResponse
|
|
304
|
+
*/
|
|
305
|
+
export interface AuthorizationBatchResponse {
|
|
306
|
+
/**
|
|
307
|
+
* Array of allowed resources
|
|
308
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
309
|
+
* @memberof AuthorizationBatchResponse
|
|
310
|
+
*/
|
|
311
|
+
'allowedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
312
|
+
/**
|
|
313
|
+
* Array of denied resources
|
|
314
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
315
|
+
* @memberof AuthorizationBatchResponse
|
|
316
|
+
*/
|
|
317
|
+
'deniedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
*
|
|
321
|
+
* @export
|
|
322
|
+
* @interface AuthorizationBatchResponseAllowedResourcesInner
|
|
323
|
+
*/
|
|
324
|
+
export interface AuthorizationBatchResponseAllowedResourcesInner {
|
|
325
|
+
/**
|
|
326
|
+
* The authorization decision
|
|
327
|
+
* @type {string}
|
|
328
|
+
* @memberof AuthorizationBatchResponseAllowedResourcesInner
|
|
329
|
+
*/
|
|
330
|
+
'decision': string;
|
|
331
|
+
/**
|
|
332
|
+
* Whether the action is allowed
|
|
333
|
+
* @type {boolean}
|
|
334
|
+
* @memberof AuthorizationBatchResponseAllowedResourcesInner
|
|
335
|
+
*/
|
|
336
|
+
'allowed': boolean;
|
|
337
|
+
/**
|
|
338
|
+
* The policy IDs that were used to make the decision
|
|
339
|
+
* @type {Array<string>}
|
|
340
|
+
* @memberof AuthorizationBatchResponseAllowedResourcesInner
|
|
341
|
+
*/
|
|
342
|
+
'policyIds': Array<string>;
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @type {AuthorizationBatchResponseAllowedResourcesInnerResource}
|
|
346
|
+
* @memberof AuthorizationBatchResponseAllowedResourcesInner
|
|
347
|
+
*/
|
|
348
|
+
'resource': AuthorizationBatchResponseAllowedResourcesInnerResource;
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* @type AuthorizationBatchResponseAllowedResourcesInnerResource
|
|
352
|
+
*
|
|
353
|
+
* @export
|
|
354
|
+
*/
|
|
355
|
+
export type AuthorizationBatchResponseAllowedResourcesInnerResource = AuthorizationRequestResourceOneOf | AuthorizationRequestResourceOneOf1 | AuthorizationRequestResourceOneOf2 | AuthorizationRequestResourceOneOf3;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* Request to check if a user is authorized to perform an action(s). If you pass in an array of permissions, you will receive a single allow / deny response (based on an AND of the result for each permission).
|
|
213
359
|
* @export
|
|
214
360
|
* @interface AuthorizationRequest
|
|
215
361
|
*/
|
|
@@ -434,258 +580,51 @@ export interface ErrorResponse {
|
|
|
434
580
|
'message': string;
|
|
435
581
|
}
|
|
436
582
|
/**
|
|
437
|
-
*
|
|
583
|
+
* Feature based role and its permissions
|
|
438
584
|
* @export
|
|
439
|
-
* @interface
|
|
585
|
+
* @interface FeatureBasedRole
|
|
440
586
|
*/
|
|
441
|
-
export interface
|
|
587
|
+
export interface FeatureBasedRole {
|
|
588
|
+
/**
|
|
589
|
+
* Name of the role
|
|
590
|
+
* @type {string}
|
|
591
|
+
* @memberof FeatureBasedRole
|
|
592
|
+
*/
|
|
593
|
+
'name': string;
|
|
442
594
|
/**
|
|
443
595
|
*
|
|
444
596
|
* @type {Permissions & Array<string>}
|
|
445
|
-
* @memberof
|
|
597
|
+
* @memberof FeatureBasedRole
|
|
446
598
|
*/
|
|
447
599
|
'permissions': Permissions & Array<string>;
|
|
448
600
|
}
|
|
449
601
|
/**
|
|
450
|
-
*
|
|
602
|
+
* Request to get authorized brands for a principal or the authenticated user based on the headers. Either principal or headers must be provided, but not both. If both are provided, the principal will be used.
|
|
451
603
|
* @export
|
|
452
|
-
* @interface
|
|
604
|
+
* @interface GetAuthorizedBrandsRequest
|
|
453
605
|
*/
|
|
454
|
-
export interface
|
|
455
|
-
/**
|
|
456
|
-
*
|
|
457
|
-
* @type {AuthorizationRequestPrincipal}
|
|
458
|
-
* @memberof GetPrincipalRolesRequestBody
|
|
459
|
-
*/
|
|
460
|
-
'principal': AuthorizationRequestPrincipal;
|
|
606
|
+
export interface GetAuthorizedBrandsRequest {
|
|
461
607
|
/**
|
|
462
608
|
*
|
|
463
|
-
* @type {
|
|
464
|
-
* @memberof
|
|
465
|
-
*/
|
|
466
|
-
'resource'?: AuthorizationRequestResource;
|
|
467
|
-
}
|
|
468
|
-
/**
|
|
469
|
-
* Successful roles retrieval response
|
|
470
|
-
* @export
|
|
471
|
-
* @interface GetPrincipalRolesSuccessResponse
|
|
472
|
-
*/
|
|
473
|
-
export interface GetPrincipalRolesSuccessResponse {
|
|
474
|
-
/**
|
|
475
|
-
* List of roles assigned to the principal
|
|
476
|
-
* @type {Array<GetPrincipalRolesSuccessResponseRolesInner>}
|
|
477
|
-
* @memberof GetPrincipalRolesSuccessResponse
|
|
478
|
-
*/
|
|
479
|
-
'roles': Array<GetPrincipalRolesSuccessResponseRolesInner>;
|
|
480
|
-
}
|
|
481
|
-
/**
|
|
482
|
-
*
|
|
483
|
-
* @export
|
|
484
|
-
* @interface GetPrincipalRolesSuccessResponseRolesInner
|
|
485
|
-
*/
|
|
486
|
-
export interface GetPrincipalRolesSuccessResponseRolesInner {
|
|
487
|
-
/**
|
|
488
|
-
* Policy ID
|
|
489
|
-
* @type {string}
|
|
490
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
491
|
-
*/
|
|
492
|
-
'policyId': string;
|
|
493
|
-
/**
|
|
494
|
-
* Role name
|
|
495
|
-
* @type {string}
|
|
496
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
497
|
-
*/
|
|
498
|
-
'roleName': GetPrincipalRolesSuccessResponseRolesInnerRoleNameEnum;
|
|
499
|
-
/**
|
|
500
|
-
* Date and time the role was assigned
|
|
501
|
-
* @type {string}
|
|
502
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
503
|
-
*/
|
|
504
|
-
'assignedAt': string;
|
|
505
|
-
/**
|
|
506
|
-
* User who assigned the role
|
|
507
|
-
* @type {string}
|
|
508
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
509
|
-
*/
|
|
510
|
-
'assignedBy': string;
|
|
511
|
-
/**
|
|
512
|
-
* Type of resource the role is assigned to
|
|
513
|
-
* @type {string}
|
|
514
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
515
|
-
*/
|
|
516
|
-
'resourceType': GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum;
|
|
517
|
-
/**
|
|
518
|
-
* Organization ID
|
|
519
|
-
* @type {string}
|
|
520
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
609
|
+
* @type {GetAuthorizedOrgsRequestPrincipal}
|
|
610
|
+
* @memberof GetAuthorizedBrandsRequest
|
|
521
611
|
*/
|
|
522
|
-
'
|
|
523
|
-
/**
|
|
524
|
-
* Property ID
|
|
525
|
-
* @type {string}
|
|
526
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
527
|
-
*/
|
|
528
|
-
'propertyId'?: string;
|
|
612
|
+
'principal'?: GetAuthorizedOrgsRequestPrincipal;
|
|
529
613
|
/**
|
|
530
|
-
*
|
|
531
|
-
* @type {string}
|
|
532
|
-
* @memberof
|
|
614
|
+
* Incoming request headers to be used for authentication
|
|
615
|
+
* @type {{ [key: string]: string; }}
|
|
616
|
+
* @memberof GetAuthorizedBrandsRequest
|
|
533
617
|
*/
|
|
534
|
-
'
|
|
618
|
+
'headers'?: { [key: string]: string; };
|
|
535
619
|
/**
|
|
536
|
-
*
|
|
620
|
+
* The action to check authorisation for
|
|
537
621
|
* @type {string}
|
|
538
|
-
* @memberof
|
|
622
|
+
* @memberof GetAuthorizedBrandsRequest
|
|
539
623
|
*/
|
|
540
|
-
'
|
|
624
|
+
'action': GetAuthorizedBrandsRequestActionEnum;
|
|
541
625
|
}
|
|
542
626
|
|
|
543
|
-
export const
|
|
544
|
-
OrgViewer: 'OrgViewer',
|
|
545
|
-
OrgManager: 'OrgManager',
|
|
546
|
-
OrgAdmin: 'OrgAdmin',
|
|
547
|
-
BrandViewer: 'BrandViewer',
|
|
548
|
-
BrandManager: 'BrandManager',
|
|
549
|
-
BrandAdmin: 'BrandAdmin',
|
|
550
|
-
StoreViewer: 'StoreViewer',
|
|
551
|
-
StoreEditor: 'StoreEditor',
|
|
552
|
-
StoreManager: 'StoreManager',
|
|
553
|
-
CustomerViewer: 'CustomerViewer',
|
|
554
|
-
CustomerManager: 'CustomerManager',
|
|
555
|
-
VoucherViewer: 'VoucherViewer',
|
|
556
|
-
VoucherEditor: 'VoucherEditor',
|
|
557
|
-
VoucherManager: 'VoucherManager',
|
|
558
|
-
VoucherCampaignManager: 'VoucherCampaignManager',
|
|
559
|
-
VoucherStatisticsViewer: 'VoucherStatisticsViewer',
|
|
560
|
-
AnalyticsViewer: 'AnalyticsViewer',
|
|
561
|
-
ReportsViewer: 'ReportsViewer',
|
|
562
|
-
FinanceViewer: 'FinanceViewer',
|
|
563
|
-
FinanceManager: 'FinanceManager',
|
|
564
|
-
TeamViewer: 'TeamViewer',
|
|
565
|
-
TeamManager: 'TeamManager',
|
|
566
|
-
TeamAdmin: 'TeamAdmin',
|
|
567
|
-
TechViewer: 'TechViewer',
|
|
568
|
-
TechManager: 'TechManager',
|
|
569
|
-
AppStoreViewer: 'AppStoreViewer',
|
|
570
|
-
AppStoreManager: 'AppStoreManager',
|
|
571
|
-
SalesChannelViewer: 'SalesChannelViewer',
|
|
572
|
-
SalesChannelEditor: 'SalesChannelEditor',
|
|
573
|
-
SalesChannelManager: 'SalesChannelManager',
|
|
574
|
-
DeliveryViewer: 'DeliveryViewer',
|
|
575
|
-
DeliveryManager: 'DeliveryManager',
|
|
576
|
-
DriverManager: 'DriverManager',
|
|
577
|
-
AuditViewer: 'AuditViewer',
|
|
578
|
-
AuditManager: 'AuditManager',
|
|
579
|
-
AccountsViewer: 'AccountsViewer',
|
|
580
|
-
AccountsEditor: 'AccountsEditor',
|
|
581
|
-
DocumentExplorerViewer: 'DocumentExplorerViewer',
|
|
582
|
-
DocumentExplorerEditor: 'DocumentExplorerEditor',
|
|
583
|
-
PayrollViewer: 'PayrollViewer',
|
|
584
|
-
PayrollEditor: 'PayrollEditor',
|
|
585
|
-
PropertyViewer: 'PropertyViewer',
|
|
586
|
-
PropertyManager: 'PropertyManager',
|
|
587
|
-
PropertyAdmin: 'PropertyAdmin',
|
|
588
|
-
WebsiteContentEditor: 'WebsiteContentEditor',
|
|
589
|
-
WebsiteContentViewer: 'WebsiteContentViewer',
|
|
590
|
-
WebsiteTechViewer: 'WebsiteTechViewer',
|
|
591
|
-
MenuViewer: 'MenuViewer',
|
|
592
|
-
MenuEditor: 'MenuEditor',
|
|
593
|
-
MenuManager: 'MenuManager',
|
|
594
|
-
MenuMetaFieldManager: 'MenuMetaFieldManager',
|
|
595
|
-
MenuMetaFieldEditor: 'MenuMetaFieldEditor',
|
|
596
|
-
MenuMetaFieldViewer: 'MenuMetaFieldViewer',
|
|
597
|
-
StoreDeliveryZoneManager: 'StoreDeliveryZoneManager',
|
|
598
|
-
StoreDeliveryZoneEditor: 'StoreDeliveryZoneEditor',
|
|
599
|
-
StoreDeliveryZoneViewer: 'StoreDeliveryZoneViewer',
|
|
600
|
-
OrderFulfillmentManager: 'OrderFulfillmentManager',
|
|
601
|
-
OrderManager: 'OrderManager',
|
|
602
|
-
OrderEditor: 'OrderEditor',
|
|
603
|
-
OrderViewer: 'OrderViewer',
|
|
604
|
-
InventoryManager: 'InventoryManager',
|
|
605
|
-
InventoryEditor: 'InventoryEditor',
|
|
606
|
-
InventoryViewer: 'InventoryViewer',
|
|
607
|
-
PaymentManager: 'PaymentManager',
|
|
608
|
-
OnboardingManager: 'OnboardingManager',
|
|
609
|
-
FeatureFlagManager: 'FeatureFlagManager',
|
|
610
|
-
PropertyOwnerMisc: 'PropertyOwnerMisc',
|
|
611
|
-
ManagedOwnerMisc: 'ManagedOwnerMisc',
|
|
612
|
-
IntegratorMisc: 'IntegratorMisc',
|
|
613
|
-
PropertyManagerMisc: 'PropertyManagerMisc',
|
|
614
|
-
FinanceManagerMisc: 'FinanceManagerMisc',
|
|
615
|
-
SupportMisc: 'SupportMisc'
|
|
616
|
-
} as const;
|
|
617
|
-
|
|
618
|
-
export type GetPrincipalRolesSuccessResponseRolesInnerRoleNameEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerRoleNameEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerRoleNameEnum];
|
|
619
|
-
export const GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = {
|
|
620
|
-
Property: 'Property',
|
|
621
|
-
Org: 'Org',
|
|
622
|
-
Brand: 'Brand',
|
|
623
|
-
SalesChannel: 'SalesChannel'
|
|
624
|
-
} as const;
|
|
625
|
-
|
|
626
|
-
export type GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum];
|
|
627
|
-
|
|
628
|
-
/**
|
|
629
|
-
* Successful roles retrieval response
|
|
630
|
-
* @export
|
|
631
|
-
* @interface GetRolesSuccessResponse
|
|
632
|
-
*/
|
|
633
|
-
export interface GetRolesSuccessResponse {
|
|
634
|
-
/**
|
|
635
|
-
* List of roles available and their permissions
|
|
636
|
-
* @type {Array<RolesInner>}
|
|
637
|
-
* @memberof GetRolesSuccessResponse
|
|
638
|
-
*/
|
|
639
|
-
'roles': Array<RolesInner>;
|
|
640
|
-
}
|
|
641
|
-
/**
|
|
642
|
-
* Successful user permissions retrieval response
|
|
643
|
-
* @export
|
|
644
|
-
* @interface GetUserPermissionsSuccessResponse
|
|
645
|
-
*/
|
|
646
|
-
export interface GetUserPermissionsSuccessResponse {
|
|
647
|
-
/**
|
|
648
|
-
* Map of resource IDs to permissions
|
|
649
|
-
* @type {{ [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }}
|
|
650
|
-
* @memberof GetUserPermissionsSuccessResponse
|
|
651
|
-
*/
|
|
652
|
-
'resources': { [key: string]: GetUserPermissionsSuccessResponseResourcesValue; };
|
|
653
|
-
}
|
|
654
|
-
/**
|
|
655
|
-
*
|
|
656
|
-
* @export
|
|
657
|
-
* @interface GetUserPermissionsSuccessResponseResourcesValue
|
|
658
|
-
*/
|
|
659
|
-
export interface GetUserPermissionsSuccessResponseResourcesValue {
|
|
660
|
-
/**
|
|
661
|
-
* Type of resource the permissions are assigned to
|
|
662
|
-
* @type {string}
|
|
663
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
664
|
-
*/
|
|
665
|
-
'resourceType': GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum;
|
|
666
|
-
/**
|
|
667
|
-
*
|
|
668
|
-
* @type {GetUserPermissionsSuccessResponseResourcesValueResourceId}
|
|
669
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
670
|
-
*/
|
|
671
|
-
'resourceId': GetUserPermissionsSuccessResponseResourcesValueResourceId;
|
|
672
|
-
/**
|
|
673
|
-
* List of permissions that are assigned to the user for the resource
|
|
674
|
-
* @type {Array<string>}
|
|
675
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
676
|
-
*/
|
|
677
|
-
'permissions': Array<GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum>;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
export const GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = {
|
|
681
|
-
Property: 'Property',
|
|
682
|
-
Org: 'Org',
|
|
683
|
-
Brand: 'Brand',
|
|
684
|
-
SalesChannel: 'SalesChannel'
|
|
685
|
-
} as const;
|
|
686
|
-
|
|
687
|
-
export type GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum];
|
|
688
|
-
export const GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = {
|
|
627
|
+
export const GetAuthorizedBrandsRequestActionEnum = {
|
|
689
628
|
AnyAuditLogs: 'AnyAuditLogs',
|
|
690
629
|
ViewApp: 'ViewApp',
|
|
691
630
|
CreateApp: 'CreateApp',
|
|
@@ -909,57 +848,61 @@ export const GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = {
|
|
|
909
848
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
910
849
|
CreateOrg: 'CreateOrg',
|
|
911
850
|
EditOrg: 'EditOrg',
|
|
912
|
-
ViewOrg: 'ViewOrg'
|
|
851
|
+
ViewOrg: 'ViewOrg',
|
|
852
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
853
|
+
EditWebhooks: 'EditWebhooks',
|
|
854
|
+
RoleAdmin: 'RoleAdmin',
|
|
855
|
+
RoleFactory: 'RoleFactory'
|
|
913
856
|
} as const;
|
|
914
857
|
|
|
915
|
-
export type
|
|
858
|
+
export type GetAuthorizedBrandsRequestActionEnum = typeof GetAuthorizedBrandsRequestActionEnum[keyof typeof GetAuthorizedBrandsRequestActionEnum];
|
|
916
859
|
|
|
917
860
|
/**
|
|
918
|
-
*
|
|
919
|
-
* @export
|
|
920
|
-
* @interface GetUserPermissionsSuccessResponseResourcesValueResourceId
|
|
921
|
-
*/
|
|
922
|
-
export interface GetUserPermissionsSuccessResponseResourcesValueResourceId {
|
|
923
|
-
}
|
|
924
|
-
/**
|
|
925
|
-
*
|
|
861
|
+
* Response containing the authorized brands
|
|
926
862
|
* @export
|
|
927
|
-
* @interface
|
|
863
|
+
* @interface GetAuthorizedBrandsResponse
|
|
928
864
|
*/
|
|
929
|
-
export interface
|
|
865
|
+
export interface GetAuthorizedBrandsResponse {
|
|
930
866
|
/**
|
|
931
|
-
*
|
|
932
|
-
* @type {
|
|
933
|
-
* @memberof
|
|
867
|
+
* Array of allowed resources
|
|
868
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
869
|
+
* @memberof GetAuthorizedBrandsResponse
|
|
934
870
|
*/
|
|
935
|
-
'
|
|
871
|
+
'allowedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
872
|
+
/**
|
|
873
|
+
* Array of denied resources
|
|
874
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
875
|
+
* @memberof GetAuthorizedBrandsResponse
|
|
876
|
+
*/
|
|
877
|
+
'deniedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
936
878
|
}
|
|
937
879
|
/**
|
|
938
|
-
*
|
|
880
|
+
* Request to get authorized orgs for a principal or the authenticated user based on the headers. Either principal or headers must be provided, but not both. If both are provided, the principal will be used.
|
|
939
881
|
* @export
|
|
940
|
-
* @interface
|
|
882
|
+
* @interface GetAuthorizedOrgsRequest
|
|
941
883
|
*/
|
|
942
|
-
export interface
|
|
884
|
+
export interface GetAuthorizedOrgsRequest {
|
|
943
885
|
/**
|
|
944
886
|
*
|
|
945
|
-
* @type {
|
|
946
|
-
* @memberof
|
|
887
|
+
* @type {GetAuthorizedOrgsRequestPrincipal}
|
|
888
|
+
* @memberof GetAuthorizedOrgsRequest
|
|
947
889
|
*/
|
|
948
|
-
'
|
|
890
|
+
'principal'?: GetAuthorizedOrgsRequestPrincipal;
|
|
949
891
|
/**
|
|
950
|
-
*
|
|
892
|
+
* Incoming request headers to be used for authentication
|
|
893
|
+
* @type {{ [key: string]: string; }}
|
|
894
|
+
* @memberof GetAuthorizedOrgsRequest
|
|
895
|
+
*/
|
|
896
|
+
'headers'?: { [key: string]: string; };
|
|
897
|
+
/**
|
|
898
|
+
* The action to check authorisation for
|
|
951
899
|
* @type {string}
|
|
952
|
-
* @memberof
|
|
900
|
+
* @memberof GetAuthorizedOrgsRequest
|
|
953
901
|
*/
|
|
954
|
-
'
|
|
902
|
+
'action': GetAuthorizedOrgsRequestActionEnum;
|
|
955
903
|
}
|
|
956
|
-
/**
|
|
957
|
-
*
|
|
958
|
-
* @export
|
|
959
|
-
* @enum {string}
|
|
960
|
-
*/
|
|
961
904
|
|
|
962
|
-
export const
|
|
905
|
+
export const GetAuthorizedOrgsRequestActionEnum = {
|
|
963
906
|
AnyAuditLogs: 'AnyAuditLogs',
|
|
964
907
|
ViewApp: 'ViewApp',
|
|
965
908
|
CreateApp: 'CreateApp',
|
|
@@ -1183,226 +1126,1950 @@ export const Permissions = {
|
|
|
1183
1126
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
1184
1127
|
CreateOrg: 'CreateOrg',
|
|
1185
1128
|
EditOrg: 'EditOrg',
|
|
1186
|
-
ViewOrg: 'ViewOrg'
|
|
1129
|
+
ViewOrg: 'ViewOrg',
|
|
1130
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
1131
|
+
EditWebhooks: 'EditWebhooks',
|
|
1132
|
+
RoleAdmin: 'RoleAdmin',
|
|
1133
|
+
RoleFactory: 'RoleFactory'
|
|
1187
1134
|
} as const;
|
|
1188
1135
|
|
|
1189
|
-
export type
|
|
1190
|
-
|
|
1136
|
+
export type GetAuthorizedOrgsRequestActionEnum = typeof GetAuthorizedOrgsRequestActionEnum[keyof typeof GetAuthorizedOrgsRequestActionEnum];
|
|
1191
1137
|
|
|
1192
1138
|
/**
|
|
1193
|
-
*
|
|
1139
|
+
* The principal to get authorized entities for
|
|
1194
1140
|
* @export
|
|
1195
|
-
* @interface
|
|
1141
|
+
* @interface GetAuthorizedOrgsRequestPrincipal
|
|
1196
1142
|
*/
|
|
1197
|
-
export interface
|
|
1143
|
+
export interface GetAuthorizedOrgsRequestPrincipal {
|
|
1198
1144
|
/**
|
|
1199
1145
|
*
|
|
1200
|
-
* @type {AuthorizationRequestPrincipal}
|
|
1201
|
-
* @memberof RevokeForbiddenRoleRequestBody
|
|
1202
|
-
*/
|
|
1203
|
-
'principal': AuthorizationRequestPrincipal;
|
|
1204
|
-
/**
|
|
1205
|
-
* Compensation role to revoke the forbidden role from
|
|
1206
1146
|
* @type {string}
|
|
1207
|
-
* @memberof
|
|
1147
|
+
* @memberof GetAuthorizedOrgsRequestPrincipal
|
|
1208
1148
|
*/
|
|
1209
|
-
'
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
export const RevokeForbiddenRoleRequestBodyCompensatingRoleEnum = {
|
|
1213
|
-
OwnerCompensating: 'OwnerCompensating',
|
|
1214
|
-
PropertyOwnerCompensating: 'PropertyOwnerCompensating',
|
|
1215
|
-
ManagedOwnerCompensating: 'ManagedOwnerCompensating',
|
|
1216
|
-
IntegratorCompensating: 'IntegratorCompensating',
|
|
1217
|
-
PropertyManagerCompensating: 'PropertyManagerCompensating',
|
|
1218
|
-
FinanceManagerCompensating: 'FinanceManagerCompensating'
|
|
1219
|
-
} as const;
|
|
1220
|
-
|
|
1221
|
-
export type RevokeForbiddenRoleRequestBodyCompensatingRoleEnum = typeof RevokeForbiddenRoleRequestBodyCompensatingRoleEnum[keyof typeof RevokeForbiddenRoleRequestBodyCompensatingRoleEnum];
|
|
1222
|
-
|
|
1223
|
-
/**
|
|
1224
|
-
* Details for revoking a role from a principal
|
|
1225
|
-
* @export
|
|
1226
|
-
* @interface RevokeRoleRequestBody
|
|
1227
|
-
*/
|
|
1228
|
-
export interface RevokeRoleRequestBody {
|
|
1149
|
+
'type': GetAuthorizedOrgsRequestPrincipalTypeEnum;
|
|
1229
1150
|
/**
|
|
1230
|
-
*
|
|
1151
|
+
*
|
|
1231
1152
|
* @type {string}
|
|
1232
|
-
* @memberof
|
|
1153
|
+
* @memberof GetAuthorizedOrgsRequestPrincipal
|
|
1233
1154
|
*/
|
|
1234
|
-
'
|
|
1155
|
+
'id': string;
|
|
1235
1156
|
/**
|
|
1236
1157
|
*
|
|
1237
|
-
* @type {
|
|
1238
|
-
* @memberof
|
|
1158
|
+
* @type {string}
|
|
1159
|
+
* @memberof GetAuthorizedOrgsRequestPrincipal
|
|
1239
1160
|
*/
|
|
1240
|
-
'
|
|
1161
|
+
'name'?: string;
|
|
1241
1162
|
/**
|
|
1242
1163
|
*
|
|
1243
|
-
* @type {
|
|
1244
|
-
* @memberof
|
|
1164
|
+
* @type {string}
|
|
1165
|
+
* @memberof GetAuthorizedOrgsRequestPrincipal
|
|
1245
1166
|
*/
|
|
1246
|
-
'
|
|
1167
|
+
'email'?: string;
|
|
1247
1168
|
/**
|
|
1248
1169
|
*
|
|
1249
1170
|
* @type {string}
|
|
1250
|
-
* @memberof
|
|
1171
|
+
* @memberof GetAuthorizedOrgsRequestPrincipal
|
|
1251
1172
|
*/
|
|
1252
|
-
'
|
|
1173
|
+
'phone'?: string;
|
|
1253
1174
|
}
|
|
1254
1175
|
|
|
1255
|
-
export const
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
OrgAdmin: 'OrgAdmin',
|
|
1259
|
-
BrandViewer: 'BrandViewer',
|
|
1260
|
-
BrandManager: 'BrandManager',
|
|
1261
|
-
BrandAdmin: 'BrandAdmin',
|
|
1262
|
-
StoreViewer: 'StoreViewer',
|
|
1263
|
-
StoreEditor: 'StoreEditor',
|
|
1264
|
-
StoreManager: 'StoreManager',
|
|
1265
|
-
CustomerViewer: 'CustomerViewer',
|
|
1266
|
-
CustomerManager: 'CustomerManager',
|
|
1267
|
-
VoucherViewer: 'VoucherViewer',
|
|
1268
|
-
VoucherEditor: 'VoucherEditor',
|
|
1269
|
-
VoucherManager: 'VoucherManager',
|
|
1270
|
-
VoucherCampaignManager: 'VoucherCampaignManager',
|
|
1271
|
-
VoucherStatisticsViewer: 'VoucherStatisticsViewer',
|
|
1272
|
-
AnalyticsViewer: 'AnalyticsViewer',
|
|
1273
|
-
ReportsViewer: 'ReportsViewer',
|
|
1274
|
-
FinanceViewer: 'FinanceViewer',
|
|
1275
|
-
FinanceManager: 'FinanceManager',
|
|
1276
|
-
TeamViewer: 'TeamViewer',
|
|
1277
|
-
TeamManager: 'TeamManager',
|
|
1278
|
-
TeamAdmin: 'TeamAdmin',
|
|
1279
|
-
TechViewer: 'TechViewer',
|
|
1280
|
-
TechManager: 'TechManager',
|
|
1281
|
-
AppStoreViewer: 'AppStoreViewer',
|
|
1282
|
-
AppStoreManager: 'AppStoreManager',
|
|
1283
|
-
SalesChannelViewer: 'SalesChannelViewer',
|
|
1284
|
-
SalesChannelEditor: 'SalesChannelEditor',
|
|
1285
|
-
SalesChannelManager: 'SalesChannelManager',
|
|
1286
|
-
DeliveryViewer: 'DeliveryViewer',
|
|
1287
|
-
DeliveryManager: 'DeliveryManager',
|
|
1288
|
-
DriverManager: 'DriverManager',
|
|
1289
|
-
AuditViewer: 'AuditViewer',
|
|
1290
|
-
AuditManager: 'AuditManager',
|
|
1291
|
-
AccountsViewer: 'AccountsViewer',
|
|
1292
|
-
AccountsEditor: 'AccountsEditor',
|
|
1293
|
-
DocumentExplorerViewer: 'DocumentExplorerViewer',
|
|
1294
|
-
DocumentExplorerEditor: 'DocumentExplorerEditor',
|
|
1295
|
-
PayrollViewer: 'PayrollViewer',
|
|
1296
|
-
PayrollEditor: 'PayrollEditor',
|
|
1297
|
-
PropertyViewer: 'PropertyViewer',
|
|
1298
|
-
PropertyManager: 'PropertyManager',
|
|
1299
|
-
PropertyAdmin: 'PropertyAdmin',
|
|
1300
|
-
WebsiteContentEditor: 'WebsiteContentEditor',
|
|
1301
|
-
WebsiteContentViewer: 'WebsiteContentViewer',
|
|
1302
|
-
WebsiteTechViewer: 'WebsiteTechViewer',
|
|
1303
|
-
MenuViewer: 'MenuViewer',
|
|
1304
|
-
MenuEditor: 'MenuEditor',
|
|
1305
|
-
MenuManager: 'MenuManager',
|
|
1306
|
-
MenuMetaFieldManager: 'MenuMetaFieldManager',
|
|
1307
|
-
MenuMetaFieldEditor: 'MenuMetaFieldEditor',
|
|
1308
|
-
MenuMetaFieldViewer: 'MenuMetaFieldViewer',
|
|
1309
|
-
StoreDeliveryZoneManager: 'StoreDeliveryZoneManager',
|
|
1310
|
-
StoreDeliveryZoneEditor: 'StoreDeliveryZoneEditor',
|
|
1311
|
-
StoreDeliveryZoneViewer: 'StoreDeliveryZoneViewer',
|
|
1312
|
-
OrderFulfillmentManager: 'OrderFulfillmentManager',
|
|
1313
|
-
OrderManager: 'OrderManager',
|
|
1314
|
-
OrderEditor: 'OrderEditor',
|
|
1315
|
-
OrderViewer: 'OrderViewer',
|
|
1316
|
-
InventoryManager: 'InventoryManager',
|
|
1317
|
-
InventoryEditor: 'InventoryEditor',
|
|
1318
|
-
InventoryViewer: 'InventoryViewer',
|
|
1319
|
-
PaymentManager: 'PaymentManager',
|
|
1320
|
-
OnboardingManager: 'OnboardingManager',
|
|
1321
|
-
FeatureFlagManager: 'FeatureFlagManager',
|
|
1322
|
-
PropertyOwnerMisc: 'PropertyOwnerMisc',
|
|
1323
|
-
ManagedOwnerMisc: 'ManagedOwnerMisc',
|
|
1324
|
-
IntegratorMisc: 'IntegratorMisc',
|
|
1325
|
-
PropertyManagerMisc: 'PropertyManagerMisc',
|
|
1326
|
-
FinanceManagerMisc: 'FinanceManagerMisc',
|
|
1327
|
-
SupportMisc: 'SupportMisc'
|
|
1176
|
+
export const GetAuthorizedOrgsRequestPrincipalTypeEnum = {
|
|
1177
|
+
User: 'User',
|
|
1178
|
+
Automation: 'Automation'
|
|
1328
1179
|
} as const;
|
|
1329
1180
|
|
|
1330
|
-
export type
|
|
1181
|
+
export type GetAuthorizedOrgsRequestPrincipalTypeEnum = typeof GetAuthorizedOrgsRequestPrincipalTypeEnum[keyof typeof GetAuthorizedOrgsRequestPrincipalTypeEnum];
|
|
1331
1182
|
|
|
1332
1183
|
/**
|
|
1333
|
-
*
|
|
1334
|
-
* @export
|
|
1335
|
-
* @interface RevokeRoleSuccessResponse
|
|
1336
|
-
*/
|
|
1337
|
-
export interface RevokeRoleSuccessResponse {
|
|
1338
|
-
/**
|
|
1339
|
-
* Confirmation message
|
|
1340
|
-
* @type {string}
|
|
1341
|
-
* @memberof RevokeRoleSuccessResponse
|
|
1342
|
-
*/
|
|
1343
|
-
'message': string;
|
|
1344
|
-
}
|
|
1345
|
-
/**
|
|
1346
|
-
*
|
|
1184
|
+
* Response containing the authorized orgs
|
|
1347
1185
|
* @export
|
|
1348
|
-
* @interface
|
|
1186
|
+
* @interface GetAuthorizedOrgsResponse
|
|
1349
1187
|
*/
|
|
1350
|
-
export interface
|
|
1188
|
+
export interface GetAuthorizedOrgsResponse {
|
|
1351
1189
|
/**
|
|
1352
|
-
*
|
|
1353
|
-
* @type {
|
|
1354
|
-
* @memberof
|
|
1190
|
+
* Array of allowed resources
|
|
1191
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
1192
|
+
* @memberof GetAuthorizedOrgsResponse
|
|
1355
1193
|
*/
|
|
1356
|
-
'
|
|
1194
|
+
'allowedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
1357
1195
|
/**
|
|
1358
|
-
*
|
|
1359
|
-
* @type {
|
|
1360
|
-
* @memberof
|
|
1196
|
+
* Array of denied resources
|
|
1197
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
1198
|
+
* @memberof GetAuthorizedOrgsResponse
|
|
1361
1199
|
*/
|
|
1362
|
-
'
|
|
1200
|
+
'deniedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
1363
1201
|
}
|
|
1364
1202
|
/**
|
|
1365
|
-
*
|
|
1203
|
+
* Request to get authorized properties for a principal or the authenticated user based on the headers. Either principal or headers must be provided, but not both. If both are provided, the principal will be used.
|
|
1366
1204
|
* @export
|
|
1367
|
-
* @interface
|
|
1205
|
+
* @interface GetAuthorizedPropertiesRequest
|
|
1368
1206
|
*/
|
|
1369
|
-
export interface
|
|
1207
|
+
export interface GetAuthorizedPropertiesRequest {
|
|
1370
1208
|
/**
|
|
1371
1209
|
*
|
|
1372
|
-
* @type {
|
|
1373
|
-
* @memberof
|
|
1210
|
+
* @type {GetAuthorizedOrgsRequestPrincipal}
|
|
1211
|
+
* @memberof GetAuthorizedPropertiesRequest
|
|
1374
1212
|
*/
|
|
1375
|
-
'
|
|
1213
|
+
'principal'?: GetAuthorizedOrgsRequestPrincipal;
|
|
1376
1214
|
/**
|
|
1377
|
-
*
|
|
1215
|
+
* Incoming request headers to be used for authentication
|
|
1216
|
+
* @type {{ [key: string]: string; }}
|
|
1217
|
+
* @memberof GetAuthorizedPropertiesRequest
|
|
1218
|
+
*/
|
|
1219
|
+
'headers'?: { [key: string]: string; };
|
|
1220
|
+
/**
|
|
1221
|
+
* The action to check authorisation for
|
|
1378
1222
|
* @type {string}
|
|
1379
|
-
* @memberof
|
|
1223
|
+
* @memberof GetAuthorizedPropertiesRequest
|
|
1380
1224
|
*/
|
|
1381
|
-
'
|
|
1382
|
-
}
|
|
1383
|
-
/**
|
|
1384
|
-
*
|
|
1385
|
-
* @export
|
|
1386
|
-
* @interface ValidationErrorsInnerPathInner
|
|
1387
|
-
*/
|
|
1388
|
-
export interface ValidationErrorsInnerPathInner {
|
|
1225
|
+
'action': GetAuthorizedPropertiesRequestActionEnum;
|
|
1389
1226
|
}
|
|
1390
1227
|
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1228
|
+
export const GetAuthorizedPropertiesRequestActionEnum = {
|
|
1229
|
+
AnyAuditLogs: 'AnyAuditLogs',
|
|
1230
|
+
ViewApp: 'ViewApp',
|
|
1231
|
+
CreateApp: 'CreateApp',
|
|
1232
|
+
UpdateApp: 'UpdateApp',
|
|
1233
|
+
ViewAppName: 'ViewAppName',
|
|
1234
|
+
EditAppAssets: 'EditAppAssets',
|
|
1235
|
+
EditAppFeatures: 'EditAppFeatures',
|
|
1236
|
+
ViewTeammates: 'ViewTeammates',
|
|
1237
|
+
EditTeammates: 'EditTeammates',
|
|
1238
|
+
CreateTeammateOwner: 'CreateTeammateOwner',
|
|
1239
|
+
CreateTeammateManagedOwner: 'CreateTeammateManagedOwner',
|
|
1240
|
+
CreateTeammateStoreOwner: 'CreateTeammateStoreOwner',
|
|
1241
|
+
CreateTeammateStoreManager: 'CreateTeammateStoreManager',
|
|
1242
|
+
CreateTeammateStoreStaff: 'CreateTeammateStoreStaff',
|
|
1243
|
+
CreateTeammateStoreReadAccess: 'CreateTeammateStoreReadAccess',
|
|
1244
|
+
CreateTeammateFinanceManager: 'CreateTeammateFinanceManager',
|
|
1245
|
+
CreateTeammateIntegrator: 'CreateTeammateIntegrator',
|
|
1246
|
+
CreateTeammateOnboarding: 'CreateTeammateOnboarding',
|
|
1247
|
+
CreateTeammatePropertyManager: 'CreateTeammatePropertyManager',
|
|
1248
|
+
CreateTeammatePropertyOwner: 'CreateTeammatePropertyOwner',
|
|
1249
|
+
ViewApmConfigurations: 'ViewApmConfigurations',
|
|
1250
|
+
EditApmConfigurations: 'EditApmConfigurations',
|
|
1251
|
+
ViewCampaignsConfigurations: 'ViewCampaignsConfigurations',
|
|
1252
|
+
CreateCampaignsConfigurations: 'CreateCampaignsConfigurations',
|
|
1253
|
+
UpdateCampaignsConfigurations: 'UpdateCampaignsConfigurations',
|
|
1254
|
+
DeleteCampaignsConfigurations: 'DeleteCampaignsConfigurations',
|
|
1255
|
+
StampLoyaltyCardAgainstCampaignsConfigurations: 'StampLoyaltyCardAgainstCampaignsConfigurations',
|
|
1256
|
+
ViewDevelopersSettings: 'ViewDevelopersSettings',
|
|
1257
|
+
EditDevelopersSettings: 'EditDevelopersSettings',
|
|
1258
|
+
ViewOrders: 'ViewOrders',
|
|
1259
|
+
UpdateOrdersAccept: 'UpdateOrdersAccept',
|
|
1260
|
+
UpdateOrdersReject: 'UpdateOrdersReject',
|
|
1261
|
+
UpdateOrdersRefund: 'UpdateOrdersRefund',
|
|
1262
|
+
UpdateOrdersDispatch: 'UpdateOrdersDispatch',
|
|
1263
|
+
ViewStores: 'ViewStores',
|
|
1264
|
+
CreateStores: 'CreateStores',
|
|
1265
|
+
EditStores: 'EditStores',
|
|
1266
|
+
ViewStoresOpeningHours: 'ViewStoresOpeningHours',
|
|
1267
|
+
UpdateStoresOpenForCollectionOrDelivery: 'UpdateStoresOpenForCollectionOrDelivery',
|
|
1268
|
+
UpdateStoresOpeningHours: 'UpdateStoresOpeningHours',
|
|
1269
|
+
ViewStoresOpeningHoursOverride: 'ViewStoresOpeningHoursOverride',
|
|
1270
|
+
EditStoresOpeningHoursOverride: 'EditStoresOpeningHoursOverride',
|
|
1271
|
+
EditStoresOpeningHoursOverrideTemporary: 'EditStoresOpeningHoursOverrideTemporary',
|
|
1272
|
+
UpdateStoresName: 'UpdateStoresName',
|
|
1273
|
+
EditStoreKioskSettings: 'EditStoreKioskSettings',
|
|
1274
|
+
EditStoreOrderCapacity: 'EditStoreOrderCapacity',
|
|
1275
|
+
EditStoreNotifications: 'EditStoreNotifications',
|
|
1276
|
+
ArchiveStores: 'ArchiveStores',
|
|
1277
|
+
PublishStores: 'PublishStores',
|
|
1278
|
+
UpdatePrinterTerminalsAssign: 'UpdatePrinterTerminalsAssign',
|
|
1279
|
+
UpdatePrinterTerminalsToggle: 'UpdatePrinterTerminalsToggle',
|
|
1280
|
+
ViewStoreGroups: 'ViewStoreGroups',
|
|
1281
|
+
CreateStoreGroups: 'CreateStoreGroups',
|
|
1282
|
+
UpdateStoreGroups: 'UpdateStoreGroups',
|
|
1283
|
+
DeleteStoreGroups: 'DeleteStoreGroups',
|
|
1284
|
+
ViewDeliveryZones: 'ViewDeliveryZones',
|
|
1285
|
+
CreateDeliveryZones: 'CreateDeliveryZones',
|
|
1286
|
+
UpdateDeliveryZones: 'UpdateDeliveryZones',
|
|
1287
|
+
DeleteDeliveryZones: 'DeleteDeliveryZones',
|
|
1288
|
+
ViewMenu: 'ViewMenu',
|
|
1289
|
+
CreateMenu: 'CreateMenu',
|
|
1290
|
+
UpdateMenu: 'UpdateMenu',
|
|
1291
|
+
DeleteMenu: 'DeleteMenu',
|
|
1292
|
+
UpdateMenuLock: 'UpdateMenuLock',
|
|
1293
|
+
UpdateMenuItemsHideTemporarily: 'UpdateMenuItemsHideTemporarily',
|
|
1294
|
+
EditMenuImage: 'EditMenuImage',
|
|
1295
|
+
ViewVouchers: 'ViewVouchers',
|
|
1296
|
+
EditVouchers: 'EditVouchers',
|
|
1297
|
+
ViewWebsiteContent: 'ViewWebsiteContent',
|
|
1298
|
+
EditWebsiteContent: 'EditWebsiteContent',
|
|
1299
|
+
ViewWebsiteDnsVerified: 'ViewWebsiteDnsVerified',
|
|
1300
|
+
ViewWebsiteCertificateCreated: 'ViewWebsiteCertificateCreated',
|
|
1301
|
+
ViewWebsiteCertificateRenewed: 'ViewWebsiteCertificateRenewed',
|
|
1302
|
+
ViewBankAccounts: 'ViewBankAccounts',
|
|
1303
|
+
CreateBankAccounts: 'CreateBankAccounts',
|
|
1304
|
+
UpdateBankAccounts: 'UpdateBankAccounts',
|
|
1305
|
+
UpdateBankAccountsAssign: 'UpdateBankAccountsAssign',
|
|
1306
|
+
ViewAssignedBankAccount: 'ViewAssignedBankAccount',
|
|
1307
|
+
VerifyBankAccounts: 'VerifyBankAccounts',
|
|
1308
|
+
ViewServiceChargeConfigurations: 'ViewServiceChargeConfigurations',
|
|
1309
|
+
EditServiceChargeConfigurations: 'EditServiceChargeConfigurations',
|
|
1310
|
+
EditStoreDeliveryZoneFees: 'EditStoreDeliveryZoneFees',
|
|
1311
|
+
EditStoreDeliveryFeesLimited: 'EditStoreDeliveryFeesLimited',
|
|
1312
|
+
ViewHydraConfig: 'ViewHydraConfig',
|
|
1313
|
+
UpdateHydraConfigManage: 'UpdateHydraConfigManage',
|
|
1314
|
+
InitiateBluetoothPairingMode: 'InitiateBluetoothPairingMode',
|
|
1315
|
+
DeleteTerminal: 'DeleteTerminal',
|
|
1316
|
+
ViewKioskTelemetry: 'ViewKioskTelemetry',
|
|
1317
|
+
ViewCustomers: 'ViewCustomers',
|
|
1318
|
+
EditCustomers: 'EditCustomers',
|
|
1319
|
+
CreateCustomers: 'CreateCustomers',
|
|
1320
|
+
CreateCatalogElements: 'CreateCatalogElements',
|
|
1321
|
+
UpdateCatalogElements: 'UpdateCatalogElements',
|
|
1322
|
+
ViewCatalogElements: 'ViewCatalogElements',
|
|
1323
|
+
DeleteCatalogElements: 'DeleteCatalogElements',
|
|
1324
|
+
ViewMetafieldDefinitions: 'ViewMetafieldDefinitions',
|
|
1325
|
+
CreateMetafieldDefinitions: 'CreateMetafieldDefinitions',
|
|
1326
|
+
UpdateMetafieldDefinitions: 'UpdateMetafieldDefinitions',
|
|
1327
|
+
DeleteMetafieldDefinitions: 'DeleteMetafieldDefinitions',
|
|
1328
|
+
UpdateMetafields: 'UpdateMetafields',
|
|
1329
|
+
ViewCatalogMenuChanges: 'ViewCatalogMenuChanges',
|
|
1330
|
+
PublishCatalogMenuChanges: 'PublishCatalogMenuChanges',
|
|
1331
|
+
ViewAppStatistics: 'ViewAppStatistics',
|
|
1332
|
+
ViewApmStatistics: 'ViewApmStatistics',
|
|
1333
|
+
ViewCampaignsStatistics: 'ViewCampaignsStatistics',
|
|
1334
|
+
ViewCustomerStatistics: 'ViewCustomerStatistics',
|
|
1335
|
+
ViewLiveStatistics: 'ViewLiveStatistics',
|
|
1336
|
+
ViewOrderStatistics: 'ViewOrderStatistics',
|
|
1337
|
+
ViewSalesStatistics: 'ViewSalesStatistics',
|
|
1338
|
+
ViewSalesEndOfDayStatistics: 'ViewSalesEndOfDayStatistics',
|
|
1339
|
+
ViewVouchersStatistics: 'ViewVouchersStatistics',
|
|
1340
|
+
DownloadCustomerCsvExport: 'DownloadCustomerCsvExport',
|
|
1341
|
+
ViewApmAuditLogs: 'ViewApmAuditLogs',
|
|
1342
|
+
ViewStoreAuditLogs: 'ViewStoreAuditLogs',
|
|
1343
|
+
ViewMenuAuditLogs: 'ViewMenuAuditLogs',
|
|
1344
|
+
ViewBankAccountAuditLogs: 'ViewBankAccountAuditLogs',
|
|
1345
|
+
ViewFeeConfigurationsAuditLogs: 'ViewFeeConfigurationsAuditLogs',
|
|
1346
|
+
ViewOrdersAuditLogs: 'ViewOrdersAuditLogs',
|
|
1347
|
+
ViewVouchersAuditLogs: 'ViewVouchersAuditLogs',
|
|
1348
|
+
ViewUserEventsAuditLogs: 'ViewUserEventsAuditLogs',
|
|
1349
|
+
ViewCampaignsAuditLogs: 'ViewCampaignsAuditLogs',
|
|
1350
|
+
ViewTeammatesAuditLogs: 'ViewTeammatesAuditLogs',
|
|
1351
|
+
ViewAppAuditLogs: 'ViewAppAuditLogs',
|
|
1352
|
+
ViewCustomerAuditLogs: 'ViewCustomerAuditLogs',
|
|
1353
|
+
ViewPrinterAuditLogs: 'ViewPrinterAuditLogs',
|
|
1354
|
+
ViewHydraAuditLogs: 'ViewHydraAuditLogs',
|
|
1355
|
+
ViewPushNotificationAuditLogs: 'ViewPushNotificationAuditLogs',
|
|
1356
|
+
ViewStripeCustomConnectedAccountAuditLogs: 'ViewStripeCustomConnectedAccountAuditLogs',
|
|
1357
|
+
ViewKioskBluetoothDeviceAuditLogs: 'ViewKioskBluetoothDeviceAuditLogs',
|
|
1358
|
+
ViewExternalAuditLogs: 'ViewExternalAuditLogs',
|
|
1359
|
+
CreateExternalAuditLogEvents: 'CreateExternalAuditLogEvents',
|
|
1360
|
+
ViewCatalogAuditLogs: 'ViewCatalogAuditLogs',
|
|
1361
|
+
ViewOrderFulfillmentAuditLogs: 'ViewOrderFulfillmentAuditLogs',
|
|
1362
|
+
ViewChannelAuditLogs: 'ViewChannelAuditLogs',
|
|
1363
|
+
ViewAppStoreAuditLogs: 'ViewAppStoreAuditLogs',
|
|
1364
|
+
SendPushNotificationToCustomer: 'SendPushNotificationToCustomer',
|
|
1365
|
+
InviteDriverToApp: 'InviteDriverToApp',
|
|
1366
|
+
GetDriverForApp: 'GetDriverForApp',
|
|
1367
|
+
RemoveDriverFromApp: 'RemoveDriverFromApp',
|
|
1368
|
+
AssignDriverToOrder: 'AssignDriverToOrder',
|
|
1369
|
+
UnassignDriverFromOrder: 'UnassignDriverFromOrder',
|
|
1370
|
+
UpdateOrdersDeliveryTrackingStatus: 'UpdateOrdersDeliveryTrackingStatus',
|
|
1371
|
+
UpdateOrderFulfillmentStatus: 'UpdateOrderFulfillmentStatus',
|
|
1372
|
+
ViewFulfillmentStatesConfiguration: 'ViewFulfillmentStatesConfiguration',
|
|
1373
|
+
CreateFulfillmentStatesConfiguration: 'CreateFulfillmentStatesConfiguration',
|
|
1374
|
+
UpdateFulfillmentStatesConfiguration: 'UpdateFulfillmentStatesConfiguration',
|
|
1375
|
+
DeleteFulfillmentStatesConfiguration: 'DeleteFulfillmentStatesConfiguration',
|
|
1376
|
+
ViewPayouts: 'ViewPayouts',
|
|
1377
|
+
ViewChannels: 'ViewChannels',
|
|
1378
|
+
ViewOnboarding: 'ViewOnboarding',
|
|
1379
|
+
UpdateOnboarding: 'UpdateOnboarding',
|
|
1380
|
+
ViewClientDevices: 'ViewClientDevices',
|
|
1381
|
+
UpdateClientDevices: 'UpdateClientDevices',
|
|
1382
|
+
EnrollClientDevices: 'EnrollClientDevices',
|
|
1383
|
+
AssignClientDevices: 'AssignClientDevices',
|
|
1384
|
+
ViewClientAuditLogs: 'ViewClientAuditLogs',
|
|
1385
|
+
CreateAppStoreAppConfiguration: 'CreateAppStoreAppConfiguration',
|
|
1386
|
+
ViewAppStoreAppConfiguration: 'ViewAppStoreAppConfiguration',
|
|
1387
|
+
UpdateAppStoreAppConfiguration: 'UpdateAppStoreAppConfiguration',
|
|
1388
|
+
DeleteAppStoreAppConfiguration: 'DeleteAppStoreAppConfiguration',
|
|
1389
|
+
UpdateAppStoreAppConfigurationSettings: 'UpdateAppStoreAppConfigurationSettings',
|
|
1390
|
+
CreateAppStoreSubscription: 'CreateAppStoreSubscription',
|
|
1391
|
+
UpdateAppStoreSubscription: 'UpdateAppStoreSubscription',
|
|
1392
|
+
DeleteAppStoreSubscription: 'DeleteAppStoreSubscription',
|
|
1393
|
+
ViewSalesChannels: 'ViewSalesChannels',
|
|
1394
|
+
EditSalesChannels: 'EditSalesChannels',
|
|
1395
|
+
CreateSalesChannel: 'CreateSalesChannel',
|
|
1396
|
+
ArchiveSalesChannel: 'ArchiveSalesChannel',
|
|
1397
|
+
UnarchiveSalesChannel: 'UnarchiveSalesChannel',
|
|
1398
|
+
PublishSalesChannel: 'PublishSalesChannel',
|
|
1399
|
+
UnpublishSalesChannel: 'UnpublishSalesChannel',
|
|
1400
|
+
CloneSalesChannel: 'CloneSalesChannel',
|
|
1401
|
+
ViewPayGreenWhiteLabelConfiguration: 'ViewPayGreenWhiteLabelConfiguration',
|
|
1402
|
+
CreatePayGreenWhiteLabelConfiguration: 'CreatePayGreenWhiteLabelConfiguration',
|
|
1403
|
+
UpdatePayGreenWhiteLabelConfiguration: 'UpdatePayGreenWhiteLabelConfiguration',
|
|
1404
|
+
UpdatePayGreenStoreConfiguration: 'UpdatePayGreenStoreConfiguration',
|
|
1405
|
+
ViewSubscriptions: 'ViewSubscriptions',
|
|
1406
|
+
ViewInvoices: 'ViewInvoices',
|
|
1407
|
+
EditAccountsBills: 'EditAccountsBills',
|
|
1408
|
+
ViewAccountsBills: 'ViewAccountsBills',
|
|
1409
|
+
EditAccountsCategories: 'EditAccountsCategories',
|
|
1410
|
+
ViewAccountsCategories: 'ViewAccountsCategories',
|
|
1411
|
+
EditAccountsCreditAccounts: 'EditAccountsCreditAccounts',
|
|
1412
|
+
ViewAccountsCreditAccounts: 'ViewAccountsCreditAccounts',
|
|
1413
|
+
EditAccountsCreditBooks: 'EditAccountsCreditBooks',
|
|
1414
|
+
ViewAccountsCreditBooks: 'ViewAccountsCreditBooks',
|
|
1415
|
+
EditAccountsExpenses: 'EditAccountsExpenses',
|
|
1416
|
+
ViewAccountsExpenses: 'ViewAccountsExpenses',
|
|
1417
|
+
EditAccountsTransactionAccounts: 'EditAccountsTransactionAccounts',
|
|
1418
|
+
ViewAccountsTransactionAccounts: 'ViewAccountsTransactionAccounts',
|
|
1419
|
+
EditDocumentExplorer: 'EditDocumentExplorer',
|
|
1420
|
+
ViewDocumentExplorer: 'ViewDocumentExplorer',
|
|
1421
|
+
ViewInventoryReports: 'ViewInventoryReports',
|
|
1422
|
+
EditInventoryPurchaseOrders: 'EditInventoryPurchaseOrders',
|
|
1423
|
+
ViewInventoryPurchaseOrders: 'ViewInventoryPurchaseOrders',
|
|
1424
|
+
EditInventoryStockItems: 'EditInventoryStockItems',
|
|
1425
|
+
ViewInventoryStockItems: 'ViewInventoryStockItems',
|
|
1426
|
+
EditInventorySupplier: 'EditInventorySupplier',
|
|
1427
|
+
ViewInventorySupplier: 'ViewInventorySupplier',
|
|
1428
|
+
EditInventoryTrackingProfiles: 'EditInventoryTrackingProfiles',
|
|
1429
|
+
ViewInventoryTrackingProfiles: 'ViewInventoryTrackingProfiles',
|
|
1430
|
+
ViewPayrollReports: 'ViewPayrollReports',
|
|
1431
|
+
EditPayrollHoliday: 'EditPayrollHoliday',
|
|
1432
|
+
ViewPayrollHoliday: 'ViewPayrollHoliday',
|
|
1433
|
+
EditPayrollRota: 'EditPayrollRota',
|
|
1434
|
+
ViewPayrollRota: 'ViewPayrollRota',
|
|
1435
|
+
EditPayrollStaff: 'EditPayrollStaff',
|
|
1436
|
+
ViewPayrollStaff: 'ViewPayrollStaff',
|
|
1437
|
+
ViewSalesReports: 'ViewSalesReports',
|
|
1438
|
+
ViewCostReports: 'ViewCostReports',
|
|
1439
|
+
ViewMenuReports: 'ViewMenuReports',
|
|
1440
|
+
ViewBrand: 'ViewBrand',
|
|
1441
|
+
EditBrand: 'EditBrand',
|
|
1442
|
+
CreateBrand: 'CreateBrand',
|
|
1443
|
+
TransferBrand: 'TransferBrand',
|
|
1444
|
+
ViewProperty: 'ViewProperty',
|
|
1445
|
+
EditProperty: 'EditProperty',
|
|
1446
|
+
CreateProperty: 'CreateProperty',
|
|
1447
|
+
ArchiveProperty: 'ArchiveProperty',
|
|
1448
|
+
ViewEntityFeatureFlags: 'ViewEntityFeatureFlags',
|
|
1449
|
+
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
1450
|
+
CreateOrg: 'CreateOrg',
|
|
1451
|
+
EditOrg: 'EditOrg',
|
|
1452
|
+
ViewOrg: 'ViewOrg',
|
|
1453
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
1454
|
+
EditWebhooks: 'EditWebhooks',
|
|
1455
|
+
RoleAdmin: 'RoleAdmin',
|
|
1456
|
+
RoleFactory: 'RoleFactory'
|
|
1457
|
+
} as const;
|
|
1458
|
+
|
|
1459
|
+
export type GetAuthorizedPropertiesRequestActionEnum = typeof GetAuthorizedPropertiesRequestActionEnum[keyof typeof GetAuthorizedPropertiesRequestActionEnum];
|
|
1460
|
+
|
|
1461
|
+
/**
|
|
1462
|
+
* Response containing the authorized properties
|
|
1463
|
+
* @export
|
|
1464
|
+
* @interface GetAuthorizedPropertiesResponse
|
|
1465
|
+
*/
|
|
1466
|
+
export interface GetAuthorizedPropertiesResponse {
|
|
1467
|
+
/**
|
|
1468
|
+
* Array of allowed resources
|
|
1469
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
1470
|
+
* @memberof GetAuthorizedPropertiesResponse
|
|
1471
|
+
*/
|
|
1472
|
+
'allowedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
1473
|
+
/**
|
|
1474
|
+
* Array of denied resources
|
|
1475
|
+
* @type {Array<AuthorizationBatchResponseAllowedResourcesInner>}
|
|
1476
|
+
* @memberof GetAuthorizedPropertiesResponse
|
|
1477
|
+
*/
|
|
1478
|
+
'deniedResources': Array<AuthorizationBatchResponseAllowedResourcesInner>;
|
|
1479
|
+
}
|
|
1480
|
+
/**
|
|
1481
|
+
* Details for getting roles for a principal
|
|
1482
|
+
* @export
|
|
1483
|
+
* @interface GetPrincipalRolesRequestBody
|
|
1484
|
+
*/
|
|
1485
|
+
export interface GetPrincipalRolesRequestBody {
|
|
1486
|
+
/**
|
|
1487
|
+
*
|
|
1488
|
+
* @type {AuthorizationRequestPrincipal}
|
|
1489
|
+
* @memberof GetPrincipalRolesRequestBody
|
|
1490
|
+
*/
|
|
1491
|
+
'principal': AuthorizationRequestPrincipal;
|
|
1492
|
+
/**
|
|
1493
|
+
*
|
|
1494
|
+
* @type {AuthorizationRequestResource}
|
|
1495
|
+
* @memberof GetPrincipalRolesRequestBody
|
|
1496
|
+
*/
|
|
1497
|
+
'resource'?: AuthorizationRequestResource;
|
|
1498
|
+
}
|
|
1499
|
+
/**
|
|
1500
|
+
* Successful roles retrieval response
|
|
1501
|
+
* @export
|
|
1502
|
+
* @interface GetPrincipalRolesSuccessResponse
|
|
1503
|
+
*/
|
|
1504
|
+
export interface GetPrincipalRolesSuccessResponse {
|
|
1505
|
+
/**
|
|
1506
|
+
* List of roles assigned to the principal
|
|
1507
|
+
* @type {Array<GetPrincipalRolesSuccessResponseRolesInner>}
|
|
1508
|
+
* @memberof GetPrincipalRolesSuccessResponse
|
|
1509
|
+
*/
|
|
1510
|
+
'roles': Array<GetPrincipalRolesSuccessResponseRolesInner>;
|
|
1511
|
+
}
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @export
|
|
1515
|
+
* @interface GetPrincipalRolesSuccessResponseRolesInner
|
|
1516
|
+
*/
|
|
1517
|
+
export interface GetPrincipalRolesSuccessResponseRolesInner {
|
|
1518
|
+
/**
|
|
1519
|
+
* Policy ID
|
|
1520
|
+
* @type {string}
|
|
1521
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1522
|
+
*/
|
|
1523
|
+
'policyId': string;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {GetPrincipalRolesSuccessResponseRolesInnerRoleName}
|
|
1527
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1528
|
+
*/
|
|
1529
|
+
'roleName': GetPrincipalRolesSuccessResponseRolesInnerRoleName;
|
|
1530
|
+
/**
|
|
1531
|
+
* Policy type
|
|
1532
|
+
* @type {string}
|
|
1533
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1534
|
+
*/
|
|
1535
|
+
'policyType': GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum;
|
|
1536
|
+
/**
|
|
1537
|
+
* Date and time the role was assigned
|
|
1538
|
+
* @type {string}
|
|
1539
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1540
|
+
*/
|
|
1541
|
+
'assignedAt': string;
|
|
1542
|
+
/**
|
|
1543
|
+
* User who assigned the role
|
|
1544
|
+
* @type {string}
|
|
1545
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1546
|
+
*/
|
|
1547
|
+
'assignedBy': string;
|
|
1548
|
+
/**
|
|
1549
|
+
* Type of resource the role is assigned to
|
|
1550
|
+
* @type {string}
|
|
1551
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1552
|
+
*/
|
|
1553
|
+
'resourceType'?: GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum;
|
|
1554
|
+
/**
|
|
1555
|
+
* Organization ID
|
|
1556
|
+
* @type {string}
|
|
1557
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1558
|
+
*/
|
|
1559
|
+
'orgId'?: string;
|
|
1560
|
+
/**
|
|
1561
|
+
* Property ID
|
|
1562
|
+
* @type {string}
|
|
1563
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1564
|
+
*/
|
|
1565
|
+
'propertyId'?: string;
|
|
1566
|
+
/**
|
|
1567
|
+
* Brand ID this role is scoped to
|
|
1568
|
+
* @type {string}
|
|
1569
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1570
|
+
*/
|
|
1571
|
+
'brandId'?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* Sales channel ID this role is scoped to
|
|
1574
|
+
* @type {string}
|
|
1575
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1576
|
+
*/
|
|
1577
|
+
'salesChannelId'?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
* Principal ID this role is assigned to
|
|
1580
|
+
* @type {string}
|
|
1581
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1582
|
+
*/
|
|
1583
|
+
'principalId': string;
|
|
1584
|
+
/**
|
|
1585
|
+
* Type of principal this role is assigned to
|
|
1586
|
+
* @type {string}
|
|
1587
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1588
|
+
*/
|
|
1589
|
+
'principalType': GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
export const GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum = {
|
|
1593
|
+
Main: 'Main',
|
|
1594
|
+
BrandOverride: 'BrandOverride',
|
|
1595
|
+
OrgOverride: 'OrgOverride',
|
|
1596
|
+
Forbidden: 'Forbidden',
|
|
1597
|
+
NamedRole: 'NamedRole'
|
|
1598
|
+
} as const;
|
|
1599
|
+
|
|
1600
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum];
|
|
1601
|
+
export const GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = {
|
|
1602
|
+
Property: 'Property',
|
|
1603
|
+
Org: 'Org',
|
|
1604
|
+
Brand: 'Brand',
|
|
1605
|
+
SalesChannel: 'SalesChannel'
|
|
1606
|
+
} as const;
|
|
1607
|
+
|
|
1608
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum];
|
|
1609
|
+
export const GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum = {
|
|
1610
|
+
User: 'User',
|
|
1611
|
+
Automation: 'Automation'
|
|
1612
|
+
} as const;
|
|
1613
|
+
|
|
1614
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum];
|
|
1615
|
+
|
|
1616
|
+
/**
|
|
1617
|
+
* Role name
|
|
1618
|
+
* @export
|
|
1619
|
+
* @interface GetPrincipalRolesSuccessResponseRolesInnerRoleName
|
|
1620
|
+
*/
|
|
1621
|
+
export interface GetPrincipalRolesSuccessResponseRolesInnerRoleName {
|
|
1622
|
+
}
|
|
1623
|
+
/**
|
|
1624
|
+
* Successful user permissions retrieval response
|
|
1625
|
+
* @export
|
|
1626
|
+
* @interface GetUserPermissionsSuccessResponse
|
|
1627
|
+
*/
|
|
1628
|
+
export interface GetUserPermissionsSuccessResponse {
|
|
1629
|
+
/**
|
|
1630
|
+
* Map of resource IDs to permissions
|
|
1631
|
+
* @type {{ [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }}
|
|
1632
|
+
* @memberof GetUserPermissionsSuccessResponse
|
|
1633
|
+
*/
|
|
1634
|
+
'resources': { [key: string]: GetUserPermissionsSuccessResponseResourcesValue; };
|
|
1635
|
+
}
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @export
|
|
1639
|
+
* @interface GetUserPermissionsSuccessResponseResourcesValue
|
|
1640
|
+
*/
|
|
1641
|
+
export interface GetUserPermissionsSuccessResponseResourcesValue {
|
|
1642
|
+
/**
|
|
1643
|
+
* Type of resource the permissions are assigned to
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
1646
|
+
*/
|
|
1647
|
+
'resourceType': GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {GetUserPermissionsSuccessResponseResourcesValueResourceId}
|
|
1651
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
1652
|
+
*/
|
|
1653
|
+
'resourceId': GetUserPermissionsSuccessResponseResourcesValueResourceId;
|
|
1654
|
+
/**
|
|
1655
|
+
* List of permissions that are assigned to the user for the resource
|
|
1656
|
+
* @type {Array<string>}
|
|
1657
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
1658
|
+
*/
|
|
1659
|
+
'permissions': Array<GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum>;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
export const GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = {
|
|
1663
|
+
Property: 'Property',
|
|
1664
|
+
Org: 'Org',
|
|
1665
|
+
Brand: 'Brand',
|
|
1666
|
+
SalesChannel: 'SalesChannel'
|
|
1667
|
+
} as const;
|
|
1668
|
+
|
|
1669
|
+
export type GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum];
|
|
1670
|
+
export const GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = {
|
|
1671
|
+
AnyAuditLogs: 'AnyAuditLogs',
|
|
1672
|
+
ViewApp: 'ViewApp',
|
|
1673
|
+
CreateApp: 'CreateApp',
|
|
1674
|
+
UpdateApp: 'UpdateApp',
|
|
1675
|
+
ViewAppName: 'ViewAppName',
|
|
1676
|
+
EditAppAssets: 'EditAppAssets',
|
|
1677
|
+
EditAppFeatures: 'EditAppFeatures',
|
|
1678
|
+
ViewTeammates: 'ViewTeammates',
|
|
1679
|
+
EditTeammates: 'EditTeammates',
|
|
1680
|
+
CreateTeammateOwner: 'CreateTeammateOwner',
|
|
1681
|
+
CreateTeammateManagedOwner: 'CreateTeammateManagedOwner',
|
|
1682
|
+
CreateTeammateStoreOwner: 'CreateTeammateStoreOwner',
|
|
1683
|
+
CreateTeammateStoreManager: 'CreateTeammateStoreManager',
|
|
1684
|
+
CreateTeammateStoreStaff: 'CreateTeammateStoreStaff',
|
|
1685
|
+
CreateTeammateStoreReadAccess: 'CreateTeammateStoreReadAccess',
|
|
1686
|
+
CreateTeammateFinanceManager: 'CreateTeammateFinanceManager',
|
|
1687
|
+
CreateTeammateIntegrator: 'CreateTeammateIntegrator',
|
|
1688
|
+
CreateTeammateOnboarding: 'CreateTeammateOnboarding',
|
|
1689
|
+
CreateTeammatePropertyManager: 'CreateTeammatePropertyManager',
|
|
1690
|
+
CreateTeammatePropertyOwner: 'CreateTeammatePropertyOwner',
|
|
1691
|
+
ViewApmConfigurations: 'ViewApmConfigurations',
|
|
1692
|
+
EditApmConfigurations: 'EditApmConfigurations',
|
|
1693
|
+
ViewCampaignsConfigurations: 'ViewCampaignsConfigurations',
|
|
1694
|
+
CreateCampaignsConfigurations: 'CreateCampaignsConfigurations',
|
|
1695
|
+
UpdateCampaignsConfigurations: 'UpdateCampaignsConfigurations',
|
|
1696
|
+
DeleteCampaignsConfigurations: 'DeleteCampaignsConfigurations',
|
|
1697
|
+
StampLoyaltyCardAgainstCampaignsConfigurations: 'StampLoyaltyCardAgainstCampaignsConfigurations',
|
|
1698
|
+
ViewDevelopersSettings: 'ViewDevelopersSettings',
|
|
1699
|
+
EditDevelopersSettings: 'EditDevelopersSettings',
|
|
1700
|
+
ViewOrders: 'ViewOrders',
|
|
1701
|
+
UpdateOrdersAccept: 'UpdateOrdersAccept',
|
|
1702
|
+
UpdateOrdersReject: 'UpdateOrdersReject',
|
|
1703
|
+
UpdateOrdersRefund: 'UpdateOrdersRefund',
|
|
1704
|
+
UpdateOrdersDispatch: 'UpdateOrdersDispatch',
|
|
1705
|
+
ViewStores: 'ViewStores',
|
|
1706
|
+
CreateStores: 'CreateStores',
|
|
1707
|
+
EditStores: 'EditStores',
|
|
1708
|
+
ViewStoresOpeningHours: 'ViewStoresOpeningHours',
|
|
1709
|
+
UpdateStoresOpenForCollectionOrDelivery: 'UpdateStoresOpenForCollectionOrDelivery',
|
|
1710
|
+
UpdateStoresOpeningHours: 'UpdateStoresOpeningHours',
|
|
1711
|
+
ViewStoresOpeningHoursOverride: 'ViewStoresOpeningHoursOverride',
|
|
1712
|
+
EditStoresOpeningHoursOverride: 'EditStoresOpeningHoursOverride',
|
|
1713
|
+
EditStoresOpeningHoursOverrideTemporary: 'EditStoresOpeningHoursOverrideTemporary',
|
|
1714
|
+
UpdateStoresName: 'UpdateStoresName',
|
|
1715
|
+
EditStoreKioskSettings: 'EditStoreKioskSettings',
|
|
1716
|
+
EditStoreOrderCapacity: 'EditStoreOrderCapacity',
|
|
1717
|
+
EditStoreNotifications: 'EditStoreNotifications',
|
|
1718
|
+
ArchiveStores: 'ArchiveStores',
|
|
1719
|
+
PublishStores: 'PublishStores',
|
|
1720
|
+
UpdatePrinterTerminalsAssign: 'UpdatePrinterTerminalsAssign',
|
|
1721
|
+
UpdatePrinterTerminalsToggle: 'UpdatePrinterTerminalsToggle',
|
|
1722
|
+
ViewStoreGroups: 'ViewStoreGroups',
|
|
1723
|
+
CreateStoreGroups: 'CreateStoreGroups',
|
|
1724
|
+
UpdateStoreGroups: 'UpdateStoreGroups',
|
|
1725
|
+
DeleteStoreGroups: 'DeleteStoreGroups',
|
|
1726
|
+
ViewDeliveryZones: 'ViewDeliveryZones',
|
|
1727
|
+
CreateDeliveryZones: 'CreateDeliveryZones',
|
|
1728
|
+
UpdateDeliveryZones: 'UpdateDeliveryZones',
|
|
1729
|
+
DeleteDeliveryZones: 'DeleteDeliveryZones',
|
|
1730
|
+
ViewMenu: 'ViewMenu',
|
|
1731
|
+
CreateMenu: 'CreateMenu',
|
|
1732
|
+
UpdateMenu: 'UpdateMenu',
|
|
1733
|
+
DeleteMenu: 'DeleteMenu',
|
|
1734
|
+
UpdateMenuLock: 'UpdateMenuLock',
|
|
1735
|
+
UpdateMenuItemsHideTemporarily: 'UpdateMenuItemsHideTemporarily',
|
|
1736
|
+
EditMenuImage: 'EditMenuImage',
|
|
1737
|
+
ViewVouchers: 'ViewVouchers',
|
|
1738
|
+
EditVouchers: 'EditVouchers',
|
|
1739
|
+
ViewWebsiteContent: 'ViewWebsiteContent',
|
|
1740
|
+
EditWebsiteContent: 'EditWebsiteContent',
|
|
1741
|
+
ViewWebsiteDnsVerified: 'ViewWebsiteDnsVerified',
|
|
1742
|
+
ViewWebsiteCertificateCreated: 'ViewWebsiteCertificateCreated',
|
|
1743
|
+
ViewWebsiteCertificateRenewed: 'ViewWebsiteCertificateRenewed',
|
|
1744
|
+
ViewBankAccounts: 'ViewBankAccounts',
|
|
1745
|
+
CreateBankAccounts: 'CreateBankAccounts',
|
|
1746
|
+
UpdateBankAccounts: 'UpdateBankAccounts',
|
|
1747
|
+
UpdateBankAccountsAssign: 'UpdateBankAccountsAssign',
|
|
1748
|
+
ViewAssignedBankAccount: 'ViewAssignedBankAccount',
|
|
1749
|
+
VerifyBankAccounts: 'VerifyBankAccounts',
|
|
1750
|
+
ViewServiceChargeConfigurations: 'ViewServiceChargeConfigurations',
|
|
1751
|
+
EditServiceChargeConfigurations: 'EditServiceChargeConfigurations',
|
|
1752
|
+
EditStoreDeliveryZoneFees: 'EditStoreDeliveryZoneFees',
|
|
1753
|
+
EditStoreDeliveryFeesLimited: 'EditStoreDeliveryFeesLimited',
|
|
1754
|
+
ViewHydraConfig: 'ViewHydraConfig',
|
|
1755
|
+
UpdateHydraConfigManage: 'UpdateHydraConfigManage',
|
|
1756
|
+
InitiateBluetoothPairingMode: 'InitiateBluetoothPairingMode',
|
|
1757
|
+
DeleteTerminal: 'DeleteTerminal',
|
|
1758
|
+
ViewKioskTelemetry: 'ViewKioskTelemetry',
|
|
1759
|
+
ViewCustomers: 'ViewCustomers',
|
|
1760
|
+
EditCustomers: 'EditCustomers',
|
|
1761
|
+
CreateCustomers: 'CreateCustomers',
|
|
1762
|
+
CreateCatalogElements: 'CreateCatalogElements',
|
|
1763
|
+
UpdateCatalogElements: 'UpdateCatalogElements',
|
|
1764
|
+
ViewCatalogElements: 'ViewCatalogElements',
|
|
1765
|
+
DeleteCatalogElements: 'DeleteCatalogElements',
|
|
1766
|
+
ViewMetafieldDefinitions: 'ViewMetafieldDefinitions',
|
|
1767
|
+
CreateMetafieldDefinitions: 'CreateMetafieldDefinitions',
|
|
1768
|
+
UpdateMetafieldDefinitions: 'UpdateMetafieldDefinitions',
|
|
1769
|
+
DeleteMetafieldDefinitions: 'DeleteMetafieldDefinitions',
|
|
1770
|
+
UpdateMetafields: 'UpdateMetafields',
|
|
1771
|
+
ViewCatalogMenuChanges: 'ViewCatalogMenuChanges',
|
|
1772
|
+
PublishCatalogMenuChanges: 'PublishCatalogMenuChanges',
|
|
1773
|
+
ViewAppStatistics: 'ViewAppStatistics',
|
|
1774
|
+
ViewApmStatistics: 'ViewApmStatistics',
|
|
1775
|
+
ViewCampaignsStatistics: 'ViewCampaignsStatistics',
|
|
1776
|
+
ViewCustomerStatistics: 'ViewCustomerStatistics',
|
|
1777
|
+
ViewLiveStatistics: 'ViewLiveStatistics',
|
|
1778
|
+
ViewOrderStatistics: 'ViewOrderStatistics',
|
|
1779
|
+
ViewSalesStatistics: 'ViewSalesStatistics',
|
|
1780
|
+
ViewSalesEndOfDayStatistics: 'ViewSalesEndOfDayStatistics',
|
|
1781
|
+
ViewVouchersStatistics: 'ViewVouchersStatistics',
|
|
1782
|
+
DownloadCustomerCsvExport: 'DownloadCustomerCsvExport',
|
|
1783
|
+
ViewApmAuditLogs: 'ViewApmAuditLogs',
|
|
1784
|
+
ViewStoreAuditLogs: 'ViewStoreAuditLogs',
|
|
1785
|
+
ViewMenuAuditLogs: 'ViewMenuAuditLogs',
|
|
1786
|
+
ViewBankAccountAuditLogs: 'ViewBankAccountAuditLogs',
|
|
1787
|
+
ViewFeeConfigurationsAuditLogs: 'ViewFeeConfigurationsAuditLogs',
|
|
1788
|
+
ViewOrdersAuditLogs: 'ViewOrdersAuditLogs',
|
|
1789
|
+
ViewVouchersAuditLogs: 'ViewVouchersAuditLogs',
|
|
1790
|
+
ViewUserEventsAuditLogs: 'ViewUserEventsAuditLogs',
|
|
1791
|
+
ViewCampaignsAuditLogs: 'ViewCampaignsAuditLogs',
|
|
1792
|
+
ViewTeammatesAuditLogs: 'ViewTeammatesAuditLogs',
|
|
1793
|
+
ViewAppAuditLogs: 'ViewAppAuditLogs',
|
|
1794
|
+
ViewCustomerAuditLogs: 'ViewCustomerAuditLogs',
|
|
1795
|
+
ViewPrinterAuditLogs: 'ViewPrinterAuditLogs',
|
|
1796
|
+
ViewHydraAuditLogs: 'ViewHydraAuditLogs',
|
|
1797
|
+
ViewPushNotificationAuditLogs: 'ViewPushNotificationAuditLogs',
|
|
1798
|
+
ViewStripeCustomConnectedAccountAuditLogs: 'ViewStripeCustomConnectedAccountAuditLogs',
|
|
1799
|
+
ViewKioskBluetoothDeviceAuditLogs: 'ViewKioskBluetoothDeviceAuditLogs',
|
|
1800
|
+
ViewExternalAuditLogs: 'ViewExternalAuditLogs',
|
|
1801
|
+
CreateExternalAuditLogEvents: 'CreateExternalAuditLogEvents',
|
|
1802
|
+
ViewCatalogAuditLogs: 'ViewCatalogAuditLogs',
|
|
1803
|
+
ViewOrderFulfillmentAuditLogs: 'ViewOrderFulfillmentAuditLogs',
|
|
1804
|
+
ViewChannelAuditLogs: 'ViewChannelAuditLogs',
|
|
1805
|
+
ViewAppStoreAuditLogs: 'ViewAppStoreAuditLogs',
|
|
1806
|
+
SendPushNotificationToCustomer: 'SendPushNotificationToCustomer',
|
|
1807
|
+
InviteDriverToApp: 'InviteDriverToApp',
|
|
1808
|
+
GetDriverForApp: 'GetDriverForApp',
|
|
1809
|
+
RemoveDriverFromApp: 'RemoveDriverFromApp',
|
|
1810
|
+
AssignDriverToOrder: 'AssignDriverToOrder',
|
|
1811
|
+
UnassignDriverFromOrder: 'UnassignDriverFromOrder',
|
|
1812
|
+
UpdateOrdersDeliveryTrackingStatus: 'UpdateOrdersDeliveryTrackingStatus',
|
|
1813
|
+
UpdateOrderFulfillmentStatus: 'UpdateOrderFulfillmentStatus',
|
|
1814
|
+
ViewFulfillmentStatesConfiguration: 'ViewFulfillmentStatesConfiguration',
|
|
1815
|
+
CreateFulfillmentStatesConfiguration: 'CreateFulfillmentStatesConfiguration',
|
|
1816
|
+
UpdateFulfillmentStatesConfiguration: 'UpdateFulfillmentStatesConfiguration',
|
|
1817
|
+
DeleteFulfillmentStatesConfiguration: 'DeleteFulfillmentStatesConfiguration',
|
|
1818
|
+
ViewPayouts: 'ViewPayouts',
|
|
1819
|
+
ViewChannels: 'ViewChannels',
|
|
1820
|
+
ViewOnboarding: 'ViewOnboarding',
|
|
1821
|
+
UpdateOnboarding: 'UpdateOnboarding',
|
|
1822
|
+
ViewClientDevices: 'ViewClientDevices',
|
|
1823
|
+
UpdateClientDevices: 'UpdateClientDevices',
|
|
1824
|
+
EnrollClientDevices: 'EnrollClientDevices',
|
|
1825
|
+
AssignClientDevices: 'AssignClientDevices',
|
|
1826
|
+
ViewClientAuditLogs: 'ViewClientAuditLogs',
|
|
1827
|
+
CreateAppStoreAppConfiguration: 'CreateAppStoreAppConfiguration',
|
|
1828
|
+
ViewAppStoreAppConfiguration: 'ViewAppStoreAppConfiguration',
|
|
1829
|
+
UpdateAppStoreAppConfiguration: 'UpdateAppStoreAppConfiguration',
|
|
1830
|
+
DeleteAppStoreAppConfiguration: 'DeleteAppStoreAppConfiguration',
|
|
1831
|
+
UpdateAppStoreAppConfigurationSettings: 'UpdateAppStoreAppConfigurationSettings',
|
|
1832
|
+
CreateAppStoreSubscription: 'CreateAppStoreSubscription',
|
|
1833
|
+
UpdateAppStoreSubscription: 'UpdateAppStoreSubscription',
|
|
1834
|
+
DeleteAppStoreSubscription: 'DeleteAppStoreSubscription',
|
|
1835
|
+
ViewSalesChannels: 'ViewSalesChannels',
|
|
1836
|
+
EditSalesChannels: 'EditSalesChannels',
|
|
1837
|
+
CreateSalesChannel: 'CreateSalesChannel',
|
|
1838
|
+
ArchiveSalesChannel: 'ArchiveSalesChannel',
|
|
1839
|
+
UnarchiveSalesChannel: 'UnarchiveSalesChannel',
|
|
1840
|
+
PublishSalesChannel: 'PublishSalesChannel',
|
|
1841
|
+
UnpublishSalesChannel: 'UnpublishSalesChannel',
|
|
1842
|
+
CloneSalesChannel: 'CloneSalesChannel',
|
|
1843
|
+
ViewPayGreenWhiteLabelConfiguration: 'ViewPayGreenWhiteLabelConfiguration',
|
|
1844
|
+
CreatePayGreenWhiteLabelConfiguration: 'CreatePayGreenWhiteLabelConfiguration',
|
|
1845
|
+
UpdatePayGreenWhiteLabelConfiguration: 'UpdatePayGreenWhiteLabelConfiguration',
|
|
1846
|
+
UpdatePayGreenStoreConfiguration: 'UpdatePayGreenStoreConfiguration',
|
|
1847
|
+
ViewSubscriptions: 'ViewSubscriptions',
|
|
1848
|
+
ViewInvoices: 'ViewInvoices',
|
|
1849
|
+
EditAccountsBills: 'EditAccountsBills',
|
|
1850
|
+
ViewAccountsBills: 'ViewAccountsBills',
|
|
1851
|
+
EditAccountsCategories: 'EditAccountsCategories',
|
|
1852
|
+
ViewAccountsCategories: 'ViewAccountsCategories',
|
|
1853
|
+
EditAccountsCreditAccounts: 'EditAccountsCreditAccounts',
|
|
1854
|
+
ViewAccountsCreditAccounts: 'ViewAccountsCreditAccounts',
|
|
1855
|
+
EditAccountsCreditBooks: 'EditAccountsCreditBooks',
|
|
1856
|
+
ViewAccountsCreditBooks: 'ViewAccountsCreditBooks',
|
|
1857
|
+
EditAccountsExpenses: 'EditAccountsExpenses',
|
|
1858
|
+
ViewAccountsExpenses: 'ViewAccountsExpenses',
|
|
1859
|
+
EditAccountsTransactionAccounts: 'EditAccountsTransactionAccounts',
|
|
1860
|
+
ViewAccountsTransactionAccounts: 'ViewAccountsTransactionAccounts',
|
|
1861
|
+
EditDocumentExplorer: 'EditDocumentExplorer',
|
|
1862
|
+
ViewDocumentExplorer: 'ViewDocumentExplorer',
|
|
1863
|
+
ViewInventoryReports: 'ViewInventoryReports',
|
|
1864
|
+
EditInventoryPurchaseOrders: 'EditInventoryPurchaseOrders',
|
|
1865
|
+
ViewInventoryPurchaseOrders: 'ViewInventoryPurchaseOrders',
|
|
1866
|
+
EditInventoryStockItems: 'EditInventoryStockItems',
|
|
1867
|
+
ViewInventoryStockItems: 'ViewInventoryStockItems',
|
|
1868
|
+
EditInventorySupplier: 'EditInventorySupplier',
|
|
1869
|
+
ViewInventorySupplier: 'ViewInventorySupplier',
|
|
1870
|
+
EditInventoryTrackingProfiles: 'EditInventoryTrackingProfiles',
|
|
1871
|
+
ViewInventoryTrackingProfiles: 'ViewInventoryTrackingProfiles',
|
|
1872
|
+
ViewPayrollReports: 'ViewPayrollReports',
|
|
1873
|
+
EditPayrollHoliday: 'EditPayrollHoliday',
|
|
1874
|
+
ViewPayrollHoliday: 'ViewPayrollHoliday',
|
|
1875
|
+
EditPayrollRota: 'EditPayrollRota',
|
|
1876
|
+
ViewPayrollRota: 'ViewPayrollRota',
|
|
1877
|
+
EditPayrollStaff: 'EditPayrollStaff',
|
|
1878
|
+
ViewPayrollStaff: 'ViewPayrollStaff',
|
|
1879
|
+
ViewSalesReports: 'ViewSalesReports',
|
|
1880
|
+
ViewCostReports: 'ViewCostReports',
|
|
1881
|
+
ViewMenuReports: 'ViewMenuReports',
|
|
1882
|
+
ViewBrand: 'ViewBrand',
|
|
1883
|
+
EditBrand: 'EditBrand',
|
|
1884
|
+
CreateBrand: 'CreateBrand',
|
|
1885
|
+
TransferBrand: 'TransferBrand',
|
|
1886
|
+
ViewProperty: 'ViewProperty',
|
|
1887
|
+
EditProperty: 'EditProperty',
|
|
1888
|
+
CreateProperty: 'CreateProperty',
|
|
1889
|
+
ArchiveProperty: 'ArchiveProperty',
|
|
1890
|
+
ViewEntityFeatureFlags: 'ViewEntityFeatureFlags',
|
|
1891
|
+
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
1892
|
+
CreateOrg: 'CreateOrg',
|
|
1893
|
+
EditOrg: 'EditOrg',
|
|
1894
|
+
ViewOrg: 'ViewOrg',
|
|
1895
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
1896
|
+
EditWebhooks: 'EditWebhooks',
|
|
1897
|
+
RoleAdmin: 'RoleAdmin',
|
|
1898
|
+
RoleFactory: 'RoleFactory'
|
|
1899
|
+
} as const;
|
|
1900
|
+
|
|
1901
|
+
export type GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum];
|
|
1902
|
+
|
|
1903
|
+
/**
|
|
1904
|
+
* ID of the resource the permissions are assigned to
|
|
1905
|
+
* @export
|
|
1906
|
+
* @interface GetUserPermissionsSuccessResponseResourcesValueResourceId
|
|
1907
|
+
*/
|
|
1908
|
+
export interface GetUserPermissionsSuccessResponseResourcesValueResourceId {
|
|
1909
|
+
}
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @export
|
|
1913
|
+
* @interface IsInRoleRequest
|
|
1914
|
+
*/
|
|
1915
|
+
export interface IsInRoleRequest {
|
|
1916
|
+
/**
|
|
1917
|
+
*
|
|
1918
|
+
* @type {AuthorizationRequestPrincipal}
|
|
1919
|
+
* @memberof IsInRoleRequest
|
|
1920
|
+
*/
|
|
1921
|
+
'principal': AuthorizationRequestPrincipal;
|
|
1922
|
+
/**
|
|
1923
|
+
* Array of roles to check if the principal is in
|
|
1924
|
+
* @type {Array<string>}
|
|
1925
|
+
* @memberof IsInRoleRequest
|
|
1926
|
+
*/
|
|
1927
|
+
'roles': Array<IsInRoleRequestRolesEnum>;
|
|
1928
|
+
/**
|
|
1929
|
+
* How to check if the principal is in any/all of the roles
|
|
1930
|
+
* @type {string}
|
|
1931
|
+
* @memberof IsInRoleRequest
|
|
1932
|
+
*/
|
|
1933
|
+
'checkMode'?: IsInRoleRequestCheckModeEnum;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
export const IsInRoleRequestRolesEnum = {
|
|
1937
|
+
Admin: 'Admin',
|
|
1938
|
+
Factory: 'Factory'
|
|
1939
|
+
} as const;
|
|
1940
|
+
|
|
1941
|
+
export type IsInRoleRequestRolesEnum = typeof IsInRoleRequestRolesEnum[keyof typeof IsInRoleRequestRolesEnum];
|
|
1942
|
+
export const IsInRoleRequestCheckModeEnum = {
|
|
1943
|
+
Any: 'any',
|
|
1944
|
+
All: 'all'
|
|
1945
|
+
} as const;
|
|
1946
|
+
|
|
1947
|
+
export type IsInRoleRequestCheckModeEnum = typeof IsInRoleRequestCheckModeEnum[keyof typeof IsInRoleRequestCheckModeEnum];
|
|
1948
|
+
|
|
1949
|
+
/**
|
|
1950
|
+
* Response containing whether the principal is in any/all of the roles
|
|
1951
|
+
* @export
|
|
1952
|
+
* @interface IsInRoleResponse
|
|
1953
|
+
*/
|
|
1954
|
+
export interface IsInRoleResponse {
|
|
1955
|
+
/**
|
|
1956
|
+
* result of the check - whether the principal is in any/all of the roles
|
|
1957
|
+
* @type {boolean}
|
|
1958
|
+
* @memberof IsInRoleResponse
|
|
1959
|
+
*/
|
|
1960
|
+
'authorized': boolean;
|
|
1961
|
+
}
|
|
1962
|
+
/**
|
|
1963
|
+
* Successful feature based roles retrieval response
|
|
1964
|
+
* @export
|
|
1965
|
+
* @interface ListFeatureBasedRolesSuccessResponse
|
|
1966
|
+
*/
|
|
1967
|
+
export interface ListFeatureBasedRolesSuccessResponse {
|
|
1968
|
+
/**
|
|
1969
|
+
*
|
|
1970
|
+
* @type {Array<FeatureBasedRole>}
|
|
1971
|
+
* @memberof ListFeatureBasedRolesSuccessResponse
|
|
1972
|
+
*/
|
|
1973
|
+
'roles': Array<FeatureBasedRole>;
|
|
1974
|
+
}
|
|
1975
|
+
/**
|
|
1976
|
+
*
|
|
1977
|
+
* @export
|
|
1978
|
+
* @interface ListOrgRolesSuccessResponseValueValue
|
|
1979
|
+
*/
|
|
1980
|
+
export interface ListOrgRolesSuccessResponseValueValue {
|
|
1981
|
+
/**
|
|
1982
|
+
* Type of resource the permissions are assigned to
|
|
1983
|
+
* @type {string}
|
|
1984
|
+
* @memberof ListOrgRolesSuccessResponseValueValue
|
|
1985
|
+
*/
|
|
1986
|
+
'resourceType': ListOrgRolesSuccessResponseValueValueResourceTypeEnum;
|
|
1987
|
+
/**
|
|
1988
|
+
*
|
|
1989
|
+
* @type {GetUserPermissionsSuccessResponseResourcesValueResourceId}
|
|
1990
|
+
* @memberof ListOrgRolesSuccessResponseValueValue
|
|
1991
|
+
*/
|
|
1992
|
+
'resourceId': GetUserPermissionsSuccessResponseResourcesValueResourceId;
|
|
1993
|
+
/**
|
|
1994
|
+
* List of roles that are assigned to the user for the resource
|
|
1995
|
+
* @type {Array<string>}
|
|
1996
|
+
* @memberof ListOrgRolesSuccessResponseValueValue
|
|
1997
|
+
*/
|
|
1998
|
+
'roles': Array<ListOrgRolesSuccessResponseValueValueRolesEnum>;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
export const ListOrgRolesSuccessResponseValueValueResourceTypeEnum = {
|
|
2002
|
+
Property: 'Property',
|
|
2003
|
+
Org: 'Org',
|
|
2004
|
+
Brand: 'Brand',
|
|
2005
|
+
SalesChannel: 'SalesChannel'
|
|
2006
|
+
} as const;
|
|
2007
|
+
|
|
2008
|
+
export type ListOrgRolesSuccessResponseValueValueResourceTypeEnum = typeof ListOrgRolesSuccessResponseValueValueResourceTypeEnum[keyof typeof ListOrgRolesSuccessResponseValueValueResourceTypeEnum];
|
|
2009
|
+
export const ListOrgRolesSuccessResponseValueValueRolesEnum = {
|
|
2010
|
+
OrgViewer: 'OrgViewer',
|
|
2011
|
+
OrgManager: 'OrgManager',
|
|
2012
|
+
OrgAdmin: 'OrgAdmin',
|
|
2013
|
+
BrandViewer: 'BrandViewer',
|
|
2014
|
+
BrandManager: 'BrandManager',
|
|
2015
|
+
BrandAdmin: 'BrandAdmin',
|
|
2016
|
+
StoreViewer: 'StoreViewer',
|
|
2017
|
+
StoreEditor: 'StoreEditor',
|
|
2018
|
+
StoreManager: 'StoreManager',
|
|
2019
|
+
CustomerViewer: 'CustomerViewer',
|
|
2020
|
+
CustomerManager: 'CustomerManager',
|
|
2021
|
+
VoucherViewer: 'VoucherViewer',
|
|
2022
|
+
VoucherEditor: 'VoucherEditor',
|
|
2023
|
+
VoucherManager: 'VoucherManager',
|
|
2024
|
+
VoucherCampaignManager: 'VoucherCampaignManager',
|
|
2025
|
+
VoucherStatisticsViewer: 'VoucherStatisticsViewer',
|
|
2026
|
+
AnalyticsViewer: 'AnalyticsViewer',
|
|
2027
|
+
ReportsViewer: 'ReportsViewer',
|
|
2028
|
+
FinanceViewer: 'FinanceViewer',
|
|
2029
|
+
FinanceManager: 'FinanceManager',
|
|
2030
|
+
TeamViewer: 'TeamViewer',
|
|
2031
|
+
TeamManager: 'TeamManager',
|
|
2032
|
+
TeamAdmin: 'TeamAdmin',
|
|
2033
|
+
TechViewer: 'TechViewer',
|
|
2034
|
+
TechManager: 'TechManager',
|
|
2035
|
+
AppStoreViewer: 'AppStoreViewer',
|
|
2036
|
+
AppStoreManager: 'AppStoreManager',
|
|
2037
|
+
SalesChannelViewer: 'SalesChannelViewer',
|
|
2038
|
+
SalesChannelEditor: 'SalesChannelEditor',
|
|
2039
|
+
SalesChannelManager: 'SalesChannelManager',
|
|
2040
|
+
DeliveryViewer: 'DeliveryViewer',
|
|
2041
|
+
DeliveryManager: 'DeliveryManager',
|
|
2042
|
+
DriverManager: 'DriverManager',
|
|
2043
|
+
AuditViewer: 'AuditViewer',
|
|
2044
|
+
AuditManager: 'AuditManager',
|
|
2045
|
+
AccountsViewer: 'AccountsViewer',
|
|
2046
|
+
AccountsEditor: 'AccountsEditor',
|
|
2047
|
+
DocumentExplorerViewer: 'DocumentExplorerViewer',
|
|
2048
|
+
DocumentExplorerEditor: 'DocumentExplorerEditor',
|
|
2049
|
+
PayrollViewer: 'PayrollViewer',
|
|
2050
|
+
PayrollEditor: 'PayrollEditor',
|
|
2051
|
+
PropertyViewer: 'PropertyViewer',
|
|
2052
|
+
PropertyManager: 'PropertyManager',
|
|
2053
|
+
PropertyAdmin: 'PropertyAdmin',
|
|
2054
|
+
WebsiteContentEditor: 'WebsiteContentEditor',
|
|
2055
|
+
WebsiteContentViewer: 'WebsiteContentViewer',
|
|
2056
|
+
WebsiteTechViewer: 'WebsiteTechViewer',
|
|
2057
|
+
MenuViewer: 'MenuViewer',
|
|
2058
|
+
MenuEditor: 'MenuEditor',
|
|
2059
|
+
MenuManager: 'MenuManager',
|
|
2060
|
+
MenuMetaFieldManager: 'MenuMetaFieldManager',
|
|
2061
|
+
MenuMetaFieldEditor: 'MenuMetaFieldEditor',
|
|
2062
|
+
MenuMetaFieldViewer: 'MenuMetaFieldViewer',
|
|
2063
|
+
StoreDeliveryZoneManager: 'StoreDeliveryZoneManager',
|
|
2064
|
+
StoreDeliveryZoneEditor: 'StoreDeliveryZoneEditor',
|
|
2065
|
+
StoreDeliveryZoneViewer: 'StoreDeliveryZoneViewer',
|
|
2066
|
+
OrderFulfillmentManager: 'OrderFulfillmentManager',
|
|
2067
|
+
OrderManager: 'OrderManager',
|
|
2068
|
+
OrderEditor: 'OrderEditor',
|
|
2069
|
+
OrderViewer: 'OrderViewer',
|
|
2070
|
+
InventoryManager: 'InventoryManager',
|
|
2071
|
+
InventoryEditor: 'InventoryEditor',
|
|
2072
|
+
InventoryViewer: 'InventoryViewer',
|
|
2073
|
+
PaymentManager: 'PaymentManager',
|
|
2074
|
+
OnboardingManager: 'OnboardingManager',
|
|
2075
|
+
FeatureFlagManager: 'FeatureFlagManager',
|
|
2076
|
+
PropertyOwnerMisc: 'PropertyOwnerMisc',
|
|
2077
|
+
ManagedOwnerMisc: 'ManagedOwnerMisc',
|
|
2078
|
+
IntegratorMisc: 'IntegratorMisc',
|
|
2079
|
+
PropertyManagerMisc: 'PropertyManagerMisc',
|
|
2080
|
+
FinanceManagerMisc: 'FinanceManagerMisc',
|
|
2081
|
+
SupportMisc: 'SupportMisc'
|
|
2082
|
+
} as const;
|
|
2083
|
+
|
|
2084
|
+
export type ListOrgRolesSuccessResponseValueValueRolesEnum = typeof ListOrgRolesSuccessResponseValueValueRolesEnum[keyof typeof ListOrgRolesSuccessResponseValueValueRolesEnum];
|
|
2085
|
+
|
|
2086
|
+
/**
|
|
2087
|
+
* Successful permissions retrieval response
|
|
2088
|
+
* @export
|
|
2089
|
+
* @interface ListPermissionsSuccessResponse
|
|
2090
|
+
*/
|
|
2091
|
+
export interface ListPermissionsSuccessResponse {
|
|
2092
|
+
/**
|
|
2093
|
+
*
|
|
2094
|
+
* @type {Permissions & Array<string>}
|
|
2095
|
+
* @memberof ListPermissionsSuccessResponse
|
|
2096
|
+
*/
|
|
2097
|
+
'permissions': Permissions & Array<string>;
|
|
2098
|
+
}
|
|
2099
|
+
/**
|
|
2100
|
+
* Successful roles retrieval response
|
|
2101
|
+
* @export
|
|
2102
|
+
* @interface ListRolesSuccessResponse
|
|
2103
|
+
*/
|
|
2104
|
+
export interface ListRolesSuccessResponse {
|
|
2105
|
+
/**
|
|
2106
|
+
* List of named roles
|
|
2107
|
+
* @type {Array<string>}
|
|
2108
|
+
* @memberof ListRolesSuccessResponse
|
|
2109
|
+
*/
|
|
2110
|
+
'roles': Array<ListRolesSuccessResponseRolesEnum>;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
export const ListRolesSuccessResponseRolesEnum = {
|
|
2114
|
+
Admin: 'Admin',
|
|
2115
|
+
Factory: 'Factory'
|
|
2116
|
+
} as const;
|
|
2117
|
+
|
|
2118
|
+
export type ListRolesSuccessResponseRolesEnum = typeof ListRolesSuccessResponseRolesEnum[keyof typeof ListRolesSuccessResponseRolesEnum];
|
|
2119
|
+
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @export
|
|
2123
|
+
* @enum {string}
|
|
2124
|
+
*/
|
|
2125
|
+
|
|
2126
|
+
export const Permissions = {
|
|
2127
|
+
AnyAuditLogs: 'AnyAuditLogs',
|
|
2128
|
+
ViewApp: 'ViewApp',
|
|
2129
|
+
CreateApp: 'CreateApp',
|
|
2130
|
+
UpdateApp: 'UpdateApp',
|
|
2131
|
+
ViewAppName: 'ViewAppName',
|
|
2132
|
+
EditAppAssets: 'EditAppAssets',
|
|
2133
|
+
EditAppFeatures: 'EditAppFeatures',
|
|
2134
|
+
ViewTeammates: 'ViewTeammates',
|
|
2135
|
+
EditTeammates: 'EditTeammates',
|
|
2136
|
+
CreateTeammateOwner: 'CreateTeammateOwner',
|
|
2137
|
+
CreateTeammateManagedOwner: 'CreateTeammateManagedOwner',
|
|
2138
|
+
CreateTeammateStoreOwner: 'CreateTeammateStoreOwner',
|
|
2139
|
+
CreateTeammateStoreManager: 'CreateTeammateStoreManager',
|
|
2140
|
+
CreateTeammateStoreStaff: 'CreateTeammateStoreStaff',
|
|
2141
|
+
CreateTeammateStoreReadAccess: 'CreateTeammateStoreReadAccess',
|
|
2142
|
+
CreateTeammateFinanceManager: 'CreateTeammateFinanceManager',
|
|
2143
|
+
CreateTeammateIntegrator: 'CreateTeammateIntegrator',
|
|
2144
|
+
CreateTeammateOnboarding: 'CreateTeammateOnboarding',
|
|
2145
|
+
CreateTeammatePropertyManager: 'CreateTeammatePropertyManager',
|
|
2146
|
+
CreateTeammatePropertyOwner: 'CreateTeammatePropertyOwner',
|
|
2147
|
+
ViewApmConfigurations: 'ViewApmConfigurations',
|
|
2148
|
+
EditApmConfigurations: 'EditApmConfigurations',
|
|
2149
|
+
ViewCampaignsConfigurations: 'ViewCampaignsConfigurations',
|
|
2150
|
+
CreateCampaignsConfigurations: 'CreateCampaignsConfigurations',
|
|
2151
|
+
UpdateCampaignsConfigurations: 'UpdateCampaignsConfigurations',
|
|
2152
|
+
DeleteCampaignsConfigurations: 'DeleteCampaignsConfigurations',
|
|
2153
|
+
StampLoyaltyCardAgainstCampaignsConfigurations: 'StampLoyaltyCardAgainstCampaignsConfigurations',
|
|
2154
|
+
ViewDevelopersSettings: 'ViewDevelopersSettings',
|
|
2155
|
+
EditDevelopersSettings: 'EditDevelopersSettings',
|
|
2156
|
+
ViewOrders: 'ViewOrders',
|
|
2157
|
+
UpdateOrdersAccept: 'UpdateOrdersAccept',
|
|
2158
|
+
UpdateOrdersReject: 'UpdateOrdersReject',
|
|
2159
|
+
UpdateOrdersRefund: 'UpdateOrdersRefund',
|
|
2160
|
+
UpdateOrdersDispatch: 'UpdateOrdersDispatch',
|
|
2161
|
+
ViewStores: 'ViewStores',
|
|
2162
|
+
CreateStores: 'CreateStores',
|
|
2163
|
+
EditStores: 'EditStores',
|
|
2164
|
+
ViewStoresOpeningHours: 'ViewStoresOpeningHours',
|
|
2165
|
+
UpdateStoresOpenForCollectionOrDelivery: 'UpdateStoresOpenForCollectionOrDelivery',
|
|
2166
|
+
UpdateStoresOpeningHours: 'UpdateStoresOpeningHours',
|
|
2167
|
+
ViewStoresOpeningHoursOverride: 'ViewStoresOpeningHoursOverride',
|
|
2168
|
+
EditStoresOpeningHoursOverride: 'EditStoresOpeningHoursOverride',
|
|
2169
|
+
EditStoresOpeningHoursOverrideTemporary: 'EditStoresOpeningHoursOverrideTemporary',
|
|
2170
|
+
UpdateStoresName: 'UpdateStoresName',
|
|
2171
|
+
EditStoreKioskSettings: 'EditStoreKioskSettings',
|
|
2172
|
+
EditStoreOrderCapacity: 'EditStoreOrderCapacity',
|
|
2173
|
+
EditStoreNotifications: 'EditStoreNotifications',
|
|
2174
|
+
ArchiveStores: 'ArchiveStores',
|
|
2175
|
+
PublishStores: 'PublishStores',
|
|
2176
|
+
UpdatePrinterTerminalsAssign: 'UpdatePrinterTerminalsAssign',
|
|
2177
|
+
UpdatePrinterTerminalsToggle: 'UpdatePrinterTerminalsToggle',
|
|
2178
|
+
ViewStoreGroups: 'ViewStoreGroups',
|
|
2179
|
+
CreateStoreGroups: 'CreateStoreGroups',
|
|
2180
|
+
UpdateStoreGroups: 'UpdateStoreGroups',
|
|
2181
|
+
DeleteStoreGroups: 'DeleteStoreGroups',
|
|
2182
|
+
ViewDeliveryZones: 'ViewDeliveryZones',
|
|
2183
|
+
CreateDeliveryZones: 'CreateDeliveryZones',
|
|
2184
|
+
UpdateDeliveryZones: 'UpdateDeliveryZones',
|
|
2185
|
+
DeleteDeliveryZones: 'DeleteDeliveryZones',
|
|
2186
|
+
ViewMenu: 'ViewMenu',
|
|
2187
|
+
CreateMenu: 'CreateMenu',
|
|
2188
|
+
UpdateMenu: 'UpdateMenu',
|
|
2189
|
+
DeleteMenu: 'DeleteMenu',
|
|
2190
|
+
UpdateMenuLock: 'UpdateMenuLock',
|
|
2191
|
+
UpdateMenuItemsHideTemporarily: 'UpdateMenuItemsHideTemporarily',
|
|
2192
|
+
EditMenuImage: 'EditMenuImage',
|
|
2193
|
+
ViewVouchers: 'ViewVouchers',
|
|
2194
|
+
EditVouchers: 'EditVouchers',
|
|
2195
|
+
ViewWebsiteContent: 'ViewWebsiteContent',
|
|
2196
|
+
EditWebsiteContent: 'EditWebsiteContent',
|
|
2197
|
+
ViewWebsiteDnsVerified: 'ViewWebsiteDnsVerified',
|
|
2198
|
+
ViewWebsiteCertificateCreated: 'ViewWebsiteCertificateCreated',
|
|
2199
|
+
ViewWebsiteCertificateRenewed: 'ViewWebsiteCertificateRenewed',
|
|
2200
|
+
ViewBankAccounts: 'ViewBankAccounts',
|
|
2201
|
+
CreateBankAccounts: 'CreateBankAccounts',
|
|
2202
|
+
UpdateBankAccounts: 'UpdateBankAccounts',
|
|
2203
|
+
UpdateBankAccountsAssign: 'UpdateBankAccountsAssign',
|
|
2204
|
+
ViewAssignedBankAccount: 'ViewAssignedBankAccount',
|
|
2205
|
+
VerifyBankAccounts: 'VerifyBankAccounts',
|
|
2206
|
+
ViewServiceChargeConfigurations: 'ViewServiceChargeConfigurations',
|
|
2207
|
+
EditServiceChargeConfigurations: 'EditServiceChargeConfigurations',
|
|
2208
|
+
EditStoreDeliveryZoneFees: 'EditStoreDeliveryZoneFees',
|
|
2209
|
+
EditStoreDeliveryFeesLimited: 'EditStoreDeliveryFeesLimited',
|
|
2210
|
+
ViewHydraConfig: 'ViewHydraConfig',
|
|
2211
|
+
UpdateHydraConfigManage: 'UpdateHydraConfigManage',
|
|
2212
|
+
InitiateBluetoothPairingMode: 'InitiateBluetoothPairingMode',
|
|
2213
|
+
DeleteTerminal: 'DeleteTerminal',
|
|
2214
|
+
ViewKioskTelemetry: 'ViewKioskTelemetry',
|
|
2215
|
+
ViewCustomers: 'ViewCustomers',
|
|
2216
|
+
EditCustomers: 'EditCustomers',
|
|
2217
|
+
CreateCustomers: 'CreateCustomers',
|
|
2218
|
+
CreateCatalogElements: 'CreateCatalogElements',
|
|
2219
|
+
UpdateCatalogElements: 'UpdateCatalogElements',
|
|
2220
|
+
ViewCatalogElements: 'ViewCatalogElements',
|
|
2221
|
+
DeleteCatalogElements: 'DeleteCatalogElements',
|
|
2222
|
+
ViewMetafieldDefinitions: 'ViewMetafieldDefinitions',
|
|
2223
|
+
CreateMetafieldDefinitions: 'CreateMetafieldDefinitions',
|
|
2224
|
+
UpdateMetafieldDefinitions: 'UpdateMetafieldDefinitions',
|
|
2225
|
+
DeleteMetafieldDefinitions: 'DeleteMetafieldDefinitions',
|
|
2226
|
+
UpdateMetafields: 'UpdateMetafields',
|
|
2227
|
+
ViewCatalogMenuChanges: 'ViewCatalogMenuChanges',
|
|
2228
|
+
PublishCatalogMenuChanges: 'PublishCatalogMenuChanges',
|
|
2229
|
+
ViewAppStatistics: 'ViewAppStatistics',
|
|
2230
|
+
ViewApmStatistics: 'ViewApmStatistics',
|
|
2231
|
+
ViewCampaignsStatistics: 'ViewCampaignsStatistics',
|
|
2232
|
+
ViewCustomerStatistics: 'ViewCustomerStatistics',
|
|
2233
|
+
ViewLiveStatistics: 'ViewLiveStatistics',
|
|
2234
|
+
ViewOrderStatistics: 'ViewOrderStatistics',
|
|
2235
|
+
ViewSalesStatistics: 'ViewSalesStatistics',
|
|
2236
|
+
ViewSalesEndOfDayStatistics: 'ViewSalesEndOfDayStatistics',
|
|
2237
|
+
ViewVouchersStatistics: 'ViewVouchersStatistics',
|
|
2238
|
+
DownloadCustomerCsvExport: 'DownloadCustomerCsvExport',
|
|
2239
|
+
ViewApmAuditLogs: 'ViewApmAuditLogs',
|
|
2240
|
+
ViewStoreAuditLogs: 'ViewStoreAuditLogs',
|
|
2241
|
+
ViewMenuAuditLogs: 'ViewMenuAuditLogs',
|
|
2242
|
+
ViewBankAccountAuditLogs: 'ViewBankAccountAuditLogs',
|
|
2243
|
+
ViewFeeConfigurationsAuditLogs: 'ViewFeeConfigurationsAuditLogs',
|
|
2244
|
+
ViewOrdersAuditLogs: 'ViewOrdersAuditLogs',
|
|
2245
|
+
ViewVouchersAuditLogs: 'ViewVouchersAuditLogs',
|
|
2246
|
+
ViewUserEventsAuditLogs: 'ViewUserEventsAuditLogs',
|
|
2247
|
+
ViewCampaignsAuditLogs: 'ViewCampaignsAuditLogs',
|
|
2248
|
+
ViewTeammatesAuditLogs: 'ViewTeammatesAuditLogs',
|
|
2249
|
+
ViewAppAuditLogs: 'ViewAppAuditLogs',
|
|
2250
|
+
ViewCustomerAuditLogs: 'ViewCustomerAuditLogs',
|
|
2251
|
+
ViewPrinterAuditLogs: 'ViewPrinterAuditLogs',
|
|
2252
|
+
ViewHydraAuditLogs: 'ViewHydraAuditLogs',
|
|
2253
|
+
ViewPushNotificationAuditLogs: 'ViewPushNotificationAuditLogs',
|
|
2254
|
+
ViewStripeCustomConnectedAccountAuditLogs: 'ViewStripeCustomConnectedAccountAuditLogs',
|
|
2255
|
+
ViewKioskBluetoothDeviceAuditLogs: 'ViewKioskBluetoothDeviceAuditLogs',
|
|
2256
|
+
ViewExternalAuditLogs: 'ViewExternalAuditLogs',
|
|
2257
|
+
CreateExternalAuditLogEvents: 'CreateExternalAuditLogEvents',
|
|
2258
|
+
ViewCatalogAuditLogs: 'ViewCatalogAuditLogs',
|
|
2259
|
+
ViewOrderFulfillmentAuditLogs: 'ViewOrderFulfillmentAuditLogs',
|
|
2260
|
+
ViewChannelAuditLogs: 'ViewChannelAuditLogs',
|
|
2261
|
+
ViewAppStoreAuditLogs: 'ViewAppStoreAuditLogs',
|
|
2262
|
+
SendPushNotificationToCustomer: 'SendPushNotificationToCustomer',
|
|
2263
|
+
InviteDriverToApp: 'InviteDriverToApp',
|
|
2264
|
+
GetDriverForApp: 'GetDriverForApp',
|
|
2265
|
+
RemoveDriverFromApp: 'RemoveDriverFromApp',
|
|
2266
|
+
AssignDriverToOrder: 'AssignDriverToOrder',
|
|
2267
|
+
UnassignDriverFromOrder: 'UnassignDriverFromOrder',
|
|
2268
|
+
UpdateOrdersDeliveryTrackingStatus: 'UpdateOrdersDeliveryTrackingStatus',
|
|
2269
|
+
UpdateOrderFulfillmentStatus: 'UpdateOrderFulfillmentStatus',
|
|
2270
|
+
ViewFulfillmentStatesConfiguration: 'ViewFulfillmentStatesConfiguration',
|
|
2271
|
+
CreateFulfillmentStatesConfiguration: 'CreateFulfillmentStatesConfiguration',
|
|
2272
|
+
UpdateFulfillmentStatesConfiguration: 'UpdateFulfillmentStatesConfiguration',
|
|
2273
|
+
DeleteFulfillmentStatesConfiguration: 'DeleteFulfillmentStatesConfiguration',
|
|
2274
|
+
ViewPayouts: 'ViewPayouts',
|
|
2275
|
+
ViewChannels: 'ViewChannels',
|
|
2276
|
+
ViewOnboarding: 'ViewOnboarding',
|
|
2277
|
+
UpdateOnboarding: 'UpdateOnboarding',
|
|
2278
|
+
ViewClientDevices: 'ViewClientDevices',
|
|
2279
|
+
UpdateClientDevices: 'UpdateClientDevices',
|
|
2280
|
+
EnrollClientDevices: 'EnrollClientDevices',
|
|
2281
|
+
AssignClientDevices: 'AssignClientDevices',
|
|
2282
|
+
ViewClientAuditLogs: 'ViewClientAuditLogs',
|
|
2283
|
+
CreateAppStoreAppConfiguration: 'CreateAppStoreAppConfiguration',
|
|
2284
|
+
ViewAppStoreAppConfiguration: 'ViewAppStoreAppConfiguration',
|
|
2285
|
+
UpdateAppStoreAppConfiguration: 'UpdateAppStoreAppConfiguration',
|
|
2286
|
+
DeleteAppStoreAppConfiguration: 'DeleteAppStoreAppConfiguration',
|
|
2287
|
+
UpdateAppStoreAppConfigurationSettings: 'UpdateAppStoreAppConfigurationSettings',
|
|
2288
|
+
CreateAppStoreSubscription: 'CreateAppStoreSubscription',
|
|
2289
|
+
UpdateAppStoreSubscription: 'UpdateAppStoreSubscription',
|
|
2290
|
+
DeleteAppStoreSubscription: 'DeleteAppStoreSubscription',
|
|
2291
|
+
ViewSalesChannels: 'ViewSalesChannels',
|
|
2292
|
+
EditSalesChannels: 'EditSalesChannels',
|
|
2293
|
+
CreateSalesChannel: 'CreateSalesChannel',
|
|
2294
|
+
ArchiveSalesChannel: 'ArchiveSalesChannel',
|
|
2295
|
+
UnarchiveSalesChannel: 'UnarchiveSalesChannel',
|
|
2296
|
+
PublishSalesChannel: 'PublishSalesChannel',
|
|
2297
|
+
UnpublishSalesChannel: 'UnpublishSalesChannel',
|
|
2298
|
+
CloneSalesChannel: 'CloneSalesChannel',
|
|
2299
|
+
ViewPayGreenWhiteLabelConfiguration: 'ViewPayGreenWhiteLabelConfiguration',
|
|
2300
|
+
CreatePayGreenWhiteLabelConfiguration: 'CreatePayGreenWhiteLabelConfiguration',
|
|
2301
|
+
UpdatePayGreenWhiteLabelConfiguration: 'UpdatePayGreenWhiteLabelConfiguration',
|
|
2302
|
+
UpdatePayGreenStoreConfiguration: 'UpdatePayGreenStoreConfiguration',
|
|
2303
|
+
ViewSubscriptions: 'ViewSubscriptions',
|
|
2304
|
+
ViewInvoices: 'ViewInvoices',
|
|
2305
|
+
EditAccountsBills: 'EditAccountsBills',
|
|
2306
|
+
ViewAccountsBills: 'ViewAccountsBills',
|
|
2307
|
+
EditAccountsCategories: 'EditAccountsCategories',
|
|
2308
|
+
ViewAccountsCategories: 'ViewAccountsCategories',
|
|
2309
|
+
EditAccountsCreditAccounts: 'EditAccountsCreditAccounts',
|
|
2310
|
+
ViewAccountsCreditAccounts: 'ViewAccountsCreditAccounts',
|
|
2311
|
+
EditAccountsCreditBooks: 'EditAccountsCreditBooks',
|
|
2312
|
+
ViewAccountsCreditBooks: 'ViewAccountsCreditBooks',
|
|
2313
|
+
EditAccountsExpenses: 'EditAccountsExpenses',
|
|
2314
|
+
ViewAccountsExpenses: 'ViewAccountsExpenses',
|
|
2315
|
+
EditAccountsTransactionAccounts: 'EditAccountsTransactionAccounts',
|
|
2316
|
+
ViewAccountsTransactionAccounts: 'ViewAccountsTransactionAccounts',
|
|
2317
|
+
EditDocumentExplorer: 'EditDocumentExplorer',
|
|
2318
|
+
ViewDocumentExplorer: 'ViewDocumentExplorer',
|
|
2319
|
+
ViewInventoryReports: 'ViewInventoryReports',
|
|
2320
|
+
EditInventoryPurchaseOrders: 'EditInventoryPurchaseOrders',
|
|
2321
|
+
ViewInventoryPurchaseOrders: 'ViewInventoryPurchaseOrders',
|
|
2322
|
+
EditInventoryStockItems: 'EditInventoryStockItems',
|
|
2323
|
+
ViewInventoryStockItems: 'ViewInventoryStockItems',
|
|
2324
|
+
EditInventorySupplier: 'EditInventorySupplier',
|
|
2325
|
+
ViewInventorySupplier: 'ViewInventorySupplier',
|
|
2326
|
+
EditInventoryTrackingProfiles: 'EditInventoryTrackingProfiles',
|
|
2327
|
+
ViewInventoryTrackingProfiles: 'ViewInventoryTrackingProfiles',
|
|
2328
|
+
ViewPayrollReports: 'ViewPayrollReports',
|
|
2329
|
+
EditPayrollHoliday: 'EditPayrollHoliday',
|
|
2330
|
+
ViewPayrollHoliday: 'ViewPayrollHoliday',
|
|
2331
|
+
EditPayrollRota: 'EditPayrollRota',
|
|
2332
|
+
ViewPayrollRota: 'ViewPayrollRota',
|
|
2333
|
+
EditPayrollStaff: 'EditPayrollStaff',
|
|
2334
|
+
ViewPayrollStaff: 'ViewPayrollStaff',
|
|
2335
|
+
ViewSalesReports: 'ViewSalesReports',
|
|
2336
|
+
ViewCostReports: 'ViewCostReports',
|
|
2337
|
+
ViewMenuReports: 'ViewMenuReports',
|
|
2338
|
+
ViewBrand: 'ViewBrand',
|
|
2339
|
+
EditBrand: 'EditBrand',
|
|
2340
|
+
CreateBrand: 'CreateBrand',
|
|
2341
|
+
TransferBrand: 'TransferBrand',
|
|
2342
|
+
ViewProperty: 'ViewProperty',
|
|
2343
|
+
EditProperty: 'EditProperty',
|
|
2344
|
+
CreateProperty: 'CreateProperty',
|
|
2345
|
+
ArchiveProperty: 'ArchiveProperty',
|
|
2346
|
+
ViewEntityFeatureFlags: 'ViewEntityFeatureFlags',
|
|
2347
|
+
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
2348
|
+
CreateOrg: 'CreateOrg',
|
|
2349
|
+
EditOrg: 'EditOrg',
|
|
2350
|
+
ViewOrg: 'ViewOrg',
|
|
2351
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
2352
|
+
EditWebhooks: 'EditWebhooks',
|
|
2353
|
+
RoleAdmin: 'RoleAdmin',
|
|
2354
|
+
RoleFactory: 'RoleFactory'
|
|
2355
|
+
} as const;
|
|
2356
|
+
|
|
2357
|
+
export type Permissions = typeof Permissions[keyof typeof Permissions];
|
|
2358
|
+
|
|
2359
|
+
|
|
2360
|
+
/**
|
|
2361
|
+
* Details for revoking a forbidden role from a principal
|
|
2362
|
+
* @export
|
|
2363
|
+
* @interface RevokeForbiddenRoleRequestBody
|
|
2364
|
+
*/
|
|
2365
|
+
export interface RevokeForbiddenRoleRequestBody {
|
|
2366
|
+
/**
|
|
2367
|
+
*
|
|
2368
|
+
* @type {AuthorizationRequestPrincipal}
|
|
2369
|
+
* @memberof RevokeForbiddenRoleRequestBody
|
|
2370
|
+
*/
|
|
2371
|
+
'principal': AuthorizationRequestPrincipal;
|
|
2372
|
+
/**
|
|
2373
|
+
* Compensation role to revoke the forbidden role from
|
|
2374
|
+
* @type {string}
|
|
2375
|
+
* @memberof RevokeForbiddenRoleRequestBody
|
|
2376
|
+
*/
|
|
2377
|
+
'compensatingRole': RevokeForbiddenRoleRequestBodyCompensatingRoleEnum;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
export const RevokeForbiddenRoleRequestBodyCompensatingRoleEnum = {
|
|
2381
|
+
OwnerCompensating: 'OwnerCompensating',
|
|
2382
|
+
PropertyOwnerCompensating: 'PropertyOwnerCompensating',
|
|
2383
|
+
ManagedOwnerCompensating: 'ManagedOwnerCompensating',
|
|
2384
|
+
IntegratorCompensating: 'IntegratorCompensating',
|
|
2385
|
+
PropertyManagerCompensating: 'PropertyManagerCompensating',
|
|
2386
|
+
FinanceManagerCompensating: 'FinanceManagerCompensating'
|
|
2387
|
+
} as const;
|
|
2388
|
+
|
|
2389
|
+
export type RevokeForbiddenRoleRequestBodyCompensatingRoleEnum = typeof RevokeForbiddenRoleRequestBodyCompensatingRoleEnum[keyof typeof RevokeForbiddenRoleRequestBodyCompensatingRoleEnum];
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* Details for revoking a role from a principal
|
|
2393
|
+
* @export
|
|
2394
|
+
* @interface RevokeRoleRequestBody
|
|
2395
|
+
*/
|
|
2396
|
+
export interface RevokeRoleRequestBody {
|
|
2397
|
+
/**
|
|
2398
|
+
*
|
|
2399
|
+
* @type {string}
|
|
2400
|
+
* @memberof RevokeRoleRequestBody
|
|
2401
|
+
*/
|
|
2402
|
+
'role': RevokeRoleRequestBodyRoleEnum;
|
|
2403
|
+
/**
|
|
2404
|
+
*
|
|
2405
|
+
* @type {AuthorizationRequestResource}
|
|
2406
|
+
* @memberof RevokeRoleRequestBody
|
|
2407
|
+
*/
|
|
2408
|
+
'resource': AuthorizationRequestResource;
|
|
2409
|
+
/**
|
|
2410
|
+
*
|
|
2411
|
+
* @type {AuthorizationRequestPrincipal}
|
|
2412
|
+
* @memberof RevokeRoleRequestBody
|
|
2413
|
+
*/
|
|
2414
|
+
'principal': AuthorizationRequestPrincipal;
|
|
2415
|
+
/**
|
|
2416
|
+
*
|
|
2417
|
+
* @type {string}
|
|
2418
|
+
* @memberof RevokeRoleRequestBody
|
|
2419
|
+
*/
|
|
2420
|
+
'brandId': string;
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
export const RevokeRoleRequestBodyRoleEnum = {
|
|
2424
|
+
OrgViewer: 'OrgViewer',
|
|
2425
|
+
OrgManager: 'OrgManager',
|
|
2426
|
+
OrgAdmin: 'OrgAdmin',
|
|
2427
|
+
BrandViewer: 'BrandViewer',
|
|
2428
|
+
BrandManager: 'BrandManager',
|
|
2429
|
+
BrandAdmin: 'BrandAdmin',
|
|
2430
|
+
StoreViewer: 'StoreViewer',
|
|
2431
|
+
StoreEditor: 'StoreEditor',
|
|
2432
|
+
StoreManager: 'StoreManager',
|
|
2433
|
+
CustomerViewer: 'CustomerViewer',
|
|
2434
|
+
CustomerManager: 'CustomerManager',
|
|
2435
|
+
VoucherViewer: 'VoucherViewer',
|
|
2436
|
+
VoucherEditor: 'VoucherEditor',
|
|
2437
|
+
VoucherManager: 'VoucherManager',
|
|
2438
|
+
VoucherCampaignManager: 'VoucherCampaignManager',
|
|
2439
|
+
VoucherStatisticsViewer: 'VoucherStatisticsViewer',
|
|
2440
|
+
AnalyticsViewer: 'AnalyticsViewer',
|
|
2441
|
+
ReportsViewer: 'ReportsViewer',
|
|
2442
|
+
FinanceViewer: 'FinanceViewer',
|
|
2443
|
+
FinanceManager: 'FinanceManager',
|
|
2444
|
+
TeamViewer: 'TeamViewer',
|
|
2445
|
+
TeamManager: 'TeamManager',
|
|
2446
|
+
TeamAdmin: 'TeamAdmin',
|
|
2447
|
+
TechViewer: 'TechViewer',
|
|
2448
|
+
TechManager: 'TechManager',
|
|
2449
|
+
AppStoreViewer: 'AppStoreViewer',
|
|
2450
|
+
AppStoreManager: 'AppStoreManager',
|
|
2451
|
+
SalesChannelViewer: 'SalesChannelViewer',
|
|
2452
|
+
SalesChannelEditor: 'SalesChannelEditor',
|
|
2453
|
+
SalesChannelManager: 'SalesChannelManager',
|
|
2454
|
+
DeliveryViewer: 'DeliveryViewer',
|
|
2455
|
+
DeliveryManager: 'DeliveryManager',
|
|
2456
|
+
DriverManager: 'DriverManager',
|
|
2457
|
+
AuditViewer: 'AuditViewer',
|
|
2458
|
+
AuditManager: 'AuditManager',
|
|
2459
|
+
AccountsViewer: 'AccountsViewer',
|
|
2460
|
+
AccountsEditor: 'AccountsEditor',
|
|
2461
|
+
DocumentExplorerViewer: 'DocumentExplorerViewer',
|
|
2462
|
+
DocumentExplorerEditor: 'DocumentExplorerEditor',
|
|
2463
|
+
PayrollViewer: 'PayrollViewer',
|
|
2464
|
+
PayrollEditor: 'PayrollEditor',
|
|
2465
|
+
PropertyViewer: 'PropertyViewer',
|
|
2466
|
+
PropertyManager: 'PropertyManager',
|
|
2467
|
+
PropertyAdmin: 'PropertyAdmin',
|
|
2468
|
+
WebsiteContentEditor: 'WebsiteContentEditor',
|
|
2469
|
+
WebsiteContentViewer: 'WebsiteContentViewer',
|
|
2470
|
+
WebsiteTechViewer: 'WebsiteTechViewer',
|
|
2471
|
+
MenuViewer: 'MenuViewer',
|
|
2472
|
+
MenuEditor: 'MenuEditor',
|
|
2473
|
+
MenuManager: 'MenuManager',
|
|
2474
|
+
MenuMetaFieldManager: 'MenuMetaFieldManager',
|
|
2475
|
+
MenuMetaFieldEditor: 'MenuMetaFieldEditor',
|
|
2476
|
+
MenuMetaFieldViewer: 'MenuMetaFieldViewer',
|
|
2477
|
+
StoreDeliveryZoneManager: 'StoreDeliveryZoneManager',
|
|
2478
|
+
StoreDeliveryZoneEditor: 'StoreDeliveryZoneEditor',
|
|
2479
|
+
StoreDeliveryZoneViewer: 'StoreDeliveryZoneViewer',
|
|
2480
|
+
OrderFulfillmentManager: 'OrderFulfillmentManager',
|
|
2481
|
+
OrderManager: 'OrderManager',
|
|
2482
|
+
OrderEditor: 'OrderEditor',
|
|
2483
|
+
OrderViewer: 'OrderViewer',
|
|
2484
|
+
InventoryManager: 'InventoryManager',
|
|
2485
|
+
InventoryEditor: 'InventoryEditor',
|
|
2486
|
+
InventoryViewer: 'InventoryViewer',
|
|
2487
|
+
PaymentManager: 'PaymentManager',
|
|
2488
|
+
OnboardingManager: 'OnboardingManager',
|
|
2489
|
+
FeatureFlagManager: 'FeatureFlagManager',
|
|
2490
|
+
PropertyOwnerMisc: 'PropertyOwnerMisc',
|
|
2491
|
+
ManagedOwnerMisc: 'ManagedOwnerMisc',
|
|
2492
|
+
IntegratorMisc: 'IntegratorMisc',
|
|
2493
|
+
PropertyManagerMisc: 'PropertyManagerMisc',
|
|
2494
|
+
FinanceManagerMisc: 'FinanceManagerMisc',
|
|
2495
|
+
SupportMisc: 'SupportMisc'
|
|
2496
|
+
} as const;
|
|
2497
|
+
|
|
2498
|
+
export type RevokeRoleRequestBodyRoleEnum = typeof RevokeRoleRequestBodyRoleEnum[keyof typeof RevokeRoleRequestBodyRoleEnum];
|
|
2499
|
+
|
|
2500
|
+
/**
|
|
2501
|
+
* Successful role revocation response
|
|
2502
|
+
* @export
|
|
2503
|
+
* @interface RevokeRoleSuccessResponse
|
|
2504
|
+
*/
|
|
2505
|
+
export interface RevokeRoleSuccessResponse {
|
|
2506
|
+
/**
|
|
2507
|
+
* Confirmation message
|
|
2508
|
+
* @type {string}
|
|
2509
|
+
* @memberof RevokeRoleSuccessResponse
|
|
2510
|
+
*/
|
|
2511
|
+
'message': string;
|
|
2512
|
+
}
|
|
2513
|
+
/**
|
|
2514
|
+
*
|
|
2515
|
+
* @export
|
|
2516
|
+
* @interface ValidationErrorsInner
|
|
2517
|
+
*/
|
|
2518
|
+
export interface ValidationErrorsInner {
|
|
2519
|
+
/**
|
|
2520
|
+
*
|
|
2521
|
+
* @type {Array<ValidationErrorsInnerPathInner>}
|
|
2522
|
+
* @memberof ValidationErrorsInner
|
|
2523
|
+
*/
|
|
2524
|
+
'path'?: Array<ValidationErrorsInnerPathInner>;
|
|
2525
|
+
/**
|
|
2526
|
+
*
|
|
2527
|
+
* @type {string}
|
|
2528
|
+
* @memberof ValidationErrorsInner
|
|
2529
|
+
*/
|
|
2530
|
+
'message': string;
|
|
2531
|
+
}
|
|
2532
|
+
/**
|
|
2533
|
+
*
|
|
2534
|
+
* @export
|
|
2535
|
+
* @interface ValidationErrorsInnerPathInner
|
|
2536
|
+
*/
|
|
2537
|
+
export interface ValidationErrorsInnerPathInner {
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* AuthenticationApi - axios parameter creator
|
|
2542
|
+
* @export
|
|
2543
|
+
*/
|
|
2544
|
+
export const AuthenticationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2545
|
+
return {
|
|
2546
|
+
/**
|
|
2547
|
+
* Authenticate and authorize a user to perform an action
|
|
2548
|
+
* @summary Authenticate and authorize Request
|
|
2549
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2550
|
+
* @param {*} [options] Override http request option.
|
|
2551
|
+
* @throws {RequiredError}
|
|
2552
|
+
*/
|
|
2553
|
+
authenticateAndAuthorize: async (authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2554
|
+
// verify required parameter 'authenticateAndAuthorizeRequest' is not null or undefined
|
|
2555
|
+
assertParamExists('authenticateAndAuthorize', 'authenticateAndAuthorizeRequest', authenticateAndAuthorizeRequest)
|
|
2556
|
+
const localVarPath = `/authenticateAndAuthorize`;
|
|
2557
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2558
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2559
|
+
let baseOptions;
|
|
2560
|
+
if (configuration) {
|
|
2561
|
+
baseOptions = configuration.baseOptions;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2565
|
+
const localVarHeaderParameter = {} as any;
|
|
2566
|
+
const localVarQueryParameter = {} as any;
|
|
2567
|
+
|
|
2568
|
+
// authentication ApiKeyAuth required
|
|
2569
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2570
|
+
|
|
2571
|
+
|
|
2572
|
+
|
|
2573
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2574
|
+
|
|
2575
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2576
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2577
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2578
|
+
localVarRequestOptions.data = serializeDataIfNeeded(authenticateAndAuthorizeRequest, localVarRequestOptions, configuration)
|
|
2579
|
+
|
|
2580
|
+
return {
|
|
2581
|
+
url: toPathString(localVarUrlObj),
|
|
2582
|
+
options: localVarRequestOptions,
|
|
2583
|
+
};
|
|
2584
|
+
},
|
|
2585
|
+
}
|
|
2586
|
+
};
|
|
2587
|
+
|
|
2588
|
+
/**
|
|
2589
|
+
* AuthenticationApi - functional programming interface
|
|
2590
|
+
* @export
|
|
2591
|
+
*/
|
|
2592
|
+
export const AuthenticationApiFp = function(configuration?: Configuration) {
|
|
2593
|
+
const localVarAxiosParamCreator = AuthenticationApiAxiosParamCreator(configuration)
|
|
2594
|
+
return {
|
|
2595
|
+
/**
|
|
2596
|
+
* Authenticate and authorize a user to perform an action
|
|
2597
|
+
* @summary Authenticate and authorize Request
|
|
2598
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2599
|
+
* @param {*} [options] Override http request option.
|
|
2600
|
+
* @throws {RequiredError}
|
|
2601
|
+
*/
|
|
2602
|
+
async authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticateAndAuthorizeResponse>> {
|
|
2603
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options);
|
|
2604
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2605
|
+
const localVarOperationServerBasePath = operationServerMap['AuthenticationApi.authenticateAndAuthorize']?.[localVarOperationServerIndex]?.url;
|
|
2606
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2607
|
+
},
|
|
2608
|
+
}
|
|
2609
|
+
};
|
|
2610
|
+
|
|
2611
|
+
/**
|
|
2612
|
+
* AuthenticationApi - factory interface
|
|
2613
|
+
* @export
|
|
2614
|
+
*/
|
|
2615
|
+
export const AuthenticationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2616
|
+
const localVarFp = AuthenticationApiFp(configuration)
|
|
2617
|
+
return {
|
|
2618
|
+
/**
|
|
2619
|
+
* Authenticate and authorize a user to perform an action
|
|
2620
|
+
* @summary Authenticate and authorize Request
|
|
2621
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2622
|
+
* @param {*} [options] Override http request option.
|
|
2623
|
+
* @throws {RequiredError}
|
|
2624
|
+
*/
|
|
2625
|
+
authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticateAndAuthorizeResponse> {
|
|
2626
|
+
return localVarFp.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(axios, basePath));
|
|
2627
|
+
},
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
2630
|
+
|
|
2631
|
+
/**
|
|
2632
|
+
* AuthenticationApi - object-oriented interface
|
|
2633
|
+
* @export
|
|
2634
|
+
* @class AuthenticationApi
|
|
2635
|
+
* @extends {BaseAPI}
|
|
2636
|
+
*/
|
|
2637
|
+
export class AuthenticationApi extends BaseAPI {
|
|
2638
|
+
/**
|
|
2639
|
+
* Authenticate and authorize a user to perform an action
|
|
2640
|
+
* @summary Authenticate and authorize Request
|
|
2641
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2642
|
+
* @param {*} [options] Override http request option.
|
|
2643
|
+
* @throws {RequiredError}
|
|
2644
|
+
* @memberof AuthenticationApi
|
|
2645
|
+
*/
|
|
2646
|
+
public authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig) {
|
|
2647
|
+
return AuthenticationApiFp(this.configuration).authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2648
|
+
}
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2651
|
+
|
|
2652
|
+
|
|
2653
|
+
/**
|
|
2654
|
+
* AuthorizationApi - axios parameter creator
|
|
2655
|
+
* @export
|
|
2656
|
+
*/
|
|
2657
|
+
export const AuthorizationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2658
|
+
return {
|
|
2659
|
+
/**
|
|
2660
|
+
* Authenticate and authorize a user to perform an action
|
|
2661
|
+
* @summary Authenticate and authorize Request
|
|
2662
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2663
|
+
* @param {*} [options] Override http request option.
|
|
2664
|
+
* @throws {RequiredError}
|
|
2665
|
+
*/
|
|
2666
|
+
authenticateAndAuthorize: async (authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2667
|
+
// verify required parameter 'authenticateAndAuthorizeRequest' is not null or undefined
|
|
2668
|
+
assertParamExists('authenticateAndAuthorize', 'authenticateAndAuthorizeRequest', authenticateAndAuthorizeRequest)
|
|
2669
|
+
const localVarPath = `/authenticateAndAuthorize`;
|
|
2670
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2671
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2672
|
+
let baseOptions;
|
|
2673
|
+
if (configuration) {
|
|
2674
|
+
baseOptions = configuration.baseOptions;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2678
|
+
const localVarHeaderParameter = {} as any;
|
|
2679
|
+
const localVarQueryParameter = {} as any;
|
|
2680
|
+
|
|
2681
|
+
// authentication ApiKeyAuth required
|
|
2682
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2683
|
+
|
|
2684
|
+
|
|
2685
|
+
|
|
2686
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2687
|
+
|
|
2688
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2689
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2690
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2691
|
+
localVarRequestOptions.data = serializeDataIfNeeded(authenticateAndAuthorizeRequest, localVarRequestOptions, configuration)
|
|
2692
|
+
|
|
2693
|
+
return {
|
|
2694
|
+
url: toPathString(localVarUrlObj),
|
|
2695
|
+
options: localVarRequestOptions,
|
|
2696
|
+
};
|
|
2697
|
+
},
|
|
2698
|
+
/**
|
|
2699
|
+
* Authenticate and check if a user is in any/all of the roles
|
|
2700
|
+
* @summary Authenticate and Check Is In Role
|
|
2701
|
+
* @param {AuthenticateAndCheckIsInRoleRequest} [authenticateAndCheckIsInRoleRequest]
|
|
2702
|
+
* @param {*} [options] Override http request option.
|
|
2703
|
+
* @throws {RequiredError}
|
|
2704
|
+
*/
|
|
2705
|
+
authenticateAndCheckIsInRole: async (authenticateAndCheckIsInRoleRequest?: AuthenticateAndCheckIsInRoleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2706
|
+
const localVarPath = `/authenticateAndCheckIsInRole`;
|
|
2707
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2708
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2709
|
+
let baseOptions;
|
|
2710
|
+
if (configuration) {
|
|
2711
|
+
baseOptions = configuration.baseOptions;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2715
|
+
const localVarHeaderParameter = {} as any;
|
|
2716
|
+
const localVarQueryParameter = {} as any;
|
|
2717
|
+
|
|
2718
|
+
// authentication ApiKeyAuth required
|
|
2719
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2720
|
+
|
|
2721
|
+
|
|
2722
|
+
|
|
2723
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2724
|
+
|
|
2725
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2726
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2727
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2728
|
+
localVarRequestOptions.data = serializeDataIfNeeded(authenticateAndCheckIsInRoleRequest, localVarRequestOptions, configuration)
|
|
2729
|
+
|
|
2730
|
+
return {
|
|
2731
|
+
url: toPathString(localVarUrlObj),
|
|
2732
|
+
options: localVarRequestOptions,
|
|
2733
|
+
};
|
|
2734
|
+
},
|
|
2735
|
+
/**
|
|
2736
|
+
* Check if a user is authorized to perform an action
|
|
2737
|
+
* @summary Authorize Request
|
|
2738
|
+
* @param {AuthorizationRequest} [authorizationRequest]
|
|
2739
|
+
* @param {*} [options] Override http request option.
|
|
2740
|
+
* @throws {RequiredError}
|
|
2741
|
+
*/
|
|
2742
|
+
authorize: async (authorizationRequest?: AuthorizationRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2743
|
+
const localVarPath = `/authorize`;
|
|
2744
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2745
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2746
|
+
let baseOptions;
|
|
2747
|
+
if (configuration) {
|
|
2748
|
+
baseOptions = configuration.baseOptions;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2752
|
+
const localVarHeaderParameter = {} as any;
|
|
2753
|
+
const localVarQueryParameter = {} as any;
|
|
2754
|
+
|
|
2755
|
+
// authentication ApiKeyAuth required
|
|
2756
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2757
|
+
|
|
2758
|
+
|
|
2759
|
+
|
|
2760
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2761
|
+
|
|
2762
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2763
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2764
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2765
|
+
localVarRequestOptions.data = serializeDataIfNeeded(authorizationRequest, localVarRequestOptions, configuration)
|
|
2766
|
+
|
|
2767
|
+
return {
|
|
2768
|
+
url: toPathString(localVarUrlObj),
|
|
2769
|
+
options: localVarRequestOptions,
|
|
2770
|
+
};
|
|
2771
|
+
},
|
|
2772
|
+
/**
|
|
2773
|
+
* Check if a user is authorized to perform an action on multiple resources
|
|
2774
|
+
* @summary Authorize Batch Request
|
|
2775
|
+
* @param {AuthorizationBatchRequest} [authorizationBatchRequest]
|
|
2776
|
+
* @param {*} [options] Override http request option.
|
|
2777
|
+
* @throws {RequiredError}
|
|
2778
|
+
*/
|
|
2779
|
+
authorizeBatch: async (authorizationBatchRequest?: AuthorizationBatchRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2780
|
+
const localVarPath = `/authorize/batch`;
|
|
2781
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2782
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2783
|
+
let baseOptions;
|
|
2784
|
+
if (configuration) {
|
|
2785
|
+
baseOptions = configuration.baseOptions;
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2789
|
+
const localVarHeaderParameter = {} as any;
|
|
2790
|
+
const localVarQueryParameter = {} as any;
|
|
2791
|
+
|
|
2792
|
+
// authentication ApiKeyAuth required
|
|
2793
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2794
|
+
|
|
2795
|
+
|
|
2796
|
+
|
|
2797
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2798
|
+
|
|
2799
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2800
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2801
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2802
|
+
localVarRequestOptions.data = serializeDataIfNeeded(authorizationBatchRequest, localVarRequestOptions, configuration)
|
|
2803
|
+
|
|
2804
|
+
return {
|
|
2805
|
+
url: toPathString(localVarUrlObj),
|
|
2806
|
+
options: localVarRequestOptions,
|
|
2807
|
+
};
|
|
2808
|
+
},
|
|
2809
|
+
/**
|
|
2810
|
+
* Check if a user is in any/all of the roles
|
|
2811
|
+
* @summary Check Is In Role
|
|
2812
|
+
* @param {IsInRoleRequest} [isInRoleRequest]
|
|
2813
|
+
* @param {*} [options] Override http request option.
|
|
2814
|
+
* @throws {RequiredError}
|
|
2815
|
+
*/
|
|
2816
|
+
checkIsInRole: async (isInRoleRequest?: IsInRoleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2817
|
+
const localVarPath = `/checkIsInRole`;
|
|
2818
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2819
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2820
|
+
let baseOptions;
|
|
2821
|
+
if (configuration) {
|
|
2822
|
+
baseOptions = configuration.baseOptions;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2826
|
+
const localVarHeaderParameter = {} as any;
|
|
2827
|
+
const localVarQueryParameter = {} as any;
|
|
2828
|
+
|
|
2829
|
+
// authentication ApiKeyAuth required
|
|
2830
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2831
|
+
|
|
2832
|
+
|
|
2833
|
+
|
|
2834
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2835
|
+
|
|
2836
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2837
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2838
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2839
|
+
localVarRequestOptions.data = serializeDataIfNeeded(isInRoleRequest, localVarRequestOptions, configuration)
|
|
2840
|
+
|
|
2841
|
+
return {
|
|
2842
|
+
url: toPathString(localVarUrlObj),
|
|
2843
|
+
options: localVarRequestOptions,
|
|
2844
|
+
};
|
|
2845
|
+
},
|
|
2846
|
+
}
|
|
2847
|
+
};
|
|
2848
|
+
|
|
2849
|
+
/**
|
|
2850
|
+
* AuthorizationApi - functional programming interface
|
|
2851
|
+
* @export
|
|
2852
|
+
*/
|
|
2853
|
+
export const AuthorizationApiFp = function(configuration?: Configuration) {
|
|
2854
|
+
const localVarAxiosParamCreator = AuthorizationApiAxiosParamCreator(configuration)
|
|
2855
|
+
return {
|
|
2856
|
+
/**
|
|
2857
|
+
* Authenticate and authorize a user to perform an action
|
|
2858
|
+
* @summary Authenticate and authorize Request
|
|
2859
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2860
|
+
* @param {*} [options] Override http request option.
|
|
2861
|
+
* @throws {RequiredError}
|
|
2862
|
+
*/
|
|
2863
|
+
async authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticateAndAuthorizeResponse>> {
|
|
2864
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options);
|
|
2865
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2866
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizationApi.authenticateAndAuthorize']?.[localVarOperationServerIndex]?.url;
|
|
2867
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2868
|
+
},
|
|
2869
|
+
/**
|
|
2870
|
+
* Authenticate and check if a user is in any/all of the roles
|
|
2871
|
+
* @summary Authenticate and Check Is In Role
|
|
2872
|
+
* @param {AuthenticateAndCheckIsInRoleRequest} [authenticateAndCheckIsInRoleRequest]
|
|
2873
|
+
* @param {*} [options] Override http request option.
|
|
2874
|
+
* @throws {RequiredError}
|
|
2875
|
+
*/
|
|
2876
|
+
async authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest?: AuthenticateAndCheckIsInRoleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticateAndCheckIsInRoleResponse>> {
|
|
2877
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest, options);
|
|
2878
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2879
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizationApi.authenticateAndCheckIsInRole']?.[localVarOperationServerIndex]?.url;
|
|
2880
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2881
|
+
},
|
|
2882
|
+
/**
|
|
2883
|
+
* Check if a user is authorized to perform an action
|
|
2884
|
+
* @summary Authorize Request
|
|
2885
|
+
* @param {AuthorizationRequest} [authorizationRequest]
|
|
2886
|
+
* @param {*} [options] Override http request option.
|
|
2887
|
+
* @throws {RequiredError}
|
|
2888
|
+
*/
|
|
2889
|
+
async authorize(authorizationRequest?: AuthorizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthorizationResponse>> {
|
|
2890
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authorize(authorizationRequest, options);
|
|
2891
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2892
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizationApi.authorize']?.[localVarOperationServerIndex]?.url;
|
|
2893
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2894
|
+
},
|
|
2895
|
+
/**
|
|
2896
|
+
* Check if a user is authorized to perform an action on multiple resources
|
|
2897
|
+
* @summary Authorize Batch Request
|
|
2898
|
+
* @param {AuthorizationBatchRequest} [authorizationBatchRequest]
|
|
2899
|
+
* @param {*} [options] Override http request option.
|
|
2900
|
+
* @throws {RequiredError}
|
|
2901
|
+
*/
|
|
2902
|
+
async authorizeBatch(authorizationBatchRequest?: AuthorizationBatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthorizationBatchResponse>> {
|
|
2903
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authorizeBatch(authorizationBatchRequest, options);
|
|
2904
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2905
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizationApi.authorizeBatch']?.[localVarOperationServerIndex]?.url;
|
|
2906
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2907
|
+
},
|
|
2908
|
+
/**
|
|
2909
|
+
* Check if a user is in any/all of the roles
|
|
2910
|
+
* @summary Check Is In Role
|
|
2911
|
+
* @param {IsInRoleRequest} [isInRoleRequest]
|
|
2912
|
+
* @param {*} [options] Override http request option.
|
|
2913
|
+
* @throws {RequiredError}
|
|
2914
|
+
*/
|
|
2915
|
+
async checkIsInRole(isInRoleRequest?: IsInRoleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IsInRoleResponse>> {
|
|
2916
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkIsInRole(isInRoleRequest, options);
|
|
2917
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2918
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizationApi.checkIsInRole']?.[localVarOperationServerIndex]?.url;
|
|
2919
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2920
|
+
},
|
|
2921
|
+
}
|
|
2922
|
+
};
|
|
2923
|
+
|
|
2924
|
+
/**
|
|
2925
|
+
* AuthorizationApi - factory interface
|
|
2926
|
+
* @export
|
|
2927
|
+
*/
|
|
2928
|
+
export const AuthorizationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2929
|
+
const localVarFp = AuthorizationApiFp(configuration)
|
|
2930
|
+
return {
|
|
2931
|
+
/**
|
|
2932
|
+
* Authenticate and authorize a user to perform an action
|
|
2933
|
+
* @summary Authenticate and authorize Request
|
|
2934
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2935
|
+
* @param {*} [options] Override http request option.
|
|
2936
|
+
* @throws {RequiredError}
|
|
2937
|
+
*/
|
|
2938
|
+
authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticateAndAuthorizeResponse> {
|
|
2939
|
+
return localVarFp.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(axios, basePath));
|
|
2940
|
+
},
|
|
2941
|
+
/**
|
|
2942
|
+
* Authenticate and check if a user is in any/all of the roles
|
|
2943
|
+
* @summary Authenticate and Check Is In Role
|
|
2944
|
+
* @param {AuthenticateAndCheckIsInRoleRequest} [authenticateAndCheckIsInRoleRequest]
|
|
2945
|
+
* @param {*} [options] Override http request option.
|
|
2946
|
+
* @throws {RequiredError}
|
|
2947
|
+
*/
|
|
2948
|
+
authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest?: AuthenticateAndCheckIsInRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticateAndCheckIsInRoleResponse> {
|
|
2949
|
+
return localVarFp.authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest, options).then((request) => request(axios, basePath));
|
|
2950
|
+
},
|
|
2951
|
+
/**
|
|
2952
|
+
* Check if a user is authorized to perform an action
|
|
2953
|
+
* @summary Authorize Request
|
|
2954
|
+
* @param {AuthorizationRequest} [authorizationRequest]
|
|
2955
|
+
* @param {*} [options] Override http request option.
|
|
2956
|
+
* @throws {RequiredError}
|
|
2957
|
+
*/
|
|
2958
|
+
authorize(authorizationRequest?: AuthorizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthorizationResponse> {
|
|
2959
|
+
return localVarFp.authorize(authorizationRequest, options).then((request) => request(axios, basePath));
|
|
2960
|
+
},
|
|
2961
|
+
/**
|
|
2962
|
+
* Check if a user is authorized to perform an action on multiple resources
|
|
2963
|
+
* @summary Authorize Batch Request
|
|
2964
|
+
* @param {AuthorizationBatchRequest} [authorizationBatchRequest]
|
|
2965
|
+
* @param {*} [options] Override http request option.
|
|
2966
|
+
* @throws {RequiredError}
|
|
2967
|
+
*/
|
|
2968
|
+
authorizeBatch(authorizationBatchRequest?: AuthorizationBatchRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthorizationBatchResponse> {
|
|
2969
|
+
return localVarFp.authorizeBatch(authorizationBatchRequest, options).then((request) => request(axios, basePath));
|
|
2970
|
+
},
|
|
2971
|
+
/**
|
|
2972
|
+
* Check if a user is in any/all of the roles
|
|
2973
|
+
* @summary Check Is In Role
|
|
2974
|
+
* @param {IsInRoleRequest} [isInRoleRequest]
|
|
2975
|
+
* @param {*} [options] Override http request option.
|
|
2976
|
+
* @throws {RequiredError}
|
|
2977
|
+
*/
|
|
2978
|
+
checkIsInRole(isInRoleRequest?: IsInRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<IsInRoleResponse> {
|
|
2979
|
+
return localVarFp.checkIsInRole(isInRoleRequest, options).then((request) => request(axios, basePath));
|
|
2980
|
+
},
|
|
2981
|
+
};
|
|
2982
|
+
};
|
|
2983
|
+
|
|
2984
|
+
/**
|
|
2985
|
+
* AuthorizationApi - object-oriented interface
|
|
2986
|
+
* @export
|
|
2987
|
+
* @class AuthorizationApi
|
|
2988
|
+
* @extends {BaseAPI}
|
|
2989
|
+
*/
|
|
2990
|
+
export class AuthorizationApi extends BaseAPI {
|
|
2991
|
+
/**
|
|
2992
|
+
* Authenticate and authorize a user to perform an action
|
|
2993
|
+
* @summary Authenticate and authorize Request
|
|
2994
|
+
* @param {AuthenticateAndAuthorizeRequest} authenticateAndAuthorizeRequest
|
|
2995
|
+
* @param {*} [options] Override http request option.
|
|
2996
|
+
* @throws {RequiredError}
|
|
2997
|
+
* @memberof AuthorizationApi
|
|
2998
|
+
*/
|
|
2999
|
+
public authenticateAndAuthorize(authenticateAndAuthorizeRequest: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig) {
|
|
3000
|
+
return AuthorizationApiFp(this.configuration).authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3001
|
+
}
|
|
3002
|
+
|
|
3003
|
+
/**
|
|
3004
|
+
* Authenticate and check if a user is in any/all of the roles
|
|
3005
|
+
* @summary Authenticate and Check Is In Role
|
|
3006
|
+
* @param {AuthenticateAndCheckIsInRoleRequest} [authenticateAndCheckIsInRoleRequest]
|
|
3007
|
+
* @param {*} [options] Override http request option.
|
|
3008
|
+
* @throws {RequiredError}
|
|
3009
|
+
* @memberof AuthorizationApi
|
|
3010
|
+
*/
|
|
3011
|
+
public authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest?: AuthenticateAndCheckIsInRoleRequest, options?: RawAxiosRequestConfig) {
|
|
3012
|
+
return AuthorizationApiFp(this.configuration).authenticateAndCheckIsInRole(authenticateAndCheckIsInRoleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
/**
|
|
3016
|
+
* Check if a user is authorized to perform an action
|
|
3017
|
+
* @summary Authorize Request
|
|
3018
|
+
* @param {AuthorizationRequest} [authorizationRequest]
|
|
3019
|
+
* @param {*} [options] Override http request option.
|
|
3020
|
+
* @throws {RequiredError}
|
|
3021
|
+
* @memberof AuthorizationApi
|
|
3022
|
+
*/
|
|
3023
|
+
public authorize(authorizationRequest?: AuthorizationRequest, options?: RawAxiosRequestConfig) {
|
|
3024
|
+
return AuthorizationApiFp(this.configuration).authorize(authorizationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3025
|
+
}
|
|
3026
|
+
|
|
3027
|
+
/**
|
|
3028
|
+
* Check if a user is authorized to perform an action on multiple resources
|
|
3029
|
+
* @summary Authorize Batch Request
|
|
3030
|
+
* @param {AuthorizationBatchRequest} [authorizationBatchRequest]
|
|
3031
|
+
* @param {*} [options] Override http request option.
|
|
3032
|
+
* @throws {RequiredError}
|
|
3033
|
+
* @memberof AuthorizationApi
|
|
3034
|
+
*/
|
|
3035
|
+
public authorizeBatch(authorizationBatchRequest?: AuthorizationBatchRequest, options?: RawAxiosRequestConfig) {
|
|
3036
|
+
return AuthorizationApiFp(this.configuration).authorizeBatch(authorizationBatchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
/**
|
|
3040
|
+
* Check if a user is in any/all of the roles
|
|
3041
|
+
* @summary Check Is In Role
|
|
3042
|
+
* @param {IsInRoleRequest} [isInRoleRequest]
|
|
3043
|
+
* @param {*} [options] Override http request option.
|
|
3044
|
+
* @throws {RequiredError}
|
|
3045
|
+
* @memberof AuthorizationApi
|
|
3046
|
+
*/
|
|
3047
|
+
public checkIsInRole(isInRoleRequest?: IsInRoleRequest, options?: RawAxiosRequestConfig) {
|
|
3048
|
+
return AuthorizationApiFp(this.configuration).checkIsInRole(isInRoleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3049
|
+
}
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
/**
|
|
3055
|
+
* AuthorizedEntitiesApi - axios parameter creator
|
|
3056
|
+
* @export
|
|
3057
|
+
*/
|
|
3058
|
+
export const AuthorizedEntitiesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3059
|
+
return {
|
|
3060
|
+
/**
|
|
3061
|
+
* Get the authorized brands for a given org
|
|
3062
|
+
* @summary Get Authorized Brands
|
|
3063
|
+
* @param {string} orgId
|
|
3064
|
+
* @param {GetAuthorizedBrandsRequest} [getAuthorizedBrandsRequest]
|
|
3065
|
+
* @param {*} [options] Override http request option.
|
|
1402
3066
|
* @throws {RequiredError}
|
|
1403
3067
|
*/
|
|
1404
|
-
|
|
1405
|
-
|
|
3068
|
+
getAuthorizedBrands: async (orgId: string, getAuthorizedBrandsRequest?: GetAuthorizedBrandsRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3069
|
+
// verify required parameter 'orgId' is not null or undefined
|
|
3070
|
+
assertParamExists('getAuthorizedBrands', 'orgId', orgId)
|
|
3071
|
+
const localVarPath = `/orgs/{orgId}/getAuthorizedBrands`
|
|
3072
|
+
.replace(`{${"orgId"}}`, encodeURIComponent(String(orgId)));
|
|
1406
3073
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1407
3074
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1408
3075
|
let baseOptions;
|
|
@@ -1424,96 +3091,22 @@ export const AuthenticationApiAxiosParamCreator = function (configuration?: Conf
|
|
|
1424
3091
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1425
3092
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1426
3093
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1427
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3094
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getAuthorizedBrandsRequest, localVarRequestOptions, configuration)
|
|
1428
3095
|
|
|
1429
3096
|
return {
|
|
1430
3097
|
url: toPathString(localVarUrlObj),
|
|
1431
3098
|
options: localVarRequestOptions,
|
|
1432
3099
|
};
|
|
1433
3100
|
},
|
|
1434
|
-
}
|
|
1435
|
-
};
|
|
1436
|
-
|
|
1437
|
-
/**
|
|
1438
|
-
* AuthenticationApi - functional programming interface
|
|
1439
|
-
* @export
|
|
1440
|
-
*/
|
|
1441
|
-
export const AuthenticationApiFp = function(configuration?: Configuration) {
|
|
1442
|
-
const localVarAxiosParamCreator = AuthenticationApiAxiosParamCreator(configuration)
|
|
1443
|
-
return {
|
|
1444
|
-
/**
|
|
1445
|
-
* Authenticate and authorize a user to perform an action
|
|
1446
|
-
* @summary Authenticate and authorize Request
|
|
1447
|
-
* @param {AuthenticateAndAuthorizeRequest} [authenticateAndAuthorizeRequest]
|
|
1448
|
-
* @param {*} [options] Override http request option.
|
|
1449
|
-
* @throws {RequiredError}
|
|
1450
|
-
*/
|
|
1451
|
-
async authenticateAndAuthorize(authenticateAndAuthorizeRequest?: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticateAndAuthorizeResponse>> {
|
|
1452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options);
|
|
1453
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1454
|
-
const localVarOperationServerBasePath = operationServerMap['AuthenticationApi.authenticateAndAuthorize']?.[localVarOperationServerIndex]?.url;
|
|
1455
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1456
|
-
},
|
|
1457
|
-
}
|
|
1458
|
-
};
|
|
1459
|
-
|
|
1460
|
-
/**
|
|
1461
|
-
* AuthenticationApi - factory interface
|
|
1462
|
-
* @export
|
|
1463
|
-
*/
|
|
1464
|
-
export const AuthenticationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
1465
|
-
const localVarFp = AuthenticationApiFp(configuration)
|
|
1466
|
-
return {
|
|
1467
|
-
/**
|
|
1468
|
-
* Authenticate and authorize a user to perform an action
|
|
1469
|
-
* @summary Authenticate and authorize Request
|
|
1470
|
-
* @param {AuthenticateAndAuthorizeRequest} [authenticateAndAuthorizeRequest]
|
|
1471
|
-
* @param {*} [options] Override http request option.
|
|
1472
|
-
* @throws {RequiredError}
|
|
1473
|
-
*/
|
|
1474
|
-
authenticateAndAuthorize(authenticateAndAuthorizeRequest?: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticateAndAuthorizeResponse> {
|
|
1475
|
-
return localVarFp.authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(axios, basePath));
|
|
1476
|
-
},
|
|
1477
|
-
};
|
|
1478
|
-
};
|
|
1479
|
-
|
|
1480
|
-
/**
|
|
1481
|
-
* AuthenticationApi - object-oriented interface
|
|
1482
|
-
* @export
|
|
1483
|
-
* @class AuthenticationApi
|
|
1484
|
-
* @extends {BaseAPI}
|
|
1485
|
-
*/
|
|
1486
|
-
export class AuthenticationApi extends BaseAPI {
|
|
1487
|
-
/**
|
|
1488
|
-
* Authenticate and authorize a user to perform an action
|
|
1489
|
-
* @summary Authenticate and authorize Request
|
|
1490
|
-
* @param {AuthenticateAndAuthorizeRequest} [authenticateAndAuthorizeRequest]
|
|
1491
|
-
* @param {*} [options] Override http request option.
|
|
1492
|
-
* @throws {RequiredError}
|
|
1493
|
-
* @memberof AuthenticationApi
|
|
1494
|
-
*/
|
|
1495
|
-
public authenticateAndAuthorize(authenticateAndAuthorizeRequest?: AuthenticateAndAuthorizeRequest, options?: RawAxiosRequestConfig) {
|
|
1496
|
-
return AuthenticationApiFp(this.configuration).authenticateAndAuthorize(authenticateAndAuthorizeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1497
|
-
}
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
/**
|
|
1503
|
-
* AuthorizationApi - axios parameter creator
|
|
1504
|
-
* @export
|
|
1505
|
-
*/
|
|
1506
|
-
export const AuthorizationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
1507
|
-
return {
|
|
1508
3101
|
/**
|
|
1509
|
-
*
|
|
1510
|
-
* @summary
|
|
1511
|
-
* @param {
|
|
3102
|
+
* Get the authorized orgs for a given principal
|
|
3103
|
+
* @summary Get Authorized Orgs
|
|
3104
|
+
* @param {GetAuthorizedOrgsRequest} [getAuthorizedOrgsRequest]
|
|
1512
3105
|
* @param {*} [options] Override http request option.
|
|
1513
3106
|
* @throws {RequiredError}
|
|
1514
3107
|
*/
|
|
1515
|
-
|
|
1516
|
-
const localVarPath = `/
|
|
3108
|
+
getAuthorizedOrgs: async (getAuthorizedOrgsRequest?: GetAuthorizedOrgsRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3109
|
+
const localVarPath = `/getAuthorizedOrgs`;
|
|
1517
3110
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1518
3111
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1519
3112
|
let baseOptions;
|
|
@@ -1535,7 +3128,7 @@ export const AuthorizationApiAxiosParamCreator = function (configuration?: Confi
|
|
|
1535
3128
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1536
3129
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1537
3130
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1538
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3131
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getAuthorizedOrgsRequest, localVarRequestOptions, configuration)
|
|
1539
3132
|
|
|
1540
3133
|
return {
|
|
1541
3134
|
url: toPathString(localVarUrlObj),
|
|
@@ -1543,14 +3136,18 @@ export const AuthorizationApiAxiosParamCreator = function (configuration?: Confi
|
|
|
1543
3136
|
};
|
|
1544
3137
|
},
|
|
1545
3138
|
/**
|
|
1546
|
-
*
|
|
1547
|
-
* @summary
|
|
1548
|
-
* @param {
|
|
3139
|
+
* Get the authorized properties for a given org
|
|
3140
|
+
* @summary Get Authorized Properties
|
|
3141
|
+
* @param {string} orgId
|
|
3142
|
+
* @param {GetAuthorizedPropertiesRequest} [getAuthorizedPropertiesRequest]
|
|
1549
3143
|
* @param {*} [options] Override http request option.
|
|
1550
3144
|
* @throws {RequiredError}
|
|
1551
3145
|
*/
|
|
1552
|
-
|
|
1553
|
-
|
|
3146
|
+
getAuthorizedProperties: async (orgId: string, getAuthorizedPropertiesRequest?: GetAuthorizedPropertiesRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3147
|
+
// verify required parameter 'orgId' is not null or undefined
|
|
3148
|
+
assertParamExists('getAuthorizedProperties', 'orgId', orgId)
|
|
3149
|
+
const localVarPath = `/orgs/{orgId}/getAuthorizedProperties`
|
|
3150
|
+
.replace(`{${"orgId"}}`, encodeURIComponent(String(orgId)));
|
|
1554
3151
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1555
3152
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1556
3153
|
let baseOptions;
|
|
@@ -1572,7 +3169,7 @@ export const AuthorizationApiAxiosParamCreator = function (configuration?: Confi
|
|
|
1572
3169
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1573
3170
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1574
3171
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1575
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3172
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getAuthorizedPropertiesRequest, localVarRequestOptions, configuration)
|
|
1576
3173
|
|
|
1577
3174
|
return {
|
|
1578
3175
|
url: toPathString(localVarUrlObj),
|
|
@@ -1583,111 +3180,284 @@ export const AuthorizationApiAxiosParamCreator = function (configuration?: Confi
|
|
|
1583
3180
|
};
|
|
1584
3181
|
|
|
1585
3182
|
/**
|
|
1586
|
-
*
|
|
3183
|
+
* AuthorizedEntitiesApi - functional programming interface
|
|
1587
3184
|
* @export
|
|
1588
3185
|
*/
|
|
1589
|
-
export const
|
|
1590
|
-
const localVarAxiosParamCreator =
|
|
3186
|
+
export const AuthorizedEntitiesApiFp = function(configuration?: Configuration) {
|
|
3187
|
+
const localVarAxiosParamCreator = AuthorizedEntitiesApiAxiosParamCreator(configuration)
|
|
1591
3188
|
return {
|
|
1592
3189
|
/**
|
|
1593
|
-
*
|
|
1594
|
-
* @summary
|
|
1595
|
-
* @param {
|
|
3190
|
+
* Get the authorized brands for a given org
|
|
3191
|
+
* @summary Get Authorized Brands
|
|
3192
|
+
* @param {string} orgId
|
|
3193
|
+
* @param {GetAuthorizedBrandsRequest} [getAuthorizedBrandsRequest]
|
|
1596
3194
|
* @param {*} [options] Override http request option.
|
|
1597
3195
|
* @throws {RequiredError}
|
|
1598
3196
|
*/
|
|
1599
|
-
async
|
|
1600
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
3197
|
+
async getAuthorizedBrands(orgId: string, getAuthorizedBrandsRequest?: GetAuthorizedBrandsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAuthorizedBrandsResponse>> {
|
|
3198
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthorizedBrands(orgId, getAuthorizedBrandsRequest, options);
|
|
1601
3199
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1602
|
-
const localVarOperationServerBasePath = operationServerMap['
|
|
3200
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizedEntitiesApi.getAuthorizedBrands']?.[localVarOperationServerIndex]?.url;
|
|
1603
3201
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1604
3202
|
},
|
|
1605
3203
|
/**
|
|
1606
|
-
*
|
|
1607
|
-
* @summary
|
|
1608
|
-
* @param {
|
|
3204
|
+
* Get the authorized orgs for a given principal
|
|
3205
|
+
* @summary Get Authorized Orgs
|
|
3206
|
+
* @param {GetAuthorizedOrgsRequest} [getAuthorizedOrgsRequest]
|
|
1609
3207
|
* @param {*} [options] Override http request option.
|
|
1610
3208
|
* @throws {RequiredError}
|
|
1611
3209
|
*/
|
|
1612
|
-
async
|
|
1613
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
3210
|
+
async getAuthorizedOrgs(getAuthorizedOrgsRequest?: GetAuthorizedOrgsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAuthorizedOrgsResponse>> {
|
|
3211
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthorizedOrgs(getAuthorizedOrgsRequest, options);
|
|
1614
3212
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1615
|
-
const localVarOperationServerBasePath = operationServerMap['
|
|
3213
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizedEntitiesApi.getAuthorizedOrgs']?.[localVarOperationServerIndex]?.url;
|
|
3214
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3215
|
+
},
|
|
3216
|
+
/**
|
|
3217
|
+
* Get the authorized properties for a given org
|
|
3218
|
+
* @summary Get Authorized Properties
|
|
3219
|
+
* @param {string} orgId
|
|
3220
|
+
* @param {GetAuthorizedPropertiesRequest} [getAuthorizedPropertiesRequest]
|
|
3221
|
+
* @param {*} [options] Override http request option.
|
|
3222
|
+
* @throws {RequiredError}
|
|
3223
|
+
*/
|
|
3224
|
+
async getAuthorizedProperties(orgId: string, getAuthorizedPropertiesRequest?: GetAuthorizedPropertiesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAuthorizedPropertiesResponse>> {
|
|
3225
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthorizedProperties(orgId, getAuthorizedPropertiesRequest, options);
|
|
3226
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3227
|
+
const localVarOperationServerBasePath = operationServerMap['AuthorizedEntitiesApi.getAuthorizedProperties']?.[localVarOperationServerIndex]?.url;
|
|
1616
3228
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1617
3229
|
},
|
|
1618
3230
|
}
|
|
1619
3231
|
};
|
|
1620
3232
|
|
|
1621
3233
|
/**
|
|
1622
|
-
*
|
|
3234
|
+
* AuthorizedEntitiesApi - factory interface
|
|
1623
3235
|
* @export
|
|
1624
3236
|
*/
|
|
1625
|
-
export const
|
|
1626
|
-
const localVarFp =
|
|
3237
|
+
export const AuthorizedEntitiesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3238
|
+
const localVarFp = AuthorizedEntitiesApiFp(configuration)
|
|
1627
3239
|
return {
|
|
1628
3240
|
/**
|
|
1629
|
-
*
|
|
1630
|
-
* @summary
|
|
1631
|
-
* @param {
|
|
3241
|
+
* Get the authorized brands for a given org
|
|
3242
|
+
* @summary Get Authorized Brands
|
|
3243
|
+
* @param {string} orgId
|
|
3244
|
+
* @param {GetAuthorizedBrandsRequest} [getAuthorizedBrandsRequest]
|
|
1632
3245
|
* @param {*} [options] Override http request option.
|
|
1633
3246
|
* @throws {RequiredError}
|
|
1634
3247
|
*/
|
|
1635
|
-
|
|
1636
|
-
return localVarFp.
|
|
3248
|
+
getAuthorizedBrands(orgId: string, getAuthorizedBrandsRequest?: GetAuthorizedBrandsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAuthorizedBrandsResponse> {
|
|
3249
|
+
return localVarFp.getAuthorizedBrands(orgId, getAuthorizedBrandsRequest, options).then((request) => request(axios, basePath));
|
|
1637
3250
|
},
|
|
1638
3251
|
/**
|
|
1639
|
-
*
|
|
1640
|
-
* @summary
|
|
1641
|
-
* @param {
|
|
3252
|
+
* Get the authorized orgs for a given principal
|
|
3253
|
+
* @summary Get Authorized Orgs
|
|
3254
|
+
* @param {GetAuthorizedOrgsRequest} [getAuthorizedOrgsRequest]
|
|
1642
3255
|
* @param {*} [options] Override http request option.
|
|
1643
3256
|
* @throws {RequiredError}
|
|
1644
3257
|
*/
|
|
1645
|
-
|
|
1646
|
-
return localVarFp.
|
|
3258
|
+
getAuthorizedOrgs(getAuthorizedOrgsRequest?: GetAuthorizedOrgsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAuthorizedOrgsResponse> {
|
|
3259
|
+
return localVarFp.getAuthorizedOrgs(getAuthorizedOrgsRequest, options).then((request) => request(axios, basePath));
|
|
3260
|
+
},
|
|
3261
|
+
/**
|
|
3262
|
+
* Get the authorized properties for a given org
|
|
3263
|
+
* @summary Get Authorized Properties
|
|
3264
|
+
* @param {string} orgId
|
|
3265
|
+
* @param {GetAuthorizedPropertiesRequest} [getAuthorizedPropertiesRequest]
|
|
3266
|
+
* @param {*} [options] Override http request option.
|
|
3267
|
+
* @throws {RequiredError}
|
|
3268
|
+
*/
|
|
3269
|
+
getAuthorizedProperties(orgId: string, getAuthorizedPropertiesRequest?: GetAuthorizedPropertiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAuthorizedPropertiesResponse> {
|
|
3270
|
+
return localVarFp.getAuthorizedProperties(orgId, getAuthorizedPropertiesRequest, options).then((request) => request(axios, basePath));
|
|
1647
3271
|
},
|
|
1648
3272
|
};
|
|
1649
3273
|
};
|
|
1650
3274
|
|
|
1651
3275
|
/**
|
|
1652
|
-
*
|
|
3276
|
+
* AuthorizedEntitiesApi - object-oriented interface
|
|
1653
3277
|
* @export
|
|
1654
|
-
* @class
|
|
3278
|
+
* @class AuthorizedEntitiesApi
|
|
1655
3279
|
* @extends {BaseAPI}
|
|
1656
3280
|
*/
|
|
1657
|
-
export class
|
|
3281
|
+
export class AuthorizedEntitiesApi extends BaseAPI {
|
|
1658
3282
|
/**
|
|
1659
|
-
*
|
|
1660
|
-
* @summary
|
|
1661
|
-
* @param {
|
|
3283
|
+
* Get the authorized brands for a given org
|
|
3284
|
+
* @summary Get Authorized Brands
|
|
3285
|
+
* @param {string} orgId
|
|
3286
|
+
* @param {GetAuthorizedBrandsRequest} [getAuthorizedBrandsRequest]
|
|
1662
3287
|
* @param {*} [options] Override http request option.
|
|
1663
3288
|
* @throws {RequiredError}
|
|
1664
|
-
* @memberof
|
|
3289
|
+
* @memberof AuthorizedEntitiesApi
|
|
1665
3290
|
*/
|
|
1666
|
-
public
|
|
1667
|
-
return
|
|
3291
|
+
public getAuthorizedBrands(orgId: string, getAuthorizedBrandsRequest?: GetAuthorizedBrandsRequest, options?: RawAxiosRequestConfig) {
|
|
3292
|
+
return AuthorizedEntitiesApiFp(this.configuration).getAuthorizedBrands(orgId, getAuthorizedBrandsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1668
3293
|
}
|
|
1669
3294
|
|
|
1670
3295
|
/**
|
|
1671
|
-
*
|
|
1672
|
-
* @summary
|
|
1673
|
-
* @param {
|
|
3296
|
+
* Get the authorized orgs for a given principal
|
|
3297
|
+
* @summary Get Authorized Orgs
|
|
3298
|
+
* @param {GetAuthorizedOrgsRequest} [getAuthorizedOrgsRequest]
|
|
1674
3299
|
* @param {*} [options] Override http request option.
|
|
1675
3300
|
* @throws {RequiredError}
|
|
1676
|
-
* @memberof
|
|
3301
|
+
* @memberof AuthorizedEntitiesApi
|
|
1677
3302
|
*/
|
|
1678
|
-
public
|
|
1679
|
-
return
|
|
3303
|
+
public getAuthorizedOrgs(getAuthorizedOrgsRequest?: GetAuthorizedOrgsRequest, options?: RawAxiosRequestConfig) {
|
|
3304
|
+
return AuthorizedEntitiesApiFp(this.configuration).getAuthorizedOrgs(getAuthorizedOrgsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
/**
|
|
3308
|
+
* Get the authorized properties for a given org
|
|
3309
|
+
* @summary Get Authorized Properties
|
|
3310
|
+
* @param {string} orgId
|
|
3311
|
+
* @param {GetAuthorizedPropertiesRequest} [getAuthorizedPropertiesRequest]
|
|
3312
|
+
* @param {*} [options] Override http request option.
|
|
3313
|
+
* @throws {RequiredError}
|
|
3314
|
+
* @memberof AuthorizedEntitiesApi
|
|
3315
|
+
*/
|
|
3316
|
+
public getAuthorizedProperties(orgId: string, getAuthorizedPropertiesRequest?: GetAuthorizedPropertiesRequest, options?: RawAxiosRequestConfig) {
|
|
3317
|
+
return AuthorizedEntitiesApiFp(this.configuration).getAuthorizedProperties(orgId, getAuthorizedPropertiesRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1680
3318
|
}
|
|
1681
3319
|
}
|
|
1682
3320
|
|
|
1683
3321
|
|
|
1684
3322
|
|
|
1685
|
-
/**
|
|
1686
|
-
*
|
|
1687
|
-
* @export
|
|
1688
|
-
*/
|
|
1689
|
-
export const
|
|
1690
|
-
return {
|
|
3323
|
+
/**
|
|
3324
|
+
* ConfigurationDataApi - axios parameter creator
|
|
3325
|
+
* @export
|
|
3326
|
+
*/
|
|
3327
|
+
export const ConfigurationDataApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3328
|
+
return {
|
|
3329
|
+
/**
|
|
3330
|
+
* List the available feature based roles
|
|
3331
|
+
* @summary List Feature Based Roles
|
|
3332
|
+
* @param {*} [options] Override http request option.
|
|
3333
|
+
* @throws {RequiredError}
|
|
3334
|
+
*/
|
|
3335
|
+
configListFeatureBasedRoles: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3336
|
+
const localVarPath = `/config/featureBasedRoles`;
|
|
3337
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3338
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3339
|
+
let baseOptions;
|
|
3340
|
+
if (configuration) {
|
|
3341
|
+
baseOptions = configuration.baseOptions;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3345
|
+
const localVarHeaderParameter = {} as any;
|
|
3346
|
+
const localVarQueryParameter = {} as any;
|
|
3347
|
+
|
|
3348
|
+
// authentication ApiKeyAuth required
|
|
3349
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3350
|
+
|
|
3351
|
+
|
|
3352
|
+
|
|
3353
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3354
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3355
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3356
|
+
|
|
3357
|
+
return {
|
|
3358
|
+
url: toPathString(localVarUrlObj),
|
|
3359
|
+
options: localVarRequestOptions,
|
|
3360
|
+
};
|
|
3361
|
+
},
|
|
3362
|
+
/**
|
|
3363
|
+
* List the available permissions
|
|
3364
|
+
* @summary List Permissions
|
|
3365
|
+
* @param {*} [options] Override http request option.
|
|
3366
|
+
* @throws {RequiredError}
|
|
3367
|
+
*/
|
|
3368
|
+
configListPermissions: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3369
|
+
const localVarPath = `/config/permissions`;
|
|
3370
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3371
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3372
|
+
let baseOptions;
|
|
3373
|
+
if (configuration) {
|
|
3374
|
+
baseOptions = configuration.baseOptions;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3378
|
+
const localVarHeaderParameter = {} as any;
|
|
3379
|
+
const localVarQueryParameter = {} as any;
|
|
3380
|
+
|
|
3381
|
+
// authentication ApiKeyAuth required
|
|
3382
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3383
|
+
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3387
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3388
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3389
|
+
|
|
3390
|
+
return {
|
|
3391
|
+
url: toPathString(localVarUrlObj),
|
|
3392
|
+
options: localVarRequestOptions,
|
|
3393
|
+
};
|
|
3394
|
+
},
|
|
3395
|
+
/**
|
|
3396
|
+
* List the available roles
|
|
3397
|
+
* @summary List Roles
|
|
3398
|
+
* @param {*} [options] Override http request option.
|
|
3399
|
+
* @throws {RequiredError}
|
|
3400
|
+
*/
|
|
3401
|
+
configListRoles: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3402
|
+
const localVarPath = `/config/roles`;
|
|
3403
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3404
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3405
|
+
let baseOptions;
|
|
3406
|
+
if (configuration) {
|
|
3407
|
+
baseOptions = configuration.baseOptions;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3411
|
+
const localVarHeaderParameter = {} as any;
|
|
3412
|
+
const localVarQueryParameter = {} as any;
|
|
3413
|
+
|
|
3414
|
+
// authentication ApiKeyAuth required
|
|
3415
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3416
|
+
|
|
3417
|
+
|
|
3418
|
+
|
|
3419
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3420
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3421
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3422
|
+
|
|
3423
|
+
return {
|
|
3424
|
+
url: toPathString(localVarUrlObj),
|
|
3425
|
+
options: localVarRequestOptions,
|
|
3426
|
+
};
|
|
3427
|
+
},
|
|
3428
|
+
/**
|
|
3429
|
+
* List the available feature based roles
|
|
3430
|
+
* @summary List Feature Based Roles
|
|
3431
|
+
* @param {*} [options] Override http request option.
|
|
3432
|
+
* @throws {RequiredError}
|
|
3433
|
+
*/
|
|
3434
|
+
listFeatureBasedRoles: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3435
|
+
const localVarPath = `/featureBasedRoles`;
|
|
3436
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3437
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3438
|
+
let baseOptions;
|
|
3439
|
+
if (configuration) {
|
|
3440
|
+
baseOptions = configuration.baseOptions;
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3444
|
+
const localVarHeaderParameter = {} as any;
|
|
3445
|
+
const localVarQueryParameter = {} as any;
|
|
3446
|
+
|
|
3447
|
+
// authentication ApiKeyAuth required
|
|
3448
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3449
|
+
|
|
3450
|
+
|
|
3451
|
+
|
|
3452
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3453
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3454
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3455
|
+
|
|
3456
|
+
return {
|
|
3457
|
+
url: toPathString(localVarUrlObj),
|
|
3458
|
+
options: localVarRequestOptions,
|
|
3459
|
+
};
|
|
3460
|
+
},
|
|
1691
3461
|
/**
|
|
1692
3462
|
* List the available permissions
|
|
1693
3463
|
* @summary List Permissions
|
|
@@ -1712,6 +3482,39 @@ export const PermissionsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
1712
3482
|
|
|
1713
3483
|
|
|
1714
3484
|
|
|
3485
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3486
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3487
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3488
|
+
|
|
3489
|
+
return {
|
|
3490
|
+
url: toPathString(localVarUrlObj),
|
|
3491
|
+
options: localVarRequestOptions,
|
|
3492
|
+
};
|
|
3493
|
+
},
|
|
3494
|
+
/**
|
|
3495
|
+
* List the available roles
|
|
3496
|
+
* @summary List Roles
|
|
3497
|
+
* @param {*} [options] Override http request option.
|
|
3498
|
+
* @throws {RequiredError}
|
|
3499
|
+
*/
|
|
3500
|
+
listRoles: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3501
|
+
const localVarPath = `/roles`;
|
|
3502
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3503
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3504
|
+
let baseOptions;
|
|
3505
|
+
if (configuration) {
|
|
3506
|
+
baseOptions = configuration.baseOptions;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3510
|
+
const localVarHeaderParameter = {} as any;
|
|
3511
|
+
const localVarQueryParameter = {} as any;
|
|
3512
|
+
|
|
3513
|
+
// authentication ApiKeyAuth required
|
|
3514
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3515
|
+
|
|
3516
|
+
|
|
3517
|
+
|
|
1715
3518
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1716
3519
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1717
3520
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1725,62 +3528,222 @@ export const PermissionsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
1725
3528
|
};
|
|
1726
3529
|
|
|
1727
3530
|
/**
|
|
1728
|
-
*
|
|
3531
|
+
* ConfigurationDataApi - functional programming interface
|
|
1729
3532
|
* @export
|
|
1730
3533
|
*/
|
|
1731
|
-
export const
|
|
1732
|
-
const localVarAxiosParamCreator =
|
|
3534
|
+
export const ConfigurationDataApiFp = function(configuration?: Configuration) {
|
|
3535
|
+
const localVarAxiosParamCreator = ConfigurationDataApiAxiosParamCreator(configuration)
|
|
1733
3536
|
return {
|
|
3537
|
+
/**
|
|
3538
|
+
* List the available feature based roles
|
|
3539
|
+
* @summary List Feature Based Roles
|
|
3540
|
+
* @param {*} [options] Override http request option.
|
|
3541
|
+
* @throws {RequiredError}
|
|
3542
|
+
*/
|
|
3543
|
+
async configListFeatureBasedRoles(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFeatureBasedRolesSuccessResponse>> {
|
|
3544
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configListFeatureBasedRoles(options);
|
|
3545
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3546
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.configListFeatureBasedRoles']?.[localVarOperationServerIndex]?.url;
|
|
3547
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3548
|
+
},
|
|
3549
|
+
/**
|
|
3550
|
+
* List the available permissions
|
|
3551
|
+
* @summary List Permissions
|
|
3552
|
+
* @param {*} [options] Override http request option.
|
|
3553
|
+
* @throws {RequiredError}
|
|
3554
|
+
*/
|
|
3555
|
+
async configListPermissions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPermissionsSuccessResponse>> {
|
|
3556
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configListPermissions(options);
|
|
3557
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3558
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.configListPermissions']?.[localVarOperationServerIndex]?.url;
|
|
3559
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3560
|
+
},
|
|
3561
|
+
/**
|
|
3562
|
+
* List the available roles
|
|
3563
|
+
* @summary List Roles
|
|
3564
|
+
* @param {*} [options] Override http request option.
|
|
3565
|
+
* @throws {RequiredError}
|
|
3566
|
+
*/
|
|
3567
|
+
async configListRoles(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRolesSuccessResponse>> {
|
|
3568
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configListRoles(options);
|
|
3569
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3570
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.configListRoles']?.[localVarOperationServerIndex]?.url;
|
|
3571
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3572
|
+
},
|
|
3573
|
+
/**
|
|
3574
|
+
* List the available feature based roles
|
|
3575
|
+
* @summary List Feature Based Roles
|
|
3576
|
+
* @param {*} [options] Override http request option.
|
|
3577
|
+
* @throws {RequiredError}
|
|
3578
|
+
*/
|
|
3579
|
+
async listFeatureBasedRoles(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFeatureBasedRolesSuccessResponse>> {
|
|
3580
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeatureBasedRoles(options);
|
|
3581
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3582
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.listFeatureBasedRoles']?.[localVarOperationServerIndex]?.url;
|
|
3583
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3584
|
+
},
|
|
1734
3585
|
/**
|
|
1735
3586
|
* List the available permissions
|
|
1736
3587
|
* @summary List Permissions
|
|
1737
3588
|
* @param {*} [options] Override http request option.
|
|
1738
3589
|
* @throws {RequiredError}
|
|
1739
3590
|
*/
|
|
1740
|
-
async listPermissions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3591
|
+
async listPermissions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPermissionsSuccessResponse>> {
|
|
1741
3592
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPermissions(options);
|
|
1742
3593
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1743
|
-
const localVarOperationServerBasePath = operationServerMap['
|
|
3594
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.listPermissions']?.[localVarOperationServerIndex]?.url;
|
|
3595
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3596
|
+
},
|
|
3597
|
+
/**
|
|
3598
|
+
* List the available roles
|
|
3599
|
+
* @summary List Roles
|
|
3600
|
+
* @param {*} [options] Override http request option.
|
|
3601
|
+
* @throws {RequiredError}
|
|
3602
|
+
*/
|
|
3603
|
+
async listRoles(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRolesSuccessResponse>> {
|
|
3604
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listRoles(options);
|
|
3605
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3606
|
+
const localVarOperationServerBasePath = operationServerMap['ConfigurationDataApi.listRoles']?.[localVarOperationServerIndex]?.url;
|
|
1744
3607
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1745
3608
|
},
|
|
1746
3609
|
}
|
|
1747
3610
|
};
|
|
1748
3611
|
|
|
1749
3612
|
/**
|
|
1750
|
-
*
|
|
3613
|
+
* ConfigurationDataApi - factory interface
|
|
1751
3614
|
* @export
|
|
1752
3615
|
*/
|
|
1753
|
-
export const
|
|
1754
|
-
const localVarFp =
|
|
3616
|
+
export const ConfigurationDataApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3617
|
+
const localVarFp = ConfigurationDataApiFp(configuration)
|
|
1755
3618
|
return {
|
|
3619
|
+
/**
|
|
3620
|
+
* List the available feature based roles
|
|
3621
|
+
* @summary List Feature Based Roles
|
|
3622
|
+
* @param {*} [options] Override http request option.
|
|
3623
|
+
* @throws {RequiredError}
|
|
3624
|
+
*/
|
|
3625
|
+
configListFeatureBasedRoles(options?: RawAxiosRequestConfig): AxiosPromise<ListFeatureBasedRolesSuccessResponse> {
|
|
3626
|
+
return localVarFp.configListFeatureBasedRoles(options).then((request) => request(axios, basePath));
|
|
3627
|
+
},
|
|
3628
|
+
/**
|
|
3629
|
+
* List the available permissions
|
|
3630
|
+
* @summary List Permissions
|
|
3631
|
+
* @param {*} [options] Override http request option.
|
|
3632
|
+
* @throws {RequiredError}
|
|
3633
|
+
*/
|
|
3634
|
+
configListPermissions(options?: RawAxiosRequestConfig): AxiosPromise<ListPermissionsSuccessResponse> {
|
|
3635
|
+
return localVarFp.configListPermissions(options).then((request) => request(axios, basePath));
|
|
3636
|
+
},
|
|
3637
|
+
/**
|
|
3638
|
+
* List the available roles
|
|
3639
|
+
* @summary List Roles
|
|
3640
|
+
* @param {*} [options] Override http request option.
|
|
3641
|
+
* @throws {RequiredError}
|
|
3642
|
+
*/
|
|
3643
|
+
configListRoles(options?: RawAxiosRequestConfig): AxiosPromise<ListRolesSuccessResponse> {
|
|
3644
|
+
return localVarFp.configListRoles(options).then((request) => request(axios, basePath));
|
|
3645
|
+
},
|
|
3646
|
+
/**
|
|
3647
|
+
* List the available feature based roles
|
|
3648
|
+
* @summary List Feature Based Roles
|
|
3649
|
+
* @param {*} [options] Override http request option.
|
|
3650
|
+
* @throws {RequiredError}
|
|
3651
|
+
*/
|
|
3652
|
+
listFeatureBasedRoles(options?: RawAxiosRequestConfig): AxiosPromise<ListFeatureBasedRolesSuccessResponse> {
|
|
3653
|
+
return localVarFp.listFeatureBasedRoles(options).then((request) => request(axios, basePath));
|
|
3654
|
+
},
|
|
1756
3655
|
/**
|
|
1757
3656
|
* List the available permissions
|
|
1758
3657
|
* @summary List Permissions
|
|
1759
3658
|
* @param {*} [options] Override http request option.
|
|
1760
3659
|
* @throws {RequiredError}
|
|
1761
3660
|
*/
|
|
1762
|
-
listPermissions(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3661
|
+
listPermissions(options?: RawAxiosRequestConfig): AxiosPromise<ListPermissionsSuccessResponse> {
|
|
1763
3662
|
return localVarFp.listPermissions(options).then((request) => request(axios, basePath));
|
|
1764
3663
|
},
|
|
3664
|
+
/**
|
|
3665
|
+
* List the available roles
|
|
3666
|
+
* @summary List Roles
|
|
3667
|
+
* @param {*} [options] Override http request option.
|
|
3668
|
+
* @throws {RequiredError}
|
|
3669
|
+
*/
|
|
3670
|
+
listRoles(options?: RawAxiosRequestConfig): AxiosPromise<ListRolesSuccessResponse> {
|
|
3671
|
+
return localVarFp.listRoles(options).then((request) => request(axios, basePath));
|
|
3672
|
+
},
|
|
1765
3673
|
};
|
|
1766
3674
|
};
|
|
1767
3675
|
|
|
1768
3676
|
/**
|
|
1769
|
-
*
|
|
3677
|
+
* ConfigurationDataApi - object-oriented interface
|
|
1770
3678
|
* @export
|
|
1771
|
-
* @class
|
|
3679
|
+
* @class ConfigurationDataApi
|
|
1772
3680
|
* @extends {BaseAPI}
|
|
1773
3681
|
*/
|
|
1774
|
-
export class
|
|
3682
|
+
export class ConfigurationDataApi extends BaseAPI {
|
|
3683
|
+
/**
|
|
3684
|
+
* List the available feature based roles
|
|
3685
|
+
* @summary List Feature Based Roles
|
|
3686
|
+
* @param {*} [options] Override http request option.
|
|
3687
|
+
* @throws {RequiredError}
|
|
3688
|
+
* @memberof ConfigurationDataApi
|
|
3689
|
+
*/
|
|
3690
|
+
public configListFeatureBasedRoles(options?: RawAxiosRequestConfig) {
|
|
3691
|
+
return ConfigurationDataApiFp(this.configuration).configListFeatureBasedRoles(options).then((request) => request(this.axios, this.basePath));
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
/**
|
|
3695
|
+
* List the available permissions
|
|
3696
|
+
* @summary List Permissions
|
|
3697
|
+
* @param {*} [options] Override http request option.
|
|
3698
|
+
* @throws {RequiredError}
|
|
3699
|
+
* @memberof ConfigurationDataApi
|
|
3700
|
+
*/
|
|
3701
|
+
public configListPermissions(options?: RawAxiosRequestConfig) {
|
|
3702
|
+
return ConfigurationDataApiFp(this.configuration).configListPermissions(options).then((request) => request(this.axios, this.basePath));
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
/**
|
|
3706
|
+
* List the available roles
|
|
3707
|
+
* @summary List Roles
|
|
3708
|
+
* @param {*} [options] Override http request option.
|
|
3709
|
+
* @throws {RequiredError}
|
|
3710
|
+
* @memberof ConfigurationDataApi
|
|
3711
|
+
*/
|
|
3712
|
+
public configListRoles(options?: RawAxiosRequestConfig) {
|
|
3713
|
+
return ConfigurationDataApiFp(this.configuration).configListRoles(options).then((request) => request(this.axios, this.basePath));
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
/**
|
|
3717
|
+
* List the available feature based roles
|
|
3718
|
+
* @summary List Feature Based Roles
|
|
3719
|
+
* @param {*} [options] Override http request option.
|
|
3720
|
+
* @throws {RequiredError}
|
|
3721
|
+
* @memberof ConfigurationDataApi
|
|
3722
|
+
*/
|
|
3723
|
+
public listFeatureBasedRoles(options?: RawAxiosRequestConfig) {
|
|
3724
|
+
return ConfigurationDataApiFp(this.configuration).listFeatureBasedRoles(options).then((request) => request(this.axios, this.basePath));
|
|
3725
|
+
}
|
|
3726
|
+
|
|
1775
3727
|
/**
|
|
1776
3728
|
* List the available permissions
|
|
1777
3729
|
* @summary List Permissions
|
|
1778
3730
|
* @param {*} [options] Override http request option.
|
|
1779
3731
|
* @throws {RequiredError}
|
|
1780
|
-
* @memberof
|
|
3732
|
+
* @memberof ConfigurationDataApi
|
|
1781
3733
|
*/
|
|
1782
3734
|
public listPermissions(options?: RawAxiosRequestConfig) {
|
|
1783
|
-
return
|
|
3735
|
+
return ConfigurationDataApiFp(this.configuration).listPermissions(options).then((request) => request(this.axios, this.basePath));
|
|
3736
|
+
}
|
|
3737
|
+
|
|
3738
|
+
/**
|
|
3739
|
+
* List the available roles
|
|
3740
|
+
* @summary List Roles
|
|
3741
|
+
* @param {*} [options] Override http request option.
|
|
3742
|
+
* @throws {RequiredError}
|
|
3743
|
+
* @memberof ConfigurationDataApi
|
|
3744
|
+
*/
|
|
3745
|
+
public listRoles(options?: RawAxiosRequestConfig) {
|
|
3746
|
+
return ConfigurationDataApiFp(this.configuration).listRoles(options).then((request) => request(this.axios, this.basePath));
|
|
1784
3747
|
}
|
|
1785
3748
|
}
|
|
1786
3749
|
|
|
@@ -2147,6 +4110,80 @@ export class RoleAssignmentApi extends BaseAPI {
|
|
|
2147
4110
|
*/
|
|
2148
4111
|
export const UserPermissionsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2149
4112
|
return {
|
|
4113
|
+
/**
|
|
4114
|
+
* List the available permissions for the current user
|
|
4115
|
+
* @summary List Org Permissions
|
|
4116
|
+
* @param {string} orgId
|
|
4117
|
+
* @param {*} [options] Override http request option.
|
|
4118
|
+
* @throws {RequiredError}
|
|
4119
|
+
*/
|
|
4120
|
+
listOrgPermissions: async (orgId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4121
|
+
// verify required parameter 'orgId' is not null or undefined
|
|
4122
|
+
assertParamExists('listOrgPermissions', 'orgId', orgId)
|
|
4123
|
+
const localVarPath = `/orgs/{orgId}/permissions`
|
|
4124
|
+
.replace(`{${"orgId"}}`, encodeURIComponent(String(orgId)));
|
|
4125
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4126
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4127
|
+
let baseOptions;
|
|
4128
|
+
if (configuration) {
|
|
4129
|
+
baseOptions = configuration.baseOptions;
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
4133
|
+
const localVarHeaderParameter = {} as any;
|
|
4134
|
+
const localVarQueryParameter = {} as any;
|
|
4135
|
+
|
|
4136
|
+
// authentication ApiKeyAuth required
|
|
4137
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
4138
|
+
|
|
4139
|
+
|
|
4140
|
+
|
|
4141
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4142
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4143
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4144
|
+
|
|
4145
|
+
return {
|
|
4146
|
+
url: toPathString(localVarUrlObj),
|
|
4147
|
+
options: localVarRequestOptions,
|
|
4148
|
+
};
|
|
4149
|
+
},
|
|
4150
|
+
/**
|
|
4151
|
+
* List the available roles for the current user
|
|
4152
|
+
* @summary List Org Roles
|
|
4153
|
+
* @param {string} orgId
|
|
4154
|
+
* @param {*} [options] Override http request option.
|
|
4155
|
+
* @throws {RequiredError}
|
|
4156
|
+
*/
|
|
4157
|
+
listOrgRoles: async (orgId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4158
|
+
// verify required parameter 'orgId' is not null or undefined
|
|
4159
|
+
assertParamExists('listOrgRoles', 'orgId', orgId)
|
|
4160
|
+
const localVarPath = `/orgs/{orgId}/roles`
|
|
4161
|
+
.replace(`{${"orgId"}}`, encodeURIComponent(String(orgId)));
|
|
4162
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4163
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4164
|
+
let baseOptions;
|
|
4165
|
+
if (configuration) {
|
|
4166
|
+
baseOptions = configuration.baseOptions;
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4169
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
4170
|
+
const localVarHeaderParameter = {} as any;
|
|
4171
|
+
const localVarQueryParameter = {} as any;
|
|
4172
|
+
|
|
4173
|
+
// authentication ApiKeyAuth required
|
|
4174
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
4175
|
+
|
|
4176
|
+
|
|
4177
|
+
|
|
4178
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4179
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4180
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4181
|
+
|
|
4182
|
+
return {
|
|
4183
|
+
url: toPathString(localVarUrlObj),
|
|
4184
|
+
options: localVarRequestOptions,
|
|
4185
|
+
};
|
|
4186
|
+
},
|
|
2150
4187
|
/**
|
|
2151
4188
|
* List the available permissions for the current user
|
|
2152
4189
|
* @summary List Own Permissions
|
|
@@ -2235,6 +4272,32 @@ export const UserPermissionsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2235
4272
|
export const UserPermissionsApiFp = function(configuration?: Configuration) {
|
|
2236
4273
|
const localVarAxiosParamCreator = UserPermissionsApiAxiosParamCreator(configuration)
|
|
2237
4274
|
return {
|
|
4275
|
+
/**
|
|
4276
|
+
* List the available permissions for the current user
|
|
4277
|
+
* @summary List Org Permissions
|
|
4278
|
+
* @param {string} orgId
|
|
4279
|
+
* @param {*} [options] Override http request option.
|
|
4280
|
+
* @throws {RequiredError}
|
|
4281
|
+
*/
|
|
4282
|
+
async listOrgPermissions(orgId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{ [key: string]: { [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }; }>> {
|
|
4283
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listOrgPermissions(orgId, options);
|
|
4284
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4285
|
+
const localVarOperationServerBasePath = operationServerMap['UserPermissionsApi.listOrgPermissions']?.[localVarOperationServerIndex]?.url;
|
|
4286
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4287
|
+
},
|
|
4288
|
+
/**
|
|
4289
|
+
* List the available roles for the current user
|
|
4290
|
+
* @summary List Org Roles
|
|
4291
|
+
* @param {string} orgId
|
|
4292
|
+
* @param {*} [options] Override http request option.
|
|
4293
|
+
* @throws {RequiredError}
|
|
4294
|
+
*/
|
|
4295
|
+
async listOrgRoles(orgId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{ [key: string]: { [key: string]: ListOrgRolesSuccessResponseValueValue; }; }>> {
|
|
4296
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listOrgRoles(orgId, options);
|
|
4297
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4298
|
+
const localVarOperationServerBasePath = operationServerMap['UserPermissionsApi.listOrgRoles']?.[localVarOperationServerIndex]?.url;
|
|
4299
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4300
|
+
},
|
|
2238
4301
|
/**
|
|
2239
4302
|
* List the available permissions for the current user
|
|
2240
4303
|
* @summary List Own Permissions
|
|
@@ -2272,6 +4335,26 @@ export const UserPermissionsApiFp = function(configuration?: Configuration) {
|
|
|
2272
4335
|
export const UserPermissionsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2273
4336
|
const localVarFp = UserPermissionsApiFp(configuration)
|
|
2274
4337
|
return {
|
|
4338
|
+
/**
|
|
4339
|
+
* List the available permissions for the current user
|
|
4340
|
+
* @summary List Org Permissions
|
|
4341
|
+
* @param {string} orgId
|
|
4342
|
+
* @param {*} [options] Override http request option.
|
|
4343
|
+
* @throws {RequiredError}
|
|
4344
|
+
*/
|
|
4345
|
+
listOrgPermissions(orgId: string, options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: { [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }; }> {
|
|
4346
|
+
return localVarFp.listOrgPermissions(orgId, options).then((request) => request(axios, basePath));
|
|
4347
|
+
},
|
|
4348
|
+
/**
|
|
4349
|
+
* List the available roles for the current user
|
|
4350
|
+
* @summary List Org Roles
|
|
4351
|
+
* @param {string} orgId
|
|
4352
|
+
* @param {*} [options] Override http request option.
|
|
4353
|
+
* @throws {RequiredError}
|
|
4354
|
+
*/
|
|
4355
|
+
listOrgRoles(orgId: string, options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: { [key: string]: ListOrgRolesSuccessResponseValueValue; }; }> {
|
|
4356
|
+
return localVarFp.listOrgRoles(orgId, options).then((request) => request(axios, basePath));
|
|
4357
|
+
},
|
|
2275
4358
|
/**
|
|
2276
4359
|
* List the available permissions for the current user
|
|
2277
4360
|
* @summary List Own Permissions
|
|
@@ -2303,6 +4386,30 @@ export const UserPermissionsApiFactory = function (configuration?: Configuration
|
|
|
2303
4386
|
* @extends {BaseAPI}
|
|
2304
4387
|
*/
|
|
2305
4388
|
export class UserPermissionsApi extends BaseAPI {
|
|
4389
|
+
/**
|
|
4390
|
+
* List the available permissions for the current user
|
|
4391
|
+
* @summary List Org Permissions
|
|
4392
|
+
* @param {string} orgId
|
|
4393
|
+
* @param {*} [options] Override http request option.
|
|
4394
|
+
* @throws {RequiredError}
|
|
4395
|
+
* @memberof UserPermissionsApi
|
|
4396
|
+
*/
|
|
4397
|
+
public listOrgPermissions(orgId: string, options?: RawAxiosRequestConfig) {
|
|
4398
|
+
return UserPermissionsApiFp(this.configuration).listOrgPermissions(orgId, options).then((request) => request(this.axios, this.basePath));
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
/**
|
|
4402
|
+
* List the available roles for the current user
|
|
4403
|
+
* @summary List Org Roles
|
|
4404
|
+
* @param {string} orgId
|
|
4405
|
+
* @param {*} [options] Override http request option.
|
|
4406
|
+
* @throws {RequiredError}
|
|
4407
|
+
* @memberof UserPermissionsApi
|
|
4408
|
+
*/
|
|
4409
|
+
public listOrgRoles(orgId: string, options?: RawAxiosRequestConfig) {
|
|
4410
|
+
return UserPermissionsApiFp(this.configuration).listOrgRoles(orgId, options).then((request) => request(this.axios, this.basePath));
|
|
4411
|
+
}
|
|
4412
|
+
|
|
2306
4413
|
/**
|
|
2307
4414
|
* List the available permissions for the current user
|
|
2308
4415
|
* @summary List Own Permissions
|