@flipdish/authorization 0.2.17-rc.1766093776 → 0.2.18-rc.1766096288
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/api.ts +309 -1573
- package/configuration.ts +1 -1
- package/dist/api.d.ts +306 -1614
- package/dist/api.js +200 -1445
- package/dist/configuration.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -205,10 +205,10 @@ export interface AuthenticateAndCheckIsInRoleRequest {
|
|
|
205
205
|
};
|
|
206
206
|
/**
|
|
207
207
|
* Array of roles to check if the principal is in
|
|
208
|
-
* @type {Array<
|
|
208
|
+
* @type {Array<RoleNames>}
|
|
209
209
|
* @memberof AuthenticateAndCheckIsInRoleRequest
|
|
210
210
|
*/
|
|
211
|
-
'roles': Array<
|
|
211
|
+
'roles': Array<RoleNames>;
|
|
212
212
|
/**
|
|
213
213
|
*
|
|
214
214
|
* @type {string}
|
|
@@ -216,11 +216,6 @@ export interface AuthenticateAndCheckIsInRoleRequest {
|
|
|
216
216
|
*/
|
|
217
217
|
'checkMode'?: AuthenticateAndCheckIsInRoleRequestCheckModeEnum;
|
|
218
218
|
}
|
|
219
|
-
export declare const AuthenticateAndCheckIsInRoleRequestRolesEnum: {
|
|
220
|
-
readonly Admin: "Admin";
|
|
221
|
-
readonly Factory: "Factory";
|
|
222
|
-
};
|
|
223
|
-
export type AuthenticateAndCheckIsInRoleRequestRolesEnum = typeof AuthenticateAndCheckIsInRoleRequestRolesEnum[keyof typeof AuthenticateAndCheckIsInRoleRequestRolesEnum];
|
|
224
219
|
export declare const AuthenticateAndCheckIsInRoleRequestCheckModeEnum: {
|
|
225
220
|
readonly Any: "any";
|
|
226
221
|
readonly All: "all";
|
|
@@ -283,11 +278,11 @@ export interface AuthorizationBatchRequest {
|
|
|
283
278
|
*/
|
|
284
279
|
'principal': AuthorizationRequestPrincipal;
|
|
285
280
|
/**
|
|
286
|
-
*
|
|
287
|
-
* @type {
|
|
281
|
+
*
|
|
282
|
+
* @type {Permissions}
|
|
288
283
|
* @memberof AuthorizationBatchRequest
|
|
289
284
|
*/
|
|
290
|
-
'action':
|
|
285
|
+
'action': Permissions;
|
|
291
286
|
/**
|
|
292
287
|
* Array of resources to check authorisation for
|
|
293
288
|
* @type {Array<AuthorizationRequestResource>}
|
|
@@ -295,237 +290,6 @@ export interface AuthorizationBatchRequest {
|
|
|
295
290
|
*/
|
|
296
291
|
'resources': Array<AuthorizationRequestResource>;
|
|
297
292
|
}
|
|
298
|
-
export declare const AuthorizationBatchRequestActionEnum: {
|
|
299
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
300
|
-
readonly ViewApp: "ViewApp";
|
|
301
|
-
readonly CreateApp: "CreateApp";
|
|
302
|
-
readonly UpdateApp: "UpdateApp";
|
|
303
|
-
readonly ViewAppName: "ViewAppName";
|
|
304
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
305
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
306
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
307
|
-
readonly EditTeammates: "EditTeammates";
|
|
308
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
309
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
310
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
311
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
312
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
313
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
314
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
315
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
316
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
317
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
318
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
319
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
320
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
321
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
322
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
323
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
324
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
325
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
326
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
327
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
328
|
-
readonly ViewOrders: "ViewOrders";
|
|
329
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
330
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
331
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
332
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
333
|
-
readonly ViewStores: "ViewStores";
|
|
334
|
-
readonly CreateStores: "CreateStores";
|
|
335
|
-
readonly EditStores: "EditStores";
|
|
336
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
337
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
338
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
339
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
340
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
341
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
342
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
343
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
344
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
345
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
346
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
347
|
-
readonly PublishStores: "PublishStores";
|
|
348
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
349
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
350
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
351
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
352
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
353
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
354
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
355
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
356
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
357
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
358
|
-
readonly ViewMenu: "ViewMenu";
|
|
359
|
-
readonly CreateMenu: "CreateMenu";
|
|
360
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
361
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
362
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
363
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
364
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
365
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
366
|
-
readonly EditVouchers: "EditVouchers";
|
|
367
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
368
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
369
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
370
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
371
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
372
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
373
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
374
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
375
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
376
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
377
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
378
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
379
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
380
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
381
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
382
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
383
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
384
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
385
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
386
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
387
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
388
|
-
readonly EditCustomers: "EditCustomers";
|
|
389
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
390
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
391
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
392
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
393
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
394
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
395
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
396
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
397
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
398
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
399
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
400
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
401
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
402
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
403
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
404
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
405
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
406
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
407
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
408
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
409
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
410
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
411
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
412
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
413
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
414
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
415
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
416
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
417
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
418
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
419
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
420
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
421
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
422
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
423
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
424
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
425
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
426
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
427
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
428
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
429
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
430
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
431
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
432
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
433
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
434
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
435
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
436
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
437
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
438
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
439
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
440
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
441
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
442
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
443
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
444
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
445
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
446
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
447
|
-
readonly ViewChannels: "ViewChannels";
|
|
448
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
449
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
450
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
451
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
452
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
453
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
454
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
455
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
456
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
457
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
458
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
459
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
460
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
461
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
462
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
463
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
464
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
465
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
466
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
467
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
468
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
469
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
470
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
471
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
472
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
473
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
474
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
475
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
476
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
477
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
478
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
479
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
480
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
481
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
482
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
483
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
484
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
485
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
486
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
487
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
488
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
489
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
490
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
491
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
492
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
493
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
494
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
495
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
496
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
497
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
498
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
499
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
500
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
501
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
502
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
503
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
504
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
505
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
506
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
507
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
508
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
509
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
510
|
-
readonly ViewBrand: "ViewBrand";
|
|
511
|
-
readonly EditBrand: "EditBrand";
|
|
512
|
-
readonly CreateBrand: "CreateBrand";
|
|
513
|
-
readonly TransferBrand: "TransferBrand";
|
|
514
|
-
readonly ViewProperty: "ViewProperty";
|
|
515
|
-
readonly EditProperty: "EditProperty";
|
|
516
|
-
readonly CreateProperty: "CreateProperty";
|
|
517
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
518
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
519
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
520
|
-
readonly CreateOrg: "CreateOrg";
|
|
521
|
-
readonly EditOrg: "EditOrg";
|
|
522
|
-
readonly ViewOrg: "ViewOrg";
|
|
523
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
524
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
525
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
526
|
-
readonly RoleFactory: "RoleFactory";
|
|
527
|
-
};
|
|
528
|
-
export type AuthorizationBatchRequestActionEnum = typeof AuthorizationBatchRequestActionEnum[keyof typeof AuthorizationBatchRequestActionEnum];
|
|
529
293
|
/**
|
|
530
294
|
*
|
|
531
295
|
* @export
|
|
@@ -815,243 +579,12 @@ export interface FeatureBasedRole {
|
|
|
815
579
|
*/
|
|
816
580
|
'name': string;
|
|
817
581
|
/**
|
|
818
|
-
*
|
|
819
|
-
* @type {Array<
|
|
582
|
+
*
|
|
583
|
+
* @type {Permissions & Array<Permissions>}
|
|
820
584
|
* @memberof FeatureBasedRole
|
|
821
585
|
*/
|
|
822
|
-
'permissions': Array<
|
|
586
|
+
'permissions': Permissions & Array<Permissions>;
|
|
823
587
|
}
|
|
824
|
-
export declare const FeatureBasedRolePermissionsEnum: {
|
|
825
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
826
|
-
readonly ViewApp: "ViewApp";
|
|
827
|
-
readonly CreateApp: "CreateApp";
|
|
828
|
-
readonly UpdateApp: "UpdateApp";
|
|
829
|
-
readonly ViewAppName: "ViewAppName";
|
|
830
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
831
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
832
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
833
|
-
readonly EditTeammates: "EditTeammates";
|
|
834
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
835
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
836
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
837
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
838
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
839
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
840
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
841
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
842
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
843
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
844
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
845
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
846
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
847
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
848
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
849
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
850
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
851
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
852
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
853
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
854
|
-
readonly ViewOrders: "ViewOrders";
|
|
855
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
856
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
857
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
858
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
859
|
-
readonly ViewStores: "ViewStores";
|
|
860
|
-
readonly CreateStores: "CreateStores";
|
|
861
|
-
readonly EditStores: "EditStores";
|
|
862
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
863
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
864
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
865
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
866
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
867
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
868
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
869
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
870
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
871
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
872
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
873
|
-
readonly PublishStores: "PublishStores";
|
|
874
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
875
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
876
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
877
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
878
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
879
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
880
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
881
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
882
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
883
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
884
|
-
readonly ViewMenu: "ViewMenu";
|
|
885
|
-
readonly CreateMenu: "CreateMenu";
|
|
886
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
887
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
888
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
889
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
890
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
891
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
892
|
-
readonly EditVouchers: "EditVouchers";
|
|
893
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
894
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
895
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
896
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
897
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
898
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
899
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
900
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
901
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
902
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
903
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
904
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
905
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
906
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
907
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
908
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
909
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
910
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
911
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
912
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
913
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
914
|
-
readonly EditCustomers: "EditCustomers";
|
|
915
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
916
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
917
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
918
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
919
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
920
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
921
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
922
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
923
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
924
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
925
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
926
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
927
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
928
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
929
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
930
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
931
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
932
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
933
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
934
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
935
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
936
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
937
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
938
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
939
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
940
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
941
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
942
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
943
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
944
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
945
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
946
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
947
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
948
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
949
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
950
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
951
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
952
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
953
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
954
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
955
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
956
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
957
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
958
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
959
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
960
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
961
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
962
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
963
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
964
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
965
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
966
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
967
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
968
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
969
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
970
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
971
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
972
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
973
|
-
readonly ViewChannels: "ViewChannels";
|
|
974
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
975
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
976
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
977
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
978
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
979
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
980
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
981
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
982
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
983
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
984
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
985
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
986
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
987
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
988
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
989
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
990
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
991
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
992
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
993
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
994
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
995
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
996
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
997
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
998
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
999
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
1000
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
1001
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
1002
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
1003
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
1004
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
1005
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
1006
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
1007
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
1008
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
1009
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
1010
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
1011
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
1012
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
1013
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
1014
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
1015
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
1016
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
1017
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
1018
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
1019
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
1020
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
1021
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
1022
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
1023
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
1024
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
1025
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
1026
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
1027
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
1028
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
1029
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
1030
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
1031
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
1032
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
1033
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
1034
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
1035
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
1036
|
-
readonly ViewBrand: "ViewBrand";
|
|
1037
|
-
readonly EditBrand: "EditBrand";
|
|
1038
|
-
readonly CreateBrand: "CreateBrand";
|
|
1039
|
-
readonly TransferBrand: "TransferBrand";
|
|
1040
|
-
readonly ViewProperty: "ViewProperty";
|
|
1041
|
-
readonly EditProperty: "EditProperty";
|
|
1042
|
-
readonly CreateProperty: "CreateProperty";
|
|
1043
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
1044
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
1045
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
1046
|
-
readonly CreateOrg: "CreateOrg";
|
|
1047
|
-
readonly EditOrg: "EditOrg";
|
|
1048
|
-
readonly ViewOrg: "ViewOrg";
|
|
1049
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
1050
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
1051
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
1052
|
-
readonly RoleFactory: "RoleFactory";
|
|
1053
|
-
};
|
|
1054
|
-
export type FeatureBasedRolePermissionsEnum = typeof FeatureBasedRolePermissionsEnum[keyof typeof FeatureBasedRolePermissionsEnum];
|
|
1055
588
|
/**
|
|
1056
589
|
* 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.
|
|
1057
590
|
* @export
|
|
@@ -1073,243 +606,12 @@ export interface GetAuthorizedBrandsRequest {
|
|
|
1073
606
|
[key: string]: string;
|
|
1074
607
|
};
|
|
1075
608
|
/**
|
|
1076
|
-
*
|
|
1077
|
-
* @type {
|
|
609
|
+
*
|
|
610
|
+
* @type {Permissions}
|
|
1078
611
|
* @memberof GetAuthorizedBrandsRequest
|
|
1079
612
|
*/
|
|
1080
|
-
'action':
|
|
613
|
+
'action': Permissions;
|
|
1081
614
|
}
|
|
1082
|
-
export declare const GetAuthorizedBrandsRequestActionEnum: {
|
|
1083
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
1084
|
-
readonly ViewApp: "ViewApp";
|
|
1085
|
-
readonly CreateApp: "CreateApp";
|
|
1086
|
-
readonly UpdateApp: "UpdateApp";
|
|
1087
|
-
readonly ViewAppName: "ViewAppName";
|
|
1088
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
1089
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
1090
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
1091
|
-
readonly EditTeammates: "EditTeammates";
|
|
1092
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
1093
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
1094
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
1095
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
1096
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
1097
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
1098
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
1099
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
1100
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
1101
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
1102
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
1103
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
1104
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
1105
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
1106
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
1107
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
1108
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
1109
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
1110
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
1111
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
1112
|
-
readonly ViewOrders: "ViewOrders";
|
|
1113
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
1114
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
1115
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
1116
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
1117
|
-
readonly ViewStores: "ViewStores";
|
|
1118
|
-
readonly CreateStores: "CreateStores";
|
|
1119
|
-
readonly EditStores: "EditStores";
|
|
1120
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
1121
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
1122
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
1123
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
1124
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
1125
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
1126
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
1127
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
1128
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
1129
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
1130
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
1131
|
-
readonly PublishStores: "PublishStores";
|
|
1132
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
1133
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
1134
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
1135
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
1136
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
1137
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
1138
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
1139
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
1140
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
1141
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
1142
|
-
readonly ViewMenu: "ViewMenu";
|
|
1143
|
-
readonly CreateMenu: "CreateMenu";
|
|
1144
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
1145
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
1146
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
1147
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
1148
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
1149
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
1150
|
-
readonly EditVouchers: "EditVouchers";
|
|
1151
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
1152
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
1153
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
1154
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
1155
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
1156
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
1157
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
1158
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
1159
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
1160
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
1161
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
1162
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
1163
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
1164
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
1165
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
1166
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
1167
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
1168
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
1169
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
1170
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
1171
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
1172
|
-
readonly EditCustomers: "EditCustomers";
|
|
1173
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
1174
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
1175
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
1176
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
1177
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
1178
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
1179
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
1180
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
1181
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
1182
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
1183
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
1184
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
1185
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
1186
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
1187
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
1188
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
1189
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
1190
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
1191
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
1192
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
1193
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
1194
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
1195
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
1196
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
1197
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
1198
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
1199
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
1200
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
1201
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
1202
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
1203
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
1204
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
1205
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
1206
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
1207
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
1208
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
1209
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
1210
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
1211
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
1212
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
1213
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
1214
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
1215
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
1216
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
1217
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
1218
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
1219
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
1220
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
1221
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
1222
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
1223
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
1224
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
1225
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
1226
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
1227
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
1228
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
1229
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
1230
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
1231
|
-
readonly ViewChannels: "ViewChannels";
|
|
1232
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
1233
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
1234
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
1235
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
1236
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
1237
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
1238
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
1239
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
1240
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
1241
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
1242
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
1243
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
1244
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
1245
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
1246
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
1247
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
1248
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
1249
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
1250
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
1251
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
1252
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
1253
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
1254
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
1255
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
1256
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
1257
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
1258
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
1259
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
1260
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
1261
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
1262
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
1263
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
1264
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
1265
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
1266
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
1267
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
1268
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
1269
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
1270
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
1271
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
1272
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
1273
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
1274
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
1275
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
1276
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
1277
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
1278
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
1279
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
1280
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
1281
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
1282
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
1283
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
1284
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
1285
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
1286
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
1287
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
1288
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
1289
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
1290
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
1291
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
1292
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
1293
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
1294
|
-
readonly ViewBrand: "ViewBrand";
|
|
1295
|
-
readonly EditBrand: "EditBrand";
|
|
1296
|
-
readonly CreateBrand: "CreateBrand";
|
|
1297
|
-
readonly TransferBrand: "TransferBrand";
|
|
1298
|
-
readonly ViewProperty: "ViewProperty";
|
|
1299
|
-
readonly EditProperty: "EditProperty";
|
|
1300
|
-
readonly CreateProperty: "CreateProperty";
|
|
1301
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
1302
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
1303
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
1304
|
-
readonly CreateOrg: "CreateOrg";
|
|
1305
|
-
readonly EditOrg: "EditOrg";
|
|
1306
|
-
readonly ViewOrg: "ViewOrg";
|
|
1307
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
1308
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
1309
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
1310
|
-
readonly RoleFactory: "RoleFactory";
|
|
1311
|
-
};
|
|
1312
|
-
export type GetAuthorizedBrandsRequestActionEnum = typeof GetAuthorizedBrandsRequestActionEnum[keyof typeof GetAuthorizedBrandsRequestActionEnum];
|
|
1313
615
|
/**
|
|
1314
616
|
* Response containing the authorized brands
|
|
1315
617
|
* @export
|
|
@@ -1350,243 +652,12 @@ export interface GetAuthorizedOrgsRequest {
|
|
|
1350
652
|
[key: string]: string;
|
|
1351
653
|
};
|
|
1352
654
|
/**
|
|
1353
|
-
*
|
|
1354
|
-
* @type {
|
|
655
|
+
*
|
|
656
|
+
* @type {Permissions}
|
|
1355
657
|
* @memberof GetAuthorizedOrgsRequest
|
|
1356
658
|
*/
|
|
1357
|
-
'action':
|
|
659
|
+
'action': Permissions;
|
|
1358
660
|
}
|
|
1359
|
-
export declare const GetAuthorizedOrgsRequestActionEnum: {
|
|
1360
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
1361
|
-
readonly ViewApp: "ViewApp";
|
|
1362
|
-
readonly CreateApp: "CreateApp";
|
|
1363
|
-
readonly UpdateApp: "UpdateApp";
|
|
1364
|
-
readonly ViewAppName: "ViewAppName";
|
|
1365
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
1366
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
1367
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
1368
|
-
readonly EditTeammates: "EditTeammates";
|
|
1369
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
1370
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
1371
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
1372
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
1373
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
1374
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
1375
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
1376
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
1377
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
1378
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
1379
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
1380
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
1381
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
1382
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
1383
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
1384
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
1385
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
1386
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
1387
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
1388
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
1389
|
-
readonly ViewOrders: "ViewOrders";
|
|
1390
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
1391
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
1392
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
1393
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
1394
|
-
readonly ViewStores: "ViewStores";
|
|
1395
|
-
readonly CreateStores: "CreateStores";
|
|
1396
|
-
readonly EditStores: "EditStores";
|
|
1397
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
1398
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
1399
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
1400
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
1401
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
1402
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
1403
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
1404
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
1405
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
1406
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
1407
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
1408
|
-
readonly PublishStores: "PublishStores";
|
|
1409
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
1410
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
1411
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
1412
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
1413
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
1414
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
1415
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
1416
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
1417
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
1418
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
1419
|
-
readonly ViewMenu: "ViewMenu";
|
|
1420
|
-
readonly CreateMenu: "CreateMenu";
|
|
1421
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
1422
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
1423
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
1424
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
1425
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
1426
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
1427
|
-
readonly EditVouchers: "EditVouchers";
|
|
1428
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
1429
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
1430
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
1431
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
1432
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
1433
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
1434
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
1435
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
1436
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
1437
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
1438
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
1439
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
1440
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
1441
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
1442
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
1443
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
1444
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
1445
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
1446
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
1447
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
1448
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
1449
|
-
readonly EditCustomers: "EditCustomers";
|
|
1450
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
1451
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
1452
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
1453
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
1454
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
1455
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
1456
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
1457
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
1458
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
1459
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
1460
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
1461
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
1462
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
1463
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
1464
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
1465
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
1466
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
1467
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
1468
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
1469
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
1470
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
1471
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
1472
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
1473
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
1474
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
1475
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
1476
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
1477
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
1478
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
1479
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
1480
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
1481
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
1482
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
1483
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
1484
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
1485
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
1486
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
1487
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
1488
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
1489
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
1490
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
1491
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
1492
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
1493
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
1494
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
1495
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
1496
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
1497
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
1498
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
1499
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
1500
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
1501
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
1502
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
1503
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
1504
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
1505
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
1506
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
1507
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
1508
|
-
readonly ViewChannels: "ViewChannels";
|
|
1509
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
1510
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
1511
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
1512
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
1513
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
1514
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
1515
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
1516
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
1517
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
1518
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
1519
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
1520
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
1521
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
1522
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
1523
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
1524
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
1525
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
1526
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
1527
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
1528
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
1529
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
1530
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
1531
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
1532
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
1533
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
1534
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
1535
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
1536
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
1537
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
1538
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
1539
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
1540
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
1541
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
1542
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
1543
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
1544
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
1545
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
1546
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
1547
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
1548
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
1549
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
1550
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
1551
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
1552
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
1553
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
1554
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
1555
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
1556
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
1557
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
1558
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
1559
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
1560
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
1561
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
1562
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
1563
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
1564
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
1565
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
1566
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
1567
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
1568
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
1569
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
1570
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
1571
|
-
readonly ViewBrand: "ViewBrand";
|
|
1572
|
-
readonly EditBrand: "EditBrand";
|
|
1573
|
-
readonly CreateBrand: "CreateBrand";
|
|
1574
|
-
readonly TransferBrand: "TransferBrand";
|
|
1575
|
-
readonly ViewProperty: "ViewProperty";
|
|
1576
|
-
readonly EditProperty: "EditProperty";
|
|
1577
|
-
readonly CreateProperty: "CreateProperty";
|
|
1578
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
1579
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
1580
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
1581
|
-
readonly CreateOrg: "CreateOrg";
|
|
1582
|
-
readonly EditOrg: "EditOrg";
|
|
1583
|
-
readonly ViewOrg: "ViewOrg";
|
|
1584
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
1585
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
1586
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
1587
|
-
readonly RoleFactory: "RoleFactory";
|
|
1588
|
-
};
|
|
1589
|
-
export type GetAuthorizedOrgsRequestActionEnum = typeof GetAuthorizedOrgsRequestActionEnum[keyof typeof GetAuthorizedOrgsRequestActionEnum];
|
|
1590
661
|
/**
|
|
1591
662
|
* The principal to get authorized entities for
|
|
1592
663
|
* @export
|
|
@@ -1669,243 +740,12 @@ export interface GetAuthorizedPropertiesRequest {
|
|
|
1669
740
|
[key: string]: string;
|
|
1670
741
|
};
|
|
1671
742
|
/**
|
|
1672
|
-
*
|
|
1673
|
-
* @type {
|
|
743
|
+
*
|
|
744
|
+
* @type {Permissions}
|
|
1674
745
|
* @memberof GetAuthorizedPropertiesRequest
|
|
1675
746
|
*/
|
|
1676
|
-
'action':
|
|
747
|
+
'action': Permissions;
|
|
1677
748
|
}
|
|
1678
|
-
export declare const GetAuthorizedPropertiesRequestActionEnum: {
|
|
1679
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
1680
|
-
readonly ViewApp: "ViewApp";
|
|
1681
|
-
readonly CreateApp: "CreateApp";
|
|
1682
|
-
readonly UpdateApp: "UpdateApp";
|
|
1683
|
-
readonly ViewAppName: "ViewAppName";
|
|
1684
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
1685
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
1686
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
1687
|
-
readonly EditTeammates: "EditTeammates";
|
|
1688
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
1689
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
1690
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
1691
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
1692
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
1693
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
1694
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
1695
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
1696
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
1697
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
1698
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
1699
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
1700
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
1701
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
1702
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
1703
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
1704
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
1705
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
1706
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
1707
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
1708
|
-
readonly ViewOrders: "ViewOrders";
|
|
1709
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
1710
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
1711
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
1712
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
1713
|
-
readonly ViewStores: "ViewStores";
|
|
1714
|
-
readonly CreateStores: "CreateStores";
|
|
1715
|
-
readonly EditStores: "EditStores";
|
|
1716
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
1717
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
1718
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
1719
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
1720
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
1721
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
1722
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
1723
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
1724
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
1725
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
1726
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
1727
|
-
readonly PublishStores: "PublishStores";
|
|
1728
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
1729
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
1730
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
1731
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
1732
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
1733
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
1734
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
1735
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
1736
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
1737
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
1738
|
-
readonly ViewMenu: "ViewMenu";
|
|
1739
|
-
readonly CreateMenu: "CreateMenu";
|
|
1740
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
1741
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
1742
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
1743
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
1744
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
1745
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
1746
|
-
readonly EditVouchers: "EditVouchers";
|
|
1747
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
1748
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
1749
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
1750
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
1751
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
1752
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
1753
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
1754
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
1755
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
1756
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
1757
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
1758
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
1759
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
1760
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
1761
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
1762
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
1763
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
1764
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
1765
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
1766
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
1767
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
1768
|
-
readonly EditCustomers: "EditCustomers";
|
|
1769
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
1770
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
1771
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
1772
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
1773
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
1774
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
1775
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
1776
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
1777
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
1778
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
1779
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
1780
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
1781
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
1782
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
1783
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
1784
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
1785
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
1786
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
1787
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
1788
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
1789
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
1790
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
1791
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
1792
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
1793
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
1794
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
1795
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
1796
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
1797
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
1798
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
1799
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
1800
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
1801
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
1802
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
1803
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
1804
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
1805
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
1806
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
1807
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
1808
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
1809
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
1810
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
1811
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
1812
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
1813
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
1814
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
1815
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
1816
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
1817
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
1818
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
1819
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
1820
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
1821
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
1822
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
1823
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
1824
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
1825
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
1826
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
1827
|
-
readonly ViewChannels: "ViewChannels";
|
|
1828
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
1829
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
1830
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
1831
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
1832
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
1833
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
1834
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
1835
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
1836
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
1837
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
1838
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
1839
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
1840
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
1841
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
1842
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
1843
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
1844
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
1845
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
1846
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
1847
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
1848
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
1849
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
1850
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
1851
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
1852
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
1853
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
1854
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
1855
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
1856
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
1857
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
1858
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
1859
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
1860
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
1861
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
1862
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
1863
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
1864
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
1865
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
1866
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
1867
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
1868
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
1869
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
1870
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
1871
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
1872
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
1873
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
1874
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
1875
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
1876
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
1877
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
1878
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
1879
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
1880
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
1881
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
1882
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
1883
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
1884
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
1885
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
1886
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
1887
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
1888
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
1889
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
1890
|
-
readonly ViewBrand: "ViewBrand";
|
|
1891
|
-
readonly EditBrand: "EditBrand";
|
|
1892
|
-
readonly CreateBrand: "CreateBrand";
|
|
1893
|
-
readonly TransferBrand: "TransferBrand";
|
|
1894
|
-
readonly ViewProperty: "ViewProperty";
|
|
1895
|
-
readonly EditProperty: "EditProperty";
|
|
1896
|
-
readonly CreateProperty: "CreateProperty";
|
|
1897
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
1898
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
1899
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
1900
|
-
readonly CreateOrg: "CreateOrg";
|
|
1901
|
-
readonly EditOrg: "EditOrg";
|
|
1902
|
-
readonly ViewOrg: "ViewOrg";
|
|
1903
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
1904
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
1905
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
1906
|
-
readonly RoleFactory: "RoleFactory";
|
|
1907
|
-
};
|
|
1908
|
-
export type GetAuthorizedPropertiesRequestActionEnum = typeof GetAuthorizedPropertiesRequestActionEnum[keyof typeof GetAuthorizedPropertiesRequestActionEnum];
|
|
1909
749
|
/**
|
|
1910
750
|
* Response containing the authorized properties
|
|
1911
751
|
* @export
|
|
@@ -1927,420 +767,189 @@ export interface GetAuthorizedPropertiesResponse {
|
|
|
1927
767
|
}
|
|
1928
768
|
/**
|
|
1929
769
|
* Details for getting roles for a principal
|
|
1930
|
-
* @export
|
|
1931
|
-
* @interface GetPrincipalRolesRequestBody
|
|
1932
|
-
*/
|
|
1933
|
-
export interface GetPrincipalRolesRequestBody {
|
|
1934
|
-
/**
|
|
1935
|
-
*
|
|
1936
|
-
* @type {AuthorizationRequestPrincipal}
|
|
1937
|
-
* @memberof GetPrincipalRolesRequestBody
|
|
1938
|
-
*/
|
|
1939
|
-
'principal': AuthorizationRequestPrincipal;
|
|
1940
|
-
/**
|
|
1941
|
-
*
|
|
1942
|
-
* @type {AuthorizationRequestResource}
|
|
1943
|
-
* @memberof GetPrincipalRolesRequestBody
|
|
1944
|
-
*/
|
|
1945
|
-
'resource'?: AuthorizationRequestResource;
|
|
1946
|
-
}
|
|
1947
|
-
/**
|
|
1948
|
-
* Successful roles retrieval response
|
|
1949
|
-
* @export
|
|
1950
|
-
* @interface GetPrincipalRolesSuccessResponse
|
|
1951
|
-
*/
|
|
1952
|
-
export interface GetPrincipalRolesSuccessResponse {
|
|
1953
|
-
/**
|
|
1954
|
-
* List of roles assigned to the principal
|
|
1955
|
-
* @type {Array<GetPrincipalRolesSuccessResponseRolesInner>}
|
|
1956
|
-
* @memberof GetPrincipalRolesSuccessResponse
|
|
1957
|
-
*/
|
|
1958
|
-
'roles': Array<GetPrincipalRolesSuccessResponseRolesInner>;
|
|
1959
|
-
}
|
|
1960
|
-
/**
|
|
1961
|
-
*
|
|
1962
|
-
* @export
|
|
1963
|
-
* @interface GetPrincipalRolesSuccessResponseRolesInner
|
|
1964
|
-
*/
|
|
1965
|
-
export interface GetPrincipalRolesSuccessResponseRolesInner {
|
|
1966
|
-
/**
|
|
1967
|
-
* Policy ID
|
|
1968
|
-
* @type {string}
|
|
1969
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1970
|
-
*/
|
|
1971
|
-
'policyId': string;
|
|
1972
|
-
/**
|
|
1973
|
-
*
|
|
1974
|
-
* @type {GetPrincipalRolesSuccessResponseRolesInnerRoleName}
|
|
1975
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1976
|
-
*/
|
|
1977
|
-
'roleName': GetPrincipalRolesSuccessResponseRolesInnerRoleName;
|
|
1978
|
-
/**
|
|
1979
|
-
* Policy type
|
|
1980
|
-
* @type {string}
|
|
1981
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1982
|
-
*/
|
|
1983
|
-
'policyType': GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum;
|
|
1984
|
-
/**
|
|
1985
|
-
* Date and time the role was assigned
|
|
1986
|
-
* @type {string}
|
|
1987
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1988
|
-
*/
|
|
1989
|
-
'assignedAt': string;
|
|
1990
|
-
/**
|
|
1991
|
-
* User who assigned the role
|
|
1992
|
-
* @type {string}
|
|
1993
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
1994
|
-
*/
|
|
1995
|
-
'assignedBy': string;
|
|
1996
|
-
/**
|
|
1997
|
-
* Type of resource the role is assigned to
|
|
1998
|
-
* @type {string}
|
|
1999
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2000
|
-
*/
|
|
2001
|
-
'resourceType'?: GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum;
|
|
2002
|
-
/**
|
|
2003
|
-
* Organization ID
|
|
2004
|
-
* @type {string}
|
|
2005
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2006
|
-
*/
|
|
2007
|
-
'orgId'?: string;
|
|
2008
|
-
/**
|
|
2009
|
-
* Property ID
|
|
2010
|
-
* @type {string}
|
|
2011
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2012
|
-
*/
|
|
2013
|
-
'propertyId'?: string;
|
|
2014
|
-
/**
|
|
2015
|
-
* Brand ID this role is scoped to
|
|
2016
|
-
* @type {string}
|
|
2017
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2018
|
-
*/
|
|
2019
|
-
'brandId'?: string;
|
|
2020
|
-
/**
|
|
2021
|
-
* Sales channel ID this role is scoped to
|
|
2022
|
-
* @type {string}
|
|
2023
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2024
|
-
*/
|
|
2025
|
-
'salesChannelId'?: string;
|
|
2026
|
-
/**
|
|
2027
|
-
* Principal ID this role is assigned to
|
|
2028
|
-
* @type {string}
|
|
2029
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2030
|
-
*/
|
|
2031
|
-
'principalId': string;
|
|
2032
|
-
/**
|
|
2033
|
-
* Type of principal this role is assigned to
|
|
2034
|
-
* @type {string}
|
|
2035
|
-
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
2036
|
-
*/
|
|
2037
|
-
'principalType': GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum;
|
|
2038
|
-
}
|
|
2039
|
-
export declare const GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum: {
|
|
2040
|
-
readonly Main: "Main";
|
|
2041
|
-
readonly BrandOverride: "BrandOverride";
|
|
2042
|
-
readonly OrgOverride: "OrgOverride";
|
|
2043
|
-
readonly Forbidden: "Forbidden";
|
|
2044
|
-
readonly NamedRole: "NamedRole";
|
|
2045
|
-
};
|
|
2046
|
-
export type GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum];
|
|
2047
|
-
export declare const GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum: {
|
|
2048
|
-
readonly Property: "Property";
|
|
2049
|
-
readonly Org: "Org";
|
|
2050
|
-
readonly Brand: "Brand";
|
|
2051
|
-
readonly SalesChannel: "SalesChannel";
|
|
2052
|
-
};
|
|
2053
|
-
export type GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum];
|
|
2054
|
-
export declare const GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum: {
|
|
2055
|
-
readonly User: "User";
|
|
2056
|
-
readonly Automation: "Automation";
|
|
2057
|
-
};
|
|
2058
|
-
export type GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum];
|
|
2059
|
-
/**
|
|
2060
|
-
* Role name
|
|
2061
|
-
* @export
|
|
2062
|
-
* @interface GetPrincipalRolesSuccessResponseRolesInnerRoleName
|
|
2063
|
-
*/
|
|
2064
|
-
export interface GetPrincipalRolesSuccessResponseRolesInnerRoleName {
|
|
2065
|
-
}
|
|
2066
|
-
/**
|
|
2067
|
-
* Successful user permissions retrieval response
|
|
2068
|
-
* @export
|
|
2069
|
-
* @interface GetUserPermissionsSuccessResponse
|
|
2070
|
-
*/
|
|
2071
|
-
export interface GetUserPermissionsSuccessResponse {
|
|
2072
|
-
/**
|
|
2073
|
-
* Map of resource IDs to permissions
|
|
2074
|
-
* @type {{ [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }}
|
|
2075
|
-
* @memberof GetUserPermissionsSuccessResponse
|
|
2076
|
-
*/
|
|
2077
|
-
'resources': {
|
|
2078
|
-
[key: string]: GetUserPermissionsSuccessResponseResourcesValue;
|
|
2079
|
-
};
|
|
2080
|
-
}
|
|
2081
|
-
/**
|
|
2082
|
-
*
|
|
2083
|
-
* @export
|
|
2084
|
-
* @interface GetUserPermissionsSuccessResponseResourcesValue
|
|
2085
|
-
*/
|
|
2086
|
-
export interface GetUserPermissionsSuccessResponseResourcesValue {
|
|
2087
|
-
/**
|
|
2088
|
-
* Type of resource the permissions are assigned to
|
|
2089
|
-
* @type {string}
|
|
2090
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
2091
|
-
*/
|
|
2092
|
-
'resourceType': GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum;
|
|
2093
|
-
/**
|
|
2094
|
-
*
|
|
2095
|
-
* @type {GetUserPermissionsSuccessResponseResourcesValueResourceId}
|
|
2096
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
2097
|
-
*/
|
|
2098
|
-
'resourceId': GetUserPermissionsSuccessResponseResourcesValueResourceId;
|
|
2099
|
-
/**
|
|
2100
|
-
* List of permissions that are assigned to the user for the resource
|
|
2101
|
-
* @type {Array<
|
|
2102
|
-
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
2103
|
-
*/
|
|
2104
|
-
'permissions': Array<
|
|
2105
|
-
}
|
|
2106
|
-
export declare const GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum: {
|
|
2107
|
-
readonly Property: "Property";
|
|
2108
|
-
readonly Org: "Org";
|
|
2109
|
-
readonly Brand: "Brand";
|
|
2110
|
-
readonly SalesChannel: "SalesChannel";
|
|
2111
|
-
};
|
|
2112
|
-
export type GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum];
|
|
2113
|
-
export declare const GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum: {
|
|
2114
|
-
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
2115
|
-
readonly ViewApp: "ViewApp";
|
|
2116
|
-
readonly CreateApp: "CreateApp";
|
|
2117
|
-
readonly UpdateApp: "UpdateApp";
|
|
2118
|
-
readonly ViewAppName: "ViewAppName";
|
|
2119
|
-
readonly EditAppAssets: "EditAppAssets";
|
|
2120
|
-
readonly EditAppFeatures: "EditAppFeatures";
|
|
2121
|
-
readonly ViewTeammates: "ViewTeammates";
|
|
2122
|
-
readonly EditTeammates: "EditTeammates";
|
|
2123
|
-
readonly CreateTeammateOwner: "CreateTeammateOwner";
|
|
2124
|
-
readonly CreateTeammateManagedOwner: "CreateTeammateManagedOwner";
|
|
2125
|
-
readonly CreateTeammateStoreOwner: "CreateTeammateStoreOwner";
|
|
2126
|
-
readonly CreateTeammateStoreManager: "CreateTeammateStoreManager";
|
|
2127
|
-
readonly CreateTeammateStoreStaff: "CreateTeammateStoreStaff";
|
|
2128
|
-
readonly CreateTeammateStoreReadAccess: "CreateTeammateStoreReadAccess";
|
|
2129
|
-
readonly CreateTeammateFinanceManager: "CreateTeammateFinanceManager";
|
|
2130
|
-
readonly CreateTeammateIntegrator: "CreateTeammateIntegrator";
|
|
2131
|
-
readonly CreateTeammateOnboarding: "CreateTeammateOnboarding";
|
|
2132
|
-
readonly CreateTeammatePropertyManager: "CreateTeammatePropertyManager";
|
|
2133
|
-
readonly CreateTeammatePropertyOwner: "CreateTeammatePropertyOwner";
|
|
2134
|
-
readonly ViewApmConfigurations: "ViewApmConfigurations";
|
|
2135
|
-
readonly EditApmConfigurations: "EditApmConfigurations";
|
|
2136
|
-
readonly ViewCampaignsConfigurations: "ViewCampaignsConfigurations";
|
|
2137
|
-
readonly CreateCampaignsConfigurations: "CreateCampaignsConfigurations";
|
|
2138
|
-
readonly UpdateCampaignsConfigurations: "UpdateCampaignsConfigurations";
|
|
2139
|
-
readonly DeleteCampaignsConfigurations: "DeleteCampaignsConfigurations";
|
|
2140
|
-
readonly StampLoyaltyCardAgainstCampaignsConfigurations: "StampLoyaltyCardAgainstCampaignsConfigurations";
|
|
2141
|
-
readonly ViewDevelopersSettings: "ViewDevelopersSettings";
|
|
2142
|
-
readonly EditDevelopersSettings: "EditDevelopersSettings";
|
|
2143
|
-
readonly ViewOrders: "ViewOrders";
|
|
2144
|
-
readonly UpdateOrdersAccept: "UpdateOrdersAccept";
|
|
2145
|
-
readonly UpdateOrdersReject: "UpdateOrdersReject";
|
|
2146
|
-
readonly UpdateOrdersRefund: "UpdateOrdersRefund";
|
|
2147
|
-
readonly UpdateOrdersDispatch: "UpdateOrdersDispatch";
|
|
2148
|
-
readonly ViewStores: "ViewStores";
|
|
2149
|
-
readonly CreateStores: "CreateStores";
|
|
2150
|
-
readonly EditStores: "EditStores";
|
|
2151
|
-
readonly ViewStoresOpeningHours: "ViewStoresOpeningHours";
|
|
2152
|
-
readonly UpdateStoresOpenForCollectionOrDelivery: "UpdateStoresOpenForCollectionOrDelivery";
|
|
2153
|
-
readonly UpdateStoresOpeningHours: "UpdateStoresOpeningHours";
|
|
2154
|
-
readonly ViewStoresOpeningHoursOverride: "ViewStoresOpeningHoursOverride";
|
|
2155
|
-
readonly EditStoresOpeningHoursOverride: "EditStoresOpeningHoursOverride";
|
|
2156
|
-
readonly EditStoresOpeningHoursOverrideTemporary: "EditStoresOpeningHoursOverrideTemporary";
|
|
2157
|
-
readonly UpdateStoresName: "UpdateStoresName";
|
|
2158
|
-
readonly EditStoreKioskSettings: "EditStoreKioskSettings";
|
|
2159
|
-
readonly EditStoreOrderCapacity: "EditStoreOrderCapacity";
|
|
2160
|
-
readonly EditStoreNotifications: "EditStoreNotifications";
|
|
2161
|
-
readonly ArchiveStores: "ArchiveStores";
|
|
2162
|
-
readonly PublishStores: "PublishStores";
|
|
2163
|
-
readonly UpdatePrinterTerminalsAssign: "UpdatePrinterTerminalsAssign";
|
|
2164
|
-
readonly UpdatePrinterTerminalsToggle: "UpdatePrinterTerminalsToggle";
|
|
2165
|
-
readonly ViewStoreGroups: "ViewStoreGroups";
|
|
2166
|
-
readonly CreateStoreGroups: "CreateStoreGroups";
|
|
2167
|
-
readonly UpdateStoreGroups: "UpdateStoreGroups";
|
|
2168
|
-
readonly DeleteStoreGroups: "DeleteStoreGroups";
|
|
2169
|
-
readonly ViewDeliveryZones: "ViewDeliveryZones";
|
|
2170
|
-
readonly CreateDeliveryZones: "CreateDeliveryZones";
|
|
2171
|
-
readonly UpdateDeliveryZones: "UpdateDeliveryZones";
|
|
2172
|
-
readonly DeleteDeliveryZones: "DeleteDeliveryZones";
|
|
2173
|
-
readonly ViewMenu: "ViewMenu";
|
|
2174
|
-
readonly CreateMenu: "CreateMenu";
|
|
2175
|
-
readonly UpdateMenu: "UpdateMenu";
|
|
2176
|
-
readonly DeleteMenu: "DeleteMenu";
|
|
2177
|
-
readonly UpdateMenuLock: "UpdateMenuLock";
|
|
2178
|
-
readonly UpdateMenuItemsHideTemporarily: "UpdateMenuItemsHideTemporarily";
|
|
2179
|
-
readonly EditMenuImage: "EditMenuImage";
|
|
2180
|
-
readonly ViewVouchers: "ViewVouchers";
|
|
2181
|
-
readonly EditVouchers: "EditVouchers";
|
|
2182
|
-
readonly ViewWebsiteContent: "ViewWebsiteContent";
|
|
2183
|
-
readonly EditWebsiteContent: "EditWebsiteContent";
|
|
2184
|
-
readonly ViewWebsiteDnsVerified: "ViewWebsiteDnsVerified";
|
|
2185
|
-
readonly ViewWebsiteCertificateCreated: "ViewWebsiteCertificateCreated";
|
|
2186
|
-
readonly ViewWebsiteCertificateRenewed: "ViewWebsiteCertificateRenewed";
|
|
2187
|
-
readonly ViewBankAccounts: "ViewBankAccounts";
|
|
2188
|
-
readonly CreateBankAccounts: "CreateBankAccounts";
|
|
2189
|
-
readonly UpdateBankAccounts: "UpdateBankAccounts";
|
|
2190
|
-
readonly UpdateBankAccountsAssign: "UpdateBankAccountsAssign";
|
|
2191
|
-
readonly ViewAssignedBankAccount: "ViewAssignedBankAccount";
|
|
2192
|
-
readonly VerifyBankAccounts: "VerifyBankAccounts";
|
|
2193
|
-
readonly ViewServiceChargeConfigurations: "ViewServiceChargeConfigurations";
|
|
2194
|
-
readonly EditServiceChargeConfigurations: "EditServiceChargeConfigurations";
|
|
2195
|
-
readonly EditStoreDeliveryZoneFees: "EditStoreDeliveryZoneFees";
|
|
2196
|
-
readonly EditStoreDeliveryFeesLimited: "EditStoreDeliveryFeesLimited";
|
|
2197
|
-
readonly ViewHydraConfig: "ViewHydraConfig";
|
|
2198
|
-
readonly UpdateHydraConfigManage: "UpdateHydraConfigManage";
|
|
2199
|
-
readonly InitiateBluetoothPairingMode: "InitiateBluetoothPairingMode";
|
|
2200
|
-
readonly DeleteTerminal: "DeleteTerminal";
|
|
2201
|
-
readonly ViewKioskTelemetry: "ViewKioskTelemetry";
|
|
2202
|
-
readonly ViewCustomers: "ViewCustomers";
|
|
2203
|
-
readonly EditCustomers: "EditCustomers";
|
|
2204
|
-
readonly CreateCustomers: "CreateCustomers";
|
|
2205
|
-
readonly CreateCatalogElements: "CreateCatalogElements";
|
|
2206
|
-
readonly UpdateCatalogElements: "UpdateCatalogElements";
|
|
2207
|
-
readonly ViewCatalogElements: "ViewCatalogElements";
|
|
2208
|
-
readonly DeleteCatalogElements: "DeleteCatalogElements";
|
|
2209
|
-
readonly ViewMetafieldDefinitions: "ViewMetafieldDefinitions";
|
|
2210
|
-
readonly CreateMetafieldDefinitions: "CreateMetafieldDefinitions";
|
|
2211
|
-
readonly UpdateMetafieldDefinitions: "UpdateMetafieldDefinitions";
|
|
2212
|
-
readonly DeleteMetafieldDefinitions: "DeleteMetafieldDefinitions";
|
|
2213
|
-
readonly UpdateMetafields: "UpdateMetafields";
|
|
2214
|
-
readonly ViewCatalogMenuChanges: "ViewCatalogMenuChanges";
|
|
2215
|
-
readonly PublishCatalogMenuChanges: "PublishCatalogMenuChanges";
|
|
2216
|
-
readonly ViewAppStatistics: "ViewAppStatistics";
|
|
2217
|
-
readonly ViewApmStatistics: "ViewApmStatistics";
|
|
2218
|
-
readonly ViewCampaignsStatistics: "ViewCampaignsStatistics";
|
|
2219
|
-
readonly ViewCustomerStatistics: "ViewCustomerStatistics";
|
|
2220
|
-
readonly ViewLiveStatistics: "ViewLiveStatistics";
|
|
2221
|
-
readonly ViewOrderStatistics: "ViewOrderStatistics";
|
|
2222
|
-
readonly ViewSalesStatistics: "ViewSalesStatistics";
|
|
2223
|
-
readonly ViewSalesEndOfDayStatistics: "ViewSalesEndOfDayStatistics";
|
|
2224
|
-
readonly ViewVouchersStatistics: "ViewVouchersStatistics";
|
|
2225
|
-
readonly DownloadCustomerCsvExport: "DownloadCustomerCsvExport";
|
|
2226
|
-
readonly ViewApmAuditLogs: "ViewApmAuditLogs";
|
|
2227
|
-
readonly ViewStoreAuditLogs: "ViewStoreAuditLogs";
|
|
2228
|
-
readonly ViewMenuAuditLogs: "ViewMenuAuditLogs";
|
|
2229
|
-
readonly ViewBankAccountAuditLogs: "ViewBankAccountAuditLogs";
|
|
2230
|
-
readonly ViewFeeConfigurationsAuditLogs: "ViewFeeConfigurationsAuditLogs";
|
|
2231
|
-
readonly ViewOrdersAuditLogs: "ViewOrdersAuditLogs";
|
|
2232
|
-
readonly ViewVouchersAuditLogs: "ViewVouchersAuditLogs";
|
|
2233
|
-
readonly ViewUserEventsAuditLogs: "ViewUserEventsAuditLogs";
|
|
2234
|
-
readonly ViewCampaignsAuditLogs: "ViewCampaignsAuditLogs";
|
|
2235
|
-
readonly ViewTeammatesAuditLogs: "ViewTeammatesAuditLogs";
|
|
2236
|
-
readonly ViewAppAuditLogs: "ViewAppAuditLogs";
|
|
2237
|
-
readonly ViewCustomerAuditLogs: "ViewCustomerAuditLogs";
|
|
2238
|
-
readonly ViewPrinterAuditLogs: "ViewPrinterAuditLogs";
|
|
2239
|
-
readonly ViewHydraAuditLogs: "ViewHydraAuditLogs";
|
|
2240
|
-
readonly ViewPushNotificationAuditLogs: "ViewPushNotificationAuditLogs";
|
|
2241
|
-
readonly ViewStripeCustomConnectedAccountAuditLogs: "ViewStripeCustomConnectedAccountAuditLogs";
|
|
2242
|
-
readonly ViewKioskBluetoothDeviceAuditLogs: "ViewKioskBluetoothDeviceAuditLogs";
|
|
2243
|
-
readonly ViewExternalAuditLogs: "ViewExternalAuditLogs";
|
|
2244
|
-
readonly CreateExternalAuditLogEvents: "CreateExternalAuditLogEvents";
|
|
2245
|
-
readonly ViewCatalogAuditLogs: "ViewCatalogAuditLogs";
|
|
2246
|
-
readonly ViewOrderFulfillmentAuditLogs: "ViewOrderFulfillmentAuditLogs";
|
|
2247
|
-
readonly ViewChannelAuditLogs: "ViewChannelAuditLogs";
|
|
2248
|
-
readonly ViewAppStoreAuditLogs: "ViewAppStoreAuditLogs";
|
|
2249
|
-
readonly SendPushNotificationToCustomer: "SendPushNotificationToCustomer";
|
|
2250
|
-
readonly InviteDriverToApp: "InviteDriverToApp";
|
|
2251
|
-
readonly GetDriverForApp: "GetDriverForApp";
|
|
2252
|
-
readonly RemoveDriverFromApp: "RemoveDriverFromApp";
|
|
2253
|
-
readonly AssignDriverToOrder: "AssignDriverToOrder";
|
|
2254
|
-
readonly UnassignDriverFromOrder: "UnassignDriverFromOrder";
|
|
2255
|
-
readonly UpdateOrdersDeliveryTrackingStatus: "UpdateOrdersDeliveryTrackingStatus";
|
|
2256
|
-
readonly UpdateOrderFulfillmentStatus: "UpdateOrderFulfillmentStatus";
|
|
2257
|
-
readonly ViewFulfillmentStatesConfiguration: "ViewFulfillmentStatesConfiguration";
|
|
2258
|
-
readonly CreateFulfillmentStatesConfiguration: "CreateFulfillmentStatesConfiguration";
|
|
2259
|
-
readonly UpdateFulfillmentStatesConfiguration: "UpdateFulfillmentStatesConfiguration";
|
|
2260
|
-
readonly DeleteFulfillmentStatesConfiguration: "DeleteFulfillmentStatesConfiguration";
|
|
2261
|
-
readonly ViewPayouts: "ViewPayouts";
|
|
2262
|
-
readonly ViewChannels: "ViewChannels";
|
|
2263
|
-
readonly ViewOnboarding: "ViewOnboarding";
|
|
2264
|
-
readonly UpdateOnboarding: "UpdateOnboarding";
|
|
2265
|
-
readonly ViewClientDevices: "ViewClientDevices";
|
|
2266
|
-
readonly UpdateClientDevices: "UpdateClientDevices";
|
|
2267
|
-
readonly EnrollClientDevices: "EnrollClientDevices";
|
|
2268
|
-
readonly AssignClientDevices: "AssignClientDevices";
|
|
2269
|
-
readonly ViewClientAuditLogs: "ViewClientAuditLogs";
|
|
2270
|
-
readonly CreateAppStoreAppConfiguration: "CreateAppStoreAppConfiguration";
|
|
2271
|
-
readonly ViewAppStoreAppConfiguration: "ViewAppStoreAppConfiguration";
|
|
2272
|
-
readonly UpdateAppStoreAppConfiguration: "UpdateAppStoreAppConfiguration";
|
|
2273
|
-
readonly DeleteAppStoreAppConfiguration: "DeleteAppStoreAppConfiguration";
|
|
2274
|
-
readonly UpdateAppStoreAppConfigurationSettings: "UpdateAppStoreAppConfigurationSettings";
|
|
2275
|
-
readonly CreateAppStoreSubscription: "CreateAppStoreSubscription";
|
|
2276
|
-
readonly UpdateAppStoreSubscription: "UpdateAppStoreSubscription";
|
|
2277
|
-
readonly DeleteAppStoreSubscription: "DeleteAppStoreSubscription";
|
|
2278
|
-
readonly ViewSalesChannels: "ViewSalesChannels";
|
|
2279
|
-
readonly EditSalesChannels: "EditSalesChannels";
|
|
2280
|
-
readonly CreateSalesChannel: "CreateSalesChannel";
|
|
2281
|
-
readonly ArchiveSalesChannel: "ArchiveSalesChannel";
|
|
2282
|
-
readonly UnarchiveSalesChannel: "UnarchiveSalesChannel";
|
|
2283
|
-
readonly PublishSalesChannel: "PublishSalesChannel";
|
|
2284
|
-
readonly UnpublishSalesChannel: "UnpublishSalesChannel";
|
|
2285
|
-
readonly CloneSalesChannel: "CloneSalesChannel";
|
|
2286
|
-
readonly ViewPayGreenWhiteLabelConfiguration: "ViewPayGreenWhiteLabelConfiguration";
|
|
2287
|
-
readonly CreatePayGreenWhiteLabelConfiguration: "CreatePayGreenWhiteLabelConfiguration";
|
|
2288
|
-
readonly UpdatePayGreenWhiteLabelConfiguration: "UpdatePayGreenWhiteLabelConfiguration";
|
|
2289
|
-
readonly UpdatePayGreenStoreConfiguration: "UpdatePayGreenStoreConfiguration";
|
|
2290
|
-
readonly ViewSubscriptions: "ViewSubscriptions";
|
|
2291
|
-
readonly ViewInvoices: "ViewInvoices";
|
|
2292
|
-
readonly EditAccountsBills: "EditAccountsBills";
|
|
2293
|
-
readonly ViewAccountsBills: "ViewAccountsBills";
|
|
2294
|
-
readonly EditAccountsCategories: "EditAccountsCategories";
|
|
2295
|
-
readonly ViewAccountsCategories: "ViewAccountsCategories";
|
|
2296
|
-
readonly EditAccountsCreditAccounts: "EditAccountsCreditAccounts";
|
|
2297
|
-
readonly ViewAccountsCreditAccounts: "ViewAccountsCreditAccounts";
|
|
2298
|
-
readonly EditAccountsCreditBooks: "EditAccountsCreditBooks";
|
|
2299
|
-
readonly ViewAccountsCreditBooks: "ViewAccountsCreditBooks";
|
|
2300
|
-
readonly EditAccountsExpenses: "EditAccountsExpenses";
|
|
2301
|
-
readonly ViewAccountsExpenses: "ViewAccountsExpenses";
|
|
2302
|
-
readonly EditAccountsTransactionAccounts: "EditAccountsTransactionAccounts";
|
|
2303
|
-
readonly ViewAccountsTransactionAccounts: "ViewAccountsTransactionAccounts";
|
|
2304
|
-
readonly EditDocumentExplorer: "EditDocumentExplorer";
|
|
2305
|
-
readonly ViewDocumentExplorer: "ViewDocumentExplorer";
|
|
2306
|
-
readonly ViewInventoryReports: "ViewInventoryReports";
|
|
2307
|
-
readonly EditInventoryPurchaseOrders: "EditInventoryPurchaseOrders";
|
|
2308
|
-
readonly ViewInventoryPurchaseOrders: "ViewInventoryPurchaseOrders";
|
|
2309
|
-
readonly EditInventoryStockItems: "EditInventoryStockItems";
|
|
2310
|
-
readonly ViewInventoryStockItems: "ViewInventoryStockItems";
|
|
2311
|
-
readonly EditInventorySupplier: "EditInventorySupplier";
|
|
2312
|
-
readonly ViewInventorySupplier: "ViewInventorySupplier";
|
|
2313
|
-
readonly EditInventoryTrackingProfiles: "EditInventoryTrackingProfiles";
|
|
2314
|
-
readonly ViewInventoryTrackingProfiles: "ViewInventoryTrackingProfiles";
|
|
2315
|
-
readonly ViewPayrollReports: "ViewPayrollReports";
|
|
2316
|
-
readonly EditPayrollHoliday: "EditPayrollHoliday";
|
|
2317
|
-
readonly ViewPayrollHoliday: "ViewPayrollHoliday";
|
|
2318
|
-
readonly EditPayrollRota: "EditPayrollRota";
|
|
2319
|
-
readonly ViewPayrollRota: "ViewPayrollRota";
|
|
2320
|
-
readonly EditPayrollStaff: "EditPayrollStaff";
|
|
2321
|
-
readonly ViewPayrollStaff: "ViewPayrollStaff";
|
|
2322
|
-
readonly ViewSalesReports: "ViewSalesReports";
|
|
2323
|
-
readonly ViewCostReports: "ViewCostReports";
|
|
2324
|
-
readonly ViewMenuReports: "ViewMenuReports";
|
|
2325
|
-
readonly ViewBrand: "ViewBrand";
|
|
2326
|
-
readonly EditBrand: "EditBrand";
|
|
2327
|
-
readonly CreateBrand: "CreateBrand";
|
|
2328
|
-
readonly TransferBrand: "TransferBrand";
|
|
2329
|
-
readonly ViewProperty: "ViewProperty";
|
|
2330
|
-
readonly EditProperty: "EditProperty";
|
|
2331
|
-
readonly CreateProperty: "CreateProperty";
|
|
2332
|
-
readonly ArchiveProperty: "ArchiveProperty";
|
|
2333
|
-
readonly ViewEntityFeatureFlags: "ViewEntityFeatureFlags";
|
|
2334
|
-
readonly EditEntityFeatureFlags: "EditEntityFeatureFlags";
|
|
2335
|
-
readonly CreateOrg: "CreateOrg";
|
|
2336
|
-
readonly EditOrg: "EditOrg";
|
|
2337
|
-
readonly ViewOrg: "ViewOrg";
|
|
2338
|
-
readonly ViewWebhooks: "ViewWebhooks";
|
|
2339
|
-
readonly EditWebhooks: "EditWebhooks";
|
|
2340
|
-
readonly RoleAdmin: "RoleAdmin";
|
|
2341
|
-
readonly RoleFactory: "RoleFactory";
|
|
770
|
+
* @export
|
|
771
|
+
* @interface GetPrincipalRolesRequestBody
|
|
772
|
+
*/
|
|
773
|
+
export interface GetPrincipalRolesRequestBody {
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {AuthorizationRequestPrincipal}
|
|
777
|
+
* @memberof GetPrincipalRolesRequestBody
|
|
778
|
+
*/
|
|
779
|
+
'principal': AuthorizationRequestPrincipal;
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {AuthorizationRequestResource}
|
|
783
|
+
* @memberof GetPrincipalRolesRequestBody
|
|
784
|
+
*/
|
|
785
|
+
'resource'?: AuthorizationRequestResource;
|
|
786
|
+
}
|
|
787
|
+
/**
|
|
788
|
+
* Successful roles retrieval response
|
|
789
|
+
* @export
|
|
790
|
+
* @interface GetPrincipalRolesSuccessResponse
|
|
791
|
+
*/
|
|
792
|
+
export interface GetPrincipalRolesSuccessResponse {
|
|
793
|
+
/**
|
|
794
|
+
* List of roles assigned to the principal
|
|
795
|
+
* @type {Array<GetPrincipalRolesSuccessResponseRolesInner>}
|
|
796
|
+
* @memberof GetPrincipalRolesSuccessResponse
|
|
797
|
+
*/
|
|
798
|
+
'roles': Array<GetPrincipalRolesSuccessResponseRolesInner>;
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
*
|
|
802
|
+
* @export
|
|
803
|
+
* @interface GetPrincipalRolesSuccessResponseRolesInner
|
|
804
|
+
*/
|
|
805
|
+
export interface GetPrincipalRolesSuccessResponseRolesInner {
|
|
806
|
+
/**
|
|
807
|
+
* Policy ID
|
|
808
|
+
* @type {string}
|
|
809
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
810
|
+
*/
|
|
811
|
+
'policyId': string;
|
|
812
|
+
/**
|
|
813
|
+
*
|
|
814
|
+
* @type {GetPrincipalRolesSuccessResponseRolesInnerRoleName}
|
|
815
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
816
|
+
*/
|
|
817
|
+
'roleName': GetPrincipalRolesSuccessResponseRolesInnerRoleName;
|
|
818
|
+
/**
|
|
819
|
+
* Policy type
|
|
820
|
+
* @type {string}
|
|
821
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
822
|
+
*/
|
|
823
|
+
'policyType': GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum;
|
|
824
|
+
/**
|
|
825
|
+
* Date and time the role was assigned
|
|
826
|
+
* @type {string}
|
|
827
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
828
|
+
*/
|
|
829
|
+
'assignedAt': string;
|
|
830
|
+
/**
|
|
831
|
+
* User who assigned the role
|
|
832
|
+
* @type {string}
|
|
833
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
834
|
+
*/
|
|
835
|
+
'assignedBy': string;
|
|
836
|
+
/**
|
|
837
|
+
* Type of resource the role is assigned to
|
|
838
|
+
* @type {string}
|
|
839
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
840
|
+
*/
|
|
841
|
+
'resourceType'?: GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum;
|
|
842
|
+
/**
|
|
843
|
+
* Organization ID
|
|
844
|
+
* @type {string}
|
|
845
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
846
|
+
*/
|
|
847
|
+
'orgId'?: string;
|
|
848
|
+
/**
|
|
849
|
+
* Property ID
|
|
850
|
+
* @type {string}
|
|
851
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
852
|
+
*/
|
|
853
|
+
'propertyId'?: string;
|
|
854
|
+
/**
|
|
855
|
+
* Brand ID this role is scoped to
|
|
856
|
+
* @type {string}
|
|
857
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
858
|
+
*/
|
|
859
|
+
'brandId'?: string;
|
|
860
|
+
/**
|
|
861
|
+
* Sales channel ID this role is scoped to
|
|
862
|
+
* @type {string}
|
|
863
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
864
|
+
*/
|
|
865
|
+
'salesChannelId'?: string;
|
|
866
|
+
/**
|
|
867
|
+
* Principal ID this role is assigned to
|
|
868
|
+
* @type {string}
|
|
869
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
870
|
+
*/
|
|
871
|
+
'principalId': string;
|
|
872
|
+
/**
|
|
873
|
+
* Type of principal this role is assigned to
|
|
874
|
+
* @type {string}
|
|
875
|
+
* @memberof GetPrincipalRolesSuccessResponseRolesInner
|
|
876
|
+
*/
|
|
877
|
+
'principalType': GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum;
|
|
878
|
+
}
|
|
879
|
+
export declare const GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum: {
|
|
880
|
+
readonly Main: "Main";
|
|
881
|
+
readonly BrandOverride: "BrandOverride";
|
|
882
|
+
readonly OrgOverride: "OrgOverride";
|
|
883
|
+
readonly Forbidden: "Forbidden";
|
|
884
|
+
readonly NamedRole: "NamedRole";
|
|
885
|
+
};
|
|
886
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPolicyTypeEnum];
|
|
887
|
+
export declare const GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum: {
|
|
888
|
+
readonly Property: "Property";
|
|
889
|
+
readonly Org: "Org";
|
|
890
|
+
readonly Brand: "Brand";
|
|
891
|
+
readonly SalesChannel: "SalesChannel";
|
|
892
|
+
};
|
|
893
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerResourceTypeEnum];
|
|
894
|
+
export declare const GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum: {
|
|
895
|
+
readonly User: "User";
|
|
896
|
+
readonly Automation: "Automation";
|
|
897
|
+
};
|
|
898
|
+
export type GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum = typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum[keyof typeof GetPrincipalRolesSuccessResponseRolesInnerPrincipalTypeEnum];
|
|
899
|
+
/**
|
|
900
|
+
* Role name
|
|
901
|
+
* @export
|
|
902
|
+
* @interface GetPrincipalRolesSuccessResponseRolesInnerRoleName
|
|
903
|
+
*/
|
|
904
|
+
export interface GetPrincipalRolesSuccessResponseRolesInnerRoleName {
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* Successful user permissions retrieval response
|
|
908
|
+
* @export
|
|
909
|
+
* @interface GetUserPermissionsSuccessResponse
|
|
910
|
+
*/
|
|
911
|
+
export interface GetUserPermissionsSuccessResponse {
|
|
912
|
+
/**
|
|
913
|
+
* Map of resource IDs to permissions
|
|
914
|
+
* @type {{ [key: string]: GetUserPermissionsSuccessResponseResourcesValue; }}
|
|
915
|
+
* @memberof GetUserPermissionsSuccessResponse
|
|
916
|
+
*/
|
|
917
|
+
'resources': {
|
|
918
|
+
[key: string]: GetUserPermissionsSuccessResponseResourcesValue;
|
|
919
|
+
};
|
|
920
|
+
}
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @export
|
|
924
|
+
* @interface GetUserPermissionsSuccessResponseResourcesValue
|
|
925
|
+
*/
|
|
926
|
+
export interface GetUserPermissionsSuccessResponseResourcesValue {
|
|
927
|
+
/**
|
|
928
|
+
* Type of resource the permissions are assigned to
|
|
929
|
+
* @type {string}
|
|
930
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
931
|
+
*/
|
|
932
|
+
'resourceType': GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum;
|
|
933
|
+
/**
|
|
934
|
+
*
|
|
935
|
+
* @type {GetUserPermissionsSuccessResponseResourcesValueResourceId}
|
|
936
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
937
|
+
*/
|
|
938
|
+
'resourceId': GetUserPermissionsSuccessResponseResourcesValueResourceId;
|
|
939
|
+
/**
|
|
940
|
+
* List of permissions that are assigned to the user for the resource
|
|
941
|
+
* @type {Array<Permissions>}
|
|
942
|
+
* @memberof GetUserPermissionsSuccessResponseResourcesValue
|
|
943
|
+
*/
|
|
944
|
+
'permissions': Array<Permissions>;
|
|
945
|
+
}
|
|
946
|
+
export declare const GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum: {
|
|
947
|
+
readonly Property: "Property";
|
|
948
|
+
readonly Org: "Org";
|
|
949
|
+
readonly Brand: "Brand";
|
|
950
|
+
readonly SalesChannel: "SalesChannel";
|
|
2342
951
|
};
|
|
2343
|
-
export type
|
|
952
|
+
export type GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum = typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValueResourceTypeEnum];
|
|
2344
953
|
/**
|
|
2345
954
|
* ID of the resource the permissions are assigned to
|
|
2346
955
|
* @export
|
|
@@ -2362,10 +971,10 @@ export interface IsInRoleRequest {
|
|
|
2362
971
|
'principal': AuthorizationRequestPrincipal;
|
|
2363
972
|
/**
|
|
2364
973
|
* Array of roles to check if the principal is in
|
|
2365
|
-
* @type {Array<
|
|
974
|
+
* @type {Array<RoleNames>}
|
|
2366
975
|
* @memberof IsInRoleRequest
|
|
2367
976
|
*/
|
|
2368
|
-
'roles': Array<
|
|
977
|
+
'roles': Array<RoleNames>;
|
|
2369
978
|
/**
|
|
2370
979
|
* How to check authorisation - any or all of the actions must be allowed
|
|
2371
980
|
* @type {string}
|
|
@@ -2373,11 +982,6 @@ export interface IsInRoleRequest {
|
|
|
2373
982
|
*/
|
|
2374
983
|
'checkMode'?: IsInRoleRequestCheckModeEnum;
|
|
2375
984
|
}
|
|
2376
|
-
export declare const IsInRoleRequestRolesEnum: {
|
|
2377
|
-
readonly Admin: "Admin";
|
|
2378
|
-
readonly Factory: "Factory";
|
|
2379
|
-
};
|
|
2380
|
-
export type IsInRoleRequestRolesEnum = typeof IsInRoleRequestRolesEnum[keyof typeof IsInRoleRequestRolesEnum];
|
|
2381
985
|
export declare const IsInRoleRequestCheckModeEnum: {
|
|
2382
986
|
readonly Any: "any";
|
|
2383
987
|
readonly All: "all";
|
|
@@ -2523,13 +1127,31 @@ export type ListOrgRolesSuccessResponseValueValueRolesEnum = typeof ListOrgRoles
|
|
|
2523
1127
|
*/
|
|
2524
1128
|
export interface ListPermissionsSuccessResponse {
|
|
2525
1129
|
/**
|
|
2526
|
-
*
|
|
2527
|
-
* @type {Array<
|
|
1130
|
+
*
|
|
1131
|
+
* @type {Permissions & Array<Permissions>}
|
|
2528
1132
|
* @memberof ListPermissionsSuccessResponse
|
|
2529
1133
|
*/
|
|
2530
|
-
'permissions': Array<
|
|
1134
|
+
'permissions': Permissions & Array<Permissions>;
|
|
1135
|
+
}
|
|
1136
|
+
/**
|
|
1137
|
+
* Successful roles retrieval response
|
|
1138
|
+
* @export
|
|
1139
|
+
* @interface ListRolesSuccessResponse
|
|
1140
|
+
*/
|
|
1141
|
+
export interface ListRolesSuccessResponse {
|
|
1142
|
+
/**
|
|
1143
|
+
* List of named roles
|
|
1144
|
+
* @type {Array<RoleNames>}
|
|
1145
|
+
* @memberof ListRolesSuccessResponse
|
|
1146
|
+
*/
|
|
1147
|
+
'roles': Array<RoleNames>;
|
|
2531
1148
|
}
|
|
2532
|
-
|
|
1149
|
+
/**
|
|
1150
|
+
* Permissions
|
|
1151
|
+
* @export
|
|
1152
|
+
* @enum {string}
|
|
1153
|
+
*/
|
|
1154
|
+
export declare const Permissions: {
|
|
2533
1155
|
readonly AnyAuditLogs: "AnyAuditLogs";
|
|
2534
1156
|
readonly ViewApp: "ViewApp";
|
|
2535
1157
|
readonly CreateApp: "CreateApp";
|
|
@@ -2759,25 +1381,26 @@ export declare const ListPermissionsSuccessResponsePermissionsEnum: {
|
|
|
2759
1381
|
readonly RoleAdmin: "RoleAdmin";
|
|
2760
1382
|
readonly RoleFactory: "RoleFactory";
|
|
2761
1383
|
};
|
|
2762
|
-
export type
|
|
1384
|
+
export type Permissions = typeof Permissions[keyof typeof Permissions];
|
|
2763
1385
|
/**
|
|
2764
|
-
*
|
|
1386
|
+
* Principals in org
|
|
2765
1387
|
* @export
|
|
2766
|
-
* @interface
|
|
1388
|
+
* @interface PrincipalsInOrgResponse
|
|
2767
1389
|
*/
|
|
2768
|
-
export interface
|
|
1390
|
+
export interface PrincipalsInOrgResponse {
|
|
2769
1391
|
/**
|
|
2770
|
-
*
|
|
2771
|
-
* @type {
|
|
2772
|
-
* @memberof
|
|
1392
|
+
*
|
|
1393
|
+
* @type {string}
|
|
1394
|
+
* @memberof PrincipalsInOrgResponse
|
|
2773
1395
|
*/
|
|
2774
|
-
'
|
|
1396
|
+
'orgId': string;
|
|
1397
|
+
/**
|
|
1398
|
+
* List of principals in org
|
|
1399
|
+
* @type {Array<AuthorizationRequestPrincipal>}
|
|
1400
|
+
* @memberof PrincipalsInOrgResponse
|
|
1401
|
+
*/
|
|
1402
|
+
'principals': Array<AuthorizationRequestPrincipal>;
|
|
2775
1403
|
}
|
|
2776
|
-
export declare const ListRolesSuccessResponseRolesEnum: {
|
|
2777
|
-
readonly Admin: "Admin";
|
|
2778
|
-
readonly Factory: "Factory";
|
|
2779
|
-
};
|
|
2780
|
-
export type ListRolesSuccessResponseRolesEnum = typeof ListRolesSuccessResponseRolesEnum[keyof typeof ListRolesSuccessResponseRolesEnum];
|
|
2781
1404
|
/**
|
|
2782
1405
|
* Details for revoking a forbidden role from a principal
|
|
2783
1406
|
* @export
|
|
@@ -2925,6 +1548,16 @@ export interface RevokeRoleSuccessResponse {
|
|
|
2925
1548
|
*/
|
|
2926
1549
|
'message': string;
|
|
2927
1550
|
}
|
|
1551
|
+
/**
|
|
1552
|
+
* Role names
|
|
1553
|
+
* @export
|
|
1554
|
+
* @enum {string}
|
|
1555
|
+
*/
|
|
1556
|
+
export declare const RoleNames: {
|
|
1557
|
+
readonly Admin: "Admin";
|
|
1558
|
+
readonly Factory: "Factory";
|
|
1559
|
+
};
|
|
1560
|
+
export type RoleNames = typeof RoleNames[keyof typeof RoleNames];
|
|
2928
1561
|
/**
|
|
2929
1562
|
*
|
|
2930
1563
|
* @export
|
|
@@ -3708,6 +2341,65 @@ export declare class RoleAssignmentApi extends BaseAPI {
|
|
|
3708
2341
|
*/
|
|
3709
2342
|
revokeRoleFromPrincipal(orgId: string, revokeRoleRequestBody?: RevokeRoleRequestBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RevokeRoleSuccessResponse, any, {}>>;
|
|
3710
2343
|
}
|
|
2344
|
+
/**
|
|
2345
|
+
* UserManagementApi - axios parameter creator
|
|
2346
|
+
* @export
|
|
2347
|
+
*/
|
|
2348
|
+
export declare const UserManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2349
|
+
/**
|
|
2350
|
+
* List the users in a given org
|
|
2351
|
+
* @summary List Users in Org
|
|
2352
|
+
* @param {string} orgId
|
|
2353
|
+
* @param {*} [options] Override http request option.
|
|
2354
|
+
* @throws {RequiredError}
|
|
2355
|
+
*/
|
|
2356
|
+
listUsersInOrg: (orgId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2357
|
+
};
|
|
2358
|
+
/**
|
|
2359
|
+
* UserManagementApi - functional programming interface
|
|
2360
|
+
* @export
|
|
2361
|
+
*/
|
|
2362
|
+
export declare const UserManagementApiFp: (configuration?: Configuration) => {
|
|
2363
|
+
/**
|
|
2364
|
+
* List the users in a given org
|
|
2365
|
+
* @summary List Users in Org
|
|
2366
|
+
* @param {string} orgId
|
|
2367
|
+
* @param {*} [options] Override http request option.
|
|
2368
|
+
* @throws {RequiredError}
|
|
2369
|
+
*/
|
|
2370
|
+
listUsersInOrg(orgId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PrincipalsInOrgResponse>>;
|
|
2371
|
+
};
|
|
2372
|
+
/**
|
|
2373
|
+
* UserManagementApi - factory interface
|
|
2374
|
+
* @export
|
|
2375
|
+
*/
|
|
2376
|
+
export declare const UserManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2377
|
+
/**
|
|
2378
|
+
* List the users in a given org
|
|
2379
|
+
* @summary List Users in Org
|
|
2380
|
+
* @param {string} orgId
|
|
2381
|
+
* @param {*} [options] Override http request option.
|
|
2382
|
+
* @throws {RequiredError}
|
|
2383
|
+
*/
|
|
2384
|
+
listUsersInOrg(orgId: string, options?: RawAxiosRequestConfig): AxiosPromise<PrincipalsInOrgResponse>;
|
|
2385
|
+
};
|
|
2386
|
+
/**
|
|
2387
|
+
* UserManagementApi - object-oriented interface
|
|
2388
|
+
* @export
|
|
2389
|
+
* @class UserManagementApi
|
|
2390
|
+
* @extends {BaseAPI}
|
|
2391
|
+
*/
|
|
2392
|
+
export declare class UserManagementApi extends BaseAPI {
|
|
2393
|
+
/**
|
|
2394
|
+
* List the users in a given org
|
|
2395
|
+
* @summary List Users in Org
|
|
2396
|
+
* @param {string} orgId
|
|
2397
|
+
* @param {*} [options] Override http request option.
|
|
2398
|
+
* @throws {RequiredError}
|
|
2399
|
+
* @memberof UserManagementApi
|
|
2400
|
+
*/
|
|
2401
|
+
listUsersInOrg(orgId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PrincipalsInOrgResponse, any, {}>>;
|
|
2402
|
+
}
|
|
3711
2403
|
/**
|
|
3712
2404
|
* UserPermissionsApi - axios parameter creator
|
|
3713
2405
|
* @export
|