@iblai/web-utils 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +31 -17
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
export declare const credentialsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const credentialsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
2
|
getCredentials: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
name?: string;
|
|
5
|
-
|
|
5
|
+
learner_id?: string;
|
|
6
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>;
|
|
6
7
|
getLLMCredentials: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
8
|
org: string;
|
|
8
9
|
name?: string;
|
|
9
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
10
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>;
|
|
10
11
|
getUserCredentials: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
11
12
|
org: string;
|
|
12
13
|
course?: string;
|
|
@@ -15,28 +16,34 @@ export declare const credentialsApiSlice: import("@reduxjs/toolkit/query").Api<i
|
|
|
15
16
|
includeRevoked?: boolean;
|
|
16
17
|
page?: number;
|
|
17
18
|
pageSize?: number;
|
|
18
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
19
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>;
|
|
19
20
|
createCallCredentials: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
20
21
|
mentor: string;
|
|
21
22
|
org: string;
|
|
22
|
-
requestBody: import("
|
|
23
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
23
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationRequest;
|
|
24
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse, "credentialsApiSlice", any>;
|
|
24
25
|
getIntegrationCredentials: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
25
26
|
org: string;
|
|
26
27
|
name?: string;
|
|
27
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>;
|
|
28
29
|
createIntegrationCredential: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
29
30
|
org: string;
|
|
30
|
-
requestBody: import("
|
|
31
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
31
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
32
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>;
|
|
32
33
|
createLLMCredential: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
33
34
|
org: string;
|
|
34
|
-
requestBody: import("
|
|
35
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
35
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialRequest;
|
|
36
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>;
|
|
36
37
|
updateIntegrationCredential: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
37
38
|
org: string;
|
|
38
|
-
requestBody?: import("
|
|
39
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
39
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").PatchedCredentialRequest;
|
|
40
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>;
|
|
41
|
+
getConnectedServiceAuthUrl: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
42
|
+
org: string;
|
|
43
|
+
provider: string;
|
|
44
|
+
service: string;
|
|
45
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>;
|
|
46
|
+
connectedServicesCallback: import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>;
|
|
40
47
|
}, "credentialsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
41
48
|
export declare const useGetCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
42
49
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -48,7 +55,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
48
55
|
startedTimeStamp?: undefined | undefined;
|
|
49
56
|
fulfilledTimeStamp?: undefined | undefined;
|
|
50
57
|
} & {
|
|
51
|
-
currentData?:
|
|
58
|
+
currentData?: any;
|
|
52
59
|
isUninitialized: false;
|
|
53
60
|
isLoading: false;
|
|
54
61
|
isFetching: false;
|
|
@@ -59,8 +66,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
59
66
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
60
67
|
org: string;
|
|
61
68
|
name?: string;
|
|
62
|
-
|
|
63
|
-
|
|
69
|
+
learner_id?: string;
|
|
70
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
71
|
+
currentData?: any;
|
|
64
72
|
isUninitialized: false;
|
|
65
73
|
isLoading: false;
|
|
66
74
|
isFetching: false;
|
|
@@ -77,8 +85,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
77
85
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
78
86
|
org: string;
|
|
79
87
|
name?: string;
|
|
80
|
-
|
|
81
|
-
|
|
88
|
+
learner_id?: string;
|
|
89
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
90
|
+
currentData?: any;
|
|
82
91
|
isUninitialized: false;
|
|
83
92
|
isLoading: false;
|
|
84
93
|
isFetching: false;
|
|
@@ -91,8 +100,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
91
100
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
92
101
|
org: string;
|
|
93
102
|
name?: string;
|
|
94
|
-
|
|
95
|
-
|
|
103
|
+
learner_id?: string;
|
|
104
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
105
|
+
currentData?: any;
|
|
96
106
|
isUninitialized: false;
|
|
97
107
|
isLoading: false;
|
|
98
108
|
isFetching: false;
|
|
@@ -103,8 +113,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
103
113
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
104
114
|
org: string;
|
|
105
115
|
name?: string;
|
|
106
|
-
|
|
107
|
-
|
|
116
|
+
learner_id?: string;
|
|
117
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
118
|
+
currentData?: any;
|
|
108
119
|
isUninitialized: false;
|
|
109
120
|
isLoading: false;
|
|
110
121
|
isFetching: false;
|
|
@@ -115,6 +126,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
115
126
|
}>(arg: {
|
|
116
127
|
org: string;
|
|
117
128
|
name?: string;
|
|
129
|
+
learner_id?: string;
|
|
118
130
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
119
131
|
skip?: boolean;
|
|
120
132
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -130,7 +142,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
130
142
|
startedTimeStamp?: undefined | undefined;
|
|
131
143
|
fulfilledTimeStamp?: undefined | undefined;
|
|
132
144
|
} & {
|
|
133
|
-
currentData?:
|
|
145
|
+
currentData?: any;
|
|
134
146
|
isUninitialized: false;
|
|
135
147
|
isLoading: false;
|
|
136
148
|
isFetching: false;
|
|
@@ -141,8 +153,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
141
153
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
142
154
|
org: string;
|
|
143
155
|
name?: string;
|
|
144
|
-
|
|
145
|
-
|
|
156
|
+
learner_id?: string;
|
|
157
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
158
|
+
currentData?: any;
|
|
146
159
|
isUninitialized: false;
|
|
147
160
|
isLoading: false;
|
|
148
161
|
isFetching: false;
|
|
@@ -159,8 +172,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
159
172
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
160
173
|
org: string;
|
|
161
174
|
name?: string;
|
|
162
|
-
|
|
163
|
-
|
|
175
|
+
learner_id?: string;
|
|
176
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
177
|
+
currentData?: any;
|
|
164
178
|
isUninitialized: false;
|
|
165
179
|
isLoading: false;
|
|
166
180
|
isFetching: false;
|
|
@@ -173,8 +187,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
173
187
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
174
188
|
org: string;
|
|
175
189
|
name?: string;
|
|
176
|
-
|
|
177
|
-
|
|
190
|
+
learner_id?: string;
|
|
191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
192
|
+
currentData?: any;
|
|
178
193
|
isUninitialized: false;
|
|
179
194
|
isLoading: false;
|
|
180
195
|
isFetching: false;
|
|
@@ -185,8 +200,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
185
200
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
186
201
|
org: string;
|
|
187
202
|
name?: string;
|
|
188
|
-
|
|
189
|
-
|
|
203
|
+
learner_id?: string;
|
|
204
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
205
|
+
currentData?: any;
|
|
190
206
|
isUninitialized: false;
|
|
191
207
|
isLoading: false;
|
|
192
208
|
isFetching: false;
|
|
@@ -199,7 +215,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
199
215
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
200
216
|
org: string;
|
|
201
217
|
name?: string;
|
|
202
|
-
|
|
218
|
+
learner_id?: string;
|
|
219
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>>;
|
|
203
220
|
}, useLazyGetCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
204
221
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
205
222
|
originalArgs?: undefined | undefined;
|
|
@@ -210,7 +227,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
210
227
|
startedTimeStamp?: undefined | undefined;
|
|
211
228
|
fulfilledTimeStamp?: undefined | undefined;
|
|
212
229
|
} & {
|
|
213
|
-
currentData?:
|
|
230
|
+
currentData?: any;
|
|
214
231
|
isUninitialized: false;
|
|
215
232
|
isLoading: false;
|
|
216
233
|
isFetching: false;
|
|
@@ -221,8 +238,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
221
238
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
222
239
|
org: string;
|
|
223
240
|
name?: string;
|
|
224
|
-
|
|
225
|
-
|
|
241
|
+
learner_id?: string;
|
|
242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
243
|
+
currentData?: any;
|
|
226
244
|
isUninitialized: false;
|
|
227
245
|
isLoading: false;
|
|
228
246
|
isFetching: false;
|
|
@@ -239,8 +257,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
239
257
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
240
258
|
org: string;
|
|
241
259
|
name?: string;
|
|
242
|
-
|
|
243
|
-
|
|
260
|
+
learner_id?: string;
|
|
261
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
262
|
+
currentData?: any;
|
|
244
263
|
isUninitialized: false;
|
|
245
264
|
isLoading: false;
|
|
246
265
|
isFetching: false;
|
|
@@ -253,8 +272,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
253
272
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
254
273
|
org: string;
|
|
255
274
|
name?: string;
|
|
256
|
-
|
|
257
|
-
|
|
275
|
+
learner_id?: string;
|
|
276
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
277
|
+
currentData?: any;
|
|
258
278
|
isUninitialized: false;
|
|
259
279
|
isLoading: false;
|
|
260
280
|
isFetching: false;
|
|
@@ -265,8 +285,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
265
285
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
266
286
|
org: string;
|
|
267
287
|
name?: string;
|
|
268
|
-
|
|
269
|
-
|
|
288
|
+
learner_id?: string;
|
|
289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
290
|
+
currentData?: any;
|
|
270
291
|
isUninitialized: false;
|
|
271
292
|
isLoading: false;
|
|
272
293
|
isFetching: false;
|
|
@@ -286,7 +307,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
286
307
|
startedTimeStamp?: undefined | undefined;
|
|
287
308
|
fulfilledTimeStamp?: undefined | undefined;
|
|
288
309
|
} & {
|
|
289
|
-
currentData?:
|
|
310
|
+
currentData?: any;
|
|
290
311
|
isUninitialized: false;
|
|
291
312
|
isLoading: false;
|
|
292
313
|
isFetching: false;
|
|
@@ -297,8 +318,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
297
318
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
298
319
|
org: string;
|
|
299
320
|
name?: string;
|
|
300
|
-
|
|
301
|
-
|
|
321
|
+
learner_id?: string;
|
|
322
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
323
|
+
currentData?: any;
|
|
302
324
|
isUninitialized: false;
|
|
303
325
|
isLoading: false;
|
|
304
326
|
isFetching: false;
|
|
@@ -315,8 +337,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
315
337
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
316
338
|
org: string;
|
|
317
339
|
name?: string;
|
|
318
|
-
|
|
319
|
-
|
|
340
|
+
learner_id?: string;
|
|
341
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
342
|
+
currentData?: any;
|
|
320
343
|
isUninitialized: false;
|
|
321
344
|
isLoading: false;
|
|
322
345
|
isFetching: false;
|
|
@@ -329,8 +352,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
329
352
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
330
353
|
org: string;
|
|
331
354
|
name?: string;
|
|
332
|
-
|
|
333
|
-
|
|
355
|
+
learner_id?: string;
|
|
356
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
357
|
+
currentData?: any;
|
|
334
358
|
isUninitialized: false;
|
|
335
359
|
isLoading: false;
|
|
336
360
|
isFetching: false;
|
|
@@ -341,8 +365,9 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
341
365
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
342
366
|
org: string;
|
|
343
367
|
name?: string;
|
|
344
|
-
|
|
345
|
-
|
|
368
|
+
learner_id?: string;
|
|
369
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>> & {
|
|
370
|
+
currentData?: any;
|
|
346
371
|
isUninitialized: false;
|
|
347
372
|
isLoading: false;
|
|
348
373
|
isFetching: false;
|
|
@@ -354,15 +379,18 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
354
379
|
}, "skip">) | undefined) => [(arg: {
|
|
355
380
|
org: string;
|
|
356
381
|
name?: string;
|
|
382
|
+
learner_id?: string;
|
|
357
383
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
358
384
|
org: string;
|
|
359
385
|
name?: string;
|
|
360
|
-
|
|
386
|
+
learner_id?: string;
|
|
387
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
361
388
|
reset: () => void;
|
|
362
389
|
}, {
|
|
363
390
|
lastArg: {
|
|
364
391
|
org: string;
|
|
365
392
|
name?: string;
|
|
393
|
+
learner_id?: string;
|
|
366
394
|
};
|
|
367
395
|
}], useGetUserCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
368
396
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -374,7 +402,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
374
402
|
startedTimeStamp?: undefined | undefined;
|
|
375
403
|
fulfilledTimeStamp?: undefined | undefined;
|
|
376
404
|
} & {
|
|
377
|
-
currentData?: import("
|
|
405
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
378
406
|
isUninitialized: false;
|
|
379
407
|
isLoading: false;
|
|
380
408
|
isFetching: false;
|
|
@@ -390,8 +418,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
390
418
|
includeRevoked?: boolean;
|
|
391
419
|
page?: number;
|
|
392
420
|
pageSize?: number;
|
|
393
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
394
|
-
currentData?: import("
|
|
421
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
422
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
395
423
|
isUninitialized: false;
|
|
396
424
|
isLoading: false;
|
|
397
425
|
isFetching: false;
|
|
@@ -413,8 +441,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
413
441
|
includeRevoked?: boolean;
|
|
414
442
|
page?: number;
|
|
415
443
|
pageSize?: number;
|
|
416
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
417
|
-
currentData?: import("
|
|
444
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
445
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
418
446
|
isUninitialized: false;
|
|
419
447
|
isLoading: false;
|
|
420
448
|
isFetching: false;
|
|
@@ -432,8 +460,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
432
460
|
includeRevoked?: boolean;
|
|
433
461
|
page?: number;
|
|
434
462
|
pageSize?: number;
|
|
435
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
436
|
-
currentData?: import("
|
|
463
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
464
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
437
465
|
isUninitialized: false;
|
|
438
466
|
isLoading: false;
|
|
439
467
|
isFetching: false;
|
|
@@ -449,8 +477,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
449
477
|
includeRevoked?: boolean;
|
|
450
478
|
page?: number;
|
|
451
479
|
pageSize?: number;
|
|
452
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
453
|
-
currentData?: import("
|
|
480
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
481
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
454
482
|
isUninitialized: false;
|
|
455
483
|
isLoading: false;
|
|
456
484
|
isFetching: false;
|
|
@@ -481,7 +509,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
481
509
|
startedTimeStamp?: undefined | undefined;
|
|
482
510
|
fulfilledTimeStamp?: undefined | undefined;
|
|
483
511
|
} & {
|
|
484
|
-
currentData?: import("
|
|
512
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
485
513
|
isUninitialized: false;
|
|
486
514
|
isLoading: false;
|
|
487
515
|
isFetching: false;
|
|
@@ -497,8 +525,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
497
525
|
includeRevoked?: boolean;
|
|
498
526
|
page?: number;
|
|
499
527
|
pageSize?: number;
|
|
500
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
501
|
-
currentData?: import("
|
|
528
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
529
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
502
530
|
isUninitialized: false;
|
|
503
531
|
isLoading: false;
|
|
504
532
|
isFetching: false;
|
|
@@ -520,8 +548,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
520
548
|
includeRevoked?: boolean;
|
|
521
549
|
page?: number;
|
|
522
550
|
pageSize?: number;
|
|
523
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
524
|
-
currentData?: import("
|
|
551
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
552
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
525
553
|
isUninitialized: false;
|
|
526
554
|
isLoading: false;
|
|
527
555
|
isFetching: false;
|
|
@@ -539,8 +567,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
539
567
|
includeRevoked?: boolean;
|
|
540
568
|
page?: number;
|
|
541
569
|
pageSize?: number;
|
|
542
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
543
|
-
currentData?: import("
|
|
570
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
571
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
544
572
|
isUninitialized: false;
|
|
545
573
|
isLoading: false;
|
|
546
574
|
isFetching: false;
|
|
@@ -556,8 +584,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
556
584
|
includeRevoked?: boolean;
|
|
557
585
|
page?: number;
|
|
558
586
|
pageSize?: number;
|
|
559
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
560
|
-
currentData?: import("
|
|
587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
588
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
561
589
|
isUninitialized: false;
|
|
562
590
|
isLoading: false;
|
|
563
591
|
isFetching: false;
|
|
@@ -575,7 +603,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
575
603
|
includeRevoked?: boolean;
|
|
576
604
|
page?: number;
|
|
577
605
|
pageSize?: number;
|
|
578
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
606
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>>;
|
|
579
607
|
}, useLazyGetUserCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
580
608
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
581
609
|
originalArgs?: undefined | undefined;
|
|
@@ -586,7 +614,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
586
614
|
startedTimeStamp?: undefined | undefined;
|
|
587
615
|
fulfilledTimeStamp?: undefined | undefined;
|
|
588
616
|
} & {
|
|
589
|
-
currentData?: import("
|
|
617
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
590
618
|
isUninitialized: false;
|
|
591
619
|
isLoading: false;
|
|
592
620
|
isFetching: false;
|
|
@@ -602,8 +630,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
602
630
|
includeRevoked?: boolean;
|
|
603
631
|
page?: number;
|
|
604
632
|
pageSize?: number;
|
|
605
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
606
|
-
currentData?: import("
|
|
633
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
634
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
607
635
|
isUninitialized: false;
|
|
608
636
|
isLoading: false;
|
|
609
637
|
isFetching: false;
|
|
@@ -625,8 +653,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
625
653
|
includeRevoked?: boolean;
|
|
626
654
|
page?: number;
|
|
627
655
|
pageSize?: number;
|
|
628
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
629
|
-
currentData?: import("
|
|
656
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
657
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
630
658
|
isUninitialized: false;
|
|
631
659
|
isLoading: false;
|
|
632
660
|
isFetching: false;
|
|
@@ -644,8 +672,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
644
672
|
includeRevoked?: boolean;
|
|
645
673
|
page?: number;
|
|
646
674
|
pageSize?: number;
|
|
647
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
648
|
-
currentData?: import("
|
|
675
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
676
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
649
677
|
isUninitialized: false;
|
|
650
678
|
isLoading: false;
|
|
651
679
|
isFetching: false;
|
|
@@ -661,8 +689,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
661
689
|
includeRevoked?: boolean;
|
|
662
690
|
page?: number;
|
|
663
691
|
pageSize?: number;
|
|
664
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
665
|
-
currentData?: import("
|
|
692
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
693
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
666
694
|
isUninitialized: false;
|
|
667
695
|
isLoading: false;
|
|
668
696
|
isFetching: false;
|
|
@@ -682,7 +710,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
682
710
|
startedTimeStamp?: undefined | undefined;
|
|
683
711
|
fulfilledTimeStamp?: undefined | undefined;
|
|
684
712
|
} & {
|
|
685
|
-
currentData?: import("
|
|
713
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
686
714
|
isUninitialized: false;
|
|
687
715
|
isLoading: false;
|
|
688
716
|
isFetching: false;
|
|
@@ -698,8 +726,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
698
726
|
includeRevoked?: boolean;
|
|
699
727
|
page?: number;
|
|
700
728
|
pageSize?: number;
|
|
701
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
702
|
-
currentData?: import("
|
|
729
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
730
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
703
731
|
isUninitialized: false;
|
|
704
732
|
isLoading: false;
|
|
705
733
|
isFetching: false;
|
|
@@ -721,8 +749,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
721
749
|
includeRevoked?: boolean;
|
|
722
750
|
page?: number;
|
|
723
751
|
pageSize?: number;
|
|
724
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
725
|
-
currentData?: import("
|
|
752
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
753
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
726
754
|
isUninitialized: false;
|
|
727
755
|
isLoading: false;
|
|
728
756
|
isFetching: false;
|
|
@@ -740,8 +768,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
740
768
|
includeRevoked?: boolean;
|
|
741
769
|
page?: number;
|
|
742
770
|
pageSize?: number;
|
|
743
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
744
|
-
currentData?: import("
|
|
771
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
772
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
745
773
|
isUninitialized: false;
|
|
746
774
|
isLoading: false;
|
|
747
775
|
isFetching: false;
|
|
@@ -757,8 +785,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
757
785
|
includeRevoked?: boolean;
|
|
758
786
|
page?: number;
|
|
759
787
|
pageSize?: number;
|
|
760
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
761
|
-
currentData?: import("
|
|
788
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>> & {
|
|
789
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse | undefined;
|
|
762
790
|
isUninitialized: false;
|
|
763
791
|
isLoading: false;
|
|
764
792
|
isFetching: false;
|
|
@@ -783,7 +811,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
783
811
|
includeRevoked?: boolean;
|
|
784
812
|
page?: number;
|
|
785
813
|
pageSize?: number;
|
|
786
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
814
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedAssertionsResponse, "credentialsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
787
815
|
reset: () => void;
|
|
788
816
|
}, {
|
|
789
817
|
lastArg: {
|
|
@@ -813,14 +841,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
813
841
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
814
842
|
} & Omit<{
|
|
815
843
|
requestId: string;
|
|
816
|
-
data?: import("
|
|
844
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
817
845
|
error?: unknown;
|
|
818
846
|
endpointName: string;
|
|
819
847
|
startedTimeStamp: number;
|
|
820
848
|
fulfilledTimeStamp?: number;
|
|
821
849
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
822
850
|
requestId: string;
|
|
823
|
-
data?: import("
|
|
851
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
824
852
|
error?: unknown;
|
|
825
853
|
endpointName: string;
|
|
826
854
|
startedTimeStamp: number;
|
|
@@ -837,7 +865,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
837
865
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
838
866
|
} & {
|
|
839
867
|
requestId: string;
|
|
840
|
-
data?: import("
|
|
868
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
841
869
|
error?: unknown;
|
|
842
870
|
endpointName: string;
|
|
843
871
|
startedTimeStamp: number;
|
|
@@ -854,14 +882,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
854
882
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
855
883
|
} & Omit<{
|
|
856
884
|
requestId: string;
|
|
857
|
-
data?: import("
|
|
885
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
858
886
|
error?: unknown;
|
|
859
887
|
endpointName: string;
|
|
860
888
|
startedTimeStamp: number;
|
|
861
889
|
fulfilledTimeStamp?: number;
|
|
862
890
|
}, "error"> & Required<Pick<{
|
|
863
891
|
requestId: string;
|
|
864
|
-
data?: import("
|
|
892
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
865
893
|
error?: unknown;
|
|
866
894
|
endpointName: string;
|
|
867
895
|
startedTimeStamp: number;
|
|
@@ -891,14 +919,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
891
919
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
892
920
|
} & Omit<{
|
|
893
921
|
requestId: string;
|
|
894
|
-
data?: import("
|
|
922
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
895
923
|
error?: unknown;
|
|
896
924
|
endpointName: string;
|
|
897
925
|
startedTimeStamp: number;
|
|
898
926
|
fulfilledTimeStamp?: number;
|
|
899
927
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
900
928
|
requestId: string;
|
|
901
|
-
data?: import("
|
|
929
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
902
930
|
error?: unknown;
|
|
903
931
|
endpointName: string;
|
|
904
932
|
startedTimeStamp: number;
|
|
@@ -915,7 +943,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
915
943
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
916
944
|
} & {
|
|
917
945
|
requestId: string;
|
|
918
|
-
data?: import("
|
|
946
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
919
947
|
error?: unknown;
|
|
920
948
|
endpointName: string;
|
|
921
949
|
startedTimeStamp: number;
|
|
@@ -932,14 +960,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
932
960
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
933
961
|
} & Omit<{
|
|
934
962
|
requestId: string;
|
|
935
|
-
data?: import("
|
|
963
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
936
964
|
error?: unknown;
|
|
937
965
|
endpointName: string;
|
|
938
966
|
startedTimeStamp: number;
|
|
939
967
|
fulfilledTimeStamp?: number;
|
|
940
968
|
}, "error"> & Required<Pick<{
|
|
941
969
|
requestId: string;
|
|
942
|
-
data?: import("
|
|
970
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse | undefined;
|
|
943
971
|
error?: unknown;
|
|
944
972
|
endpointName: string;
|
|
945
973
|
startedTimeStamp: number;
|
|
@@ -955,16 +983,16 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
955
983
|
} | undefined) => readonly [(arg: {
|
|
956
984
|
mentor: string;
|
|
957
985
|
org: string;
|
|
958
|
-
requestBody: import("
|
|
986
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationRequest;
|
|
959
987
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
960
988
|
mentor: string;
|
|
961
989
|
org: string;
|
|
962
|
-
requestBody: import("
|
|
963
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
990
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationRequest;
|
|
991
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationResponse, "credentialsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
964
992
|
originalArgs?: {
|
|
965
993
|
mentor: string;
|
|
966
994
|
org: string;
|
|
967
|
-
requestBody: import("
|
|
995
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CallAuthenticationRequest;
|
|
968
996
|
} | undefined;
|
|
969
997
|
reset: () => void;
|
|
970
998
|
}], useGetIntegrationCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -977,7 +1005,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
977
1005
|
startedTimeStamp?: undefined | undefined;
|
|
978
1006
|
fulfilledTimeStamp?: undefined | undefined;
|
|
979
1007
|
} & {
|
|
980
|
-
currentData?: import("
|
|
1008
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
981
1009
|
isUninitialized: false;
|
|
982
1010
|
isLoading: false;
|
|
983
1011
|
isFetching: false;
|
|
@@ -988,8 +1016,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
988
1016
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
989
1017
|
org: string;
|
|
990
1018
|
name?: string;
|
|
991
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
992
|
-
currentData?: import("
|
|
1019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1020
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
993
1021
|
isUninitialized: false;
|
|
994
1022
|
isLoading: false;
|
|
995
1023
|
isFetching: false;
|
|
@@ -1006,8 +1034,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1006
1034
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1007
1035
|
org: string;
|
|
1008
1036
|
name?: string;
|
|
1009
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1010
|
-
currentData?: import("
|
|
1037
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1038
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1011
1039
|
isUninitialized: false;
|
|
1012
1040
|
isLoading: false;
|
|
1013
1041
|
isFetching: false;
|
|
@@ -1020,8 +1048,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1020
1048
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1021
1049
|
org: string;
|
|
1022
1050
|
name?: string;
|
|
1023
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1024
|
-
currentData?: import("
|
|
1051
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1052
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1025
1053
|
isUninitialized: false;
|
|
1026
1054
|
isLoading: false;
|
|
1027
1055
|
isFetching: false;
|
|
@@ -1032,8 +1060,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1032
1060
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1033
1061
|
org: string;
|
|
1034
1062
|
name?: string;
|
|
1035
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1036
|
-
currentData?: import("
|
|
1063
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1064
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1037
1065
|
isUninitialized: false;
|
|
1038
1066
|
isLoading: false;
|
|
1039
1067
|
isFetching: false;
|
|
@@ -1059,7 +1087,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1059
1087
|
startedTimeStamp?: undefined | undefined;
|
|
1060
1088
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1061
1089
|
} & {
|
|
1062
|
-
currentData?: import("
|
|
1090
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1063
1091
|
isUninitialized: false;
|
|
1064
1092
|
isLoading: false;
|
|
1065
1093
|
isFetching: false;
|
|
@@ -1070,8 +1098,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1070
1098
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1071
1099
|
org: string;
|
|
1072
1100
|
name?: string;
|
|
1073
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1074
|
-
currentData?: import("
|
|
1101
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1102
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1075
1103
|
isUninitialized: false;
|
|
1076
1104
|
isLoading: false;
|
|
1077
1105
|
isFetching: false;
|
|
@@ -1088,8 +1116,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1088
1116
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1089
1117
|
org: string;
|
|
1090
1118
|
name?: string;
|
|
1091
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1092
|
-
currentData?: import("
|
|
1119
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1120
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1093
1121
|
isUninitialized: false;
|
|
1094
1122
|
isLoading: false;
|
|
1095
1123
|
isFetching: false;
|
|
@@ -1102,8 +1130,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1102
1130
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1103
1131
|
org: string;
|
|
1104
1132
|
name?: string;
|
|
1105
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1106
|
-
currentData?: import("
|
|
1133
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1134
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1107
1135
|
isUninitialized: false;
|
|
1108
1136
|
isLoading: false;
|
|
1109
1137
|
isFetching: false;
|
|
@@ -1114,8 +1142,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1114
1142
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1115
1143
|
org: string;
|
|
1116
1144
|
name?: string;
|
|
1117
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1118
|
-
currentData?: import("
|
|
1145
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1146
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1119
1147
|
isUninitialized: false;
|
|
1120
1148
|
isLoading: false;
|
|
1121
1149
|
isFetching: false;
|
|
@@ -1128,7 +1156,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1128
1156
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1129
1157
|
org: string;
|
|
1130
1158
|
name?: string;
|
|
1131
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1159
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>>;
|
|
1132
1160
|
}, useLazyGetIntegrationCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1133
1161
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1134
1162
|
originalArgs?: undefined | undefined;
|
|
@@ -1139,7 +1167,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1139
1167
|
startedTimeStamp?: undefined | undefined;
|
|
1140
1168
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1141
1169
|
} & {
|
|
1142
|
-
currentData?: import("
|
|
1170
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1143
1171
|
isUninitialized: false;
|
|
1144
1172
|
isLoading: false;
|
|
1145
1173
|
isFetching: false;
|
|
@@ -1150,8 +1178,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1150
1178
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1151
1179
|
org: string;
|
|
1152
1180
|
name?: string;
|
|
1153
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1154
|
-
currentData?: import("
|
|
1181
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1182
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1155
1183
|
isUninitialized: false;
|
|
1156
1184
|
isLoading: false;
|
|
1157
1185
|
isFetching: false;
|
|
@@ -1168,8 +1196,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1168
1196
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1169
1197
|
org: string;
|
|
1170
1198
|
name?: string;
|
|
1171
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1172
|
-
currentData?: import("
|
|
1199
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1200
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1173
1201
|
isUninitialized: false;
|
|
1174
1202
|
isLoading: false;
|
|
1175
1203
|
isFetching: false;
|
|
@@ -1182,8 +1210,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1182
1210
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1183
1211
|
org: string;
|
|
1184
1212
|
name?: string;
|
|
1185
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1186
|
-
currentData?: import("
|
|
1213
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1214
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1187
1215
|
isUninitialized: false;
|
|
1188
1216
|
isLoading: false;
|
|
1189
1217
|
isFetching: false;
|
|
@@ -1194,8 +1222,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1194
1222
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1195
1223
|
org: string;
|
|
1196
1224
|
name?: string;
|
|
1197
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1198
|
-
currentData?: import("
|
|
1225
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1226
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1199
1227
|
isUninitialized: false;
|
|
1200
1228
|
isLoading: false;
|
|
1201
1229
|
isFetching: false;
|
|
@@ -1215,7 +1243,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1215
1243
|
startedTimeStamp?: undefined | undefined;
|
|
1216
1244
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1217
1245
|
} & {
|
|
1218
|
-
currentData?: import("
|
|
1246
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1219
1247
|
isUninitialized: false;
|
|
1220
1248
|
isLoading: false;
|
|
1221
1249
|
isFetching: false;
|
|
@@ -1226,8 +1254,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1226
1254
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1227
1255
|
org: string;
|
|
1228
1256
|
name?: string;
|
|
1229
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1230
|
-
currentData?: import("
|
|
1257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1258
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1231
1259
|
isUninitialized: false;
|
|
1232
1260
|
isLoading: false;
|
|
1233
1261
|
isFetching: false;
|
|
@@ -1244,8 +1272,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1244
1272
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1245
1273
|
org: string;
|
|
1246
1274
|
name?: string;
|
|
1247
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1248
|
-
currentData?: import("
|
|
1275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1276
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1249
1277
|
isUninitialized: false;
|
|
1250
1278
|
isLoading: false;
|
|
1251
1279
|
isFetching: false;
|
|
@@ -1258,8 +1286,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1258
1286
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1259
1287
|
org: string;
|
|
1260
1288
|
name?: string;
|
|
1261
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1262
|
-
currentData?: import("
|
|
1289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1290
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1263
1291
|
isUninitialized: false;
|
|
1264
1292
|
isLoading: false;
|
|
1265
1293
|
isFetching: false;
|
|
@@ -1270,8 +1298,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1270
1298
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1271
1299
|
org: string;
|
|
1272
1300
|
name?: string;
|
|
1273
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1274
|
-
currentData?: import("
|
|
1301
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>> & {
|
|
1302
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1275
1303
|
isUninitialized: false;
|
|
1276
1304
|
isLoading: false;
|
|
1277
1305
|
isFetching: false;
|
|
@@ -1286,7 +1314,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1286
1314
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1287
1315
|
org: string;
|
|
1288
1316
|
name?: string;
|
|
1289
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1317
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1290
1318
|
reset: () => void;
|
|
1291
1319
|
}, {
|
|
1292
1320
|
lastArg: {
|
|
@@ -1311,14 +1339,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1311
1339
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1312
1340
|
} & Omit<{
|
|
1313
1341
|
requestId: string;
|
|
1314
|
-
data?: import("
|
|
1342
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1315
1343
|
error?: unknown;
|
|
1316
1344
|
endpointName: string;
|
|
1317
1345
|
startedTimeStamp: number;
|
|
1318
1346
|
fulfilledTimeStamp?: number;
|
|
1319
1347
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1320
1348
|
requestId: string;
|
|
1321
|
-
data?: import("
|
|
1349
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1322
1350
|
error?: unknown;
|
|
1323
1351
|
endpointName: string;
|
|
1324
1352
|
startedTimeStamp: number;
|
|
@@ -1335,7 +1363,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1335
1363
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1336
1364
|
} & {
|
|
1337
1365
|
requestId: string;
|
|
1338
|
-
data?: import("
|
|
1366
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1339
1367
|
error?: unknown;
|
|
1340
1368
|
endpointName: string;
|
|
1341
1369
|
startedTimeStamp: number;
|
|
@@ -1352,14 +1380,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1352
1380
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1353
1381
|
} & Omit<{
|
|
1354
1382
|
requestId: string;
|
|
1355
|
-
data?: import("
|
|
1383
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1356
1384
|
error?: unknown;
|
|
1357
1385
|
endpointName: string;
|
|
1358
1386
|
startedTimeStamp: number;
|
|
1359
1387
|
fulfilledTimeStamp?: number;
|
|
1360
1388
|
}, "error"> & Required<Pick<{
|
|
1361
1389
|
requestId: string;
|
|
1362
|
-
data?: import("
|
|
1390
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1363
1391
|
error?: unknown;
|
|
1364
1392
|
endpointName: string;
|
|
1365
1393
|
startedTimeStamp: number;
|
|
@@ -1389,14 +1417,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1389
1417
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1390
1418
|
} & Omit<{
|
|
1391
1419
|
requestId: string;
|
|
1392
|
-
data?: import("
|
|
1420
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1393
1421
|
error?: unknown;
|
|
1394
1422
|
endpointName: string;
|
|
1395
1423
|
startedTimeStamp: number;
|
|
1396
1424
|
fulfilledTimeStamp?: number;
|
|
1397
1425
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1398
1426
|
requestId: string;
|
|
1399
|
-
data?: import("
|
|
1427
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1400
1428
|
error?: unknown;
|
|
1401
1429
|
endpointName: string;
|
|
1402
1430
|
startedTimeStamp: number;
|
|
@@ -1413,7 +1441,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1413
1441
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1414
1442
|
} & {
|
|
1415
1443
|
requestId: string;
|
|
1416
|
-
data?: import("
|
|
1444
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1417
1445
|
error?: unknown;
|
|
1418
1446
|
endpointName: string;
|
|
1419
1447
|
startedTimeStamp: number;
|
|
@@ -1430,14 +1458,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1430
1458
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1431
1459
|
} & Omit<{
|
|
1432
1460
|
requestId: string;
|
|
1433
|
-
data?: import("
|
|
1461
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1434
1462
|
error?: unknown;
|
|
1435
1463
|
endpointName: string;
|
|
1436
1464
|
startedTimeStamp: number;
|
|
1437
1465
|
fulfilledTimeStamp?: number;
|
|
1438
1466
|
}, "error"> & Required<Pick<{
|
|
1439
1467
|
requestId: string;
|
|
1440
|
-
data?: import("
|
|
1468
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1441
1469
|
error?: unknown;
|
|
1442
1470
|
endpointName: string;
|
|
1443
1471
|
startedTimeStamp: number;
|
|
@@ -1452,14 +1480,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1452
1480
|
fixedCacheKey?: string;
|
|
1453
1481
|
} | undefined) => readonly [(arg: {
|
|
1454
1482
|
org: string;
|
|
1455
|
-
requestBody: import("
|
|
1483
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1456
1484
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1457
1485
|
org: string;
|
|
1458
|
-
requestBody: import("
|
|
1459
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1486
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1487
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1460
1488
|
originalArgs?: {
|
|
1461
1489
|
org: string;
|
|
1462
|
-
requestBody: import("
|
|
1490
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1463
1491
|
} | undefined;
|
|
1464
1492
|
reset: () => void;
|
|
1465
1493
|
}], useUpdateIntegrationCredentialMutation: <R extends Record<string, any> = ({
|
|
@@ -1480,14 +1508,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1480
1508
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1481
1509
|
} & Omit<{
|
|
1482
1510
|
requestId: string;
|
|
1483
|
-
data?: import("
|
|
1511
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1484
1512
|
error?: unknown;
|
|
1485
1513
|
endpointName: string;
|
|
1486
1514
|
startedTimeStamp: number;
|
|
1487
1515
|
fulfilledTimeStamp?: number;
|
|
1488
1516
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1489
1517
|
requestId: string;
|
|
1490
|
-
data?: import("
|
|
1518
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1491
1519
|
error?: unknown;
|
|
1492
1520
|
endpointName: string;
|
|
1493
1521
|
startedTimeStamp: number;
|
|
@@ -1504,7 +1532,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1504
1532
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1505
1533
|
} & {
|
|
1506
1534
|
requestId: string;
|
|
1507
|
-
data?: import("
|
|
1535
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1508
1536
|
error?: unknown;
|
|
1509
1537
|
endpointName: string;
|
|
1510
1538
|
startedTimeStamp: number;
|
|
@@ -1521,14 +1549,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1521
1549
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1522
1550
|
} & Omit<{
|
|
1523
1551
|
requestId: string;
|
|
1524
|
-
data?: import("
|
|
1552
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1525
1553
|
error?: unknown;
|
|
1526
1554
|
endpointName: string;
|
|
1527
1555
|
startedTimeStamp: number;
|
|
1528
1556
|
fulfilledTimeStamp?: number;
|
|
1529
1557
|
}, "error"> & Required<Pick<{
|
|
1530
1558
|
requestId: string;
|
|
1531
|
-
data?: import("
|
|
1559
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1532
1560
|
error?: unknown;
|
|
1533
1561
|
endpointName: string;
|
|
1534
1562
|
startedTimeStamp: number;
|
|
@@ -1558,14 +1586,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1558
1586
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1559
1587
|
} & Omit<{
|
|
1560
1588
|
requestId: string;
|
|
1561
|
-
data?: import("
|
|
1589
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1562
1590
|
error?: unknown;
|
|
1563
1591
|
endpointName: string;
|
|
1564
1592
|
startedTimeStamp: number;
|
|
1565
1593
|
fulfilledTimeStamp?: number;
|
|
1566
1594
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1567
1595
|
requestId: string;
|
|
1568
|
-
data?: import("
|
|
1596
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1569
1597
|
error?: unknown;
|
|
1570
1598
|
endpointName: string;
|
|
1571
1599
|
startedTimeStamp: number;
|
|
@@ -1582,7 +1610,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1582
1610
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1583
1611
|
} & {
|
|
1584
1612
|
requestId: string;
|
|
1585
|
-
data?: import("
|
|
1613
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1586
1614
|
error?: unknown;
|
|
1587
1615
|
endpointName: string;
|
|
1588
1616
|
startedTimeStamp: number;
|
|
@@ -1599,14 +1627,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1599
1627
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1600
1628
|
} & Omit<{
|
|
1601
1629
|
requestId: string;
|
|
1602
|
-
data?: import("
|
|
1630
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1603
1631
|
error?: unknown;
|
|
1604
1632
|
endpointName: string;
|
|
1605
1633
|
startedTimeStamp: number;
|
|
1606
1634
|
fulfilledTimeStamp?: number;
|
|
1607
1635
|
}, "error"> & Required<Pick<{
|
|
1608
1636
|
requestId: string;
|
|
1609
|
-
data?: import("
|
|
1637
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential | undefined;
|
|
1610
1638
|
error?: unknown;
|
|
1611
1639
|
endpointName: string;
|
|
1612
1640
|
startedTimeStamp: number;
|
|
@@ -1621,14 +1649,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1621
1649
|
fixedCacheKey?: string;
|
|
1622
1650
|
} | undefined) => readonly [(arg: {
|
|
1623
1651
|
org: string;
|
|
1624
|
-
requestBody?: import("
|
|
1652
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").PatchedCredentialRequest;
|
|
1625
1653
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1626
1654
|
org: string;
|
|
1627
|
-
requestBody?: import("
|
|
1628
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1655
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").PatchedCredentialRequest;
|
|
1656
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1629
1657
|
originalArgs?: {
|
|
1630
1658
|
org: string;
|
|
1631
|
-
requestBody?: import("
|
|
1659
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").PatchedCredentialRequest;
|
|
1632
1660
|
} | undefined;
|
|
1633
1661
|
reset: () => void;
|
|
1634
1662
|
}], useGetLLMCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -1641,7 +1669,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1641
1669
|
startedTimeStamp?: undefined | undefined;
|
|
1642
1670
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1643
1671
|
} & {
|
|
1644
|
-
currentData?: import("
|
|
1672
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1645
1673
|
isUninitialized: false;
|
|
1646
1674
|
isLoading: false;
|
|
1647
1675
|
isFetching: false;
|
|
@@ -1652,8 +1680,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1652
1680
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1653
1681
|
org: string;
|
|
1654
1682
|
name?: string;
|
|
1655
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1656
|
-
currentData?: import("
|
|
1683
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1684
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1657
1685
|
isUninitialized: false;
|
|
1658
1686
|
isLoading: false;
|
|
1659
1687
|
isFetching: false;
|
|
@@ -1670,8 +1698,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1670
1698
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1671
1699
|
org: string;
|
|
1672
1700
|
name?: string;
|
|
1673
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1674
|
-
currentData?: import("
|
|
1701
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1702
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1675
1703
|
isUninitialized: false;
|
|
1676
1704
|
isLoading: false;
|
|
1677
1705
|
isFetching: false;
|
|
@@ -1684,8 +1712,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1684
1712
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1685
1713
|
org: string;
|
|
1686
1714
|
name?: string;
|
|
1687
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1688
|
-
currentData?: import("
|
|
1715
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1716
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1689
1717
|
isUninitialized: false;
|
|
1690
1718
|
isLoading: false;
|
|
1691
1719
|
isFetching: false;
|
|
@@ -1696,8 +1724,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1696
1724
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1697
1725
|
org: string;
|
|
1698
1726
|
name?: string;
|
|
1699
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1700
|
-
currentData?: import("
|
|
1727
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1728
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1701
1729
|
isUninitialized: false;
|
|
1702
1730
|
isLoading: false;
|
|
1703
1731
|
isFetching: false;
|
|
@@ -1723,7 +1751,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1723
1751
|
startedTimeStamp?: undefined | undefined;
|
|
1724
1752
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1725
1753
|
} & {
|
|
1726
|
-
currentData?: import("
|
|
1754
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1727
1755
|
isUninitialized: false;
|
|
1728
1756
|
isLoading: false;
|
|
1729
1757
|
isFetching: false;
|
|
@@ -1734,8 +1762,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1734
1762
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1735
1763
|
org: string;
|
|
1736
1764
|
name?: string;
|
|
1737
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1738
|
-
currentData?: import("
|
|
1765
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1766
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1739
1767
|
isUninitialized: false;
|
|
1740
1768
|
isLoading: false;
|
|
1741
1769
|
isFetching: false;
|
|
@@ -1752,8 +1780,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1752
1780
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1753
1781
|
org: string;
|
|
1754
1782
|
name?: string;
|
|
1755
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1756
|
-
currentData?: import("
|
|
1783
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1784
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1757
1785
|
isUninitialized: false;
|
|
1758
1786
|
isLoading: false;
|
|
1759
1787
|
isFetching: false;
|
|
@@ -1766,8 +1794,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1766
1794
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1767
1795
|
org: string;
|
|
1768
1796
|
name?: string;
|
|
1769
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1770
|
-
currentData?: import("
|
|
1797
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1798
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1771
1799
|
isUninitialized: false;
|
|
1772
1800
|
isLoading: false;
|
|
1773
1801
|
isFetching: false;
|
|
@@ -1778,8 +1806,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1778
1806
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1779
1807
|
org: string;
|
|
1780
1808
|
name?: string;
|
|
1781
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1782
|
-
currentData?: import("
|
|
1809
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1810
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1783
1811
|
isUninitialized: false;
|
|
1784
1812
|
isLoading: false;
|
|
1785
1813
|
isFetching: false;
|
|
@@ -1792,7 +1820,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1792
1820
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1793
1821
|
org: string;
|
|
1794
1822
|
name?: string;
|
|
1795
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1823
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>>;
|
|
1796
1824
|
}, useLazyGetLLMCredentialsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1797
1825
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1798
1826
|
originalArgs?: undefined | undefined;
|
|
@@ -1803,7 +1831,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1803
1831
|
startedTimeStamp?: undefined | undefined;
|
|
1804
1832
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1805
1833
|
} & {
|
|
1806
|
-
currentData?: import("
|
|
1834
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1807
1835
|
isUninitialized: false;
|
|
1808
1836
|
isLoading: false;
|
|
1809
1837
|
isFetching: false;
|
|
@@ -1814,8 +1842,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1814
1842
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1815
1843
|
org: string;
|
|
1816
1844
|
name?: string;
|
|
1817
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1818
|
-
currentData?: import("
|
|
1845
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1846
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1819
1847
|
isUninitialized: false;
|
|
1820
1848
|
isLoading: false;
|
|
1821
1849
|
isFetching: false;
|
|
@@ -1832,8 +1860,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1832
1860
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1833
1861
|
org: string;
|
|
1834
1862
|
name?: string;
|
|
1835
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1836
|
-
currentData?: import("
|
|
1863
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1864
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1837
1865
|
isUninitialized: false;
|
|
1838
1866
|
isLoading: false;
|
|
1839
1867
|
isFetching: false;
|
|
@@ -1846,8 +1874,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1846
1874
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1847
1875
|
org: string;
|
|
1848
1876
|
name?: string;
|
|
1849
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1850
|
-
currentData?: import("
|
|
1877
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1878
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1851
1879
|
isUninitialized: false;
|
|
1852
1880
|
isLoading: false;
|
|
1853
1881
|
isFetching: false;
|
|
@@ -1858,8 +1886,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1858
1886
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1859
1887
|
org: string;
|
|
1860
1888
|
name?: string;
|
|
1861
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1862
|
-
currentData?: import("
|
|
1889
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1890
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1863
1891
|
isUninitialized: false;
|
|
1864
1892
|
isLoading: false;
|
|
1865
1893
|
isFetching: false;
|
|
@@ -1879,7 +1907,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1879
1907
|
startedTimeStamp?: undefined | undefined;
|
|
1880
1908
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1881
1909
|
} & {
|
|
1882
|
-
currentData?: import("
|
|
1910
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1883
1911
|
isUninitialized: false;
|
|
1884
1912
|
isLoading: false;
|
|
1885
1913
|
isFetching: false;
|
|
@@ -1890,8 +1918,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1890
1918
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1891
1919
|
org: string;
|
|
1892
1920
|
name?: string;
|
|
1893
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1894
|
-
currentData?: import("
|
|
1921
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1922
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1895
1923
|
isUninitialized: false;
|
|
1896
1924
|
isLoading: false;
|
|
1897
1925
|
isFetching: false;
|
|
@@ -1908,8 +1936,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1908
1936
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1909
1937
|
org: string;
|
|
1910
1938
|
name?: string;
|
|
1911
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1912
|
-
currentData?: import("
|
|
1939
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1940
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1913
1941
|
isUninitialized: false;
|
|
1914
1942
|
isLoading: false;
|
|
1915
1943
|
isFetching: false;
|
|
@@ -1922,8 +1950,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1922
1950
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1923
1951
|
org: string;
|
|
1924
1952
|
name?: string;
|
|
1925
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1926
|
-
currentData?: import("
|
|
1953
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1954
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1927
1955
|
isUninitialized: false;
|
|
1928
1956
|
isLoading: false;
|
|
1929
1957
|
isFetching: false;
|
|
@@ -1934,8 +1962,8 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1934
1962
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1935
1963
|
org: string;
|
|
1936
1964
|
name?: string;
|
|
1937
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1938
|
-
currentData?: import("
|
|
1965
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>> & {
|
|
1966
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1939
1967
|
isUninitialized: false;
|
|
1940
1968
|
isLoading: false;
|
|
1941
1969
|
isFetching: false;
|
|
@@ -1950,7 +1978,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1950
1978
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1951
1979
|
org: string;
|
|
1952
1980
|
name?: string;
|
|
1953
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1981
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1954
1982
|
reset: () => void;
|
|
1955
1983
|
}, {
|
|
1956
1984
|
lastArg: {
|
|
@@ -1975,14 +2003,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1975
2003
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1976
2004
|
} & Omit<{
|
|
1977
2005
|
requestId: string;
|
|
1978
|
-
data?: import("
|
|
2006
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1979
2007
|
error?: unknown;
|
|
1980
2008
|
endpointName: string;
|
|
1981
2009
|
startedTimeStamp: number;
|
|
1982
2010
|
fulfilledTimeStamp?: number;
|
|
1983
2011
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1984
2012
|
requestId: string;
|
|
1985
|
-
data?: import("
|
|
2013
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
1986
2014
|
error?: unknown;
|
|
1987
2015
|
endpointName: string;
|
|
1988
2016
|
startedTimeStamp: number;
|
|
@@ -1999,7 +2027,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1999
2027
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
2000
2028
|
} & {
|
|
2001
2029
|
requestId: string;
|
|
2002
|
-
data?: import("
|
|
2030
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2003
2031
|
error?: unknown;
|
|
2004
2032
|
endpointName: string;
|
|
2005
2033
|
startedTimeStamp: number;
|
|
@@ -2016,14 +2044,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
2016
2044
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
2017
2045
|
} & Omit<{
|
|
2018
2046
|
requestId: string;
|
|
2019
|
-
data?: import("
|
|
2047
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2020
2048
|
error?: unknown;
|
|
2021
2049
|
endpointName: string;
|
|
2022
2050
|
startedTimeStamp: number;
|
|
2023
2051
|
fulfilledTimeStamp?: number;
|
|
2024
2052
|
}, "error"> & Required<Pick<{
|
|
2025
2053
|
requestId: string;
|
|
2026
|
-
data?: import("
|
|
2054
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2027
2055
|
error?: unknown;
|
|
2028
2056
|
endpointName: string;
|
|
2029
2057
|
startedTimeStamp: number;
|
|
@@ -2053,14 +2081,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
2053
2081
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
2054
2082
|
} & Omit<{
|
|
2055
2083
|
requestId: string;
|
|
2056
|
-
data?: import("
|
|
2084
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2057
2085
|
error?: unknown;
|
|
2058
2086
|
endpointName: string;
|
|
2059
2087
|
startedTimeStamp: number;
|
|
2060
2088
|
fulfilledTimeStamp?: number;
|
|
2061
2089
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2062
2090
|
requestId: string;
|
|
2063
|
-
data?: import("
|
|
2091
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2064
2092
|
error?: unknown;
|
|
2065
2093
|
endpointName: string;
|
|
2066
2094
|
startedTimeStamp: number;
|
|
@@ -2077,7 +2105,7 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
2077
2105
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
2078
2106
|
} & {
|
|
2079
2107
|
requestId: string;
|
|
2080
|
-
data?: import("
|
|
2108
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2081
2109
|
error?: unknown;
|
|
2082
2110
|
endpointName: string;
|
|
2083
2111
|
startedTimeStamp: number;
|
|
@@ -2094,14 +2122,14 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
2094
2122
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
2095
2123
|
} & Omit<{
|
|
2096
2124
|
requestId: string;
|
|
2097
|
-
data?: import("
|
|
2125
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2098
2126
|
error?: unknown;
|
|
2099
2127
|
endpointName: string;
|
|
2100
2128
|
startedTimeStamp: number;
|
|
2101
2129
|
fulfilledTimeStamp?: number;
|
|
2102
2130
|
}, "error"> & Required<Pick<{
|
|
2103
2131
|
requestId: string;
|
|
2104
|
-
data?: import("
|
|
2132
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse | undefined;
|
|
2105
2133
|
error?: unknown;
|
|
2106
2134
|
endpointName: string;
|
|
2107
2135
|
startedTimeStamp: number;
|
|
@@ -2116,14 +2144,624 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
2116
2144
|
fixedCacheKey?: string;
|
|
2117
2145
|
} | undefined) => readonly [(arg: {
|
|
2118
2146
|
org: string;
|
|
2119
|
-
requestBody: import("
|
|
2147
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialRequest;
|
|
2120
2148
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2121
2149
|
org: string;
|
|
2122
|
-
requestBody: import("
|
|
2123
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2150
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialRequest;
|
|
2151
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialResponse, "credentialsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2124
2152
|
originalArgs?: {
|
|
2125
2153
|
org: string;
|
|
2126
|
-
requestBody: import("
|
|
2154
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").LLMCredentialRequest;
|
|
2127
2155
|
} | undefined;
|
|
2128
2156
|
reset: () => void;
|
|
2157
|
+
}], useGetConnectedServiceAuthUrlQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2158
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2159
|
+
originalArgs?: undefined | undefined;
|
|
2160
|
+
data?: undefined | undefined;
|
|
2161
|
+
error?: undefined | undefined;
|
|
2162
|
+
requestId?: undefined | undefined;
|
|
2163
|
+
endpointName?: string | undefined;
|
|
2164
|
+
startedTimeStamp?: undefined | undefined;
|
|
2165
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2166
|
+
} & {
|
|
2167
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2168
|
+
isUninitialized: false;
|
|
2169
|
+
isLoading: false;
|
|
2170
|
+
isFetching: false;
|
|
2171
|
+
isSuccess: false;
|
|
2172
|
+
isError: false;
|
|
2173
|
+
}, "isUninitialized"> & {
|
|
2174
|
+
isUninitialized: true;
|
|
2175
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2176
|
+
org: string;
|
|
2177
|
+
provider: string;
|
|
2178
|
+
service: string;
|
|
2179
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2180
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2181
|
+
isUninitialized: false;
|
|
2182
|
+
isLoading: false;
|
|
2183
|
+
isFetching: false;
|
|
2184
|
+
isSuccess: false;
|
|
2185
|
+
isError: false;
|
|
2186
|
+
}, {
|
|
2187
|
+
isLoading: true;
|
|
2188
|
+
isFetching: boolean;
|
|
2189
|
+
data: undefined;
|
|
2190
|
+
} | ({
|
|
2191
|
+
isSuccess: true;
|
|
2192
|
+
isFetching: true;
|
|
2193
|
+
error: undefined;
|
|
2194
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2195
|
+
org: string;
|
|
2196
|
+
provider: string;
|
|
2197
|
+
service: string;
|
|
2198
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2199
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2200
|
+
isUninitialized: false;
|
|
2201
|
+
isLoading: false;
|
|
2202
|
+
isFetching: false;
|
|
2203
|
+
isSuccess: false;
|
|
2204
|
+
isError: false;
|
|
2205
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2206
|
+
isSuccess: true;
|
|
2207
|
+
isFetching: false;
|
|
2208
|
+
error: undefined;
|
|
2209
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2210
|
+
org: string;
|
|
2211
|
+
provider: string;
|
|
2212
|
+
service: string;
|
|
2213
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2214
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2215
|
+
isUninitialized: false;
|
|
2216
|
+
isLoading: false;
|
|
2217
|
+
isFetching: false;
|
|
2218
|
+
isSuccess: false;
|
|
2219
|
+
isError: false;
|
|
2220
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2221
|
+
isError: true;
|
|
2222
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2223
|
+
org: string;
|
|
2224
|
+
provider: string;
|
|
2225
|
+
service: string;
|
|
2226
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2227
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2228
|
+
isUninitialized: false;
|
|
2229
|
+
isLoading: false;
|
|
2230
|
+
isFetching: false;
|
|
2231
|
+
isSuccess: false;
|
|
2232
|
+
isError: false;
|
|
2233
|
+
}, "error">>)>> & {
|
|
2234
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2235
|
+
}>(arg: {
|
|
2236
|
+
org: string;
|
|
2237
|
+
provider: string;
|
|
2238
|
+
service: string;
|
|
2239
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2240
|
+
skip?: boolean;
|
|
2241
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
2242
|
+
} & {
|
|
2243
|
+
skip?: boolean;
|
|
2244
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2245
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2246
|
+
originalArgs?: undefined | undefined;
|
|
2247
|
+
data?: undefined | undefined;
|
|
2248
|
+
error?: undefined | undefined;
|
|
2249
|
+
requestId?: undefined | undefined;
|
|
2250
|
+
endpointName?: string | undefined;
|
|
2251
|
+
startedTimeStamp?: undefined | undefined;
|
|
2252
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2253
|
+
} & {
|
|
2254
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2255
|
+
isUninitialized: false;
|
|
2256
|
+
isLoading: false;
|
|
2257
|
+
isFetching: false;
|
|
2258
|
+
isSuccess: false;
|
|
2259
|
+
isError: false;
|
|
2260
|
+
}, "isUninitialized"> & {
|
|
2261
|
+
isUninitialized: true;
|
|
2262
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2263
|
+
org: string;
|
|
2264
|
+
provider: string;
|
|
2265
|
+
service: string;
|
|
2266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2267
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2268
|
+
isUninitialized: false;
|
|
2269
|
+
isLoading: false;
|
|
2270
|
+
isFetching: false;
|
|
2271
|
+
isSuccess: false;
|
|
2272
|
+
isError: false;
|
|
2273
|
+
}, {
|
|
2274
|
+
isLoading: true;
|
|
2275
|
+
isFetching: boolean;
|
|
2276
|
+
data: undefined;
|
|
2277
|
+
} | ({
|
|
2278
|
+
isSuccess: true;
|
|
2279
|
+
isFetching: true;
|
|
2280
|
+
error: undefined;
|
|
2281
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2282
|
+
org: string;
|
|
2283
|
+
provider: string;
|
|
2284
|
+
service: string;
|
|
2285
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2286
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2287
|
+
isUninitialized: false;
|
|
2288
|
+
isLoading: false;
|
|
2289
|
+
isFetching: false;
|
|
2290
|
+
isSuccess: false;
|
|
2291
|
+
isError: false;
|
|
2292
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2293
|
+
isSuccess: true;
|
|
2294
|
+
isFetching: false;
|
|
2295
|
+
error: undefined;
|
|
2296
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2297
|
+
org: string;
|
|
2298
|
+
provider: string;
|
|
2299
|
+
service: string;
|
|
2300
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2301
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2302
|
+
isUninitialized: false;
|
|
2303
|
+
isLoading: false;
|
|
2304
|
+
isFetching: false;
|
|
2305
|
+
isSuccess: false;
|
|
2306
|
+
isError: false;
|
|
2307
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2308
|
+
isError: true;
|
|
2309
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2310
|
+
org: string;
|
|
2311
|
+
provider: string;
|
|
2312
|
+
service: string;
|
|
2313
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2314
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2315
|
+
isUninitialized: false;
|
|
2316
|
+
isLoading: false;
|
|
2317
|
+
isFetching: false;
|
|
2318
|
+
isSuccess: false;
|
|
2319
|
+
isError: false;
|
|
2320
|
+
}, "error">>)>> & {
|
|
2321
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2322
|
+
}) => R) | undefined;
|
|
2323
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2324
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2325
|
+
org: string;
|
|
2326
|
+
provider: string;
|
|
2327
|
+
service: string;
|
|
2328
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>>;
|
|
2329
|
+
}, useLazyGetConnectedServiceAuthUrlQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2330
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2331
|
+
originalArgs?: undefined | undefined;
|
|
2332
|
+
data?: undefined | undefined;
|
|
2333
|
+
error?: undefined | undefined;
|
|
2334
|
+
requestId?: undefined | undefined;
|
|
2335
|
+
endpointName?: string | undefined;
|
|
2336
|
+
startedTimeStamp?: undefined | undefined;
|
|
2337
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2338
|
+
} & {
|
|
2339
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2340
|
+
isUninitialized: false;
|
|
2341
|
+
isLoading: false;
|
|
2342
|
+
isFetching: false;
|
|
2343
|
+
isSuccess: false;
|
|
2344
|
+
isError: false;
|
|
2345
|
+
}, "isUninitialized"> & {
|
|
2346
|
+
isUninitialized: true;
|
|
2347
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2348
|
+
org: string;
|
|
2349
|
+
provider: string;
|
|
2350
|
+
service: string;
|
|
2351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2352
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2353
|
+
isUninitialized: false;
|
|
2354
|
+
isLoading: false;
|
|
2355
|
+
isFetching: false;
|
|
2356
|
+
isSuccess: false;
|
|
2357
|
+
isError: false;
|
|
2358
|
+
}, {
|
|
2359
|
+
isLoading: true;
|
|
2360
|
+
isFetching: boolean;
|
|
2361
|
+
data: undefined;
|
|
2362
|
+
} | ({
|
|
2363
|
+
isSuccess: true;
|
|
2364
|
+
isFetching: true;
|
|
2365
|
+
error: undefined;
|
|
2366
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2367
|
+
org: string;
|
|
2368
|
+
provider: string;
|
|
2369
|
+
service: string;
|
|
2370
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2371
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2372
|
+
isUninitialized: false;
|
|
2373
|
+
isLoading: false;
|
|
2374
|
+
isFetching: false;
|
|
2375
|
+
isSuccess: false;
|
|
2376
|
+
isError: false;
|
|
2377
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2378
|
+
isSuccess: true;
|
|
2379
|
+
isFetching: false;
|
|
2380
|
+
error: undefined;
|
|
2381
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2382
|
+
org: string;
|
|
2383
|
+
provider: string;
|
|
2384
|
+
service: string;
|
|
2385
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2386
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2387
|
+
isUninitialized: false;
|
|
2388
|
+
isLoading: false;
|
|
2389
|
+
isFetching: false;
|
|
2390
|
+
isSuccess: false;
|
|
2391
|
+
isError: false;
|
|
2392
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2393
|
+
isError: true;
|
|
2394
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2395
|
+
org: string;
|
|
2396
|
+
provider: string;
|
|
2397
|
+
service: string;
|
|
2398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2399
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2400
|
+
isUninitialized: false;
|
|
2401
|
+
isLoading: false;
|
|
2402
|
+
isFetching: false;
|
|
2403
|
+
isSuccess: false;
|
|
2404
|
+
isError: false;
|
|
2405
|
+
}, "error">>)>> & {
|
|
2406
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2407
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
2408
|
+
skip?: boolean;
|
|
2409
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2410
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2411
|
+
originalArgs?: undefined | undefined;
|
|
2412
|
+
data?: undefined | undefined;
|
|
2413
|
+
error?: undefined | undefined;
|
|
2414
|
+
requestId?: undefined | undefined;
|
|
2415
|
+
endpointName?: string | undefined;
|
|
2416
|
+
startedTimeStamp?: undefined | undefined;
|
|
2417
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2418
|
+
} & {
|
|
2419
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2420
|
+
isUninitialized: false;
|
|
2421
|
+
isLoading: false;
|
|
2422
|
+
isFetching: false;
|
|
2423
|
+
isSuccess: false;
|
|
2424
|
+
isError: false;
|
|
2425
|
+
}, "isUninitialized"> & {
|
|
2426
|
+
isUninitialized: true;
|
|
2427
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2428
|
+
org: string;
|
|
2429
|
+
provider: string;
|
|
2430
|
+
service: string;
|
|
2431
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2432
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2433
|
+
isUninitialized: false;
|
|
2434
|
+
isLoading: false;
|
|
2435
|
+
isFetching: false;
|
|
2436
|
+
isSuccess: false;
|
|
2437
|
+
isError: false;
|
|
2438
|
+
}, {
|
|
2439
|
+
isLoading: true;
|
|
2440
|
+
isFetching: boolean;
|
|
2441
|
+
data: undefined;
|
|
2442
|
+
} | ({
|
|
2443
|
+
isSuccess: true;
|
|
2444
|
+
isFetching: true;
|
|
2445
|
+
error: undefined;
|
|
2446
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2447
|
+
org: string;
|
|
2448
|
+
provider: string;
|
|
2449
|
+
service: string;
|
|
2450
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2451
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2452
|
+
isUninitialized: false;
|
|
2453
|
+
isLoading: false;
|
|
2454
|
+
isFetching: false;
|
|
2455
|
+
isSuccess: false;
|
|
2456
|
+
isError: false;
|
|
2457
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2458
|
+
isSuccess: true;
|
|
2459
|
+
isFetching: false;
|
|
2460
|
+
error: undefined;
|
|
2461
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2462
|
+
org: string;
|
|
2463
|
+
provider: string;
|
|
2464
|
+
service: string;
|
|
2465
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2466
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2467
|
+
isUninitialized: false;
|
|
2468
|
+
isLoading: false;
|
|
2469
|
+
isFetching: false;
|
|
2470
|
+
isSuccess: false;
|
|
2471
|
+
isError: false;
|
|
2472
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2473
|
+
isError: true;
|
|
2474
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2475
|
+
org: string;
|
|
2476
|
+
provider: string;
|
|
2477
|
+
service: string;
|
|
2478
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>> & {
|
|
2479
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse | undefined;
|
|
2480
|
+
isUninitialized: false;
|
|
2481
|
+
isLoading: false;
|
|
2482
|
+
isFetching: false;
|
|
2483
|
+
isSuccess: false;
|
|
2484
|
+
isError: false;
|
|
2485
|
+
}, "error">>)>> & {
|
|
2486
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2487
|
+
}) => R) | undefined;
|
|
2488
|
+
}, "skip">) | undefined) => [(arg: {
|
|
2489
|
+
org: string;
|
|
2490
|
+
provider: string;
|
|
2491
|
+
service: string;
|
|
2492
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2493
|
+
org: string;
|
|
2494
|
+
provider: string;
|
|
2495
|
+
service: string;
|
|
2496
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").OAuthStartResponse, "credentialsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2497
|
+
reset: () => void;
|
|
2498
|
+
}, {
|
|
2499
|
+
lastArg: {
|
|
2500
|
+
org: string;
|
|
2501
|
+
provider: string;
|
|
2502
|
+
service: string;
|
|
2503
|
+
};
|
|
2504
|
+
}], useConnectedServicesCallbackQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2505
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2506
|
+
originalArgs?: undefined | undefined;
|
|
2507
|
+
data?: undefined | undefined;
|
|
2508
|
+
error?: undefined | undefined;
|
|
2509
|
+
requestId?: undefined | undefined;
|
|
2510
|
+
endpointName?: string | undefined;
|
|
2511
|
+
startedTimeStamp?: undefined | undefined;
|
|
2512
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2513
|
+
} & {
|
|
2514
|
+
currentData?: any;
|
|
2515
|
+
isUninitialized: false;
|
|
2516
|
+
isLoading: false;
|
|
2517
|
+
isFetching: false;
|
|
2518
|
+
isSuccess: false;
|
|
2519
|
+
isError: false;
|
|
2520
|
+
}, "isUninitialized"> & {
|
|
2521
|
+
isUninitialized: true;
|
|
2522
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2523
|
+
currentData?: any;
|
|
2524
|
+
isUninitialized: false;
|
|
2525
|
+
isLoading: false;
|
|
2526
|
+
isFetching: false;
|
|
2527
|
+
isSuccess: false;
|
|
2528
|
+
isError: false;
|
|
2529
|
+
}, {
|
|
2530
|
+
isLoading: true;
|
|
2531
|
+
isFetching: boolean;
|
|
2532
|
+
data: undefined;
|
|
2533
|
+
} | ({
|
|
2534
|
+
isSuccess: true;
|
|
2535
|
+
isFetching: true;
|
|
2536
|
+
error: undefined;
|
|
2537
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2538
|
+
currentData?: any;
|
|
2539
|
+
isUninitialized: false;
|
|
2540
|
+
isLoading: false;
|
|
2541
|
+
isFetching: false;
|
|
2542
|
+
isSuccess: false;
|
|
2543
|
+
isError: false;
|
|
2544
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2545
|
+
isSuccess: true;
|
|
2546
|
+
isFetching: false;
|
|
2547
|
+
error: undefined;
|
|
2548
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2549
|
+
currentData?: any;
|
|
2550
|
+
isUninitialized: false;
|
|
2551
|
+
isLoading: false;
|
|
2552
|
+
isFetching: false;
|
|
2553
|
+
isSuccess: false;
|
|
2554
|
+
isError: false;
|
|
2555
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2556
|
+
isError: true;
|
|
2557
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2558
|
+
currentData?: any;
|
|
2559
|
+
isUninitialized: false;
|
|
2560
|
+
isLoading: false;
|
|
2561
|
+
isFetching: false;
|
|
2562
|
+
isSuccess: false;
|
|
2563
|
+
isError: false;
|
|
2564
|
+
}, "error">>)>> & {
|
|
2565
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2566
|
+
}>(arg: Record<string, string> | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2567
|
+
skip?: boolean;
|
|
2568
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
2569
|
+
} & {
|
|
2570
|
+
skip?: boolean;
|
|
2571
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2572
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2573
|
+
originalArgs?: undefined | undefined;
|
|
2574
|
+
data?: undefined | undefined;
|
|
2575
|
+
error?: undefined | undefined;
|
|
2576
|
+
requestId?: undefined | undefined;
|
|
2577
|
+
endpointName?: string | undefined;
|
|
2578
|
+
startedTimeStamp?: undefined | undefined;
|
|
2579
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2580
|
+
} & {
|
|
2581
|
+
currentData?: any;
|
|
2582
|
+
isUninitialized: false;
|
|
2583
|
+
isLoading: false;
|
|
2584
|
+
isFetching: false;
|
|
2585
|
+
isSuccess: false;
|
|
2586
|
+
isError: false;
|
|
2587
|
+
}, "isUninitialized"> & {
|
|
2588
|
+
isUninitialized: true;
|
|
2589
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2590
|
+
currentData?: any;
|
|
2591
|
+
isUninitialized: false;
|
|
2592
|
+
isLoading: false;
|
|
2593
|
+
isFetching: false;
|
|
2594
|
+
isSuccess: false;
|
|
2595
|
+
isError: false;
|
|
2596
|
+
}, {
|
|
2597
|
+
isLoading: true;
|
|
2598
|
+
isFetching: boolean;
|
|
2599
|
+
data: undefined;
|
|
2600
|
+
} | ({
|
|
2601
|
+
isSuccess: true;
|
|
2602
|
+
isFetching: true;
|
|
2603
|
+
error: undefined;
|
|
2604
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2605
|
+
currentData?: any;
|
|
2606
|
+
isUninitialized: false;
|
|
2607
|
+
isLoading: false;
|
|
2608
|
+
isFetching: false;
|
|
2609
|
+
isSuccess: false;
|
|
2610
|
+
isError: false;
|
|
2611
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2612
|
+
isSuccess: true;
|
|
2613
|
+
isFetching: false;
|
|
2614
|
+
error: undefined;
|
|
2615
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2616
|
+
currentData?: any;
|
|
2617
|
+
isUninitialized: false;
|
|
2618
|
+
isLoading: false;
|
|
2619
|
+
isFetching: false;
|
|
2620
|
+
isSuccess: false;
|
|
2621
|
+
isError: false;
|
|
2622
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2623
|
+
isError: true;
|
|
2624
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2625
|
+
currentData?: any;
|
|
2626
|
+
isUninitialized: false;
|
|
2627
|
+
isLoading: false;
|
|
2628
|
+
isFetching: false;
|
|
2629
|
+
isSuccess: false;
|
|
2630
|
+
isError: false;
|
|
2631
|
+
}, "error">>)>> & {
|
|
2632
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2633
|
+
}) => R) | undefined;
|
|
2634
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2635
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>>;
|
|
2636
|
+
}, useLazyConnectedServicesCallbackQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2637
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2638
|
+
originalArgs?: undefined | undefined;
|
|
2639
|
+
data?: undefined | undefined;
|
|
2640
|
+
error?: undefined | undefined;
|
|
2641
|
+
requestId?: undefined | undefined;
|
|
2642
|
+
endpointName?: string | undefined;
|
|
2643
|
+
startedTimeStamp?: undefined | undefined;
|
|
2644
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2645
|
+
} & {
|
|
2646
|
+
currentData?: any;
|
|
2647
|
+
isUninitialized: false;
|
|
2648
|
+
isLoading: false;
|
|
2649
|
+
isFetching: false;
|
|
2650
|
+
isSuccess: false;
|
|
2651
|
+
isError: false;
|
|
2652
|
+
}, "isUninitialized"> & {
|
|
2653
|
+
isUninitialized: true;
|
|
2654
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2655
|
+
currentData?: any;
|
|
2656
|
+
isUninitialized: false;
|
|
2657
|
+
isLoading: false;
|
|
2658
|
+
isFetching: false;
|
|
2659
|
+
isSuccess: false;
|
|
2660
|
+
isError: false;
|
|
2661
|
+
}, {
|
|
2662
|
+
isLoading: true;
|
|
2663
|
+
isFetching: boolean;
|
|
2664
|
+
data: undefined;
|
|
2665
|
+
} | ({
|
|
2666
|
+
isSuccess: true;
|
|
2667
|
+
isFetching: true;
|
|
2668
|
+
error: undefined;
|
|
2669
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2670
|
+
currentData?: any;
|
|
2671
|
+
isUninitialized: false;
|
|
2672
|
+
isLoading: false;
|
|
2673
|
+
isFetching: false;
|
|
2674
|
+
isSuccess: false;
|
|
2675
|
+
isError: false;
|
|
2676
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2677
|
+
isSuccess: true;
|
|
2678
|
+
isFetching: false;
|
|
2679
|
+
error: undefined;
|
|
2680
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2681
|
+
currentData?: any;
|
|
2682
|
+
isUninitialized: false;
|
|
2683
|
+
isLoading: false;
|
|
2684
|
+
isFetching: false;
|
|
2685
|
+
isSuccess: false;
|
|
2686
|
+
isError: false;
|
|
2687
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2688
|
+
isError: true;
|
|
2689
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2690
|
+
currentData?: any;
|
|
2691
|
+
isUninitialized: false;
|
|
2692
|
+
isLoading: false;
|
|
2693
|
+
isFetching: false;
|
|
2694
|
+
isSuccess: false;
|
|
2695
|
+
isError: false;
|
|
2696
|
+
}, "error">>)>> & {
|
|
2697
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2698
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
2699
|
+
skip?: boolean;
|
|
2700
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2701
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2702
|
+
originalArgs?: undefined | undefined;
|
|
2703
|
+
data?: undefined | undefined;
|
|
2704
|
+
error?: undefined | undefined;
|
|
2705
|
+
requestId?: undefined | undefined;
|
|
2706
|
+
endpointName?: string | undefined;
|
|
2707
|
+
startedTimeStamp?: undefined | undefined;
|
|
2708
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2709
|
+
} & {
|
|
2710
|
+
currentData?: any;
|
|
2711
|
+
isUninitialized: false;
|
|
2712
|
+
isLoading: false;
|
|
2713
|
+
isFetching: false;
|
|
2714
|
+
isSuccess: false;
|
|
2715
|
+
isError: false;
|
|
2716
|
+
}, "isUninitialized"> & {
|
|
2717
|
+
isUninitialized: true;
|
|
2718
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2719
|
+
currentData?: any;
|
|
2720
|
+
isUninitialized: false;
|
|
2721
|
+
isLoading: false;
|
|
2722
|
+
isFetching: false;
|
|
2723
|
+
isSuccess: false;
|
|
2724
|
+
isError: false;
|
|
2725
|
+
}, {
|
|
2726
|
+
isLoading: true;
|
|
2727
|
+
isFetching: boolean;
|
|
2728
|
+
data: undefined;
|
|
2729
|
+
} | ({
|
|
2730
|
+
isSuccess: true;
|
|
2731
|
+
isFetching: true;
|
|
2732
|
+
error: undefined;
|
|
2733
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2734
|
+
currentData?: any;
|
|
2735
|
+
isUninitialized: false;
|
|
2736
|
+
isLoading: false;
|
|
2737
|
+
isFetching: false;
|
|
2738
|
+
isSuccess: false;
|
|
2739
|
+
isError: false;
|
|
2740
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2741
|
+
isSuccess: true;
|
|
2742
|
+
isFetching: false;
|
|
2743
|
+
error: undefined;
|
|
2744
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2745
|
+
currentData?: any;
|
|
2746
|
+
isUninitialized: false;
|
|
2747
|
+
isLoading: false;
|
|
2748
|
+
isFetching: false;
|
|
2749
|
+
isSuccess: false;
|
|
2750
|
+
isError: false;
|
|
2751
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2752
|
+
isError: true;
|
|
2753
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
2754
|
+
currentData?: any;
|
|
2755
|
+
isUninitialized: false;
|
|
2756
|
+
isLoading: false;
|
|
2757
|
+
isFetching: false;
|
|
2758
|
+
isSuccess: false;
|
|
2759
|
+
isError: false;
|
|
2760
|
+
}, "error">>)>> & {
|
|
2761
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2762
|
+
}) => R) | undefined;
|
|
2763
|
+
}, "skip">) | undefined) => [(arg: Record<string, string>, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<Record<string, string>, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, any, "credentialsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>>, [R][R extends any ? 0 : never] & {
|
|
2764
|
+
reset: () => void;
|
|
2765
|
+
}, {
|
|
2766
|
+
lastArg: Record<string, string>;
|
|
2129
2767
|
}];
|