@iblai/data-layer 1.0.0 → 1.1.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/index.d.ts +664 -462
- package/dist/index.esm.js +1167 -249
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1167 -249
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -2
- package/dist/src/features/core/api-slice.d.ts +110 -0
- package/dist/src/features/credentials/api-slice.d.ts +44 -22
- package/dist/src/features/mentor/api-slice.d.ts +70 -22
- package/dist/src/features/stripe/api-slice.d.ts +22 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/data-layer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "ibl.ai data layer",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"format:check": "prettier --check .",
|
|
28
28
|
"lint": "eslint --fix",
|
|
29
29
|
"lint:check": "eslint",
|
|
30
|
-
"typecheck": "tsc --noEmit"
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm run build"
|
|
31
32
|
},
|
|
32
33
|
"keywords": [
|
|
33
34
|
"web",
|
|
@@ -23,11 +23,14 @@ export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("
|
|
|
23
23
|
requestBody: import("@iblai/iblai-api").SetStudentMentorCreationPermission;
|
|
24
24
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>;
|
|
25
25
|
getRbacGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
|
+
email?: string;
|
|
26
27
|
includeUsers?: boolean;
|
|
28
|
+
name?: string;
|
|
27
29
|
owner?: string;
|
|
28
30
|
page?: number;
|
|
29
31
|
pageSize?: number;
|
|
30
32
|
platformKey?: string;
|
|
33
|
+
username?: string;
|
|
31
34
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>;
|
|
32
35
|
createRbacGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
33
36
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
@@ -44,10 +47,16 @@ export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("
|
|
|
44
47
|
id: number;
|
|
45
48
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", CustomRbacGroupDetailsResponse, "coreApiSlice", any>;
|
|
46
49
|
getRbacPolicies: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
50
|
+
email?: string;
|
|
51
|
+
group?: string;
|
|
52
|
+
includeGroups?: boolean;
|
|
53
|
+
includeUsers?: boolean;
|
|
54
|
+
name?: string;
|
|
47
55
|
page?: number;
|
|
48
56
|
pageSize?: number;
|
|
49
57
|
platformKey?: string;
|
|
50
58
|
roleId?: number;
|
|
59
|
+
username?: string;
|
|
51
60
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>;
|
|
52
61
|
createRbacPolicy: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
53
62
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
@@ -65,6 +74,7 @@ export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("
|
|
|
65
74
|
id: number;
|
|
66
75
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>;
|
|
67
76
|
getRbacRoles: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
77
|
+
name?: string;
|
|
68
78
|
page?: number;
|
|
69
79
|
pageSize?: number;
|
|
70
80
|
platformKey?: string;
|
|
@@ -1405,11 +1415,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1405
1415
|
}, "isUninitialized"> & {
|
|
1406
1416
|
isUninitialized: true;
|
|
1407
1417
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1418
|
+
email?: string;
|
|
1408
1419
|
includeUsers?: boolean;
|
|
1420
|
+
name?: string;
|
|
1409
1421
|
owner?: string;
|
|
1410
1422
|
page?: number;
|
|
1411
1423
|
pageSize?: number;
|
|
1412
1424
|
platformKey?: string;
|
|
1425
|
+
username?: string;
|
|
1413
1426
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1414
1427
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1415
1428
|
isUninitialized: false;
|
|
@@ -1426,11 +1439,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1426
1439
|
isFetching: true;
|
|
1427
1440
|
error: undefined;
|
|
1428
1441
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1442
|
+
email?: string;
|
|
1429
1443
|
includeUsers?: boolean;
|
|
1444
|
+
name?: string;
|
|
1430
1445
|
owner?: string;
|
|
1431
1446
|
page?: number;
|
|
1432
1447
|
pageSize?: number;
|
|
1433
1448
|
platformKey?: string;
|
|
1449
|
+
username?: string;
|
|
1434
1450
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1435
1451
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1436
1452
|
isUninitialized: false;
|
|
@@ -1443,11 +1459,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1443
1459
|
isFetching: false;
|
|
1444
1460
|
error: undefined;
|
|
1445
1461
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1462
|
+
email?: string;
|
|
1446
1463
|
includeUsers?: boolean;
|
|
1464
|
+
name?: string;
|
|
1447
1465
|
owner?: string;
|
|
1448
1466
|
page?: number;
|
|
1449
1467
|
pageSize?: number;
|
|
1450
1468
|
platformKey?: string;
|
|
1469
|
+
username?: string;
|
|
1451
1470
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1452
1471
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1453
1472
|
isUninitialized: false;
|
|
@@ -1458,11 +1477,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1458
1477
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1459
1478
|
isError: true;
|
|
1460
1479
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1480
|
+
email?: string;
|
|
1461
1481
|
includeUsers?: boolean;
|
|
1482
|
+
name?: string;
|
|
1462
1483
|
owner?: string;
|
|
1463
1484
|
page?: number;
|
|
1464
1485
|
pageSize?: number;
|
|
1465
1486
|
platformKey?: string;
|
|
1487
|
+
username?: string;
|
|
1466
1488
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1467
1489
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1468
1490
|
isUninitialized: false;
|
|
@@ -1473,11 +1495,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1473
1495
|
}, "error">>)>> & {
|
|
1474
1496
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1475
1497
|
}>(arg: {
|
|
1498
|
+
email?: string;
|
|
1476
1499
|
includeUsers?: boolean;
|
|
1500
|
+
name?: string;
|
|
1477
1501
|
owner?: string;
|
|
1478
1502
|
page?: number;
|
|
1479
1503
|
pageSize?: number;
|
|
1480
1504
|
platformKey?: string;
|
|
1505
|
+
username?: string;
|
|
1481
1506
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1482
1507
|
skip?: boolean;
|
|
1483
1508
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -1502,11 +1527,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1502
1527
|
}, "isUninitialized"> & {
|
|
1503
1528
|
isUninitialized: true;
|
|
1504
1529
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1530
|
+
email?: string;
|
|
1505
1531
|
includeUsers?: boolean;
|
|
1532
|
+
name?: string;
|
|
1506
1533
|
owner?: string;
|
|
1507
1534
|
page?: number;
|
|
1508
1535
|
pageSize?: number;
|
|
1509
1536
|
platformKey?: string;
|
|
1537
|
+
username?: string;
|
|
1510
1538
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1511
1539
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1512
1540
|
isUninitialized: false;
|
|
@@ -1523,11 +1551,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1523
1551
|
isFetching: true;
|
|
1524
1552
|
error: undefined;
|
|
1525
1553
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1554
|
+
email?: string;
|
|
1526
1555
|
includeUsers?: boolean;
|
|
1556
|
+
name?: string;
|
|
1527
1557
|
owner?: string;
|
|
1528
1558
|
page?: number;
|
|
1529
1559
|
pageSize?: number;
|
|
1530
1560
|
platformKey?: string;
|
|
1561
|
+
username?: string;
|
|
1531
1562
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1532
1563
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1533
1564
|
isUninitialized: false;
|
|
@@ -1540,11 +1571,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1540
1571
|
isFetching: false;
|
|
1541
1572
|
error: undefined;
|
|
1542
1573
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1574
|
+
email?: string;
|
|
1543
1575
|
includeUsers?: boolean;
|
|
1576
|
+
name?: string;
|
|
1544
1577
|
owner?: string;
|
|
1545
1578
|
page?: number;
|
|
1546
1579
|
pageSize?: number;
|
|
1547
1580
|
platformKey?: string;
|
|
1581
|
+
username?: string;
|
|
1548
1582
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1549
1583
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1550
1584
|
isUninitialized: false;
|
|
@@ -1555,11 +1589,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1555
1589
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1556
1590
|
isError: true;
|
|
1557
1591
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1592
|
+
email?: string;
|
|
1558
1593
|
includeUsers?: boolean;
|
|
1594
|
+
name?: string;
|
|
1559
1595
|
owner?: string;
|
|
1560
1596
|
page?: number;
|
|
1561
1597
|
pageSize?: number;
|
|
1562
1598
|
platformKey?: string;
|
|
1599
|
+
username?: string;
|
|
1563
1600
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1564
1601
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1565
1602
|
isUninitialized: false;
|
|
@@ -1572,11 +1609,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1572
1609
|
}) => R) | undefined;
|
|
1573
1610
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1574
1611
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1612
|
+
email?: string;
|
|
1575
1613
|
includeUsers?: boolean;
|
|
1614
|
+
name?: string;
|
|
1576
1615
|
owner?: string;
|
|
1577
1616
|
page?: number;
|
|
1578
1617
|
pageSize?: number;
|
|
1579
1618
|
platformKey?: string;
|
|
1619
|
+
username?: string;
|
|
1580
1620
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>>;
|
|
1581
1621
|
}, useCreateRbacGroupMutation: <R extends Record<string, any> = ({
|
|
1582
1622
|
requestId?: undefined;
|
|
@@ -2253,10 +2293,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2253
2293
|
}, "isUninitialized"> & {
|
|
2254
2294
|
isUninitialized: true;
|
|
2255
2295
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2296
|
+
email?: string;
|
|
2297
|
+
group?: string;
|
|
2298
|
+
includeGroups?: boolean;
|
|
2299
|
+
includeUsers?: boolean;
|
|
2300
|
+
name?: string;
|
|
2256
2301
|
page?: number;
|
|
2257
2302
|
pageSize?: number;
|
|
2258
2303
|
platformKey?: string;
|
|
2259
2304
|
roleId?: number;
|
|
2305
|
+
username?: string;
|
|
2260
2306
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2261
2307
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2262
2308
|
isUninitialized: false;
|
|
@@ -2273,10 +2319,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2273
2319
|
isFetching: true;
|
|
2274
2320
|
error: undefined;
|
|
2275
2321
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2322
|
+
email?: string;
|
|
2323
|
+
group?: string;
|
|
2324
|
+
includeGroups?: boolean;
|
|
2325
|
+
includeUsers?: boolean;
|
|
2326
|
+
name?: string;
|
|
2276
2327
|
page?: number;
|
|
2277
2328
|
pageSize?: number;
|
|
2278
2329
|
platformKey?: string;
|
|
2279
2330
|
roleId?: number;
|
|
2331
|
+
username?: string;
|
|
2280
2332
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2281
2333
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2282
2334
|
isUninitialized: false;
|
|
@@ -2289,10 +2341,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2289
2341
|
isFetching: false;
|
|
2290
2342
|
error: undefined;
|
|
2291
2343
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2344
|
+
email?: string;
|
|
2345
|
+
group?: string;
|
|
2346
|
+
includeGroups?: boolean;
|
|
2347
|
+
includeUsers?: boolean;
|
|
2348
|
+
name?: string;
|
|
2292
2349
|
page?: number;
|
|
2293
2350
|
pageSize?: number;
|
|
2294
2351
|
platformKey?: string;
|
|
2295
2352
|
roleId?: number;
|
|
2353
|
+
username?: string;
|
|
2296
2354
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2297
2355
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2298
2356
|
isUninitialized: false;
|
|
@@ -2303,10 +2361,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2303
2361
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2304
2362
|
isError: true;
|
|
2305
2363
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2364
|
+
email?: string;
|
|
2365
|
+
group?: string;
|
|
2366
|
+
includeGroups?: boolean;
|
|
2367
|
+
includeUsers?: boolean;
|
|
2368
|
+
name?: string;
|
|
2306
2369
|
page?: number;
|
|
2307
2370
|
pageSize?: number;
|
|
2308
2371
|
platformKey?: string;
|
|
2309
2372
|
roleId?: number;
|
|
2373
|
+
username?: string;
|
|
2310
2374
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2311
2375
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2312
2376
|
isUninitialized: false;
|
|
@@ -2317,10 +2381,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2317
2381
|
}, "error">>)>> & {
|
|
2318
2382
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2319
2383
|
}>(arg: {
|
|
2384
|
+
email?: string;
|
|
2385
|
+
group?: string;
|
|
2386
|
+
includeGroups?: boolean;
|
|
2387
|
+
includeUsers?: boolean;
|
|
2388
|
+
name?: string;
|
|
2320
2389
|
page?: number;
|
|
2321
2390
|
pageSize?: number;
|
|
2322
2391
|
platformKey?: string;
|
|
2323
2392
|
roleId?: number;
|
|
2393
|
+
username?: string;
|
|
2324
2394
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2325
2395
|
skip?: boolean;
|
|
2326
2396
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -2345,10 +2415,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2345
2415
|
}, "isUninitialized"> & {
|
|
2346
2416
|
isUninitialized: true;
|
|
2347
2417
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2418
|
+
email?: string;
|
|
2419
|
+
group?: string;
|
|
2420
|
+
includeGroups?: boolean;
|
|
2421
|
+
includeUsers?: boolean;
|
|
2422
|
+
name?: string;
|
|
2348
2423
|
page?: number;
|
|
2349
2424
|
pageSize?: number;
|
|
2350
2425
|
platformKey?: string;
|
|
2351
2426
|
roleId?: number;
|
|
2427
|
+
username?: string;
|
|
2352
2428
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2353
2429
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2354
2430
|
isUninitialized: false;
|
|
@@ -2365,10 +2441,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2365
2441
|
isFetching: true;
|
|
2366
2442
|
error: undefined;
|
|
2367
2443
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2444
|
+
email?: string;
|
|
2445
|
+
group?: string;
|
|
2446
|
+
includeGroups?: boolean;
|
|
2447
|
+
includeUsers?: boolean;
|
|
2448
|
+
name?: string;
|
|
2368
2449
|
page?: number;
|
|
2369
2450
|
pageSize?: number;
|
|
2370
2451
|
platformKey?: string;
|
|
2371
2452
|
roleId?: number;
|
|
2453
|
+
username?: string;
|
|
2372
2454
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2373
2455
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2374
2456
|
isUninitialized: false;
|
|
@@ -2381,10 +2463,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2381
2463
|
isFetching: false;
|
|
2382
2464
|
error: undefined;
|
|
2383
2465
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2466
|
+
email?: string;
|
|
2467
|
+
group?: string;
|
|
2468
|
+
includeGroups?: boolean;
|
|
2469
|
+
includeUsers?: boolean;
|
|
2470
|
+
name?: string;
|
|
2384
2471
|
page?: number;
|
|
2385
2472
|
pageSize?: number;
|
|
2386
2473
|
platformKey?: string;
|
|
2387
2474
|
roleId?: number;
|
|
2475
|
+
username?: string;
|
|
2388
2476
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2389
2477
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2390
2478
|
isUninitialized: false;
|
|
@@ -2395,10 +2483,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2395
2483
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2396
2484
|
isError: true;
|
|
2397
2485
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2486
|
+
email?: string;
|
|
2487
|
+
group?: string;
|
|
2488
|
+
includeGroups?: boolean;
|
|
2489
|
+
includeUsers?: boolean;
|
|
2490
|
+
name?: string;
|
|
2398
2491
|
page?: number;
|
|
2399
2492
|
pageSize?: number;
|
|
2400
2493
|
platformKey?: string;
|
|
2401
2494
|
roleId?: number;
|
|
2495
|
+
username?: string;
|
|
2402
2496
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2403
2497
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2404
2498
|
isUninitialized: false;
|
|
@@ -2411,10 +2505,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2411
2505
|
}) => R) | undefined;
|
|
2412
2506
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2413
2507
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2508
|
+
email?: string;
|
|
2509
|
+
group?: string;
|
|
2510
|
+
includeGroups?: boolean;
|
|
2511
|
+
includeUsers?: boolean;
|
|
2512
|
+
name?: string;
|
|
2414
2513
|
page?: number;
|
|
2415
2514
|
pageSize?: number;
|
|
2416
2515
|
platformKey?: string;
|
|
2417
2516
|
roleId?: number;
|
|
2517
|
+
username?: string;
|
|
2418
2518
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>>;
|
|
2419
2519
|
}, useCreateRbacPolicyMutation: <R extends Record<string, any> = ({
|
|
2420
2520
|
requestId?: undefined;
|
|
@@ -3101,6 +3201,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3101
3201
|
}, "isUninitialized"> & {
|
|
3102
3202
|
isUninitialized: true;
|
|
3103
3203
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3204
|
+
name?: string;
|
|
3104
3205
|
page?: number;
|
|
3105
3206
|
pageSize?: number;
|
|
3106
3207
|
platformKey?: string;
|
|
@@ -3120,6 +3221,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3120
3221
|
isFetching: true;
|
|
3121
3222
|
error: undefined;
|
|
3122
3223
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3224
|
+
name?: string;
|
|
3123
3225
|
page?: number;
|
|
3124
3226
|
pageSize?: number;
|
|
3125
3227
|
platformKey?: string;
|
|
@@ -3135,6 +3237,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3135
3237
|
isFetching: false;
|
|
3136
3238
|
error: undefined;
|
|
3137
3239
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3240
|
+
name?: string;
|
|
3138
3241
|
page?: number;
|
|
3139
3242
|
pageSize?: number;
|
|
3140
3243
|
platformKey?: string;
|
|
@@ -3148,6 +3251,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3148
3251
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3149
3252
|
isError: true;
|
|
3150
3253
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3254
|
+
name?: string;
|
|
3151
3255
|
page?: number;
|
|
3152
3256
|
pageSize?: number;
|
|
3153
3257
|
platformKey?: string;
|
|
@@ -3161,6 +3265,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3161
3265
|
}, "error">>)>> & {
|
|
3162
3266
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3163
3267
|
}>(arg: {
|
|
3268
|
+
name?: string;
|
|
3164
3269
|
page?: number;
|
|
3165
3270
|
pageSize?: number;
|
|
3166
3271
|
platformKey?: string;
|
|
@@ -3188,6 +3293,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3188
3293
|
}, "isUninitialized"> & {
|
|
3189
3294
|
isUninitialized: true;
|
|
3190
3295
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3296
|
+
name?: string;
|
|
3191
3297
|
page?: number;
|
|
3192
3298
|
pageSize?: number;
|
|
3193
3299
|
platformKey?: string;
|
|
@@ -3207,6 +3313,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3207
3313
|
isFetching: true;
|
|
3208
3314
|
error: undefined;
|
|
3209
3315
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3316
|
+
name?: string;
|
|
3210
3317
|
page?: number;
|
|
3211
3318
|
pageSize?: number;
|
|
3212
3319
|
platformKey?: string;
|
|
@@ -3222,6 +3329,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3222
3329
|
isFetching: false;
|
|
3223
3330
|
error: undefined;
|
|
3224
3331
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3332
|
+
name?: string;
|
|
3225
3333
|
page?: number;
|
|
3226
3334
|
pageSize?: number;
|
|
3227
3335
|
platformKey?: string;
|
|
@@ -3235,6 +3343,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3235
3343
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3236
3344
|
isError: true;
|
|
3237
3345
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3346
|
+
name?: string;
|
|
3238
3347
|
page?: number;
|
|
3239
3348
|
pageSize?: number;
|
|
3240
3349
|
platformKey?: string;
|
|
@@ -3250,6 +3359,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3250
3359
|
}) => R) | undefined;
|
|
3251
3360
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3252
3361
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3362
|
+
name?: string;
|
|
3253
3363
|
page?: number;
|
|
3254
3364
|
pageSize?: number;
|
|
3255
3365
|
platformKey?: string;
|