@iblai/web-utils 1.7.0 → 1.7.2
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/features/credentials/api-slice.d.ts +3 -15
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +127 -105
- package/dist/data-layer/src/features/credentials/types.d.ts +9 -0
- package/dist/data-layer/src/features/monetization/types.d.ts +1 -0
- package/dist/data-layer/src/features/periodic-agents/api-slice.d.ts +2347 -0
- package/dist/data-layer/src/index.d.ts +1 -0
- package/dist/index.d.ts +13 -8
- package/dist/index.esm.js +20 -22
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/web-utils/src/features/apple-restriction/__tests__/slice.test.d.ts +1 -0
- package/dist/web-utils/src/features/apple-restriction/slice.d.ts +7 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/subscription/slice.d.ts +1 -2
- package/package.json +1 -1
|
@@ -89,10 +89,7 @@ export declare const credentialsApiSlice: import("@reduxjs/toolkit/query").Api<i
|
|
|
89
89
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
90
90
|
attempt?: number;
|
|
91
91
|
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Credentials" | "ProviderConfig" | "ExternalMapping", import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>;
|
|
92
|
-
createIntegrationCredential: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
93
|
-
org: string;
|
|
94
|
-
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
95
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
92
|
+
createIntegrationCredential: import("@reduxjs/toolkit/query").MutationDefinition<unknown, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
96
93
|
attempt?: number;
|
|
97
94
|
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Credentials" | "ProviderConfig" | "ExternalMapping", import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>;
|
|
98
95
|
createLLMCredential: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
@@ -1724,19 +1721,10 @@ export declare const useGetCredentialsQuery: <R extends Record<string, any> = im
|
|
|
1724
1721
|
isError: true;
|
|
1725
1722
|
})) => R) | undefined;
|
|
1726
1723
|
fixedCacheKey?: string;
|
|
1727
|
-
} | undefined) => readonly [(arg: {
|
|
1728
|
-
org: string;
|
|
1729
|
-
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1730
|
-
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1731
|
-
org: string;
|
|
1732
|
-
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1733
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1724
|
+
} | undefined) => readonly [(arg: unknown) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<unknown, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1734
1725
|
attempt?: number;
|
|
1735
1726
|
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Credentials" | "ProviderConfig" | "ExternalMapping", import("node_modules/@iblai/iblai-api/dist/types").IntegrationCredential, "credentialsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1736
|
-
originalArgs?:
|
|
1737
|
-
org: string;
|
|
1738
|
-
requestBody: import("node_modules/@iblai/iblai-api/dist/types").CredentialRequest;
|
|
1739
|
-
} | undefined;
|
|
1727
|
+
originalArgs?: unknown;
|
|
1740
1728
|
reset: () => void;
|
|
1741
1729
|
}], useUpdateIntegrationCredentialMutation: <R extends Record<string, any> = ({
|
|
1742
1730
|
requestId?: undefined;
|