@iblai/web-utils 1.9.0 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/features/core/api-slice.d.ts +110 -109
- package/dist/index.d.ts +9 -4
- package/dist/index.esm.js +31 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +31 -3
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/web-utils/src/providers/auth-provider.d.ts +3 -3
- package/dist/web-utils/src/utils/constants.d.ts +5 -0
- package/package.json +11 -13
- package/dist/web-utils/tsconfig.tsbuildinfo +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PaginatedRbacRoleList, PatchedRbacRole, RbacRole } from '@iblai/iblai-api';
|
|
1
2
|
import { CustomRbacGroupDetailsResponse, CustomRbacPolicyDetailsResponse, CustomRbacRoleDetailsResponse, DepartmentMemberCheckResponse } from './types';
|
|
2
3
|
export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3
4
|
attempt?: number;
|
|
@@ -110,30 +111,30 @@ export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("
|
|
|
110
111
|
attempt?: number;
|
|
111
112
|
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>;
|
|
112
113
|
getRbacRoles: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
114
|
+
platformKey?: string;
|
|
113
115
|
name?: string;
|
|
114
116
|
page?: number;
|
|
115
117
|
pageSize?: number;
|
|
116
|
-
platformKey?: string;
|
|
117
118
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
118
119
|
attempt?: number;
|
|
119
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
120
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>;
|
|
120
121
|
createRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
121
|
-
requestBody:
|
|
122
|
+
requestBody: RbacRole;
|
|
122
123
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
123
124
|
attempt?: number;
|
|
124
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
125
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>;
|
|
125
126
|
updateRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
126
127
|
id: number;
|
|
127
|
-
requestBody:
|
|
128
|
+
requestBody: RbacRole;
|
|
128
129
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
129
130
|
attempt?: number;
|
|
130
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
131
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>;
|
|
131
132
|
partialUpdateRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
132
133
|
id: number;
|
|
133
|
-
requestBody?:
|
|
134
|
+
requestBody?: PatchedRbacRole;
|
|
134
135
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
135
136
|
attempt?: number;
|
|
136
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
137
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>;
|
|
137
138
|
deleteRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
138
139
|
id: number;
|
|
139
140
|
platformKey: string;
|
|
@@ -3408,7 +3409,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3408
3409
|
startedTimeStamp?: undefined | undefined;
|
|
3409
3410
|
fulfilledTimeStamp?: undefined | undefined;
|
|
3410
3411
|
} & {
|
|
3411
|
-
currentData?:
|
|
3412
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3412
3413
|
isUninitialized: false;
|
|
3413
3414
|
isLoading: false;
|
|
3414
3415
|
isFetching: false;
|
|
@@ -3417,14 +3418,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3417
3418
|
}, "isUninitialized"> & {
|
|
3418
3419
|
isUninitialized: true;
|
|
3419
3420
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3421
|
+
platformKey?: string;
|
|
3420
3422
|
name?: string;
|
|
3421
3423
|
page?: number;
|
|
3422
3424
|
pageSize?: number;
|
|
3423
|
-
platformKey?: string;
|
|
3424
3425
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3425
3426
|
attempt?: number;
|
|
3426
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3427
|
-
currentData?:
|
|
3427
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3428
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3428
3429
|
isUninitialized: false;
|
|
3429
3430
|
isLoading: false;
|
|
3430
3431
|
isFetching: false;
|
|
@@ -3439,14 +3440,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3439
3440
|
isFetching: true;
|
|
3440
3441
|
error: undefined;
|
|
3441
3442
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3443
|
+
platformKey?: string;
|
|
3442
3444
|
name?: string;
|
|
3443
3445
|
page?: number;
|
|
3444
3446
|
pageSize?: number;
|
|
3445
|
-
platformKey?: string;
|
|
3446
3447
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3447
3448
|
attempt?: number;
|
|
3448
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3449
|
-
currentData?:
|
|
3449
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3450
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3450
3451
|
isUninitialized: false;
|
|
3451
3452
|
isLoading: false;
|
|
3452
3453
|
isFetching: false;
|
|
@@ -3457,14 +3458,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3457
3458
|
isFetching: false;
|
|
3458
3459
|
error: undefined;
|
|
3459
3460
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3461
|
+
platformKey?: string;
|
|
3460
3462
|
name?: string;
|
|
3461
3463
|
page?: number;
|
|
3462
3464
|
pageSize?: number;
|
|
3463
|
-
platformKey?: string;
|
|
3464
3465
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3465
3466
|
attempt?: number;
|
|
3466
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3467
|
-
currentData?:
|
|
3467
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3468
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3468
3469
|
isUninitialized: false;
|
|
3469
3470
|
isLoading: false;
|
|
3470
3471
|
isFetching: false;
|
|
@@ -3473,14 +3474,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3473
3474
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3474
3475
|
isError: true;
|
|
3475
3476
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3477
|
+
platformKey?: string;
|
|
3476
3478
|
name?: string;
|
|
3477
3479
|
page?: number;
|
|
3478
3480
|
pageSize?: number;
|
|
3479
|
-
platformKey?: string;
|
|
3480
3481
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3481
3482
|
attempt?: number;
|
|
3482
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3483
|
-
currentData?:
|
|
3483
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3484
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3484
3485
|
isUninitialized: false;
|
|
3485
3486
|
isLoading: false;
|
|
3486
3487
|
isFetching: false;
|
|
@@ -3489,10 +3490,10 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3489
3490
|
}, "error">>)>> & {
|
|
3490
3491
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3491
3492
|
}>(arg: {
|
|
3493
|
+
platformKey?: string;
|
|
3492
3494
|
name?: string;
|
|
3493
3495
|
page?: number;
|
|
3494
3496
|
pageSize?: number;
|
|
3495
|
-
platformKey?: string;
|
|
3496
3497
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
3497
3498
|
skip?: boolean;
|
|
3498
3499
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -3508,7 +3509,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3508
3509
|
startedTimeStamp?: undefined | undefined;
|
|
3509
3510
|
fulfilledTimeStamp?: undefined | undefined;
|
|
3510
3511
|
} & {
|
|
3511
|
-
currentData?:
|
|
3512
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3512
3513
|
isUninitialized: false;
|
|
3513
3514
|
isLoading: false;
|
|
3514
3515
|
isFetching: false;
|
|
@@ -3517,14 +3518,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3517
3518
|
}, "isUninitialized"> & {
|
|
3518
3519
|
isUninitialized: true;
|
|
3519
3520
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3521
|
+
platformKey?: string;
|
|
3520
3522
|
name?: string;
|
|
3521
3523
|
page?: number;
|
|
3522
3524
|
pageSize?: number;
|
|
3523
|
-
platformKey?: string;
|
|
3524
3525
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3525
3526
|
attempt?: number;
|
|
3526
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3527
|
-
currentData?:
|
|
3527
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3528
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3528
3529
|
isUninitialized: false;
|
|
3529
3530
|
isLoading: false;
|
|
3530
3531
|
isFetching: false;
|
|
@@ -3539,14 +3540,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3539
3540
|
isFetching: true;
|
|
3540
3541
|
error: undefined;
|
|
3541
3542
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3543
|
+
platformKey?: string;
|
|
3542
3544
|
name?: string;
|
|
3543
3545
|
page?: number;
|
|
3544
3546
|
pageSize?: number;
|
|
3545
|
-
platformKey?: string;
|
|
3546
3547
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3547
3548
|
attempt?: number;
|
|
3548
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3549
|
-
currentData?:
|
|
3549
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3550
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3550
3551
|
isUninitialized: false;
|
|
3551
3552
|
isLoading: false;
|
|
3552
3553
|
isFetching: false;
|
|
@@ -3557,14 +3558,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3557
3558
|
isFetching: false;
|
|
3558
3559
|
error: undefined;
|
|
3559
3560
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3561
|
+
platformKey?: string;
|
|
3560
3562
|
name?: string;
|
|
3561
3563
|
page?: number;
|
|
3562
3564
|
pageSize?: number;
|
|
3563
|
-
platformKey?: string;
|
|
3564
3565
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3565
3566
|
attempt?: number;
|
|
3566
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3567
|
-
currentData?:
|
|
3567
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3568
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3568
3569
|
isUninitialized: false;
|
|
3569
3570
|
isLoading: false;
|
|
3570
3571
|
isFetching: false;
|
|
@@ -3573,14 +3574,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3573
3574
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3574
3575
|
isError: true;
|
|
3575
3576
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3577
|
+
platformKey?: string;
|
|
3576
3578
|
name?: string;
|
|
3577
3579
|
page?: number;
|
|
3578
3580
|
pageSize?: number;
|
|
3579
|
-
platformKey?: string;
|
|
3580
3581
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3581
3582
|
attempt?: number;
|
|
3582
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3583
|
-
currentData?:
|
|
3583
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3584
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3584
3585
|
isUninitialized: false;
|
|
3585
3586
|
isLoading: false;
|
|
3586
3587
|
isFetching: false;
|
|
@@ -3591,13 +3592,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3591
3592
|
}) => R) | undefined;
|
|
3592
3593
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3593
3594
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3595
|
+
platformKey?: string;
|
|
3594
3596
|
name?: string;
|
|
3595
3597
|
page?: number;
|
|
3596
3598
|
pageSize?: number;
|
|
3597
|
-
platformKey?: string;
|
|
3598
3599
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3599
3600
|
attempt?: number;
|
|
3600
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3601
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>>;
|
|
3601
3602
|
}, useLazyGetRbacRolesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3602
3603
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3603
3604
|
originalArgs?: undefined | undefined;
|
|
@@ -3608,7 +3609,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3608
3609
|
startedTimeStamp?: undefined | undefined;
|
|
3609
3610
|
fulfilledTimeStamp?: undefined | undefined;
|
|
3610
3611
|
} & {
|
|
3611
|
-
currentData?:
|
|
3612
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3612
3613
|
isUninitialized: false;
|
|
3613
3614
|
isLoading: false;
|
|
3614
3615
|
isFetching: false;
|
|
@@ -3617,14 +3618,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3617
3618
|
}, "isUninitialized"> & {
|
|
3618
3619
|
isUninitialized: true;
|
|
3619
3620
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3621
|
+
platformKey?: string;
|
|
3620
3622
|
name?: string;
|
|
3621
3623
|
page?: number;
|
|
3622
3624
|
pageSize?: number;
|
|
3623
|
-
platformKey?: string;
|
|
3624
3625
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3625
3626
|
attempt?: number;
|
|
3626
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3627
|
-
currentData?:
|
|
3627
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3628
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3628
3629
|
isUninitialized: false;
|
|
3629
3630
|
isLoading: false;
|
|
3630
3631
|
isFetching: false;
|
|
@@ -3639,14 +3640,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3639
3640
|
isFetching: true;
|
|
3640
3641
|
error: undefined;
|
|
3641
3642
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3643
|
+
platformKey?: string;
|
|
3642
3644
|
name?: string;
|
|
3643
3645
|
page?: number;
|
|
3644
3646
|
pageSize?: number;
|
|
3645
|
-
platformKey?: string;
|
|
3646
3647
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3647
3648
|
attempt?: number;
|
|
3648
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3649
|
-
currentData?:
|
|
3649
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3650
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3650
3651
|
isUninitialized: false;
|
|
3651
3652
|
isLoading: false;
|
|
3652
3653
|
isFetching: false;
|
|
@@ -3657,14 +3658,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3657
3658
|
isFetching: false;
|
|
3658
3659
|
error: undefined;
|
|
3659
3660
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3661
|
+
platformKey?: string;
|
|
3660
3662
|
name?: string;
|
|
3661
3663
|
page?: number;
|
|
3662
3664
|
pageSize?: number;
|
|
3663
|
-
platformKey?: string;
|
|
3664
3665
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3665
3666
|
attempt?: number;
|
|
3666
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3667
|
-
currentData?:
|
|
3667
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3668
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3668
3669
|
isUninitialized: false;
|
|
3669
3670
|
isLoading: false;
|
|
3670
3671
|
isFetching: false;
|
|
@@ -3673,14 +3674,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3673
3674
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3674
3675
|
isError: true;
|
|
3675
3676
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3677
|
+
platformKey?: string;
|
|
3676
3678
|
name?: string;
|
|
3677
3679
|
page?: number;
|
|
3678
3680
|
pageSize?: number;
|
|
3679
|
-
platformKey?: string;
|
|
3680
3681
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3681
3682
|
attempt?: number;
|
|
3682
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3683
|
-
currentData?:
|
|
3683
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3684
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3684
3685
|
isUninitialized: false;
|
|
3685
3686
|
isLoading: false;
|
|
3686
3687
|
isFetching: false;
|
|
@@ -3700,7 +3701,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3700
3701
|
startedTimeStamp?: undefined | undefined;
|
|
3701
3702
|
fulfilledTimeStamp?: undefined | undefined;
|
|
3702
3703
|
} & {
|
|
3703
|
-
currentData?:
|
|
3704
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3704
3705
|
isUninitialized: false;
|
|
3705
3706
|
isLoading: false;
|
|
3706
3707
|
isFetching: false;
|
|
@@ -3709,14 +3710,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3709
3710
|
}, "isUninitialized"> & {
|
|
3710
3711
|
isUninitialized: true;
|
|
3711
3712
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3713
|
+
platformKey?: string;
|
|
3712
3714
|
name?: string;
|
|
3713
3715
|
page?: number;
|
|
3714
3716
|
pageSize?: number;
|
|
3715
|
-
platformKey?: string;
|
|
3716
3717
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3717
3718
|
attempt?: number;
|
|
3718
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3719
|
-
currentData?:
|
|
3719
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3720
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3720
3721
|
isUninitialized: false;
|
|
3721
3722
|
isLoading: false;
|
|
3722
3723
|
isFetching: false;
|
|
@@ -3731,14 +3732,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3731
3732
|
isFetching: true;
|
|
3732
3733
|
error: undefined;
|
|
3733
3734
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3735
|
+
platformKey?: string;
|
|
3734
3736
|
name?: string;
|
|
3735
3737
|
page?: number;
|
|
3736
3738
|
pageSize?: number;
|
|
3737
|
-
platformKey?: string;
|
|
3738
3739
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3739
3740
|
attempt?: number;
|
|
3740
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3741
|
-
currentData?:
|
|
3741
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3742
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3742
3743
|
isUninitialized: false;
|
|
3743
3744
|
isLoading: false;
|
|
3744
3745
|
isFetching: false;
|
|
@@ -3749,14 +3750,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3749
3750
|
isFetching: false;
|
|
3750
3751
|
error: undefined;
|
|
3751
3752
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3753
|
+
platformKey?: string;
|
|
3752
3754
|
name?: string;
|
|
3753
3755
|
page?: number;
|
|
3754
3756
|
pageSize?: number;
|
|
3755
|
-
platformKey?: string;
|
|
3756
3757
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3757
3758
|
attempt?: number;
|
|
3758
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3759
|
-
currentData?:
|
|
3759
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3760
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3760
3761
|
isUninitialized: false;
|
|
3761
3762
|
isLoading: false;
|
|
3762
3763
|
isFetching: false;
|
|
@@ -3765,14 +3766,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3765
3766
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3766
3767
|
isError: true;
|
|
3767
3768
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3769
|
+
platformKey?: string;
|
|
3768
3770
|
name?: string;
|
|
3769
3771
|
page?: number;
|
|
3770
3772
|
pageSize?: number;
|
|
3771
|
-
platformKey?: string;
|
|
3772
3773
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3773
3774
|
attempt?: number;
|
|
3774
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3775
|
-
currentData?:
|
|
3775
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3776
|
+
currentData?: PaginatedRbacRoleList | undefined;
|
|
3776
3777
|
isUninitialized: false;
|
|
3777
3778
|
isLoading: false;
|
|
3778
3779
|
isFetching: false;
|
|
@@ -3782,25 +3783,25 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3782
3783
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3783
3784
|
}) => R) | undefined;
|
|
3784
3785
|
}, "skip">) | undefined) => [(arg: {
|
|
3786
|
+
platformKey?: string;
|
|
3785
3787
|
name?: string;
|
|
3786
3788
|
page?: number;
|
|
3787
3789
|
pageSize?: number;
|
|
3788
|
-
platformKey?: string;
|
|
3789
3790
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3791
|
+
platformKey?: string;
|
|
3790
3792
|
name?: string;
|
|
3791
3793
|
page?: number;
|
|
3792
3794
|
pageSize?: number;
|
|
3793
|
-
platformKey?: string;
|
|
3794
3795
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3795
3796
|
attempt?: number;
|
|
3796
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3797
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", PaginatedRbacRoleList, "coreApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3797
3798
|
reset: () => void;
|
|
3798
3799
|
}, {
|
|
3799
3800
|
lastArg: {
|
|
3801
|
+
platformKey?: string;
|
|
3800
3802
|
name?: string;
|
|
3801
3803
|
page?: number;
|
|
3802
3804
|
pageSize?: number;
|
|
3803
|
-
platformKey?: string;
|
|
3804
3805
|
};
|
|
3805
3806
|
}], useCreateRbacRoleMutation: <R extends Record<string, any> = ({
|
|
3806
3807
|
requestId?: undefined;
|
|
@@ -3820,14 +3821,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3820
3821
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3821
3822
|
} & Omit<{
|
|
3822
3823
|
requestId: string;
|
|
3823
|
-
data?:
|
|
3824
|
+
data?: RbacRole | undefined;
|
|
3824
3825
|
error?: unknown;
|
|
3825
3826
|
endpointName: string;
|
|
3826
3827
|
startedTimeStamp: number;
|
|
3827
3828
|
fulfilledTimeStamp?: number;
|
|
3828
3829
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3829
3830
|
requestId: string;
|
|
3830
|
-
data?:
|
|
3831
|
+
data?: RbacRole | undefined;
|
|
3831
3832
|
error?: unknown;
|
|
3832
3833
|
endpointName: string;
|
|
3833
3834
|
startedTimeStamp: number;
|
|
@@ -3844,7 +3845,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3844
3845
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3845
3846
|
} & {
|
|
3846
3847
|
requestId: string;
|
|
3847
|
-
data?:
|
|
3848
|
+
data?: RbacRole | undefined;
|
|
3848
3849
|
error?: unknown;
|
|
3849
3850
|
endpointName: string;
|
|
3850
3851
|
startedTimeStamp: number;
|
|
@@ -3861,14 +3862,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3861
3862
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3862
3863
|
} & Omit<{
|
|
3863
3864
|
requestId: string;
|
|
3864
|
-
data?:
|
|
3865
|
+
data?: RbacRole | undefined;
|
|
3865
3866
|
error?: unknown;
|
|
3866
3867
|
endpointName: string;
|
|
3867
3868
|
startedTimeStamp: number;
|
|
3868
3869
|
fulfilledTimeStamp?: number;
|
|
3869
3870
|
}, "error"> & Required<Pick<{
|
|
3870
3871
|
requestId: string;
|
|
3871
|
-
data?:
|
|
3872
|
+
data?: RbacRole | undefined;
|
|
3872
3873
|
error?: unknown;
|
|
3873
3874
|
endpointName: string;
|
|
3874
3875
|
startedTimeStamp: number;
|
|
@@ -3898,14 +3899,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3898
3899
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3899
3900
|
} & Omit<{
|
|
3900
3901
|
requestId: string;
|
|
3901
|
-
data?:
|
|
3902
|
+
data?: RbacRole | undefined;
|
|
3902
3903
|
error?: unknown;
|
|
3903
3904
|
endpointName: string;
|
|
3904
3905
|
startedTimeStamp: number;
|
|
3905
3906
|
fulfilledTimeStamp?: number;
|
|
3906
3907
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3907
3908
|
requestId: string;
|
|
3908
|
-
data?:
|
|
3909
|
+
data?: RbacRole | undefined;
|
|
3909
3910
|
error?: unknown;
|
|
3910
3911
|
endpointName: string;
|
|
3911
3912
|
startedTimeStamp: number;
|
|
@@ -3922,7 +3923,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3922
3923
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3923
3924
|
} & {
|
|
3924
3925
|
requestId: string;
|
|
3925
|
-
data?:
|
|
3926
|
+
data?: RbacRole | undefined;
|
|
3926
3927
|
error?: unknown;
|
|
3927
3928
|
endpointName: string;
|
|
3928
3929
|
startedTimeStamp: number;
|
|
@@ -3939,14 +3940,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3939
3940
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3940
3941
|
} & Omit<{
|
|
3941
3942
|
requestId: string;
|
|
3942
|
-
data?:
|
|
3943
|
+
data?: RbacRole | undefined;
|
|
3943
3944
|
error?: unknown;
|
|
3944
3945
|
endpointName: string;
|
|
3945
3946
|
startedTimeStamp: number;
|
|
3946
3947
|
fulfilledTimeStamp?: number;
|
|
3947
3948
|
}, "error"> & Required<Pick<{
|
|
3948
3949
|
requestId: string;
|
|
3949
|
-
data?:
|
|
3950
|
+
data?: RbacRole | undefined;
|
|
3950
3951
|
error?: unknown;
|
|
3951
3952
|
endpointName: string;
|
|
3952
3953
|
startedTimeStamp: number;
|
|
@@ -3960,14 +3961,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3960
3961
|
})) => R) | undefined;
|
|
3961
3962
|
fixedCacheKey?: string;
|
|
3962
3963
|
} | undefined) => readonly [(arg: {
|
|
3963
|
-
requestBody:
|
|
3964
|
+
requestBody: RbacRole;
|
|
3964
3965
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3965
|
-
requestBody:
|
|
3966
|
+
requestBody: RbacRole;
|
|
3966
3967
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3967
3968
|
attempt?: number;
|
|
3968
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
3969
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3969
3970
|
originalArgs?: {
|
|
3970
|
-
requestBody:
|
|
3971
|
+
requestBody: RbacRole;
|
|
3971
3972
|
} | undefined;
|
|
3972
3973
|
reset: () => void;
|
|
3973
3974
|
}], useUpdateRbacRoleMutation: <R extends Record<string, any> = ({
|
|
@@ -3988,14 +3989,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3988
3989
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3989
3990
|
} & Omit<{
|
|
3990
3991
|
requestId: string;
|
|
3991
|
-
data?:
|
|
3992
|
+
data?: RbacRole | undefined;
|
|
3992
3993
|
error?: unknown;
|
|
3993
3994
|
endpointName: string;
|
|
3994
3995
|
startedTimeStamp: number;
|
|
3995
3996
|
fulfilledTimeStamp?: number;
|
|
3996
3997
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3997
3998
|
requestId: string;
|
|
3998
|
-
data?:
|
|
3999
|
+
data?: RbacRole | undefined;
|
|
3999
4000
|
error?: unknown;
|
|
4000
4001
|
endpointName: string;
|
|
4001
4002
|
startedTimeStamp: number;
|
|
@@ -4012,7 +4013,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4012
4013
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4013
4014
|
} & {
|
|
4014
4015
|
requestId: string;
|
|
4015
|
-
data?:
|
|
4016
|
+
data?: RbacRole | undefined;
|
|
4016
4017
|
error?: unknown;
|
|
4017
4018
|
endpointName: string;
|
|
4018
4019
|
startedTimeStamp: number;
|
|
@@ -4029,14 +4030,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4029
4030
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4030
4031
|
} & Omit<{
|
|
4031
4032
|
requestId: string;
|
|
4032
|
-
data?:
|
|
4033
|
+
data?: RbacRole | undefined;
|
|
4033
4034
|
error?: unknown;
|
|
4034
4035
|
endpointName: string;
|
|
4035
4036
|
startedTimeStamp: number;
|
|
4036
4037
|
fulfilledTimeStamp?: number;
|
|
4037
4038
|
}, "error"> & Required<Pick<{
|
|
4038
4039
|
requestId: string;
|
|
4039
|
-
data?:
|
|
4040
|
+
data?: RbacRole | undefined;
|
|
4040
4041
|
error?: unknown;
|
|
4041
4042
|
endpointName: string;
|
|
4042
4043
|
startedTimeStamp: number;
|
|
@@ -4066,14 +4067,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4066
4067
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4067
4068
|
} & Omit<{
|
|
4068
4069
|
requestId: string;
|
|
4069
|
-
data?:
|
|
4070
|
+
data?: RbacRole | undefined;
|
|
4070
4071
|
error?: unknown;
|
|
4071
4072
|
endpointName: string;
|
|
4072
4073
|
startedTimeStamp: number;
|
|
4073
4074
|
fulfilledTimeStamp?: number;
|
|
4074
4075
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4075
4076
|
requestId: string;
|
|
4076
|
-
data?:
|
|
4077
|
+
data?: RbacRole | undefined;
|
|
4077
4078
|
error?: unknown;
|
|
4078
4079
|
endpointName: string;
|
|
4079
4080
|
startedTimeStamp: number;
|
|
@@ -4090,7 +4091,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4090
4091
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4091
4092
|
} & {
|
|
4092
4093
|
requestId: string;
|
|
4093
|
-
data?:
|
|
4094
|
+
data?: RbacRole | undefined;
|
|
4094
4095
|
error?: unknown;
|
|
4095
4096
|
endpointName: string;
|
|
4096
4097
|
startedTimeStamp: number;
|
|
@@ -4107,14 +4108,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4107
4108
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4108
4109
|
} & Omit<{
|
|
4109
4110
|
requestId: string;
|
|
4110
|
-
data?:
|
|
4111
|
+
data?: RbacRole | undefined;
|
|
4111
4112
|
error?: unknown;
|
|
4112
4113
|
endpointName: string;
|
|
4113
4114
|
startedTimeStamp: number;
|
|
4114
4115
|
fulfilledTimeStamp?: number;
|
|
4115
4116
|
}, "error"> & Required<Pick<{
|
|
4116
4117
|
requestId: string;
|
|
4117
|
-
data?:
|
|
4118
|
+
data?: RbacRole | undefined;
|
|
4118
4119
|
error?: unknown;
|
|
4119
4120
|
endpointName: string;
|
|
4120
4121
|
startedTimeStamp: number;
|
|
@@ -4129,16 +4130,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4129
4130
|
fixedCacheKey?: string;
|
|
4130
4131
|
} | undefined) => readonly [(arg: {
|
|
4131
4132
|
id: number;
|
|
4132
|
-
requestBody:
|
|
4133
|
+
requestBody: RbacRole;
|
|
4133
4134
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4134
4135
|
id: number;
|
|
4135
|
-
requestBody:
|
|
4136
|
+
requestBody: RbacRole;
|
|
4136
4137
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4137
4138
|
attempt?: number;
|
|
4138
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
4139
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4139
4140
|
originalArgs?: {
|
|
4140
4141
|
id: number;
|
|
4141
|
-
requestBody:
|
|
4142
|
+
requestBody: RbacRole;
|
|
4142
4143
|
} | undefined;
|
|
4143
4144
|
reset: () => void;
|
|
4144
4145
|
}], usePartialUpdateRbacRoleMutation: <R extends Record<string, any> = ({
|
|
@@ -4159,14 +4160,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4159
4160
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4160
4161
|
} & Omit<{
|
|
4161
4162
|
requestId: string;
|
|
4162
|
-
data?:
|
|
4163
|
+
data?: RbacRole | undefined;
|
|
4163
4164
|
error?: unknown;
|
|
4164
4165
|
endpointName: string;
|
|
4165
4166
|
startedTimeStamp: number;
|
|
4166
4167
|
fulfilledTimeStamp?: number;
|
|
4167
4168
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4168
4169
|
requestId: string;
|
|
4169
|
-
data?:
|
|
4170
|
+
data?: RbacRole | undefined;
|
|
4170
4171
|
error?: unknown;
|
|
4171
4172
|
endpointName: string;
|
|
4172
4173
|
startedTimeStamp: number;
|
|
@@ -4183,7 +4184,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4183
4184
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4184
4185
|
} & {
|
|
4185
4186
|
requestId: string;
|
|
4186
|
-
data?:
|
|
4187
|
+
data?: RbacRole | undefined;
|
|
4187
4188
|
error?: unknown;
|
|
4188
4189
|
endpointName: string;
|
|
4189
4190
|
startedTimeStamp: number;
|
|
@@ -4200,14 +4201,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4200
4201
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4201
4202
|
} & Omit<{
|
|
4202
4203
|
requestId: string;
|
|
4203
|
-
data?:
|
|
4204
|
+
data?: RbacRole | undefined;
|
|
4204
4205
|
error?: unknown;
|
|
4205
4206
|
endpointName: string;
|
|
4206
4207
|
startedTimeStamp: number;
|
|
4207
4208
|
fulfilledTimeStamp?: number;
|
|
4208
4209
|
}, "error"> & Required<Pick<{
|
|
4209
4210
|
requestId: string;
|
|
4210
|
-
data?:
|
|
4211
|
+
data?: RbacRole | undefined;
|
|
4211
4212
|
error?: unknown;
|
|
4212
4213
|
endpointName: string;
|
|
4213
4214
|
startedTimeStamp: number;
|
|
@@ -4237,14 +4238,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4237
4238
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4238
4239
|
} & Omit<{
|
|
4239
4240
|
requestId: string;
|
|
4240
|
-
data?:
|
|
4241
|
+
data?: RbacRole | undefined;
|
|
4241
4242
|
error?: unknown;
|
|
4242
4243
|
endpointName: string;
|
|
4243
4244
|
startedTimeStamp: number;
|
|
4244
4245
|
fulfilledTimeStamp?: number;
|
|
4245
4246
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4246
4247
|
requestId: string;
|
|
4247
|
-
data?:
|
|
4248
|
+
data?: RbacRole | undefined;
|
|
4248
4249
|
error?: unknown;
|
|
4249
4250
|
endpointName: string;
|
|
4250
4251
|
startedTimeStamp: number;
|
|
@@ -4261,7 +4262,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4261
4262
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4262
4263
|
} & {
|
|
4263
4264
|
requestId: string;
|
|
4264
|
-
data?:
|
|
4265
|
+
data?: RbacRole | undefined;
|
|
4265
4266
|
error?: unknown;
|
|
4266
4267
|
endpointName: string;
|
|
4267
4268
|
startedTimeStamp: number;
|
|
@@ -4278,14 +4279,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4278
4279
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4279
4280
|
} & Omit<{
|
|
4280
4281
|
requestId: string;
|
|
4281
|
-
data?:
|
|
4282
|
+
data?: RbacRole | undefined;
|
|
4282
4283
|
error?: unknown;
|
|
4283
4284
|
endpointName: string;
|
|
4284
4285
|
startedTimeStamp: number;
|
|
4285
4286
|
fulfilledTimeStamp?: number;
|
|
4286
4287
|
}, "error"> & Required<Pick<{
|
|
4287
4288
|
requestId: string;
|
|
4288
|
-
data?:
|
|
4289
|
+
data?: RbacRole | undefined;
|
|
4289
4290
|
error?: unknown;
|
|
4290
4291
|
endpointName: string;
|
|
4291
4292
|
startedTimeStamp: number;
|
|
@@ -4300,16 +4301,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4300
4301
|
fixedCacheKey?: string;
|
|
4301
4302
|
} | undefined) => readonly [(arg: {
|
|
4302
4303
|
id: number;
|
|
4303
|
-
requestBody?:
|
|
4304
|
+
requestBody?: PatchedRbacRole;
|
|
4304
4305
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4305
4306
|
id: number;
|
|
4306
|
-
requestBody?:
|
|
4307
|
+
requestBody?: PatchedRbacRole;
|
|
4307
4308
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4308
4309
|
attempt?: number;
|
|
4309
|
-
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess",
|
|
4310
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4310
4311
|
originalArgs?: {
|
|
4311
4312
|
id: number;
|
|
4312
|
-
requestBody?:
|
|
4313
|
+
requestBody?: PatchedRbacRole;
|
|
4313
4314
|
} | undefined;
|
|
4314
4315
|
reset: () => void;
|
|
4315
4316
|
}], useDeleteRbacRoleMutation: <R extends Record<string, any> = ({
|