@iblai/web-utils 0.2.0 → 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/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -22
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,27 +1,16 @@
|
|
|
1
|
-
export declare const apiKeysApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
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
2
|
getApiKeys: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
platformKey: string;
|
|
4
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>;
|
|
5
5
|
createApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6
|
-
requestBody: import("
|
|
7
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
6
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey, "apiKeysApiSlice", any>;
|
|
8
8
|
deleteApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
9
9
|
name: string;
|
|
10
10
|
platformKey: string;
|
|
11
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
11
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", void, "apiKeysApiSlice", any>;
|
|
12
12
|
}, "apiKeysApiSlice", "apiKeys", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
|
-
export declare const apiKeysApiReducer:
|
|
14
|
-
getApiKeys: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
15
|
-
platformKey: string;
|
|
16
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>;
|
|
17
|
-
createApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
18
|
-
requestBody: import("@iblai/iblai-api").PlatformApiKey;
|
|
19
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey, "apiKeysApiSlice", any>;
|
|
20
|
-
deleteApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
21
|
-
name: string;
|
|
22
|
-
platformKey: string;
|
|
23
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", void, "apiKeysApiSlice", any>;
|
|
24
|
-
}, "apiKeys", "apiKeysApiSlice">, import("@reduxjs/toolkit").UnknownAction>;
|
|
13
|
+
export declare const apiKeysApiReducer: typeof apiKeysApiSlice.reducer;
|
|
25
14
|
export declare const useGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
26
15
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
27
16
|
originalArgs?: undefined | undefined;
|
|
@@ -32,7 +21,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
32
21
|
startedTimeStamp?: undefined | undefined;
|
|
33
22
|
fulfilledTimeStamp?: undefined | undefined;
|
|
34
23
|
} & {
|
|
35
|
-
currentData?: import("
|
|
24
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
36
25
|
isUninitialized: false;
|
|
37
26
|
isLoading: false;
|
|
38
27
|
isFetching: false;
|
|
@@ -42,8 +31,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
42
31
|
isUninitialized: true;
|
|
43
32
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
33
|
platformKey: string;
|
|
45
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
46
|
-
currentData?: import("
|
|
34
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
35
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
47
36
|
isUninitialized: false;
|
|
48
37
|
isLoading: false;
|
|
49
38
|
isFetching: false;
|
|
@@ -59,8 +48,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
59
48
|
error: undefined;
|
|
60
49
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
61
50
|
platformKey: string;
|
|
62
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
63
|
-
currentData?: import("
|
|
51
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
52
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
64
53
|
isUninitialized: false;
|
|
65
54
|
isLoading: false;
|
|
66
55
|
isFetching: false;
|
|
@@ -72,8 +61,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
72
61
|
error: undefined;
|
|
73
62
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
74
63
|
platformKey: string;
|
|
75
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
76
|
-
currentData?: import("
|
|
64
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
65
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
77
66
|
isUninitialized: false;
|
|
78
67
|
isLoading: false;
|
|
79
68
|
isFetching: false;
|
|
@@ -83,8 +72,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
83
72
|
isError: true;
|
|
84
73
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
85
74
|
platformKey: string;
|
|
86
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
87
|
-
currentData?: import("
|
|
75
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
76
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
88
77
|
isUninitialized: false;
|
|
89
78
|
isLoading: false;
|
|
90
79
|
isFetching: false;
|
|
@@ -109,7 +98,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
109
98
|
startedTimeStamp?: undefined | undefined;
|
|
110
99
|
fulfilledTimeStamp?: undefined | undefined;
|
|
111
100
|
} & {
|
|
112
|
-
currentData?: import("
|
|
101
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
113
102
|
isUninitialized: false;
|
|
114
103
|
isLoading: false;
|
|
115
104
|
isFetching: false;
|
|
@@ -119,8 +108,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
119
108
|
isUninitialized: true;
|
|
120
109
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
121
110
|
platformKey: string;
|
|
122
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
123
|
-
currentData?: import("
|
|
111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
112
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
124
113
|
isUninitialized: false;
|
|
125
114
|
isLoading: false;
|
|
126
115
|
isFetching: false;
|
|
@@ -136,8 +125,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
136
125
|
error: undefined;
|
|
137
126
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
138
127
|
platformKey: string;
|
|
139
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
140
|
-
currentData?: import("
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
129
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
141
130
|
isUninitialized: false;
|
|
142
131
|
isLoading: false;
|
|
143
132
|
isFetching: false;
|
|
@@ -149,8 +138,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
149
138
|
error: undefined;
|
|
150
139
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
151
140
|
platformKey: string;
|
|
152
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
153
|
-
currentData?: import("
|
|
141
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
142
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
154
143
|
isUninitialized: false;
|
|
155
144
|
isLoading: false;
|
|
156
145
|
isFetching: false;
|
|
@@ -160,8 +149,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
160
149
|
isError: true;
|
|
161
150
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
162
151
|
platformKey: string;
|
|
163
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
164
|
-
currentData?: import("
|
|
152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
153
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
165
154
|
isUninitialized: false;
|
|
166
155
|
isLoading: false;
|
|
167
156
|
isFetching: false;
|
|
@@ -173,7 +162,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
173
162
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
174
163
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
175
164
|
platformKey: string;
|
|
176
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
165
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>>;
|
|
177
166
|
}, useLazyGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
178
167
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
179
168
|
originalArgs?: undefined | undefined;
|
|
@@ -184,7 +173,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
184
173
|
startedTimeStamp?: undefined | undefined;
|
|
185
174
|
fulfilledTimeStamp?: undefined | undefined;
|
|
186
175
|
} & {
|
|
187
|
-
currentData?: import("
|
|
176
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
188
177
|
isUninitialized: false;
|
|
189
178
|
isLoading: false;
|
|
190
179
|
isFetching: false;
|
|
@@ -194,8 +183,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
194
183
|
isUninitialized: true;
|
|
195
184
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
196
185
|
platformKey: string;
|
|
197
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
198
|
-
currentData?: import("
|
|
186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
187
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
199
188
|
isUninitialized: false;
|
|
200
189
|
isLoading: false;
|
|
201
190
|
isFetching: false;
|
|
@@ -211,8 +200,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
211
200
|
error: undefined;
|
|
212
201
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
213
202
|
platformKey: string;
|
|
214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
215
|
-
currentData?: import("
|
|
203
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
204
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
216
205
|
isUninitialized: false;
|
|
217
206
|
isLoading: false;
|
|
218
207
|
isFetching: false;
|
|
@@ -224,8 +213,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
224
213
|
error: undefined;
|
|
225
214
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
226
215
|
platformKey: string;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
228
|
-
currentData?: import("
|
|
216
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
217
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
229
218
|
isUninitialized: false;
|
|
230
219
|
isLoading: false;
|
|
231
220
|
isFetching: false;
|
|
@@ -235,8 +224,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
235
224
|
isError: true;
|
|
236
225
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
237
226
|
platformKey: string;
|
|
238
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
239
|
-
currentData?: import("
|
|
227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
228
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
240
229
|
isUninitialized: false;
|
|
241
230
|
isLoading: false;
|
|
242
231
|
isFetching: false;
|
|
@@ -256,7 +245,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
256
245
|
startedTimeStamp?: undefined | undefined;
|
|
257
246
|
fulfilledTimeStamp?: undefined | undefined;
|
|
258
247
|
} & {
|
|
259
|
-
currentData?: import("
|
|
248
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
260
249
|
isUninitialized: false;
|
|
261
250
|
isLoading: false;
|
|
262
251
|
isFetching: false;
|
|
@@ -266,8 +255,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
266
255
|
isUninitialized: true;
|
|
267
256
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
268
257
|
platformKey: string;
|
|
269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
270
|
-
currentData?: import("
|
|
258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
259
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
271
260
|
isUninitialized: false;
|
|
272
261
|
isLoading: false;
|
|
273
262
|
isFetching: false;
|
|
@@ -283,8 +272,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
283
272
|
error: undefined;
|
|
284
273
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
285
274
|
platformKey: string;
|
|
286
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
287
|
-
currentData?: import("
|
|
275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
276
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
288
277
|
isUninitialized: false;
|
|
289
278
|
isLoading: false;
|
|
290
279
|
isFetching: false;
|
|
@@ -296,8 +285,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
296
285
|
error: undefined;
|
|
297
286
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
298
287
|
platformKey: string;
|
|
299
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
300
|
-
currentData?: import("
|
|
288
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
289
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
301
290
|
isUninitialized: false;
|
|
302
291
|
isLoading: false;
|
|
303
292
|
isFetching: false;
|
|
@@ -307,8 +296,8 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
307
296
|
isError: true;
|
|
308
297
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
309
298
|
platformKey: string;
|
|
310
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
311
|
-
currentData?: import("
|
|
299
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
300
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
312
301
|
isUninitialized: false;
|
|
313
302
|
isLoading: false;
|
|
314
303
|
isFetching: false;
|
|
@@ -321,7 +310,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
321
310
|
platformKey: string;
|
|
322
311
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
323
312
|
platformKey: string;
|
|
324
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
313
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
325
314
|
reset: () => void;
|
|
326
315
|
}, {
|
|
327
316
|
lastArg: {
|
|
@@ -345,14 +334,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
345
334
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
346
335
|
} & Omit<{
|
|
347
336
|
requestId: string;
|
|
348
|
-
data?: import("
|
|
337
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
349
338
|
error?: unknown;
|
|
350
339
|
endpointName: string;
|
|
351
340
|
startedTimeStamp: number;
|
|
352
341
|
fulfilledTimeStamp?: number;
|
|
353
342
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
354
343
|
requestId: string;
|
|
355
|
-
data?: import("
|
|
344
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
356
345
|
error?: unknown;
|
|
357
346
|
endpointName: string;
|
|
358
347
|
startedTimeStamp: number;
|
|
@@ -369,7 +358,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
369
358
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
370
359
|
} & {
|
|
371
360
|
requestId: string;
|
|
372
|
-
data?: import("
|
|
361
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
373
362
|
error?: unknown;
|
|
374
363
|
endpointName: string;
|
|
375
364
|
startedTimeStamp: number;
|
|
@@ -386,14 +375,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
386
375
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
387
376
|
} & Omit<{
|
|
388
377
|
requestId: string;
|
|
389
|
-
data?: import("
|
|
378
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
390
379
|
error?: unknown;
|
|
391
380
|
endpointName: string;
|
|
392
381
|
startedTimeStamp: number;
|
|
393
382
|
fulfilledTimeStamp?: number;
|
|
394
383
|
}, "error"> & Required<Pick<{
|
|
395
384
|
requestId: string;
|
|
396
|
-
data?: import("
|
|
385
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
397
386
|
error?: unknown;
|
|
398
387
|
endpointName: string;
|
|
399
388
|
startedTimeStamp: number;
|
|
@@ -423,14 +412,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
423
412
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
424
413
|
} & Omit<{
|
|
425
414
|
requestId: string;
|
|
426
|
-
data?: import("
|
|
415
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
427
416
|
error?: unknown;
|
|
428
417
|
endpointName: string;
|
|
429
418
|
startedTimeStamp: number;
|
|
430
419
|
fulfilledTimeStamp?: number;
|
|
431
420
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
432
421
|
requestId: string;
|
|
433
|
-
data?: import("
|
|
422
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
434
423
|
error?: unknown;
|
|
435
424
|
endpointName: string;
|
|
436
425
|
startedTimeStamp: number;
|
|
@@ -447,7 +436,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
447
436
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
448
437
|
} & {
|
|
449
438
|
requestId: string;
|
|
450
|
-
data?: import("
|
|
439
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
451
440
|
error?: unknown;
|
|
452
441
|
endpointName: string;
|
|
453
442
|
startedTimeStamp: number;
|
|
@@ -464,14 +453,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
464
453
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
465
454
|
} & Omit<{
|
|
466
455
|
requestId: string;
|
|
467
|
-
data?: import("
|
|
456
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
468
457
|
error?: unknown;
|
|
469
458
|
endpointName: string;
|
|
470
459
|
startedTimeStamp: number;
|
|
471
460
|
fulfilledTimeStamp?: number;
|
|
472
461
|
}, "error"> & Required<Pick<{
|
|
473
462
|
requestId: string;
|
|
474
|
-
data?: import("
|
|
463
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey | undefined;
|
|
475
464
|
error?: unknown;
|
|
476
465
|
endpointName: string;
|
|
477
466
|
startedTimeStamp: number;
|
|
@@ -485,12 +474,12 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
485
474
|
})) => R) | undefined;
|
|
486
475
|
fixedCacheKey?: string;
|
|
487
476
|
} | undefined) => readonly [(arg: {
|
|
488
|
-
requestBody: import("
|
|
477
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
489
478
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
490
|
-
requestBody: import("
|
|
491
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
479
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
480
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey, "apiKeysApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
492
481
|
originalArgs?: {
|
|
493
|
-
requestBody: import("
|
|
482
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
494
483
|
} | undefined;
|
|
495
484
|
reset: () => void;
|
|
496
485
|
}], useDeleteApiKeyMutation: <R extends Record<string, any> = ({
|
|
@@ -656,7 +645,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
656
645
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
657
646
|
name: string;
|
|
658
647
|
platformKey: string;
|
|
659
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
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> & {
|
|
660
649
|
originalArgs?: {
|
|
661
650
|
name: string;
|
|
662
651
|
platformKey: string;
|