@iblai/data-layer 0.0.4 → 0.2.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 +39165 -23
- package/dist/index.esm.js +23977 -16560
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +24138 -16560
- package/dist/index.js.map +1 -1
- package/dist/package.json +82 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/src/features/analytics/constants.d.ts +66 -0
- package/dist/src/features/analytics/types.d.ts +100 -0
- package/dist/src/features/api-keys/api-slice.d.ts +104 -33
- package/dist/src/features/apps/api-slice.d.ts +683 -0
- package/dist/src/features/auth/api-slice.d.ts +137 -0
- package/dist/src/features/auth/constants.d.ts +8 -0
- package/dist/src/features/auth/types.d.ts +13 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/{features/api-keys → src/features/career}/api-slice.d.ts +392 -299
- package/dist/src/features/catalog/api-slice.d.ts +6602 -1
- package/dist/src/features/chat/api-slice.d.ts +1566 -31
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/src/features/chat-history/api-slice.d.ts +517 -243
- package/dist/src/features/core/api-slice.d.ts +493 -4
- package/dist/src/features/core/constants.d.ts +4 -0
- package/dist/src/features/credentials/api-slice.d.ts +1661 -63
- 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/datasets/api-slice.d.ts +351 -42
- package/dist/src/features/llms/api-slice.d.ts +88 -22
- package/dist/src/features/memory/api-slice.d.ts +1222 -0
- package/dist/src/features/mentor/api-slice.d.ts +2628 -146
- package/dist/src/features/mentor/constants.d.ts +31 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/src/features/mentor/types.d.ts +38 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +66 -22
- package/dist/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +769 -49
- package/dist/src/features/prompts/api-slice.d.ts +1334 -72
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +504 -64
- package/dist/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/src/features/stripe/constants.d.ts +15 -0
- package/dist/src/features/stripe/types.d.ts +9 -0
- package/dist/src/features/tenant/api-slice.d.ts +268 -45
- package/dist/src/features/tenant/constants.d.ts +1 -1
- 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 +88 -22
- package/dist/src/features/training-documents/api-slice.d.ts +223 -51
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +30 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +345 -55
- package/dist/src/features/utils.d.ts +25 -5
- package/dist/src/index.d.ts +24 -0
- 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 +1128 -0
- package/dist/src/utils/index.d.ts +2 -2
- 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 +31 -25
- 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 -956
- 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/core/api-slice.d.ts +0 -164
- 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/prompts/api-slice.d.ts +0 -1014
- 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 → src/features}/constants.d.ts +0 -0
- /package/dist/{features/catalog/api-slice.d.ts → tests/features/analytics/api-slice.test.d.ts} +0 -0
|
@@ -1,277 +1,20 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
startedTimeStamp?: undefined | undefined;
|
|
19
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
20
|
-
} & {
|
|
21
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
22
|
-
isUninitialized: false;
|
|
23
|
-
isLoading: false;
|
|
24
|
-
isFetching: false;
|
|
25
|
-
isSuccess: false;
|
|
26
|
-
isError: false;
|
|
27
|
-
}, "isUninitialized"> & {
|
|
28
|
-
isUninitialized: true;
|
|
29
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
30
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
31
|
-
isUninitialized: false;
|
|
32
|
-
isLoading: false;
|
|
33
|
-
isFetching: false;
|
|
34
|
-
isSuccess: false;
|
|
35
|
-
isError: false;
|
|
36
|
-
}, {
|
|
37
|
-
isLoading: true;
|
|
38
|
-
isFetching: boolean;
|
|
39
|
-
data: undefined;
|
|
40
|
-
} | ({
|
|
41
|
-
isSuccess: true;
|
|
42
|
-
isFetching: true;
|
|
43
|
-
error: undefined;
|
|
44
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
45
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
46
|
-
isUninitialized: false;
|
|
47
|
-
isLoading: false;
|
|
48
|
-
isFetching: false;
|
|
49
|
-
isSuccess: false;
|
|
50
|
-
isError: false;
|
|
51
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
52
|
-
isSuccess: true;
|
|
53
|
-
isFetching: false;
|
|
54
|
-
error: undefined;
|
|
55
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
56
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
57
|
-
isUninitialized: false;
|
|
58
|
-
isLoading: false;
|
|
59
|
-
isFetching: false;
|
|
60
|
-
isSuccess: false;
|
|
61
|
-
isError: false;
|
|
62
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
63
|
-
isError: true;
|
|
64
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
65
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
66
|
-
isUninitialized: false;
|
|
67
|
-
isLoading: false;
|
|
68
|
-
isFetching: false;
|
|
69
|
-
isSuccess: false;
|
|
70
|
-
isError: false;
|
|
71
|
-
}, "error">>)>> & {
|
|
72
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
73
|
-
}>(arg: [platformKey: string] | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
74
|
-
skip?: boolean;
|
|
75
|
-
refetchOnMountOrArgChange?: boolean | number;
|
|
76
|
-
} & {
|
|
77
|
-
skip?: boolean;
|
|
78
|
-
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
79
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
80
|
-
originalArgs?: undefined | undefined;
|
|
81
|
-
data?: undefined | undefined;
|
|
82
|
-
error?: undefined | undefined;
|
|
83
|
-
requestId?: undefined | undefined;
|
|
84
|
-
endpointName?: string | undefined;
|
|
85
|
-
startedTimeStamp?: undefined | undefined;
|
|
86
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
87
|
-
} & {
|
|
88
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
89
|
-
isUninitialized: false;
|
|
90
|
-
isLoading: false;
|
|
91
|
-
isFetching: false;
|
|
92
|
-
isSuccess: false;
|
|
93
|
-
isError: false;
|
|
94
|
-
}, "isUninitialized"> & {
|
|
95
|
-
isUninitialized: true;
|
|
96
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
97
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
98
|
-
isUninitialized: false;
|
|
99
|
-
isLoading: false;
|
|
100
|
-
isFetching: false;
|
|
101
|
-
isSuccess: false;
|
|
102
|
-
isError: false;
|
|
103
|
-
}, {
|
|
104
|
-
isLoading: true;
|
|
105
|
-
isFetching: boolean;
|
|
106
|
-
data: undefined;
|
|
107
|
-
} | ({
|
|
108
|
-
isSuccess: true;
|
|
109
|
-
isFetching: true;
|
|
110
|
-
error: undefined;
|
|
111
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
112
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
113
|
-
isUninitialized: false;
|
|
114
|
-
isLoading: false;
|
|
115
|
-
isFetching: false;
|
|
116
|
-
isSuccess: false;
|
|
117
|
-
isError: false;
|
|
118
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
119
|
-
isSuccess: true;
|
|
120
|
-
isFetching: false;
|
|
121
|
-
error: undefined;
|
|
122
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
123
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
124
|
-
isUninitialized: false;
|
|
125
|
-
isLoading: false;
|
|
126
|
-
isFetching: false;
|
|
127
|
-
isSuccess: false;
|
|
128
|
-
isError: false;
|
|
129
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
130
|
-
isError: true;
|
|
131
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
132
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
133
|
-
isUninitialized: false;
|
|
134
|
-
isLoading: false;
|
|
135
|
-
isFetching: false;
|
|
136
|
-
isSuccess: false;
|
|
137
|
-
isError: false;
|
|
138
|
-
}, "error">>)>> & {
|
|
139
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
140
|
-
}) => R) | undefined;
|
|
141
|
-
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
142
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>>;
|
|
143
|
-
}, useLazyGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
144
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
145
|
-
originalArgs?: undefined | undefined;
|
|
146
|
-
data?: undefined | undefined;
|
|
147
|
-
error?: undefined | undefined;
|
|
148
|
-
requestId?: undefined | undefined;
|
|
149
|
-
endpointName?: string | undefined;
|
|
150
|
-
startedTimeStamp?: undefined | undefined;
|
|
151
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
152
|
-
} & {
|
|
153
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
154
|
-
isUninitialized: false;
|
|
155
|
-
isLoading: false;
|
|
156
|
-
isFetching: false;
|
|
157
|
-
isSuccess: false;
|
|
158
|
-
isError: false;
|
|
159
|
-
}, "isUninitialized"> & {
|
|
160
|
-
isUninitialized: true;
|
|
161
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
162
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
163
|
-
isUninitialized: false;
|
|
164
|
-
isLoading: false;
|
|
165
|
-
isFetching: false;
|
|
166
|
-
isSuccess: false;
|
|
167
|
-
isError: false;
|
|
168
|
-
}, {
|
|
169
|
-
isLoading: true;
|
|
170
|
-
isFetching: boolean;
|
|
171
|
-
data: undefined;
|
|
172
|
-
} | ({
|
|
173
|
-
isSuccess: true;
|
|
174
|
-
isFetching: true;
|
|
175
|
-
error: undefined;
|
|
176
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
177
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
178
|
-
isUninitialized: false;
|
|
179
|
-
isLoading: false;
|
|
180
|
-
isFetching: false;
|
|
181
|
-
isSuccess: false;
|
|
182
|
-
isError: false;
|
|
183
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
184
|
-
isSuccess: true;
|
|
185
|
-
isFetching: false;
|
|
186
|
-
error: undefined;
|
|
187
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
188
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
189
|
-
isUninitialized: false;
|
|
190
|
-
isLoading: false;
|
|
191
|
-
isFetching: false;
|
|
192
|
-
isSuccess: false;
|
|
193
|
-
isError: false;
|
|
194
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
195
|
-
isError: true;
|
|
196
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
197
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
198
|
-
isUninitialized: false;
|
|
199
|
-
isLoading: false;
|
|
200
|
-
isFetching: false;
|
|
201
|
-
isSuccess: false;
|
|
202
|
-
isError: false;
|
|
203
|
-
}, "error">>)>> & {
|
|
204
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
205
|
-
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
206
|
-
skip?: boolean;
|
|
207
|
-
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
208
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
209
|
-
originalArgs?: undefined | undefined;
|
|
210
|
-
data?: undefined | undefined;
|
|
211
|
-
error?: undefined | undefined;
|
|
212
|
-
requestId?: undefined | undefined;
|
|
213
|
-
endpointName?: string | undefined;
|
|
214
|
-
startedTimeStamp?: undefined | undefined;
|
|
215
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
216
|
-
} & {
|
|
217
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
218
|
-
isUninitialized: false;
|
|
219
|
-
isLoading: false;
|
|
220
|
-
isFetching: false;
|
|
221
|
-
isSuccess: false;
|
|
222
|
-
isError: false;
|
|
223
|
-
}, "isUninitialized"> & {
|
|
224
|
-
isUninitialized: true;
|
|
225
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
226
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
227
|
-
isUninitialized: false;
|
|
228
|
-
isLoading: false;
|
|
229
|
-
isFetching: false;
|
|
230
|
-
isSuccess: false;
|
|
231
|
-
isError: false;
|
|
232
|
-
}, {
|
|
233
|
-
isLoading: true;
|
|
234
|
-
isFetching: boolean;
|
|
235
|
-
data: undefined;
|
|
236
|
-
} | ({
|
|
237
|
-
isSuccess: true;
|
|
238
|
-
isFetching: true;
|
|
239
|
-
error: undefined;
|
|
240
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
241
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
242
|
-
isUninitialized: false;
|
|
243
|
-
isLoading: false;
|
|
244
|
-
isFetching: false;
|
|
245
|
-
isSuccess: false;
|
|
246
|
-
isError: false;
|
|
247
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
248
|
-
isSuccess: true;
|
|
249
|
-
isFetching: false;
|
|
250
|
-
error: undefined;
|
|
251
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
252
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
253
|
-
isUninitialized: false;
|
|
254
|
-
isLoading: false;
|
|
255
|
-
isFetching: false;
|
|
256
|
-
isSuccess: false;
|
|
257
|
-
isError: false;
|
|
258
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
259
|
-
isError: true;
|
|
260
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
261
|
-
currentData?: import("@iblai/iblai-api").PlatformApiKey[] | undefined;
|
|
262
|
-
isUninitialized: false;
|
|
263
|
-
isLoading: false;
|
|
264
|
-
isFetching: false;
|
|
265
|
-
isSuccess: false;
|
|
266
|
-
isError: false;
|
|
267
|
-
}, "error">>)>> & {
|
|
268
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
269
|
-
}) => R) | undefined;
|
|
270
|
-
}, "skip">) | undefined) => [(arg: [platformKey: string], preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[platformKey: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "apiKeys", import("@iblai/iblai-api").PlatformApiKey[], "apiKeysApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
271
|
-
reset: () => void;
|
|
272
|
-
}, {
|
|
273
|
-
lastArg: [platformKey: string];
|
|
274
|
-
}], useCreateApiKeyMutation: <R extends Record<string, any> = ({
|
|
1
|
+
export declare const careerApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
|
|
2
|
+
createUserEducation: import("@reduxjs/toolkit/query").MutationDefinition<[{
|
|
3
|
+
org: string;
|
|
4
|
+
username: string;
|
|
5
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
6
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", import("@iblai/iblai-api").Education, "careerApiSlice", any>;
|
|
7
|
+
updateUserEducation: import("@reduxjs/toolkit/query").MutationDefinition<[{
|
|
8
|
+
org: string;
|
|
9
|
+
username: string;
|
|
10
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
11
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", import("@iblai/iblai-api").Education, "careerApiSlice", any>;
|
|
12
|
+
getUserResume: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
13
|
+
org: string;
|
|
14
|
+
username: string;
|
|
15
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>;
|
|
16
|
+
}, "careerApiSlice", "user-education" | "user-resume", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
17
|
+
export declare const useCreateUserEducationMutation: <R extends Record<string, any> = ({
|
|
275
18
|
requestId?: undefined;
|
|
276
19
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
277
20
|
data?: undefined;
|
|
@@ -289,14 +32,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
289
32
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
290
33
|
} & Omit<{
|
|
291
34
|
requestId: string;
|
|
292
|
-
data?: import("@iblai/iblai-api").
|
|
35
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
293
36
|
error?: unknown;
|
|
294
37
|
endpointName: string;
|
|
295
38
|
startedTimeStamp: number;
|
|
296
39
|
fulfilledTimeStamp?: number;
|
|
297
40
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
298
41
|
requestId: string;
|
|
299
|
-
data?: import("@iblai/iblai-api").
|
|
42
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
300
43
|
error?: unknown;
|
|
301
44
|
endpointName: string;
|
|
302
45
|
startedTimeStamp: number;
|
|
@@ -313,7 +56,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
313
56
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
314
57
|
} & {
|
|
315
58
|
requestId: string;
|
|
316
|
-
data?: import("@iblai/iblai-api").
|
|
59
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
317
60
|
error?: unknown;
|
|
318
61
|
endpointName: string;
|
|
319
62
|
startedTimeStamp: number;
|
|
@@ -330,14 +73,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
330
73
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
331
74
|
} & Omit<{
|
|
332
75
|
requestId: string;
|
|
333
|
-
data?: import("@iblai/iblai-api").
|
|
76
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
334
77
|
error?: unknown;
|
|
335
78
|
endpointName: string;
|
|
336
79
|
startedTimeStamp: number;
|
|
337
80
|
fulfilledTimeStamp?: number;
|
|
338
81
|
}, "error"> & Required<Pick<{
|
|
339
82
|
requestId: string;
|
|
340
|
-
data?: import("@iblai/iblai-api").
|
|
83
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
341
84
|
error?: unknown;
|
|
342
85
|
endpointName: string;
|
|
343
86
|
startedTimeStamp: number;
|
|
@@ -367,14 +110,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
367
110
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
368
111
|
} & Omit<{
|
|
369
112
|
requestId: string;
|
|
370
|
-
data?: import("@iblai/iblai-api").
|
|
113
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
371
114
|
error?: unknown;
|
|
372
115
|
endpointName: string;
|
|
373
116
|
startedTimeStamp: number;
|
|
374
117
|
fulfilledTimeStamp?: number;
|
|
375
118
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
376
119
|
requestId: string;
|
|
377
|
-
data?: import("@iblai/iblai-api").
|
|
120
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
378
121
|
error?: unknown;
|
|
379
122
|
endpointName: string;
|
|
380
123
|
startedTimeStamp: number;
|
|
@@ -391,7 +134,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
391
134
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
392
135
|
} & {
|
|
393
136
|
requestId: string;
|
|
394
|
-
data?: import("@iblai/iblai-api").
|
|
137
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
395
138
|
error?: unknown;
|
|
396
139
|
endpointName: string;
|
|
397
140
|
startedTimeStamp: number;
|
|
@@ -408,14 +151,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
408
151
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
409
152
|
} & Omit<{
|
|
410
153
|
requestId: string;
|
|
411
|
-
data?: import("@iblai/iblai-api").
|
|
154
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
412
155
|
error?: unknown;
|
|
413
156
|
endpointName: string;
|
|
414
157
|
startedTimeStamp: number;
|
|
415
158
|
fulfilledTimeStamp?: number;
|
|
416
159
|
}, "error"> & Required<Pick<{
|
|
417
160
|
requestId: string;
|
|
418
|
-
data?: import("@iblai/iblai-api").
|
|
161
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
419
162
|
error?: unknown;
|
|
420
163
|
endpointName: string;
|
|
421
164
|
startedTimeStamp: number;
|
|
@@ -428,10 +171,22 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
428
171
|
isError: true;
|
|
429
172
|
})) => R) | undefined;
|
|
430
173
|
fixedCacheKey?: string;
|
|
431
|
-
} | undefined) => readonly [(arg: [
|
|
432
|
-
|
|
174
|
+
} | undefined) => readonly [(arg: [{
|
|
175
|
+
org: string;
|
|
176
|
+
username: string;
|
|
177
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
178
|
+
}]) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<[{
|
|
179
|
+
org: string;
|
|
180
|
+
username: string;
|
|
181
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
182
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", import("@iblai/iblai-api").Education, "careerApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
183
|
+
originalArgs?: [{
|
|
184
|
+
org: string;
|
|
185
|
+
username: string;
|
|
186
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
187
|
+
}] | undefined;
|
|
433
188
|
reset: () => void;
|
|
434
|
-
}],
|
|
189
|
+
}], useUpdateUserEducationMutation: <R extends Record<string, any> = ({
|
|
435
190
|
requestId?: undefined;
|
|
436
191
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
437
192
|
data?: undefined;
|
|
@@ -449,14 +204,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
449
204
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
450
205
|
} & Omit<{
|
|
451
206
|
requestId: string;
|
|
452
|
-
data?:
|
|
207
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
453
208
|
error?: unknown;
|
|
454
209
|
endpointName: string;
|
|
455
210
|
startedTimeStamp: number;
|
|
456
211
|
fulfilledTimeStamp?: number;
|
|
457
212
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
458
213
|
requestId: string;
|
|
459
|
-
data?:
|
|
214
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
460
215
|
error?: unknown;
|
|
461
216
|
endpointName: string;
|
|
462
217
|
startedTimeStamp: number;
|
|
@@ -473,7 +228,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
473
228
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
474
229
|
} & {
|
|
475
230
|
requestId: string;
|
|
476
|
-
data?:
|
|
231
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
477
232
|
error?: unknown;
|
|
478
233
|
endpointName: string;
|
|
479
234
|
startedTimeStamp: number;
|
|
@@ -490,14 +245,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
490
245
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
491
246
|
} & Omit<{
|
|
492
247
|
requestId: string;
|
|
493
|
-
data?:
|
|
248
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
494
249
|
error?: unknown;
|
|
495
250
|
endpointName: string;
|
|
496
251
|
startedTimeStamp: number;
|
|
497
252
|
fulfilledTimeStamp?: number;
|
|
498
253
|
}, "error"> & Required<Pick<{
|
|
499
254
|
requestId: string;
|
|
500
|
-
data?:
|
|
255
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
501
256
|
error?: unknown;
|
|
502
257
|
endpointName: string;
|
|
503
258
|
startedTimeStamp: number;
|
|
@@ -527,14 +282,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
527
282
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
528
283
|
} & Omit<{
|
|
529
284
|
requestId: string;
|
|
530
|
-
data?:
|
|
285
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
531
286
|
error?: unknown;
|
|
532
287
|
endpointName: string;
|
|
533
288
|
startedTimeStamp: number;
|
|
534
289
|
fulfilledTimeStamp?: number;
|
|
535
290
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
536
291
|
requestId: string;
|
|
537
|
-
data?:
|
|
292
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
538
293
|
error?: unknown;
|
|
539
294
|
endpointName: string;
|
|
540
295
|
startedTimeStamp: number;
|
|
@@ -551,7 +306,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
551
306
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
552
307
|
} & {
|
|
553
308
|
requestId: string;
|
|
554
|
-
data?:
|
|
309
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
555
310
|
error?: unknown;
|
|
556
311
|
endpointName: string;
|
|
557
312
|
startedTimeStamp: number;
|
|
@@ -568,14 +323,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
568
323
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
569
324
|
} & Omit<{
|
|
570
325
|
requestId: string;
|
|
571
|
-
data?:
|
|
326
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
572
327
|
error?: unknown;
|
|
573
328
|
endpointName: string;
|
|
574
329
|
startedTimeStamp: number;
|
|
575
330
|
fulfilledTimeStamp?: number;
|
|
576
331
|
}, "error"> & Required<Pick<{
|
|
577
332
|
requestId: string;
|
|
578
|
-
data?:
|
|
333
|
+
data?: import("@iblai/iblai-api").Education | undefined;
|
|
579
334
|
error?: unknown;
|
|
580
335
|
endpointName: string;
|
|
581
336
|
startedTimeStamp: number;
|
|
@@ -588,7 +343,345 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
588
343
|
isError: true;
|
|
589
344
|
})) => R) | undefined;
|
|
590
345
|
fixedCacheKey?: string;
|
|
591
|
-
} | undefined) => readonly [(arg: [
|
|
592
|
-
|
|
346
|
+
} | undefined) => readonly [(arg: [{
|
|
347
|
+
org: string;
|
|
348
|
+
username: string;
|
|
349
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
350
|
+
}]) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<[{
|
|
351
|
+
org: string;
|
|
352
|
+
username: string;
|
|
353
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
354
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", import("@iblai/iblai-api").Education, "careerApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
355
|
+
originalArgs?: [{
|
|
356
|
+
org: string;
|
|
357
|
+
username: string;
|
|
358
|
+
requestBody: import("@iblai/iblai-api").Education;
|
|
359
|
+
}] | undefined;
|
|
593
360
|
reset: () => void;
|
|
361
|
+
}], useGetUserResumeQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
362
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
363
|
+
originalArgs?: undefined | undefined;
|
|
364
|
+
data?: undefined | undefined;
|
|
365
|
+
error?: undefined | undefined;
|
|
366
|
+
requestId?: undefined | undefined;
|
|
367
|
+
endpointName?: string | undefined;
|
|
368
|
+
startedTimeStamp?: undefined | undefined;
|
|
369
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
370
|
+
} & {
|
|
371
|
+
currentData?: any;
|
|
372
|
+
isUninitialized: false;
|
|
373
|
+
isLoading: false;
|
|
374
|
+
isFetching: false;
|
|
375
|
+
isSuccess: false;
|
|
376
|
+
isError: false;
|
|
377
|
+
}, "isUninitialized"> & {
|
|
378
|
+
isUninitialized: true;
|
|
379
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
380
|
+
org: string;
|
|
381
|
+
username: string;
|
|
382
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
383
|
+
currentData?: any;
|
|
384
|
+
isUninitialized: false;
|
|
385
|
+
isLoading: false;
|
|
386
|
+
isFetching: false;
|
|
387
|
+
isSuccess: false;
|
|
388
|
+
isError: false;
|
|
389
|
+
}, {
|
|
390
|
+
isLoading: true;
|
|
391
|
+
isFetching: boolean;
|
|
392
|
+
data: undefined;
|
|
393
|
+
} | ({
|
|
394
|
+
isSuccess: true;
|
|
395
|
+
isFetching: true;
|
|
396
|
+
error: undefined;
|
|
397
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
398
|
+
org: string;
|
|
399
|
+
username: string;
|
|
400
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
401
|
+
currentData?: any;
|
|
402
|
+
isUninitialized: false;
|
|
403
|
+
isLoading: false;
|
|
404
|
+
isFetching: false;
|
|
405
|
+
isSuccess: false;
|
|
406
|
+
isError: false;
|
|
407
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
408
|
+
isSuccess: true;
|
|
409
|
+
isFetching: false;
|
|
410
|
+
error: undefined;
|
|
411
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
412
|
+
org: string;
|
|
413
|
+
username: string;
|
|
414
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
415
|
+
currentData?: any;
|
|
416
|
+
isUninitialized: false;
|
|
417
|
+
isLoading: false;
|
|
418
|
+
isFetching: false;
|
|
419
|
+
isSuccess: false;
|
|
420
|
+
isError: false;
|
|
421
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
422
|
+
isError: true;
|
|
423
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
424
|
+
org: string;
|
|
425
|
+
username: string;
|
|
426
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
427
|
+
currentData?: any;
|
|
428
|
+
isUninitialized: false;
|
|
429
|
+
isLoading: false;
|
|
430
|
+
isFetching: false;
|
|
431
|
+
isSuccess: false;
|
|
432
|
+
isError: false;
|
|
433
|
+
}, "error">>)>> & {
|
|
434
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
435
|
+
}>(arg: [{
|
|
436
|
+
org: string;
|
|
437
|
+
username: string;
|
|
438
|
+
}] | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
439
|
+
skip?: boolean;
|
|
440
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
441
|
+
} & {
|
|
442
|
+
skip?: boolean;
|
|
443
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
444
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
445
|
+
originalArgs?: undefined | undefined;
|
|
446
|
+
data?: undefined | undefined;
|
|
447
|
+
error?: undefined | undefined;
|
|
448
|
+
requestId?: undefined | undefined;
|
|
449
|
+
endpointName?: string | undefined;
|
|
450
|
+
startedTimeStamp?: undefined | undefined;
|
|
451
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
452
|
+
} & {
|
|
453
|
+
currentData?: any;
|
|
454
|
+
isUninitialized: false;
|
|
455
|
+
isLoading: false;
|
|
456
|
+
isFetching: false;
|
|
457
|
+
isSuccess: false;
|
|
458
|
+
isError: false;
|
|
459
|
+
}, "isUninitialized"> & {
|
|
460
|
+
isUninitialized: true;
|
|
461
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
462
|
+
org: string;
|
|
463
|
+
username: string;
|
|
464
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
465
|
+
currentData?: any;
|
|
466
|
+
isUninitialized: false;
|
|
467
|
+
isLoading: false;
|
|
468
|
+
isFetching: false;
|
|
469
|
+
isSuccess: false;
|
|
470
|
+
isError: false;
|
|
471
|
+
}, {
|
|
472
|
+
isLoading: true;
|
|
473
|
+
isFetching: boolean;
|
|
474
|
+
data: undefined;
|
|
475
|
+
} | ({
|
|
476
|
+
isSuccess: true;
|
|
477
|
+
isFetching: true;
|
|
478
|
+
error: undefined;
|
|
479
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
480
|
+
org: string;
|
|
481
|
+
username: string;
|
|
482
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
483
|
+
currentData?: any;
|
|
484
|
+
isUninitialized: false;
|
|
485
|
+
isLoading: false;
|
|
486
|
+
isFetching: false;
|
|
487
|
+
isSuccess: false;
|
|
488
|
+
isError: false;
|
|
489
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
490
|
+
isSuccess: true;
|
|
491
|
+
isFetching: false;
|
|
492
|
+
error: undefined;
|
|
493
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
494
|
+
org: string;
|
|
495
|
+
username: string;
|
|
496
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
497
|
+
currentData?: any;
|
|
498
|
+
isUninitialized: false;
|
|
499
|
+
isLoading: false;
|
|
500
|
+
isFetching: false;
|
|
501
|
+
isSuccess: false;
|
|
502
|
+
isError: false;
|
|
503
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
504
|
+
isError: true;
|
|
505
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
506
|
+
org: string;
|
|
507
|
+
username: string;
|
|
508
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
509
|
+
currentData?: any;
|
|
510
|
+
isUninitialized: false;
|
|
511
|
+
isLoading: false;
|
|
512
|
+
isFetching: false;
|
|
513
|
+
isSuccess: false;
|
|
514
|
+
isError: false;
|
|
515
|
+
}, "error">>)>> & {
|
|
516
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
517
|
+
}) => R) | undefined;
|
|
518
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
519
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
520
|
+
org: string;
|
|
521
|
+
username: string;
|
|
522
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>>;
|
|
523
|
+
}, useLazyGetUserResumeQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
524
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
525
|
+
originalArgs?: undefined | undefined;
|
|
526
|
+
data?: undefined | undefined;
|
|
527
|
+
error?: undefined | undefined;
|
|
528
|
+
requestId?: undefined | undefined;
|
|
529
|
+
endpointName?: string | undefined;
|
|
530
|
+
startedTimeStamp?: undefined | undefined;
|
|
531
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
532
|
+
} & {
|
|
533
|
+
currentData?: any;
|
|
534
|
+
isUninitialized: false;
|
|
535
|
+
isLoading: false;
|
|
536
|
+
isFetching: false;
|
|
537
|
+
isSuccess: false;
|
|
538
|
+
isError: false;
|
|
539
|
+
}, "isUninitialized"> & {
|
|
540
|
+
isUninitialized: true;
|
|
541
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
542
|
+
org: string;
|
|
543
|
+
username: string;
|
|
544
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
545
|
+
currentData?: any;
|
|
546
|
+
isUninitialized: false;
|
|
547
|
+
isLoading: false;
|
|
548
|
+
isFetching: false;
|
|
549
|
+
isSuccess: false;
|
|
550
|
+
isError: false;
|
|
551
|
+
}, {
|
|
552
|
+
isLoading: true;
|
|
553
|
+
isFetching: boolean;
|
|
554
|
+
data: undefined;
|
|
555
|
+
} | ({
|
|
556
|
+
isSuccess: true;
|
|
557
|
+
isFetching: true;
|
|
558
|
+
error: undefined;
|
|
559
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
560
|
+
org: string;
|
|
561
|
+
username: string;
|
|
562
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
563
|
+
currentData?: any;
|
|
564
|
+
isUninitialized: false;
|
|
565
|
+
isLoading: false;
|
|
566
|
+
isFetching: false;
|
|
567
|
+
isSuccess: false;
|
|
568
|
+
isError: false;
|
|
569
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
570
|
+
isSuccess: true;
|
|
571
|
+
isFetching: false;
|
|
572
|
+
error: undefined;
|
|
573
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
574
|
+
org: string;
|
|
575
|
+
username: string;
|
|
576
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
577
|
+
currentData?: any;
|
|
578
|
+
isUninitialized: false;
|
|
579
|
+
isLoading: false;
|
|
580
|
+
isFetching: false;
|
|
581
|
+
isSuccess: false;
|
|
582
|
+
isError: false;
|
|
583
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
584
|
+
isError: true;
|
|
585
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
586
|
+
org: string;
|
|
587
|
+
username: string;
|
|
588
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
589
|
+
currentData?: any;
|
|
590
|
+
isUninitialized: false;
|
|
591
|
+
isLoading: false;
|
|
592
|
+
isFetching: false;
|
|
593
|
+
isSuccess: false;
|
|
594
|
+
isError: false;
|
|
595
|
+
}, "error">>)>> & {
|
|
596
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
597
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
598
|
+
skip?: boolean;
|
|
599
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
600
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
601
|
+
originalArgs?: undefined | undefined;
|
|
602
|
+
data?: undefined | undefined;
|
|
603
|
+
error?: undefined | undefined;
|
|
604
|
+
requestId?: undefined | undefined;
|
|
605
|
+
endpointName?: string | undefined;
|
|
606
|
+
startedTimeStamp?: undefined | undefined;
|
|
607
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
608
|
+
} & {
|
|
609
|
+
currentData?: any;
|
|
610
|
+
isUninitialized: false;
|
|
611
|
+
isLoading: false;
|
|
612
|
+
isFetching: false;
|
|
613
|
+
isSuccess: false;
|
|
614
|
+
isError: false;
|
|
615
|
+
}, "isUninitialized"> & {
|
|
616
|
+
isUninitialized: true;
|
|
617
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
618
|
+
org: string;
|
|
619
|
+
username: string;
|
|
620
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
621
|
+
currentData?: any;
|
|
622
|
+
isUninitialized: false;
|
|
623
|
+
isLoading: false;
|
|
624
|
+
isFetching: false;
|
|
625
|
+
isSuccess: false;
|
|
626
|
+
isError: false;
|
|
627
|
+
}, {
|
|
628
|
+
isLoading: true;
|
|
629
|
+
isFetching: boolean;
|
|
630
|
+
data: undefined;
|
|
631
|
+
} | ({
|
|
632
|
+
isSuccess: true;
|
|
633
|
+
isFetching: true;
|
|
634
|
+
error: undefined;
|
|
635
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
636
|
+
org: string;
|
|
637
|
+
username: string;
|
|
638
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
639
|
+
currentData?: any;
|
|
640
|
+
isUninitialized: false;
|
|
641
|
+
isLoading: false;
|
|
642
|
+
isFetching: false;
|
|
643
|
+
isSuccess: false;
|
|
644
|
+
isError: false;
|
|
645
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
646
|
+
isSuccess: true;
|
|
647
|
+
isFetching: false;
|
|
648
|
+
error: undefined;
|
|
649
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
650
|
+
org: string;
|
|
651
|
+
username: string;
|
|
652
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
653
|
+
currentData?: any;
|
|
654
|
+
isUninitialized: false;
|
|
655
|
+
isLoading: false;
|
|
656
|
+
isFetching: false;
|
|
657
|
+
isSuccess: false;
|
|
658
|
+
isError: false;
|
|
659
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
660
|
+
isError: true;
|
|
661
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
662
|
+
org: string;
|
|
663
|
+
username: string;
|
|
664
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>> & {
|
|
665
|
+
currentData?: any;
|
|
666
|
+
isUninitialized: false;
|
|
667
|
+
isLoading: false;
|
|
668
|
+
isFetching: false;
|
|
669
|
+
isSuccess: false;
|
|
670
|
+
isError: false;
|
|
671
|
+
}, "error">>)>> & {
|
|
672
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
673
|
+
}) => R) | undefined;
|
|
674
|
+
}, "skip">) | undefined) => [(arg: [{
|
|
675
|
+
org: string;
|
|
676
|
+
username: string;
|
|
677
|
+
}], preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
678
|
+
org: string;
|
|
679
|
+
username: string;
|
|
680
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "user-education" | "user-resume", any, "careerApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
681
|
+
reset: () => void;
|
|
682
|
+
}, {
|
|
683
|
+
lastArg: [{
|
|
684
|
+
org: string;
|
|
685
|
+
username: string;
|
|
686
|
+
}];
|
|
594
687
|
}];
|