@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,14 +1,17 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}, "
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
export declare const appApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
|
+
getUserApps: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
page?: number;
|
|
4
|
+
pageSize?: number;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>;
|
|
6
|
+
updateUserOnboardingStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
7
|
+
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
8
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").OnboardingStatusUpdate, "appApiSlice", any>;
|
|
9
|
+
updateUserTrialStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
10
|
+
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
11
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").ActivateUserFreeTrial, "appApiSlice", any>;
|
|
12
|
+
}, "appApiSlice", "apps", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
|
+
export declare const appApiReducer: typeof appApiSlice.reducer;
|
|
14
|
+
export declare const useGetUserAppsQuery: <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;
|
|
14
17
|
data?: undefined | undefined;
|
|
@@ -18,7 +21,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
18
21
|
startedTimeStamp?: undefined | undefined;
|
|
19
22
|
fulfilledTimeStamp?: undefined | undefined;
|
|
20
23
|
} & {
|
|
21
|
-
currentData?: import("@iblai/iblai-api").
|
|
24
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
22
25
|
isUninitialized: false;
|
|
23
26
|
isLoading: false;
|
|
24
27
|
isFetching: false;
|
|
@@ -26,8 +29,11 @@ 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<
|
|
30
|
-
|
|
32
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
33
|
+
page?: number;
|
|
34
|
+
pageSize?: number;
|
|
35
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
36
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
31
37
|
isUninitialized: false;
|
|
32
38
|
isLoading: false;
|
|
33
39
|
isFetching: false;
|
|
@@ -41,8 +47,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
41
47
|
isSuccess: true;
|
|
42
48
|
isFetching: true;
|
|
43
49
|
error: undefined;
|
|
44
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
45
|
-
|
|
50
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
51
|
+
page?: number;
|
|
52
|
+
pageSize?: number;
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
54
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
46
55
|
isUninitialized: false;
|
|
47
56
|
isLoading: false;
|
|
48
57
|
isFetching: false;
|
|
@@ -52,8 +61,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
52
61
|
isSuccess: true;
|
|
53
62
|
isFetching: false;
|
|
54
63
|
error: undefined;
|
|
55
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
56
|
-
|
|
64
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
65
|
+
page?: number;
|
|
66
|
+
pageSize?: number;
|
|
67
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
68
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
57
69
|
isUninitialized: false;
|
|
58
70
|
isLoading: false;
|
|
59
71
|
isFetching: false;
|
|
@@ -61,8 +73,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
61
73
|
isError: false;
|
|
62
74
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
63
75
|
isError: true;
|
|
64
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
65
|
-
|
|
76
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
77
|
+
page?: number;
|
|
78
|
+
pageSize?: number;
|
|
79
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
80
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
66
81
|
isUninitialized: false;
|
|
67
82
|
isLoading: false;
|
|
68
83
|
isFetching: false;
|
|
@@ -70,7 +85,10 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
70
85
|
isError: false;
|
|
71
86
|
}, "error">>)>> & {
|
|
72
87
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
73
|
-
}>(arg:
|
|
88
|
+
}>(arg: {
|
|
89
|
+
page?: number;
|
|
90
|
+
pageSize?: number;
|
|
91
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
74
92
|
skip?: boolean;
|
|
75
93
|
refetchOnMountOrArgChange?: boolean | number;
|
|
76
94
|
} & {
|
|
@@ -85,7 +103,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
85
103
|
startedTimeStamp?: undefined | undefined;
|
|
86
104
|
fulfilledTimeStamp?: undefined | undefined;
|
|
87
105
|
} & {
|
|
88
|
-
currentData?: import("@iblai/iblai-api").
|
|
106
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
89
107
|
isUninitialized: false;
|
|
90
108
|
isLoading: false;
|
|
91
109
|
isFetching: false;
|
|
@@ -93,8 +111,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
93
111
|
isError: false;
|
|
94
112
|
}, "isUninitialized"> & {
|
|
95
113
|
isUninitialized: true;
|
|
96
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
97
|
-
|
|
114
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
115
|
+
page?: number;
|
|
116
|
+
pageSize?: number;
|
|
117
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
118
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
98
119
|
isUninitialized: false;
|
|
99
120
|
isLoading: false;
|
|
100
121
|
isFetching: false;
|
|
@@ -108,8 +129,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
108
129
|
isSuccess: true;
|
|
109
130
|
isFetching: true;
|
|
110
131
|
error: undefined;
|
|
111
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
112
|
-
|
|
132
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
133
|
+
page?: number;
|
|
134
|
+
pageSize?: number;
|
|
135
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
136
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
113
137
|
isUninitialized: false;
|
|
114
138
|
isLoading: false;
|
|
115
139
|
isFetching: false;
|
|
@@ -119,8 +143,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
119
143
|
isSuccess: true;
|
|
120
144
|
isFetching: false;
|
|
121
145
|
error: undefined;
|
|
122
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
123
|
-
|
|
146
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
147
|
+
page?: number;
|
|
148
|
+
pageSize?: number;
|
|
149
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
150
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
124
151
|
isUninitialized: false;
|
|
125
152
|
isLoading: false;
|
|
126
153
|
isFetching: false;
|
|
@@ -128,8 +155,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
128
155
|
isError: false;
|
|
129
156
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
130
157
|
isError: true;
|
|
131
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
132
|
-
|
|
158
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
159
|
+
page?: number;
|
|
160
|
+
pageSize?: number;
|
|
161
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
162
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
133
163
|
isUninitialized: false;
|
|
134
164
|
isLoading: false;
|
|
135
165
|
isFetching: false;
|
|
@@ -139,8 +169,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
139
169
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
140
170
|
}) => R) | undefined;
|
|
141
171
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
142
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
143
|
-
|
|
172
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
173
|
+
page?: number;
|
|
174
|
+
pageSize?: number;
|
|
175
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>>;
|
|
176
|
+
}, useLazyGetUserAppsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
144
177
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
145
178
|
originalArgs?: undefined | undefined;
|
|
146
179
|
data?: undefined | undefined;
|
|
@@ -150,7 +183,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
150
183
|
startedTimeStamp?: undefined | undefined;
|
|
151
184
|
fulfilledTimeStamp?: undefined | undefined;
|
|
152
185
|
} & {
|
|
153
|
-
currentData?: import("@iblai/iblai-api").
|
|
186
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
154
187
|
isUninitialized: false;
|
|
155
188
|
isLoading: false;
|
|
156
189
|
isFetching: false;
|
|
@@ -158,8 +191,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
158
191
|
isError: false;
|
|
159
192
|
}, "isUninitialized"> & {
|
|
160
193
|
isUninitialized: true;
|
|
161
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
162
|
-
|
|
194
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
195
|
+
page?: number;
|
|
196
|
+
pageSize?: number;
|
|
197
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
198
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
163
199
|
isUninitialized: false;
|
|
164
200
|
isLoading: false;
|
|
165
201
|
isFetching: false;
|
|
@@ -173,8 +209,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
173
209
|
isSuccess: true;
|
|
174
210
|
isFetching: true;
|
|
175
211
|
error: undefined;
|
|
176
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
177
|
-
|
|
212
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
213
|
+
page?: number;
|
|
214
|
+
pageSize?: number;
|
|
215
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
216
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
178
217
|
isUninitialized: false;
|
|
179
218
|
isLoading: false;
|
|
180
219
|
isFetching: false;
|
|
@@ -184,8 +223,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
184
223
|
isSuccess: true;
|
|
185
224
|
isFetching: false;
|
|
186
225
|
error: undefined;
|
|
187
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
188
|
-
|
|
226
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
227
|
+
page?: number;
|
|
228
|
+
pageSize?: number;
|
|
229
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
230
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
189
231
|
isUninitialized: false;
|
|
190
232
|
isLoading: false;
|
|
191
233
|
isFetching: false;
|
|
@@ -193,8 +235,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
193
235
|
isError: false;
|
|
194
236
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
195
237
|
isError: true;
|
|
196
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
197
|
-
|
|
238
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
239
|
+
page?: number;
|
|
240
|
+
pageSize?: number;
|
|
241
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
242
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
198
243
|
isUninitialized: false;
|
|
199
244
|
isLoading: false;
|
|
200
245
|
isFetching: false;
|
|
@@ -214,7 +259,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
214
259
|
startedTimeStamp?: undefined | undefined;
|
|
215
260
|
fulfilledTimeStamp?: undefined | undefined;
|
|
216
261
|
} & {
|
|
217
|
-
currentData?: import("@iblai/iblai-api").
|
|
262
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
218
263
|
isUninitialized: false;
|
|
219
264
|
isLoading: false;
|
|
220
265
|
isFetching: false;
|
|
@@ -222,8 +267,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
222
267
|
isError: false;
|
|
223
268
|
}, "isUninitialized"> & {
|
|
224
269
|
isUninitialized: true;
|
|
225
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
226
|
-
|
|
270
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
271
|
+
page?: number;
|
|
272
|
+
pageSize?: number;
|
|
273
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
274
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
227
275
|
isUninitialized: false;
|
|
228
276
|
isLoading: false;
|
|
229
277
|
isFetching: false;
|
|
@@ -237,8 +285,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
237
285
|
isSuccess: true;
|
|
238
286
|
isFetching: true;
|
|
239
287
|
error: undefined;
|
|
240
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
241
|
-
|
|
288
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
289
|
+
page?: number;
|
|
290
|
+
pageSize?: number;
|
|
291
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
292
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
242
293
|
isUninitialized: false;
|
|
243
294
|
isLoading: false;
|
|
244
295
|
isFetching: false;
|
|
@@ -248,8 +299,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
248
299
|
isSuccess: true;
|
|
249
300
|
isFetching: false;
|
|
250
301
|
error: undefined;
|
|
251
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
252
|
-
|
|
302
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
303
|
+
page?: number;
|
|
304
|
+
pageSize?: number;
|
|
305
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
306
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
253
307
|
isUninitialized: false;
|
|
254
308
|
isLoading: false;
|
|
255
309
|
isFetching: false;
|
|
@@ -257,8 +311,11 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
257
311
|
isError: false;
|
|
258
312
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
259
313
|
isError: true;
|
|
260
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
261
|
-
|
|
314
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
315
|
+
page?: number;
|
|
316
|
+
pageSize?: number;
|
|
317
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
318
|
+
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
262
319
|
isUninitialized: false;
|
|
263
320
|
isLoading: false;
|
|
264
321
|
isFetching: false;
|
|
@@ -267,11 +324,20 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
267
324
|
}, "error">>)>> & {
|
|
268
325
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
269
326
|
}) => R) | undefined;
|
|
270
|
-
}, "skip">) | undefined) => [(arg:
|
|
327
|
+
}, "skip">) | undefined) => [(arg: {
|
|
328
|
+
page?: number;
|
|
329
|
+
pageSize?: number;
|
|
330
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
331
|
+
page?: number;
|
|
332
|
+
pageSize?: number;
|
|
333
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
271
334
|
reset: () => void;
|
|
272
335
|
}, {
|
|
273
|
-
lastArg:
|
|
274
|
-
|
|
336
|
+
lastArg: {
|
|
337
|
+
page?: number;
|
|
338
|
+
pageSize?: number;
|
|
339
|
+
};
|
|
340
|
+
}], useUpdateUserOnboardingStatusMutation: <R extends Record<string, any> = ({
|
|
275
341
|
requestId?: undefined;
|
|
276
342
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
277
343
|
data?: undefined;
|
|
@@ -289,14 +355,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
289
355
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
290
356
|
} & Omit<{
|
|
291
357
|
requestId: string;
|
|
292
|
-
data?: import("@iblai/iblai-api").
|
|
358
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
293
359
|
error?: unknown;
|
|
294
360
|
endpointName: string;
|
|
295
361
|
startedTimeStamp: number;
|
|
296
362
|
fulfilledTimeStamp?: number;
|
|
297
363
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
298
364
|
requestId: string;
|
|
299
|
-
data?: import("@iblai/iblai-api").
|
|
365
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
300
366
|
error?: unknown;
|
|
301
367
|
endpointName: string;
|
|
302
368
|
startedTimeStamp: number;
|
|
@@ -313,7 +379,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
313
379
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
314
380
|
} & {
|
|
315
381
|
requestId: string;
|
|
316
|
-
data?: import("@iblai/iblai-api").
|
|
382
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
317
383
|
error?: unknown;
|
|
318
384
|
endpointName: string;
|
|
319
385
|
startedTimeStamp: number;
|
|
@@ -330,14 +396,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
330
396
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
331
397
|
} & Omit<{
|
|
332
398
|
requestId: string;
|
|
333
|
-
data?: import("@iblai/iblai-api").
|
|
399
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
334
400
|
error?: unknown;
|
|
335
401
|
endpointName: string;
|
|
336
402
|
startedTimeStamp: number;
|
|
337
403
|
fulfilledTimeStamp?: number;
|
|
338
404
|
}, "error"> & Required<Pick<{
|
|
339
405
|
requestId: string;
|
|
340
|
-
data?: import("@iblai/iblai-api").
|
|
406
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
341
407
|
error?: unknown;
|
|
342
408
|
endpointName: string;
|
|
343
409
|
startedTimeStamp: number;
|
|
@@ -367,14 +433,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
367
433
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
368
434
|
} & Omit<{
|
|
369
435
|
requestId: string;
|
|
370
|
-
data?: import("@iblai/iblai-api").
|
|
436
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
371
437
|
error?: unknown;
|
|
372
438
|
endpointName: string;
|
|
373
439
|
startedTimeStamp: number;
|
|
374
440
|
fulfilledTimeStamp?: number;
|
|
375
441
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
376
442
|
requestId: string;
|
|
377
|
-
data?: import("@iblai/iblai-api").
|
|
443
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
378
444
|
error?: unknown;
|
|
379
445
|
endpointName: string;
|
|
380
446
|
startedTimeStamp: number;
|
|
@@ -391,7 +457,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
391
457
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
392
458
|
} & {
|
|
393
459
|
requestId: string;
|
|
394
|
-
data?: import("@iblai/iblai-api").
|
|
460
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
395
461
|
error?: unknown;
|
|
396
462
|
endpointName: string;
|
|
397
463
|
startedTimeStamp: number;
|
|
@@ -408,14 +474,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
408
474
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
409
475
|
} & Omit<{
|
|
410
476
|
requestId: string;
|
|
411
|
-
data?: import("@iblai/iblai-api").
|
|
477
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
412
478
|
error?: unknown;
|
|
413
479
|
endpointName: string;
|
|
414
480
|
startedTimeStamp: number;
|
|
415
481
|
fulfilledTimeStamp?: number;
|
|
416
482
|
}, "error"> & Required<Pick<{
|
|
417
483
|
requestId: string;
|
|
418
|
-
data?: import("@iblai/iblai-api").
|
|
484
|
+
data?: import("@iblai/iblai-api").OnboardingStatusUpdate | undefined;
|
|
419
485
|
error?: unknown;
|
|
420
486
|
endpointName: string;
|
|
421
487
|
startedTimeStamp: number;
|
|
@@ -428,10 +494,16 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
428
494
|
isError: true;
|
|
429
495
|
})) => R) | undefined;
|
|
430
496
|
fixedCacheKey?: string;
|
|
431
|
-
} | undefined) => readonly [(arg:
|
|
432
|
-
|
|
497
|
+
} | undefined) => readonly [(arg: {
|
|
498
|
+
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
499
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
500
|
+
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
501
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").OnboardingStatusUpdate, "appApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
502
|
+
originalArgs?: {
|
|
503
|
+
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
504
|
+
} | undefined;
|
|
433
505
|
reset: () => void;
|
|
434
|
-
}],
|
|
506
|
+
}], useUpdateUserTrialStatusMutation: <R extends Record<string, any> = ({
|
|
435
507
|
requestId?: undefined;
|
|
436
508
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
437
509
|
data?: undefined;
|
|
@@ -449,14 +521,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
449
521
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
450
522
|
} & Omit<{
|
|
451
523
|
requestId: string;
|
|
452
|
-
data?:
|
|
524
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
453
525
|
error?: unknown;
|
|
454
526
|
endpointName: string;
|
|
455
527
|
startedTimeStamp: number;
|
|
456
528
|
fulfilledTimeStamp?: number;
|
|
457
529
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
458
530
|
requestId: string;
|
|
459
|
-
data?:
|
|
531
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
460
532
|
error?: unknown;
|
|
461
533
|
endpointName: string;
|
|
462
534
|
startedTimeStamp: number;
|
|
@@ -473,7 +545,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
473
545
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
474
546
|
} & {
|
|
475
547
|
requestId: string;
|
|
476
|
-
data?:
|
|
548
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
477
549
|
error?: unknown;
|
|
478
550
|
endpointName: string;
|
|
479
551
|
startedTimeStamp: number;
|
|
@@ -490,14 +562,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
490
562
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
491
563
|
} & Omit<{
|
|
492
564
|
requestId: string;
|
|
493
|
-
data?:
|
|
565
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
494
566
|
error?: unknown;
|
|
495
567
|
endpointName: string;
|
|
496
568
|
startedTimeStamp: number;
|
|
497
569
|
fulfilledTimeStamp?: number;
|
|
498
570
|
}, "error"> & Required<Pick<{
|
|
499
571
|
requestId: string;
|
|
500
|
-
data?:
|
|
572
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
501
573
|
error?: unknown;
|
|
502
574
|
endpointName: string;
|
|
503
575
|
startedTimeStamp: number;
|
|
@@ -527,14 +599,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
527
599
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
528
600
|
} & Omit<{
|
|
529
601
|
requestId: string;
|
|
530
|
-
data?:
|
|
602
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
531
603
|
error?: unknown;
|
|
532
604
|
endpointName: string;
|
|
533
605
|
startedTimeStamp: number;
|
|
534
606
|
fulfilledTimeStamp?: number;
|
|
535
607
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
536
608
|
requestId: string;
|
|
537
|
-
data?:
|
|
609
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
538
610
|
error?: unknown;
|
|
539
611
|
endpointName: string;
|
|
540
612
|
startedTimeStamp: number;
|
|
@@ -551,7 +623,7 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
551
623
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
552
624
|
} & {
|
|
553
625
|
requestId: string;
|
|
554
|
-
data?:
|
|
626
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
555
627
|
error?: unknown;
|
|
556
628
|
endpointName: string;
|
|
557
629
|
startedTimeStamp: number;
|
|
@@ -568,14 +640,14 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
568
640
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
569
641
|
} & Omit<{
|
|
570
642
|
requestId: string;
|
|
571
|
-
data?:
|
|
643
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
572
644
|
error?: unknown;
|
|
573
645
|
endpointName: string;
|
|
574
646
|
startedTimeStamp: number;
|
|
575
647
|
fulfilledTimeStamp?: number;
|
|
576
648
|
}, "error"> & Required<Pick<{
|
|
577
649
|
requestId: string;
|
|
578
|
-
data?:
|
|
650
|
+
data?: import("@iblai/iblai-api").ActivateUserFreeTrial | undefined;
|
|
579
651
|
error?: unknown;
|
|
580
652
|
endpointName: string;
|
|
581
653
|
startedTimeStamp: number;
|
|
@@ -588,7 +660,13 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
588
660
|
isError: true;
|
|
589
661
|
})) => R) | undefined;
|
|
590
662
|
fixedCacheKey?: string;
|
|
591
|
-
} | undefined) => readonly [(arg:
|
|
592
|
-
|
|
663
|
+
} | undefined) => readonly [(arg: {
|
|
664
|
+
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
665
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
666
|
+
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
667
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").ActivateUserFreeTrial, "appApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
668
|
+
originalArgs?: {
|
|
669
|
+
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
670
|
+
} | undefined;
|
|
593
671
|
reset: () => void;
|
|
594
672
|
}];
|