@iblai/data-layer 0.0.5 → 0.3.0
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 +65009 -23
- package/dist/index.esm.js +29131 -16819
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29475 -16817
- package/dist/index.js.map +1 -1
- package/dist/package.json +84 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +3357 -0
- package/dist/src/features/analytics/constants.d.ts +121 -0
- package/dist/src/features/analytics/types.d.ts +426 -0
- package/dist/src/features/api-keys/api-slice.d.ts +94 -34
- package/dist/{features/api-keys → src/features/apps}/api-slice.d.ts +156 -78
- package/dist/src/features/auth/api-slice.d.ts +639 -0
- package/dist/src/features/auth/constants.d.ts +20 -0
- package/dist/src/features/auth/types.d.ts +33 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/src/features/career/api-slice.d.ts +2852 -0
- package/dist/src/features/catalog/api-slice.d.ts +8618 -1
- package/dist/src/features/chat/api-slice.d.ts +1567 -32
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/{features/core → src/features/chat-files}/api-slice.d.ts +47 -26
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +518 -244
- package/dist/src/features/core/api-slice.d.ts +4261 -5
- package/dist/src/features/core/constants.d.ts +47 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +2343 -84
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +352 -43
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +89 -23
- package/dist/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +4126 -146
- package/dist/src/features/mentor/constants.d.ts +39 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +796 -0
- package/dist/src/features/mentor/types.d.ts +77 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +463 -23
- package/dist/src/features/notifications/api-slice.d.ts +1600 -0
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +944 -70
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +1357 -73
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/{features/prompts/api-slice.d.ts → src/features/search/ai-search-api-slice.d.ts} +161 -160
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +505 -65
- package/dist/src/features/stripe/api-slice.d.ts +781 -0
- package/dist/src/features/stripe/constants.d.ts +19 -0
- package/dist/src/features/stripe/types.d.ts +19 -0
- package/dist/src/features/tenant/api-slice.d.ts +261 -47
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +133 -23
- package/dist/src/features/training-documents/api-slice.d.ts +731 -52
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +32 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +346 -56
- package/dist/src/features/utils.d.ts +31 -8
- package/dist/src/index.d.ts +78 -23
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +2 -0
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/api-slice.test.d.ts +1 -0
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +26 -15
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features/catalog/api-slice.d.ts → src/__tests__/constants.test.d.ts} +0 -0
- /package/dist/{features → src/features}/constants.d.ts +0 -0
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
export declare const apiKeysApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2
|
-
getApiKeys: import("@reduxjs/toolkit/query").QueryDefinition<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
export declare const apiKeysApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
|
+
getApiKeys: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
platformKey: string;
|
|
4
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>;
|
|
5
|
+
createApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6
|
+
requestBody: import("@iblai/iblai-api").PlatformApiKey;
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey, "apiKeysApiSlice", any>;
|
|
8
|
+
deleteApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
9
|
+
name: string;
|
|
10
|
+
platformKey: string;
|
|
11
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", void, "apiKeysApiSlice", any>;
|
|
12
|
+
}, "apiKeysApiSlice", "apiKeys", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
|
+
export declare const apiKeysApiReducer: typeof apiKeysApiSlice.reducer;
|
|
11
14
|
export declare const useGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
12
15
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
13
16
|
originalArgs?: undefined | undefined;
|
|
@@ -26,7 +29,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
26
29
|
isError: false;
|
|
27
30
|
}, "isUninitialized"> & {
|
|
28
31
|
isUninitialized: true;
|
|
29
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
32
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
33
|
+
platformKey: string;
|
|
34
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
30
35
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
31
36
|
isUninitialized: false;
|
|
32
37
|
isLoading: false;
|
|
@@ -41,7 +46,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
41
46
|
isSuccess: true;
|
|
42
47
|
isFetching: true;
|
|
43
48
|
error: undefined;
|
|
44
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
49
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
50
|
+
platformKey: string;
|
|
51
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
45
52
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
46
53
|
isUninitialized: false;
|
|
47
54
|
isLoading: false;
|
|
@@ -52,7 +59,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
52
59
|
isSuccess: true;
|
|
53
60
|
isFetching: false;
|
|
54
61
|
error: undefined;
|
|
55
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
62
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
63
|
+
platformKey: string;
|
|
64
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
56
65
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
57
66
|
isUninitialized: false;
|
|
58
67
|
isLoading: false;
|
|
@@ -61,7 +70,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
61
70
|
isError: false;
|
|
62
71
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
63
72
|
isError: true;
|
|
64
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
73
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
74
|
+
platformKey: string;
|
|
75
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
65
76
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
66
77
|
isUninitialized: false;
|
|
67
78
|
isLoading: false;
|
|
@@ -70,7 +81,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
70
81
|
isError: false;
|
|
71
82
|
}, "error">>)>> & {
|
|
72
83
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
73
|
-
}>(arg:
|
|
84
|
+
}>(arg: {
|
|
85
|
+
platformKey: string;
|
|
86
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
74
87
|
skip?: boolean;
|
|
75
88
|
refetchOnMountOrArgChange?: boolean | number;
|
|
76
89
|
} & {
|
|
@@ -93,7 +106,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
93
106
|
isError: false;
|
|
94
107
|
}, "isUninitialized"> & {
|
|
95
108
|
isUninitialized: true;
|
|
96
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
109
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
110
|
+
platformKey: string;
|
|
111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
97
112
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
98
113
|
isUninitialized: false;
|
|
99
114
|
isLoading: false;
|
|
@@ -108,7 +123,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
108
123
|
isSuccess: true;
|
|
109
124
|
isFetching: true;
|
|
110
125
|
error: undefined;
|
|
111
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
126
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
127
|
+
platformKey: string;
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
112
129
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
113
130
|
isUninitialized: false;
|
|
114
131
|
isLoading: false;
|
|
@@ -119,7 +136,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
119
136
|
isSuccess: true;
|
|
120
137
|
isFetching: false;
|
|
121
138
|
error: undefined;
|
|
122
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
139
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
|
+
platformKey: string;
|
|
141
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
123
142
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
124
143
|
isUninitialized: false;
|
|
125
144
|
isLoading: false;
|
|
@@ -128,7 +147,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
128
147
|
isError: false;
|
|
129
148
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
130
149
|
isError: true;
|
|
131
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
150
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
151
|
+
platformKey: string;
|
|
152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
132
153
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
133
154
|
isUninitialized: false;
|
|
134
155
|
isLoading: false;
|
|
@@ -139,7 +160,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
139
160
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
140
161
|
}) => R) | undefined;
|
|
141
162
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
142
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
163
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
164
|
+
platformKey: string;
|
|
165
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>>;
|
|
143
166
|
}, useLazyGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
144
167
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
145
168
|
originalArgs?: undefined | undefined;
|
|
@@ -158,7 +181,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
158
181
|
isError: false;
|
|
159
182
|
}, "isUninitialized"> & {
|
|
160
183
|
isUninitialized: true;
|
|
161
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
184
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
185
|
+
platformKey: string;
|
|
186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
162
187
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
163
188
|
isUninitialized: false;
|
|
164
189
|
isLoading: false;
|
|
@@ -173,7 +198,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
173
198
|
isSuccess: true;
|
|
174
199
|
isFetching: true;
|
|
175
200
|
error: undefined;
|
|
176
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
201
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
202
|
+
platformKey: string;
|
|
203
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
177
204
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
178
205
|
isUninitialized: false;
|
|
179
206
|
isLoading: false;
|
|
@@ -184,7 +211,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
184
211
|
isSuccess: true;
|
|
185
212
|
isFetching: false;
|
|
186
213
|
error: undefined;
|
|
187
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
214
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
215
|
+
platformKey: string;
|
|
216
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
188
217
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
189
218
|
isUninitialized: false;
|
|
190
219
|
isLoading: false;
|
|
@@ -193,7 +222,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
193
222
|
isError: false;
|
|
194
223
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
195
224
|
isError: true;
|
|
196
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
225
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
226
|
+
platformKey: string;
|
|
227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
197
228
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
198
229
|
isUninitialized: false;
|
|
199
230
|
isLoading: false;
|
|
@@ -222,7 +253,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
222
253
|
isError: false;
|
|
223
254
|
}, "isUninitialized"> & {
|
|
224
255
|
isUninitialized: true;
|
|
225
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
256
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
257
|
+
platformKey: string;
|
|
258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
226
259
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
227
260
|
isUninitialized: false;
|
|
228
261
|
isLoading: false;
|
|
@@ -237,7 +270,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
237
270
|
isSuccess: true;
|
|
238
271
|
isFetching: true;
|
|
239
272
|
error: undefined;
|
|
240
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
273
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
274
|
+
platformKey: string;
|
|
275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
241
276
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
242
277
|
isUninitialized: false;
|
|
243
278
|
isLoading: false;
|
|
@@ -248,7 +283,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
248
283
|
isSuccess: true;
|
|
249
284
|
isFetching: false;
|
|
250
285
|
error: undefined;
|
|
251
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
286
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
287
|
+
platformKey: string;
|
|
288
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
252
289
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
253
290
|
isUninitialized: false;
|
|
254
291
|
isLoading: false;
|
|
@@ -257,7 +294,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
257
294
|
isError: false;
|
|
258
295
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
259
296
|
isError: true;
|
|
260
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
297
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
298
|
+
platformKey: string;
|
|
299
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
261
300
|
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
262
301
|
isUninitialized: false;
|
|
263
302
|
isLoading: false;
|
|
@@ -267,10 +306,16 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
267
306
|
}, "error">>)>> & {
|
|
268
307
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
269
308
|
}) => R) | undefined;
|
|
270
|
-
}, "skip">) | undefined) => [(arg:
|
|
309
|
+
}, "skip">) | undefined) => [(arg: {
|
|
310
|
+
platformKey: string;
|
|
311
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
312
|
+
platformKey: string;
|
|
313
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
271
314
|
reset: () => void;
|
|
272
315
|
}, {
|
|
273
|
-
lastArg:
|
|
316
|
+
lastArg: {
|
|
317
|
+
platformKey: string;
|
|
318
|
+
};
|
|
274
319
|
}], useCreateApiKeyMutation: <R extends Record<string, any> = ({
|
|
275
320
|
requestId?: undefined;
|
|
276
321
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -428,8 +473,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
428
473
|
isError: true;
|
|
429
474
|
})) => R) | undefined;
|
|
430
475
|
fixedCacheKey?: string;
|
|
431
|
-
} | undefined) => readonly [(arg:
|
|
432
|
-
|
|
476
|
+
} | undefined) => readonly [(arg: {
|
|
477
|
+
requestBody: import("@iblai/iblai-api").PlatformApiKey;
|
|
478
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
479
|
+
requestBody: import("@iblai/iblai-api").PlatformApiKey;
|
|
480
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey, "apiKeysApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
481
|
+
originalArgs?: {
|
|
482
|
+
requestBody: import("@iblai/iblai-api").PlatformApiKey;
|
|
483
|
+
} | undefined;
|
|
433
484
|
reset: () => void;
|
|
434
485
|
}], useDeleteApiKeyMutation: <R extends Record<string, any> = ({
|
|
435
486
|
requestId?: undefined;
|
|
@@ -588,7 +639,16 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
588
639
|
isError: true;
|
|
589
640
|
})) => R) | undefined;
|
|
590
641
|
fixedCacheKey?: string;
|
|
591
|
-
} | undefined) => readonly [(arg:
|
|
592
|
-
|
|
642
|
+
} | undefined) => readonly [(arg: {
|
|
643
|
+
name: string;
|
|
644
|
+
platformKey: string;
|
|
645
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
646
|
+
name: string;
|
|
647
|
+
platformKey: string;
|
|
648
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", void, "apiKeysApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
649
|
+
originalArgs?: {
|
|
650
|
+
name: string;
|
|
651
|
+
platformKey: string;
|
|
652
|
+
} | undefined;
|
|
593
653
|
reset: () => void;
|
|
594
654
|
}];
|