From 629293c5a1487ae4749034a121b8a033fd72b8d1 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 30 May 2025 11:29:04 -0400 Subject: [PATCH 01/42] chore: coinbase and moonpay integration --- examples/react-components/package.json | 6 +- .../app/components/CoinbaseCryptoProvider.tsx | 22 + .../app/components/MoonPayCryptoProvider.tsx | 21 + .../src/app/dashboard/page.tsx | 32 +- examples/react-components/src/app/layout.tsx | 6 +- .../src/pages/index.module.css | 5 +- .../src/pages/index.module.css | 3 +- internal/jest-config/package.json | 12 +- package.json | 10 +- .../public/v1/public_api.client.ts | 286 +- .../public/v1/public_api.fetcher.ts | 178 +- .../react-native-passkey-stamper/package.json | 10 +- packages/sdk-react-native/package.json | 11 +- pnpm-lock.yaml | 38756 +++++++++------- 14 files changed, 21215 insertions(+), 18143 deletions(-) create mode 100644 examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx create mode 100644 examples/react-components/src/app/components/MoonPayCryptoProvider.tsx diff --git a/examples/react-components/package.json b/examples/react-components/package.json index bc18d2dc1..985a35a9b 100644 --- a/examples/react-components/package.json +++ b/examples/react-components/package.json @@ -10,9 +10,12 @@ "typecheck": "tsc --noEmit" }, "dependencies": { + "@coinbase/onchainkit": "^0.38.13", "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", "@hello-pangea/dnd": "^17.0.0", + "@moonpay/moonpay-js": "^0.7.0", + "@moonpay/moonpay-react": "^1.10.1", "@mui/icons-material": "^6.1.5", "@mui/material": "^6.1.5", "@noble/hashes": "1.4.0", @@ -41,6 +44,7 @@ "react-international-phone": "^4.3.0", "sonner": "^1.4.41", "tweetnacl": "^1.0.3", - "typescript": "5.4.3" + "typescript": "5.4.3", + "viem": "^2.30.5" } } diff --git a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx new file mode 100644 index 000000000..28bc08a71 --- /dev/null +++ b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx @@ -0,0 +1,22 @@ +"use client"; + +import React from "react"; +import { OnchainKitProvider } from "@coinbase/onchainkit"; +import { base } from "viem/chains"; + +interface CoinbaseCryptoProviderProps { + children: React.ReactNode; +} + +const CoinbaseCryptoProvider = ({ children }: CoinbaseCryptoProviderProps) => { + return ( + + {children} + + ); +}; + +export default CoinbaseCryptoProvider; diff --git a/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx b/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx new file mode 100644 index 000000000..26056affb --- /dev/null +++ b/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx @@ -0,0 +1,21 @@ +import React from "react"; +import dynamic from "next/dynamic"; + +const MoonPayProvider = dynamic( + () => import("@moonpay/moonpay-react").then((mod) => mod.MoonPayProvider), + { ssr: false }, +); + +interface MoonPayCryptoProviderProps { + children: React.ReactNode; +} + +const MoonPayCryptoProvider = ({ children }: MoonPayCryptoProviderProps) => { + return ( + + {children} + + ); +}; + +export default MoonPayCryptoProvider; diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 6907002af..80b3441fe 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -45,6 +45,7 @@ import Navbar from "../components/Navbar"; import { Toaster, toast } from "sonner"; import { jwtDecode } from "jwt-decode"; import { useSessionExpiry } from "../providers/SessionExpiryProvider"; +import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; export default function Dashboard() { const router = useRouter(); @@ -60,7 +61,7 @@ export default function Dashboard() { const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false); const [isPasskeyModalOpen, setIsPasskeyModalOpen] = useState(false); const [messageToSign, setMessageToSign] = useState( - "Signing within Turnkey Demo.", + "Signing within Turnkey Demo." ); const [signature, setSignature] = useState(null); const [isVerifiedEmail, setIsVerifiedEmail] = useState(false); @@ -77,6 +78,7 @@ export default function Dashboard() { const [isOtpModalOpen, setIsOtpModalOpen] = useState(false); const [emailInput, setEmailInput] = useState(""); const [phoneInput, setPhoneInput] = useState(""); + const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); const handleExportSuccess = async () => { toast.success("Wallet successfully exported"); @@ -456,19 +458,19 @@ export default function Dashboard() { signature.r, signature.s, signature.v, - selectedAccount!, + selectedAccount! ) : verifySolSignatureWithAddress( messageToSign, signature.r, signature.s, - selectedAccount!, + selectedAccount! ); setMessageSigningResult( verificationPassed ? "Verified! The address used to sign the message matches your wallet address." - : "Verification failed.", + : "Verification failed." ); }; if (loading) { @@ -552,13 +554,13 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("google"), + provider.issuer.toLowerCase().includes("google") ) && {}} {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("google"), + provider.issuer.toLowerCase().includes("google") ) ? ( ) : ( @@ -575,7 +577,7 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("apple"), + provider.issuer.toLowerCase().includes("apple") ) ? ( ) : ( @@ -592,7 +594,7 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("facebook"), + provider.issuer.toLowerCase().includes("facebook") ) ? ( ) : ( @@ -668,7 +670,7 @@ export default function Dashboard() { account.addressFormat === "ADDRESS_FORMAT_ETHEREUM" ? `https://etherscan.io/address/${account.address}` : `https://solscan.io/account/${account.address}`, - "_blank", + "_blank" ) } style={{ @@ -685,7 +687,7 @@ export default function Dashboard() { )} {`${account.address.slice( 0, - 5, + 5 )}...${account.address.slice(-5)}`} @@ -710,6 +712,16 @@ export default function Dashboard() { + + diff --git a/examples/react-components/src/app/layout.tsx b/examples/react-components/src/app/layout.tsx index 5cefd5de0..695c57a2c 100644 --- a/examples/react-components/src/app/layout.tsx +++ b/examples/react-components/src/app/layout.tsx @@ -4,6 +4,8 @@ import "@turnkey/sdk-react/styles"; import { TurnkeyProvider, TurnkeyThemeProvider } from "@turnkey/sdk-react"; import { EthereumWallet } from "@turnkey/wallet-stamper"; import { SessionExpiryProvider } from "./providers/SessionExpiryProvider"; +import CoinbaseCryptoProvider from "./components/CoinbaseCryptoProvider"; +import MoonPayCryptoProvider from "./components/MoonPayCryptoProvider"; const wallet = new EthereumWallet(); const turnkeyConfig = { apiBaseUrl: process.env.NEXT_PUBLIC_BASE_URL!, @@ -27,7 +29,9 @@ function RootLayout({ children }: RootLayoutProps) { - {children} + + {children} + diff --git a/examples/wallet-import-export/src/pages/index.module.css b/examples/wallet-import-export/src/pages/index.module.css index 0ee703808..43d32d14d 100644 --- a/examples/wallet-import-export/src/pages/index.module.css +++ b/examples/wallet-import-export/src/pages/index.module.css @@ -103,8 +103,9 @@ display: flex; gap: 12px; justify-content: baseline; - font-family: "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, - Consolas, "Liberation Mono", monospace; + font-family: + "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, + "Liberation Mono", monospace; } .buttons { diff --git a/examples/with-federated-passkeys/src/pages/index.module.css b/examples/with-federated-passkeys/src/pages/index.module.css index 876b2f269..3ebc007bd 100644 --- a/examples/with-federated-passkeys/src/pages/index.module.css +++ b/examples/with-federated-passkeys/src/pages/index.module.css @@ -85,7 +85,8 @@ .td { /* From https://qwtel.com/posts/software/the-monospaced-system-ui-css-font-stack/ */ - font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", + font-family: + ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace; padding: 10px; diff --git a/internal/jest-config/package.json b/internal/jest-config/package.json index d4c1a8752..6bbfd00f3 100644 --- a/internal/jest-config/package.json +++ b/internal/jest-config/package.json @@ -7,11 +7,11 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@babel/preset-flow": "^7.23.3", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.18.6", - "babel-jest": "^29.3.1" + "@babel/core": "7.20.12", + "@babel/preset-env": "7.20.2", + "@babel/preset-flow": "7.23.3", + "@babel/preset-react": "7.18.6", + "@babel/preset-typescript": "7.18.6", + "babel-jest": "29.4.3" } } diff --git a/package.json b/package.json index 55a5ca74a..b7946f322 100644 --- a/package.json +++ b/package.json @@ -22,13 +22,13 @@ "engines": { "node": ">=18.0.0", "npm": "^8.0.0", - "pnpm": "^8.0.0" + "pnpm": "10.6.3" }, "devDependencies": { "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.27.5", - "@jest/globals": "^29.3.1", - "@jest/types": "^29.3.1", + "@jest/globals": "29.4.3", + "@jest/types": "29.4.3", "@microsoft/tsdoc": "^0.15.1", "@microsoft/tsdoc-config": "^0.17.1", "@rollup/plugin-alias": "5.1.1", @@ -39,7 +39,7 @@ "@tsconfig/node16-strictest": "^1.0.4", "@turnkey/jest-config": "workspace:*", "@types/node": "^18.18.2", - "jest": "^29.3.1", + "jest": "29.4.3", "prettier": "^3.4.2", "rimraf": "^3.0.2", "rollup": "^4.22.4", @@ -53,7 +53,7 @@ "typedoc-plugin-markdown": "^4.6.0", "typescript": "5.4.3" }, - "packageManager": "pnpm@8.4.0", + "packageManager": "pnpm@10.6.3", "pnpm": { "auditConfig": { "ignoreCves": [ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index e73cd3260..459c4eb7d 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2857,7 +2857,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -2868,7 +2868,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 28940c80b..1bb49db2f 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -3993,7 +3993,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4039,7 +4039,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4091,7 +4091,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/react-native-passkey-stamper/package.json b/packages/react-native-passkey-stamper/package.json index ac01c28f9..0cb12c721 100644 --- a/packages/react-native-passkey-stamper/package.json +++ b/packages/react-native-passkey-stamper/package.json @@ -56,8 +56,12 @@ "dependencies": { "@turnkey/encoding": "workspace:*", "@turnkey/http": "workspace:*", - "buffer": "^6.0.3", - "react-native-passkey": "^3.0.0", - "sha256-uint8array": "^0.10.7" + "buffer": "6.0.3", + "react-native-passkey": "3.0.0", + "sha256-uint8array": "0.10.7" + }, + "devDependencies": { + "@babel/core": "7.26.9", + "@rollup/plugin-babel": "5.3.0" } } diff --git a/packages/sdk-react-native/package.json b/packages/sdk-react-native/package.json index 4885f74d4..67a683899 100644 --- a/packages/sdk-react-native/package.json +++ b/packages/sdk-react-native/package.json @@ -58,13 +58,18 @@ "peerDependencies": { "@types/react": ">=16.8.0 <20", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-native-keychain": "^8.1.0 || ^9.2.2", - "react-native-inappbrowser-reborn": "^3.7.0", - "react-native-passkey": "^3.0.0" + "react-native": "0.76.5", + "react-native-keychain": "8.1.0", + "react-native-inappbrowser-reborn": "3.7.0", + "react-native-passkey": "3.0.0" }, "peerDependenciesMeta": { "@types/react": { "optional": true } + }, + "devDependencies": { + "@babel/core": "7.26.9", + "@rollup/plugin-babel": "5.3.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5c8fd4c6f..ca08e41ec 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,8 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false overrides: '@confio/ics23@0.6.8>protobufjs': '>=7.2.5' @@ -27,15 +31,15 @@ importers: devDependencies: '@changesets/changelog-github': specifier: ^0.5.1 - version: 0.5.1 + version: 0.5.1(encoding@0.1.13) '@changesets/cli': specifier: ^2.27.5 - version: 2.27.5 + version: 2.29.4 '@jest/globals': - specifier: ^29.3.1 + specifier: 29.4.3 version: 29.4.3 '@jest/types': - specifier: ^29.3.1 + specifier: 29.4.3 version: 29.4.3 '@microsoft/tsdoc': specifier: ^0.15.1 @@ -45,19 +49,19 @@ importers: version: 0.17.1 '@rollup/plugin-alias': specifier: 5.1.1 - version: 5.1.1(rollup@4.22.4) + version: 5.1.1(rollup@4.41.1) '@rollup/plugin-babel': specifier: 5.3.0 - version: 5.3.0(@babel/core@7.26.9)(rollup@4.22.4) + version: 5.3.0(@babel/core@7.26.9)(@types/babel__core@7.20.5)(rollup@4.41.1) '@rollup/plugin-node-resolve': specifier: 16.0.0 - version: 16.0.0(rollup@4.22.4) + version: 16.0.0(rollup@4.41.1) '@rollup/plugin-typescript': specifier: ^11.1.5 - version: 11.1.5(rollup@4.22.4)(typescript@5.4.3) + version: 11.1.6(rollup@4.41.1)(tslib@2.8.1)(typescript@5.4.3) '@rollup/plugin-url': specifier: 8.0.2 - version: 8.0.2(rollup@4.22.4) + version: 8.0.2(rollup@4.41.1) '@tsconfig/node16-strictest': specifier: ^1.0.4 version: 1.0.4 @@ -66,43 +70,43 @@ importers: version: link:internal/jest-config '@types/node': specifier: ^18.18.2 - version: 18.18.2 + version: 18.19.105 jest: - specifier: ^29.3.1 - version: 29.4.3(@types/node@18.18.2) + specifier: 29.4.3 + version: 29.4.3(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) prettier: specifier: ^3.4.2 - version: 3.4.2 + version: 3.5.3 rimraf: specifier: ^3.0.2 version: 3.0.2 rollup: specifier: ^4.22.4 - version: 4.22.4 + version: 4.41.1 rollup-plugin-copy: specifier: ^3.5.0 version: 3.5.0 rollup-plugin-node-externals: specifier: ^6.1.2 - version: 6.1.2(rollup@4.22.4) + version: 6.1.2(rollup@4.41.1) rollup-plugin-postcss: specifier: ^4.0.2 - version: 4.0.2(postcss@8.4.38) + version: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) rollup-preserve-directives: specifier: ^1.1.2 - version: 1.1.2(rollup@4.22.4) + version: 1.1.3(rollup@4.41.1) tsx: specifier: ^3.12.7 - version: 3.12.7 + version: 3.14.0 turbo: specifier: ^2.4.4 - version: 2.4.4 + version: 2.5.3 typedoc: specifier: ^0.28.1 - version: 0.28.1(typescript@5.4.3) + version: 0.28.5(typescript@5.4.3) typedoc-plugin-markdown: specifier: ^4.6.0 - version: 4.6.0(typedoc@0.28.1) + version: 4.6.3(typedoc@0.28.5(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 @@ -114,10 +118,10 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 viem: specifier: ^2.26.2 - version: 2.26.2(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) examples/deployer: dependencies: @@ -129,10 +133,10 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) solc: specifier: 0.8.13 version: 0.8.13 @@ -156,7 +160,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -174,10 +178,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -186,7 +190,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 @@ -216,7 +220,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -234,10 +238,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -246,7 +250,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 @@ -270,20 +274,20 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/import-in-node: dependencies: @@ -304,20 +308,20 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/kitchen-sink: dependencies: @@ -338,7 +342,7 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 examples/oauth: dependencies: @@ -347,7 +351,7 @@ importers: version: 1.4.0 '@react-oauth/google': specifier: ^0.12.1 - version: 0.12.1(react-dom@18.2.0)(react@18.2.0) + version: 0.12.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@turnkey/sdk-react': specifier: workspace:* version: link:../../packages/sdk-react @@ -365,7 +369,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -383,10 +387,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -395,7 +399,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 @@ -419,7 +423,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -437,10 +441,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -449,34 +453,43 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 examples/react-components: dependencies: + '@coinbase/onchainkit': + specifier: ^0.38.13 + version: 0.38.13(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(utf-8-validate@5.0.10)(zod@3.25.33) '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.2.14)(react@18.2.0) + version: 11.14.0(@types/react@18.2.14)(react@18.2.0) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.14)(react@18.2.0) + version: 11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) '@hello-pangea/dnd': specifier: ^17.0.0 - version: 17.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 17.0.0(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@moonpay/moonpay-js': + specifier: ^0.7.0 + version: 0.7.0 + '@moonpay/moonpay-react': + specifier: ^1.10.1 + version: 1.10.1(react@18.2.0) '@mui/icons-material': specifier: ^6.1.5 - version: 6.1.5(@mui/material@6.1.5)(@types/react@18.2.14)(react@18.2.0) + version: 6.4.11(@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) '@mui/material': specifier: ^6.1.5 - version: 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@noble/hashes': specifier: 1.4.0 version: 1.4.0 '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@turnkey/indexed-db-stamper': specifier: workspace:* version: link:../../packages/indexed-db-stamper @@ -503,7 +516,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 buffer: specifier: ^6.0.3 version: 6.0.3 @@ -521,7 +534,7 @@ importers: version: 3.2.25 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) install: specifier: ^0.13.0 version: 0.13.0 @@ -530,10 +543,10 @@ importers: version: 4.0.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -542,16 +555,19 @@ importers: version: 18.2.0(react@18.2.0) react-international-phone: specifier: ^4.3.0 - version: 4.3.0(react@18.2.0) + version: 4.5.0(react@18.2.0) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0)(react@18.2.0) + version: 1.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) tweetnacl: specifier: ^1.0.3 version: 1.0.3 typescript: specifier: 5.4.3 version: 5.4.3 + viem: + specifier: ^2.30.5 + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) examples/rebalancer: dependencies: @@ -563,10 +579,10 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) examples/sweeper: dependencies: @@ -578,23 +594,23 @@ importers: version: link:../../packages/sdk-server '@uniswap/sdk-core': specifier: ^3.1.1 - version: 3.1.1 + version: 3.2.6 dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) hardhat: specifier: ^2.12.7 - version: 2.12.7(typescript@5.4.3) + version: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 typescript: specifier: 5.4.3 version: 5.4.3 @@ -609,19 +625,19 @@ importers: version: link:../../packages/sdk-server '@uniswap/sdk-core': specifier: ^3.1.1 - version: 3.1.1 + version: 3.2.6 '@uniswap/v3-core': specifier: ^1.0.1 version: 1.0.1 '@uniswap/v3-sdk': specifier: ^3.9.0 - version: 3.9.0(hardhat@2.22.2) + version: 3.25.2(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) jsbi: specifier: ^3.2.5 version: 3.2.5 @@ -631,7 +647,7 @@ importers: devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 typescript: specifier: 5.4.3 version: 5.4.3 @@ -646,10 +662,10 @@ importers: version: link:../../packages/sdk-server axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 classnames: specifier: ^2.3.2 - version: 2.3.2 + version: 2.5.1 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -667,10 +683,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -679,7 +695,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 @@ -713,23 +729,23 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 tsx: specifier: ^3.12.7 - version: 3.12.7 + version: 3.14.0 typescript: specifier: 5.4.3 version: 5.4.3 @@ -738,13 +754,13 @@ importers: dependencies: '@biconomy/account': specifier: ^4.5.6 - version: 4.5.6(typescript@5.4.3)(viem@2.26.2) + version: 4.5.7(typescript@5.4.3)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) '@biconomy/sdk': specifier: ^0.0.10 - version: 0.0.10(@rhinestone/module-sdk@0.1.28)(typescript@5.4.3)(viem@2.26.2) + version: 0.0.10(@rhinestone/module-sdk@0.1.32(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33) '@rhinestone/module-sdk': specifier: ^0.1.28 - version: 0.1.28(viem@2.26.2) + version: 0.1.32(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) '@turnkey/ethers': specifier: workspace:* version: link:../../packages/ethers @@ -756,20 +772,20 @@ importers: version: link:../../packages/viem dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) prompts: specifier: ^2.4.2 version: 2.4.2 viem: specifier: ^2.24.2 - version: 2.26.2(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/with-bitcoin: dependencies: @@ -787,10 +803,10 @@ importers: version: 3.1.0 bitcoinjs-lib: specifier: ^6.1.6 - version: 6.1.6 + version: 6.1.7 dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ecpair: specifier: ^2.1.0 version: 2.1.0 @@ -803,16 +819,16 @@ importers: devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/with-cosmjs: dependencies: '@cosmjs/encoding': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1 '@cosmjs/stargate': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@turnkey/cosmjs': specifier: workspace:* version: link:../../packages/cosmjs @@ -824,31 +840,31 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 examples/with-eip-1193-provider: dependencies: '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-dropdown-menu': specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.1.15(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.2(react@18.3.1) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-select': specifier: ^2.0.0 - version: 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.2.5(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.2.14)(react@18.2.0) + version: 1.2.3(@types/react@18.3.23)(react@18.3.1) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 1.2.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@turnkey/api-key-stamper': specifier: workspace:* version: link:../../packages/api-key-stamper @@ -869,62 +885,62 @@ importers: version: link:../../packages/webauthn-stamper class-variance-authority: specifier: ^0.7.0 - version: 0.7.0 + version: 0.7.1 clsx: specifier: ^2.1.0 - version: 2.1.0 + version: 2.1.1 lucide-react: specifier: ^0.363.0 - version: 0.363.0(react@18.2.0) + version: 0.363.0(react@18.3.1) next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-themes: specifier: ^0.3.0 - version: 0.3.0(react-dom@18.2.0)(react@18.2.0) + version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0)(react@18.2.0) + version: 1.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.2.2 - version: 2.2.2 + version: 2.6.0 tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.3.0) + version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3))) viem: specifier: ^2.9.5 - version: 2.9.5(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) devDependencies: '@types/node': specifier: ^20 version: 20.3.1 '@types/react': specifier: ^18 - version: 18.2.14 + version: 18.3.23 '@types/react-dom': specifier: ^18 - version: 18.2.6 + version: 18.3.7(@types/react@18.3.23) autoprefixer: specifier: ^10.0.1 - version: 10.0.1(postcss@8.4.38) + version: 10.4.21(postcss@8.5.3) eslint: specifier: ^8 - version: 8.43.0 + version: 8.56.0 eslint-config-next: specifier: 14.2.25 - version: 14.2.25(eslint@8.43.0)(typescript@5.4.3) + version: 14.2.25(eslint@8.56.0)(typescript@5.4.3) postcss: specifier: ^8 - version: 8.4.38 + version: 8.5.3 tailwindcss: specifier: ^3.3.0 - version: 3.3.0(postcss@8.4.38) + version: 3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 @@ -933,7 +949,7 @@ importers: dependencies: '@biconomy/account': specifier: ^4.5.6 - version: 4.5.6(typescript@5.4.3)(viem@2.23.13) + version: 4.5.7(typescript@5.4.3)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) '@turnkey/api-key-stamper': specifier: workspace:* version: link:../../packages/api-key-stamper @@ -969,7 +985,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -984,16 +1000,16 @@ importers: version: 3.2.25 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) install: specifier: ^0.13.0 version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -1002,13 +1018,13 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 viem: specifier: 2.23.13 - version: 2.23.13(typescript@5.4.3) + version: 2.23.13(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) examples/with-ethers: dependencies: @@ -1026,17 +1042,17 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/with-federated-passkeys: dependencies: @@ -1063,13 +1079,13 @@ importers: version: 20.3.1 '@types/react': specifier: ^18.2.25 - version: 18.2.75 + version: 18.3.23 '@types/react-dom': specifier: 18.2.6 version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -1087,10 +1103,10 @@ importers: version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -1099,7 +1115,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 @@ -1108,13 +1124,13 @@ importers: dependencies: '@safe-global/protocol-kit': specifier: ^3.0.1 - version: 3.0.1(typescript@5.4.3) + version: 3.1.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) '@safe-global/safe-core-sdk-types': specifier: ^4.0.1 - version: 4.0.1 + version: 4.1.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) '@safe-global/safe-ethers-lib': specifier: ^1.9.2 - version: 1.9.2 + version: 1.9.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) '@turnkey/ethers': specifier: workspace:* version: link:../../packages/ethers @@ -1123,10 +1139,10 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) examples/with-indexed-db: dependencies: @@ -1150,7 +1166,7 @@ importers: version: 18.2.6 axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 encoding: specifier: ^0.1.13 version: 0.1.13 @@ -1168,10 +1184,10 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -1180,7 +1196,7 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.1.3 version: 5.1.3 @@ -1204,23 +1220,23 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 tsx: specifier: ^3.12.7 - version: 3.12.7 + version: 3.14.0 typescript: specifier: 5.4.3 version: 5.4.3 @@ -1235,10 +1251,10 @@ importers: version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) examples/with-offline: dependencies: @@ -1250,14 +1266,14 @@ importers: version: link:../../packages/http dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/with-sdk-server: dependencies: @@ -1269,13 +1285,13 @@ importers: dependencies: '@project-serum/anchor': specifier: ^0.26.0 - version: 0.26.0 + version: 0.26.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@solana/spl-token': specifier: ^0.4.8 - version: 0.4.8(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + version: 0.4.13(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(utf-8-validate@5.0.10) '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@turnkey/api-key-stamper': specifier: workspace:* version: link:../../packages/api-key-stamper @@ -1296,10 +1312,10 @@ importers: version: 6.0.0 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 @@ -1309,10 +1325,10 @@ importers: devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 examples/with-solana-passkeys: dependencies: @@ -1339,7 +1355,7 @@ importers: version: link:../../packages/webauthn-stamper axios: specifier: '>1.8.2' - version: 1.8.3 + version: 1.9.0 bs58: specifier: ^6.0.0 version: 6.0.0 @@ -1360,10 +1376,10 @@ importers: version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0) + version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 - version: 9.7.2 + version: 9.9.4 react: specifier: 18.2.0 version: 18.2.0 @@ -1372,23 +1388,23 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.45.1 - version: 7.45.1(react@18.2.0) + version: 7.56.4(react@18.2.0) typescript: specifier: 5.4.3 version: 5.4.3 devDependencies: '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@types/node': specifier: 20.3.1 version: 20.3.1 '@types/react': specifier: ^18.2.25 - version: 18.3.3 + version: 18.3.23 '@types/react-dom': specifier: ^18.2.6 - version: 18.3.0 + version: 18.3.7(@types/react@18.3.23) examples/with-stacks: dependencies: @@ -1412,7 +1428,7 @@ importers: dependencies: '@mysten/sui.js': specifier: ^0.37.1 - version: 0.37.1 + version: 0.37.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) '@noble/hashes': specifier: 1.4.0 version: 1.4.0 @@ -1427,23 +1443,23 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 prompts: specifier: ^2.4.2 version: 2.4.2 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 tsx: specifier: ^3.12.7 - version: 3.12.7 + version: 3.14.0 typescript: specifier: 5.4.3 version: 5.4.3 @@ -1452,19 +1468,19 @@ importers: dependencies: '@inquirer/prompts': specifier: ^2.1.0 - version: 2.1.0 + version: 2.3.1 '@noble/hashes': specifier: 1.4.0 version: 1.4.0 '@ton/core': specifier: ^0.59.0 - version: 0.59.0(@ton/crypto@3.3.0) + version: 0.59.1(@ton/crypto@3.3.0) '@ton/crypto': specifier: ^3.3.0 version: 3.3.0 '@ton/ton': specifier: ^15.1.0 - version: 15.1.0(@ton/core@0.59.0)(@ton/crypto@3.3.0) + version: 15.2.1(@ton/core@0.59.1(@ton/crypto@3.3.0))(@ton/crypto@3.3.0) '@turnkey/http': specifier: workspace:* version: link:../../packages/http @@ -1476,17 +1492,17 @@ importers: version: 1.3.3 cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 devDependencies: '@types/async-retry': specifier: ^1.4.8 - version: 1.4.8 + version: 1.4.9 tsx: specifier: ^3.12.7 - version: 3.12.7 + version: 3.14.0 typescript: specifier: 5.4.3 version: 5.4.3 @@ -1510,14 +1526,14 @@ importers: version: 6.0.0 dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 tronweb: specifier: ^6.0.3 - version: 6.0.3 + version: 6.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) devDependencies: ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.3.1)(typescript@5.4.3) + version: 10.9.2(@types/node@22.15.24)(typescript@5.4.3) typescript: specifier: 5.4.3 version: 5.4.3 @@ -1532,22 +1548,22 @@ importers: version: link:../../packages/sdk-server '@uniswap/sdk-core': specifier: ^3.1.1 - version: 3.1.1 + version: 3.2.6 '@uniswap/v3-core': specifier: ^1.0.1 version: 1.0.1 '@uniswap/v3-sdk': specifier: ^3.9.0 - version: 3.9.0(hardhat@2.12.7) + version: 3.25.2(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) hardhat: specifier: ^2.12.7 - version: 2.12.7(typescript@5.4.3) + version: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) jsbi: specifier: ^3.2.5 version: 3.2.5 @@ -1572,10 +1588,10 @@ importers: version: link:../../packages/viem '@zerodev/sdk': specifier: ^5.4.32 - version: 5.4.32(viem@2.26.2) + version: 5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 fetch: specifier: ^1.1.0 version: 1.1.0 @@ -1587,11 +1603,11 @@ importers: version: 2.4.2 viem: specifier: ^2.24.2 - version: 2.26.2(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) devDependencies: '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 typescript: specifier: 5.4.3 version: 5.4.3 @@ -1600,55 +1616,55 @@ importers: dependencies: '@noble/ed25519': specifier: ^2.1.0 - version: 2.1.0 + version: 2.2.3 '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.1.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 2.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-radio-group': specifier: ^1.2.0 - version: 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.3.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-select': specifier: ^2.0.0 - version: 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 2.2.5(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-separator': specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.3.3)(react@18.3.1) + version: 1.2.3(@types/react@18.3.23)(react@18.3.1) '@radix-ui/react-tabs': specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.1.12(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-toggle': specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-toggle-group': specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + version: 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@solana/wallet-adapter-base': specifier: ^0.9.23 - version: 0.9.23(@solana/web3.js@1.95.8) + version: 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-base-ui': specifier: ^0.1.2 - version: 0.1.2(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1) + version: 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-react': specifier: ^0.15.35 - version: 0.15.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1) + version: 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-react-ui': specifier: ^0.9.35 - version: 0.9.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-dom@18.3.1)(react-native@0.76.5)(react@18.3.1) + version: 0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 - version: 0.19.32(@babel/core@7.26.9)(@babel/runtime@7.26.10)(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-dom@18.3.1)(react-native@0.76.5)(react@18.3.1)(tslib@2.8.1) + version: 0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@5.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33) '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@t3-oss/env-nextjs': specifier: ^0.11.0 - version: 0.11.0(typescript@5.4.3)(zod@3.23.8) + version: 0.11.1(typescript@5.4.3)(zod@3.25.33) '@turnkey/api-key-stamper': specifier: workspace:* version: link:../../packages/api-key-stamper @@ -1678,16 +1694,16 @@ importers: version: 4.0.0 class-variance-authority: specifier: ^0.7.0 - version: 0.7.0 + version: 0.7.1 clsx: specifier: ^2.1.0 - version: 2.1.0 + version: 2.1.1 lucide-react: specifier: ^0.426.0 version: 0.426.0(react@18.3.1) next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(react-dom@18.3.1)(react@18.3.1) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -1696,10 +1712,10 @@ importers: version: 18.3.1(react@18.3.1) tailwind-merge: specifier: ^2.2.2 - version: 2.2.2 + version: 2.6.0 tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.1) + version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3))) tweetnacl: specifier: ^1.0.3 version: 1.0.3 @@ -1708,35 +1724,35 @@ importers: version: 0.15.1 viem: specifier: ^2.18.0 - version: 2.18.0(typescript@5.4.3)(zod@3.23.8) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) zod: specifier: ^3.23.8 - version: 3.23.8 + version: 3.25.33 devDependencies: '@types/node': specifier: ^20 version: 20.3.1 '@types/react': specifier: ^18.3.3 - version: 18.3.3 + version: 18.3.23 '@types/react-dom': specifier: ^18.3.0 - version: 18.3.0 + version: 18.3.7(@types/react@18.3.23) eslint: specifier: ^8 - version: 8.43.0 + version: 8.56.0 eslint-config-next: specifier: 14.2.25 - version: 14.2.25(eslint@8.43.0)(typescript@5.4.3) + version: 14.2.25(eslint@8.56.0)(typescript@5.4.3) pino-pretty: specifier: ^11.2.2 - version: 11.2.2 + version: 11.3.0 postcss: specifier: ^8 - version: 8.4.31 + version: 8.5.3 tailwindcss: specifier: ^3.4.1 - version: 3.4.1 + version: 3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 @@ -1754,19 +1770,19 @@ importers: version: link:../../packages/viem '@zerodev/ecdsa-validator': specifier: ^5.4.8 - version: 5.4.8(@zerodev/sdk@5.4.32)(viem@2.26.2) + version: 5.4.9(@zerodev/sdk@5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) '@zerodev/sdk': specifier: ^5.4.32 - version: 5.4.32(viem@2.26.2) + version: 5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) permissionless: specifier: ^0.1.45 - version: 0.1.45(viem@2.26.2) + version: 0.1.49(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) prompts: specifier: ^2.4.2 version: 2.4.2 @@ -1775,14 +1791,14 @@ importers: version: 5.4.3 viem: specifier: ^2.24.2 - version: 2.26.2(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) devDependencies: '@types/node': specifier: ^22.7.7 - version: 22.7.7 + version: 22.15.24 '@types/prompts': specifier: ^2.4.2 - version: 2.4.2 + version: 2.4.9 tslib: specifier: ^2.8.0 version: 2.8.1 @@ -1790,29 +1806,29 @@ importers: internal/jest-config: dependencies: '@babel/core': - specifier: ^7.20.2 + specifier: 7.20.12 version: 7.20.12 '@babel/preset-env': - specifier: ^7.20.2 + specifier: 7.20.2 version: 7.20.2(@babel/core@7.20.12) '@babel/preset-flow': - specifier: ^7.23.3 + specifier: 7.23.3 version: 7.23.3(@babel/core@7.20.12) '@babel/preset-react': - specifier: ^7.18.6 + specifier: 7.18.6 version: 7.18.6(@babel/core@7.20.12) '@babel/preset-typescript': - specifier: ^7.18.6 + specifier: 7.18.6 version: 7.18.6(@babel/core@7.20.12) babel-jest: - specifier: ^29.3.1 + specifier: 29.4.3 version: 29.4.3(@babel/core@7.20.12) packages/api-key-stamper: dependencies: '@noble/curves': specifier: ^1.3.0 - version: 1.3.0 + version: 1.8.0 '@turnkey/encoding': specifier: workspace:* version: link:../encoding @@ -1824,16 +1840,16 @@ importers: dependencies: '@cosmjs/amino': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1 '@cosmjs/crypto': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1 '@cosmjs/encoding': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1 '@cosmjs/proto-signing': specifier: ^0.33.0 - version: 0.33.0 + version: 0.33.1 '@turnkey/api-key-stamper': specifier: workspace:* version: link:../api-key-stamper @@ -1880,7 +1896,7 @@ importers: version: link:../http jest: specifier: 29.7.0 - version: 29.7.0(@types/node@18.18.2) + version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) packages/eip-1193-provider: dependencies: @@ -1895,11 +1911,11 @@ importers: version: link:../sdk-browser viem: specifier: 2.7.19 - version: 2.7.19(typescript@5.4.3) + version: 2.7.19(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) devDependencies: hardhat: specifier: ^2.22.2 - version: 2.22.2(typescript@5.4.3) + version: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) typescript: specifier: 5.4.3 version: 5.4.3 @@ -1923,25 +1939,25 @@ importers: devDependencies: '@nomicfoundation/hardhat-ethers': specifier: 3.0.5 - version: 3.0.5(ethers@6.10.0)(hardhat@2.19.4) + version: 3.0.5(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) '@nomicfoundation/hardhat-network-helpers': specifier: ^1.0.8 - version: 1.0.8(hardhat@2.19.4) + version: 1.0.12(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) '@openzeppelin/contracts': specifier: ^4.9.0 - version: 4.9.0 + version: 4.9.6 '@typechain/ethers-v6': specifier: ^0.5.1 - version: 0.5.1(ethers@6.10.0)(typechain@8.3.2)(typescript@5.4.3) + version: 0.5.1(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))(typescript@5.4.3) '@typechain/hardhat': specifier: ^9.1.0 - version: 9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.10.0)(hardhat@2.19.4)(typechain@8.3.2) + version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))(typescript@5.4.3))(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3)) ethers: specifier: ^6.10.0 - version: 6.10.0 + version: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) hardhat: specifier: ^2.19.4 - version: 2.19.4(typescript@5.4.3) + version: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) typechain: specifier: ^8.3.2 version: 8.3.2(typescript@5.4.3) @@ -1959,7 +1975,7 @@ importers: version: link:../webauthn-stamper cross-fetch: specifier: ^3.1.5 - version: 3.1.5 + version: 3.2.0(encoding@0.1.13) packages/iframe-stamper: {} @@ -1974,13 +1990,13 @@ importers: devDependencies: '@types/jest': specifier: ^29.5.3 - version: 29.5.3 + version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.18.2) + version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) ts-jest: specifier: ^29.3.1 - version: 29.3.1(@babel/core@7.26.9)(@jest/types@29.4.3)(jest@29.7.0)(typescript@5.4.3) + version: 29.3.4(@babel/core@7.27.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.3))(jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)))(typescript@5.4.3) packages/react-native-passkey-stamper: dependencies: @@ -1991,14 +2007,21 @@ importers: specifier: workspace:* version: link:../http buffer: - specifier: ^6.0.3 + specifier: 6.0.3 version: 6.0.3 react-native-passkey: - specifier: ^3.0.0 - version: 3.0.0(react-native@0.76.5)(react@18.3.1) + specifier: 3.0.0 + version: 3.0.0(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) sha256-uint8array: - specifier: ^0.10.7 + specifier: 0.10.7 version: 0.10.7 + devDependencies: + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@rollup/plugin-babel': + specifier: 5.3.0 + version: 5.3.0(@babel/core@7.26.9)(@types/babel__core@7.20.5)(rollup@4.41.1) packages/sdk-browser: dependencies: @@ -2037,10 +2060,10 @@ importers: version: 6.0.3 cross-fetch: specifier: ^3.1.5 - version: 3.1.5 + version: 3.2.0(encoding@0.1.13) hpke-js: specifier: ^1.2.7 - version: 1.2.7 + version: 1.6.2 devDependencies: glob: specifier: ^8.0.3 @@ -2053,25 +2076,25 @@ importers: dependencies: '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.2.75)(react@18.2.0) + version: 11.14.0(@types/react@18.3.23)(react@18.3.1) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.75)(react@18.2.0) + version: 11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) '@icons-pack/react-simple-icons': specifier: ^10.1.0 - version: 10.1.0(react@18.2.0) + version: 10.2.0(react@18.3.1) '@mui/icons-material': specifier: ^6.1.5 - version: 6.1.5(@mui/material@6.1.5)(@types/react@18.2.75)(react@18.2.0) + version: 6.4.11(@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) '@mui/material': specifier: ^6.1.5 - version: 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.75)(react-dom@18.3.1)(react@18.2.0) + version: 6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@noble/hashes': specifier: 1.4.0 version: 1.4.0 '@react-oauth/google': specifier: ^0.12.1 - version: 0.12.1(react-dom@18.3.1)(react@18.2.0) + version: 0.12.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@turnkey/crypto': specifier: workspace:* version: link:../crypto @@ -2089,32 +2112,29 @@ importers: version: link:../wallet-stamper '@types/react': specifier: ^18.2.75 - version: 18.2.75 - jwt-decode: - specifier: ^4.0.0 - version: 4.0.0 + version: 18.3.23 libphonenumber-js: specifier: ^1.11.14 - version: 1.11.14 + version: 1.12.8 next: specifier: '^15.2.3 ' - version: 15.2.3(@babel/core@7.26.9)(react-dom@18.3.1)(react@18.2.0) + version: 15.3.2(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-apple-login: specifier: ^1.1.6 - version: 1.1.6(prop-types@15.8.1)(react-dom@18.3.1)(react@18.2.0) + version: 1.1.6(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-international-phone: specifier: ^4.3.0 - version: 4.3.0(react@18.2.0) + version: 4.5.0(react@18.3.1) usehooks-ts: specifier: ^3.1.1 - version: 3.1.1(react@18.2.0) + version: 3.1.1(react@18.3.1) devDependencies: postcss-import: specifier: ^16.1.0 - version: 16.1.0(postcss@8.4.38) + version: 16.1.0(postcss@8.5.3) react: specifier: ^18.2.0 - version: 18.2.0 + version: 18.3.1 packages/sdk-react-native: dependencies: @@ -2135,19 +2155,29 @@ importers: version: link:../react-native-passkey-stamper '@types/react': specifier: '>=16.8.0 <20' - version: 18.3.3 + version: 18.3.23 react: specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 version: 18.3.1 + react-native: + specifier: 0.76.5 + version: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) react-native-inappbrowser-reborn: - specifier: ^3.7.0 - version: 3.7.0(react-native@0.76.5) + specifier: 3.7.0 + version: 3.7.0(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)) react-native-keychain: - specifier: ^8.1.0 || ^9.2.2 + specifier: 8.1.0 version: 8.1.0 react-native-passkey: - specifier: ^3.0.0 - version: 3.0.0(react-native@0.76.5)(react@18.3.1) + specifier: 3.0.0 + version: 3.0.0(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + devDependencies: + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@rollup/plugin-babel': + specifier: 5.3.0 + version: 5.3.0(@babel/core@7.26.9)(@types/babel__core@7.20.5)(rollup@4.41.1) packages/sdk-server: dependencies: @@ -2165,11 +2195,11 @@ importers: version: 6.0.3 cross-fetch: specifier: ^3.1.5 - version: 3.1.5 + version: 3.2.0(encoding@0.1.13) devDependencies: '@types/express': specifier: ^4.17.21 - version: 4.17.21 + version: 4.17.22 glob: specifier: ^8.0.3 version: 8.1.0 @@ -2184,7 +2214,7 @@ importers: dependencies: '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@turnkey/http': specifier: workspace:* version: link:../http @@ -2213,7 +2243,7 @@ importers: devDependencies: jest-environment-jsdom: specifier: ^29.7.0 - version: 29.7.0 + version: 29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) jest-localstorage-mock: specifier: ^2.4.26 version: 2.4.26 @@ -2237,20 +2267,20 @@ importers: version: link:../sdk-server cross-fetch: specifier: ^4.0.0 - version: 4.0.0 + version: 4.1.0(encoding@0.1.13) devDependencies: '@types/jest': specifier: ^29.5.3 - version: 29.5.3 + version: 29.5.14 jest: specifier: ^29.3.1 - version: 29.4.3(@types/node@18.18.2) + version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 viem: specifier: ^2.24.2 - version: 2.26.2(typescript@5.4.3) + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) packages/wallet-stamper: dependencies: @@ -2260,14 +2290,10 @@ importers: '@turnkey/encoding': specifier: workspace:* version: link:../encoding - optionalDependencies: - viem: - specifier: ^2.21.35 - version: 2.26.2(typescript@5.4.3) devDependencies: '@solana/web3.js': specifier: ^1.95.8 - version: 1.95.8(encoding@0.1.13) + version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) '@turnkey/api-key-stamper': specifier: workspace:* version: link:../api-key-stamper @@ -2276,7 +2302,7 @@ importers: version: link:../http dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 tweetnacl: specifier: ^1.0.3 version: 1.0.3 @@ -2286,6 +2312,10 @@ importers: typescript: specifier: 5.4.3 version: 5.4.3 + optionalDependencies: + viem: + specifier: ^2.21.35 + version: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) packages/webauthn-stamper: dependencies: @@ -2295,9088 +2325,16550 @@ importers: packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - - /@adraffy/ens-normalize@1.10.0: + '@adraffy/ens-normalize@1.10.0': resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} - /@adraffy/ens-normalize@1.10.1: + '@adraffy/ens-normalize@1.10.1': resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} - dev: false - /@adraffy/ens-normalize@1.11.0: + '@adraffy/ens-normalize@1.11.0': resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==} - /@alloc/quick-lru@5.2.0: + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - /@ampproject/remapping@2.2.0: - resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.25 - dev: false - - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - /@aptos-labs/aptos-client@0.1.1: + '@aptos-labs/aptos-client@0.1.1': resolution: {integrity: sha512-kJsoy4fAPTOhzVr7Vwq8s/AUg6BQiJDa7WOqRzev4zsuIS3+JCuIZ6vUd7UBsjnxtmguJJulMRs9qWCzVBt2XA==} engines: {node: '>=15.10.0'} - dependencies: - axios: 1.8.3 - got: 11.8.6 - transitivePeerDependencies: - - debug - dev: false - - /@babel/code-frame@7.18.6: - resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.24.7 - dev: false - - /@babel/code-frame@7.26.2: - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - js-tokens: 4.0.0 - picocolors: 1.1.1 + deprecated: <1.0.0 is no longer supported please upgrade to the latest version - /@babel/compat-data@7.22.20: - resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} engines: {node: '>=6.9.0'} - dev: false - /@babel/compat-data@7.26.8: - resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} + '@babel/compat-data@7.27.3': + resolution: {integrity: sha512-V42wFfx1ymFte+ecf6iXghnnP8kWTO+ZLXIyZq+1LAXHHvTZdVxicn4yiVYdYMGaCO3tmqub11AorKkv+iodqw==} engines: {node: '>=6.9.0'} - /@babel/core@7.20.12: + '@babel/core@7.20.12': resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.14 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.12) - '@babel/helper-module-transforms': 7.20.11 - '@babel/helpers': 7.20.13 - '@babel/parser': 7.20.15 - '@babel/template': 7.20.7 - '@babel/traverse': 7.23.2 - '@babel/types': 7.20.7 - convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/core@7.26.9: + '@babel/core@7.26.9': resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helpers': 7.26.9 - '@babel/parser': 7.26.9 - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.20.14: - resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==} + '@babel/core@7.27.3': + resolution: {integrity: sha512-hyrN8ivxfvJ4i0fIJuV4EOlV0WDMz5Ui4StRTgVaAvWeiRCilXgwVvxJKtFQ3TKtHgJscB2YiXKGNJuVwhQMtA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - '@jridgewell/gen-mapping': 0.3.5 - jsesc: 2.5.2 - dev: false - /@babel/generator@7.26.9: - resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==} + '@babel/generator@7.27.3': + resolution: {integrity: sha512-xnlJYj5zepml8NXtjkG0WquFUv8RskFqyFcVgTBp5k+NaA/8uw/K+OSVf8AMGw5e9HKP2ETd5xpK5MLZQD6b4Q==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.1.0 - /@babel/helper-annotate-as-pure@7.25.9: - resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false - /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: - resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.26.9 - dev: false - /@babel/helper-compilation-targets@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + '@babel/helper-create-class-features-plugin@7.27.1': + resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.20.12 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.4 - lru-cache: 5.1.1 - semver: 7.5.4 - dev: false - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + '@babel/helper-create-regexp-features-plugin@7.27.1': + resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.4 - lru-cache: 5.1.1 - semver: 7.5.4 - dev: false + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.3.3': + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + + '@babel/helper-define-polyfill-provider@0.6.4': + resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - /@babel/helper-compilation-targets@7.26.5: - resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} + '@babel/helper-environment-visitor@7.24.7': + resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.4 - lru-cache: 5.1.1 - semver: 7.5.4 - /@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.20.12): - resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==} + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.20.12) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.9 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9): - resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==} + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.9 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.20.12): - resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - regexpu-core: 6.2.0 - semver: 7.5.4 - dev: false - /@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9): - resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - regexpu-core: 6.2.0 - semver: 7.5.4 - dev: false - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.12): - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.26.9): - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + '@babel/helper-remap-async-to-generator@7.27.1': + resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0 - /@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.9): - resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0 - /@babel/helper-environment-visitor@7.24.7: - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false - /@babel/helper-explode-assignable-expression@7.18.6: - resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false - /@babel/helper-function-name@7.24.7: - resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.26.9 - '@babel/types': 7.26.9 - dev: false - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false - /@babel/helper-member-expression-to-functions@7.25.9: - resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} + '@babel/helper-wrap-function@7.27.1': + resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-module-imports@7.24.7: - resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + '@babel/helpers@7.27.3': + resolution: {integrity: sha512-h/eKy9agOya1IGuLaZ9tEUgz+uIRXcbtOhRtUyyMf8JFmn1iT13vnl/IGVWSkdOCG/pC57U4S1jnAabAavTMwg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-imports@7.25.9: - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color + '@babel/parser@7.27.3': + resolution: {integrity: sha512-xyYxRj6+tLNDTWi0KCBcZ9V7yg3/lwL9DWh9Uwh/RIVlIfFidggcgxKX3GCXwCiswwcGRawBKbEg2LG/Y8eJhw==} + engines: {node: '>=6.0.0'} + hasBin: true - /@babel/helper-module-transforms@7.20.11: - resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + peerDependencies: + '@babel/core': ^7.0.0 - /@babel/helper-module-transforms@7.26.0(@babel/core@7.20.12): - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.13.0 - /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9): - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/helper-optimise-call-expression@7.25.9: - resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} + '@babel/plugin-proposal-class-properties@7.18.6': + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-plugin-utils@7.20.2: - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + '@babel/plugin-proposal-class-static-block@7.21.0': + resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. + peerDependencies: + '@babel/core': ^7.12.0 - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + '@babel/plugin-proposal-dynamic-import@7.18.6': + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-plugin-utils@7.26.5: - resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} + '@babel/plugin-proposal-export-default-from@7.27.1': + resolution: {integrity: sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + '@babel/plugin-proposal-export-namespace-from@7.18.9': + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.25.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + '@babel/plugin-proposal-json-strings@7.18.6': + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.25.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/helper-replace-supers@7.26.5(@babel/core@7.20.12): - resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/helper-replace-supers@7.26.5(@babel/core@7.26.9): - resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/helper-simple-access@7.24.7: - resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} + '@babel/plugin-proposal-object-rest-spread@7.20.7': + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-skip-transparent-expression-wrappers@7.25.9: - resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-split-export-declaration@7.24.7: - resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.26.9 - dev: false + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-string-parser@7.25.9: - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + '@babel/plugin-proposal-private-methods@7.18.6': + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-validator-identifier@7.25.9: - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + '@babel/plugin-proposal-private-property-in-object@7.21.11': + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-validator-option@7.18.6: - resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} - engines: {node: '>=6.9.0'} - dev: false + '@babel/plugin-proposal-unicode-property-regex@7.18.6': + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} - engines: {node: '>=6.9.0'} - dev: false + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-validator-option@7.25.9: - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helper-wrap-function@7.25.9: - resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} + '@babel/plugin-syntax-export-default-from@7.27.1': + resolution: {integrity: sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helpers@7.20.13: - resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} + '@babel/plugin-syntax-flow@7.27.1': + resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/helpers@7.26.9: - resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==} + '@babel/plugin-syntax-import-assertions@7.27.1': + resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.26.9 - '@babel/types': 7.26.9 + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/highlight@7.24.7: - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 - dev: false + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/parser@7.20.15: - resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.26.9 - dev: false + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/parser@7.26.9: - resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.26.9 + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': ^7.0.0-0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + '@babel/plugin-transform-arrow-functions@7.27.1': + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + '@babel/plugin-transform-async-generator-functions@7.27.1': + resolution: {integrity: sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + '@babel/plugin-transform-async-to-generator@7.27.1': + resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + '@babel/plugin-transform-block-scoped-functions@7.27.1': + resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} + '@babel/plugin-transform-block-scoping@7.27.3': + resolution: {integrity: sha512-+F8CnfhuLhwUACIJMLWnjz6zvzYM2r0yeIHKlbgfw7ml8rOMJsXNXV/hyRcb3nb493gRs4WvYpQAndWj/qQmkQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} + '@babel/plugin-transform-class-properties@7.27.1': + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + '@babel/plugin-transform-classes@7.27.1': + resolution: {integrity: sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + '@babel/plugin-transform-computed-properties@7.27.1': + resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==} + '@babel/plugin-transform-destructuring@7.27.3': + resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + '@babel/plugin-transform-dotall-regex@7.27.1': + resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + '@babel/plugin-transform-duplicate-keys@7.27.1': + resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + '@babel/plugin-transform-exponentiation-operator@7.27.1': + resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + '@babel/plugin-transform-flow-strip-types@7.27.1': + resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + '@babel/plugin-transform-for-of@7.27.1': + resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + '@babel/plugin-transform-function-name@7.27.1': + resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + '@babel/plugin-transform-literals@7.27.1': + resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + '@babel/plugin-transform-logical-assignment-operators@7.27.1': + resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + '@babel/plugin-transform-modules-commonjs@7.27.1': + resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + '@babel/plugin-transform-modules-systemjs@7.27.1': + resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9) - dev: false - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + '@babel/plugin-transform-modules-umd@7.27.1': + resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) - dev: false - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) - dev: false + '@babel/core': ^7.0.0 - /@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} + '@babel/plugin-transform-new-target@7.27.1': + resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': + resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + '@babel/plugin-transform-numeric-separator@7.27.1': + resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + '@babel/plugin-transform-object-rest-spread@7.27.3': + resolution: {integrity: sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} + '@babel/plugin-transform-object-super@7.27.1': + resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.26.9): - resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} + '@babel/plugin-transform-optional-catch-binding@7.27.1': + resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + '@babel/plugin-transform-optional-chaining@7.27.1': + resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + '@babel/plugin-transform-parameters@7.27.1': + resolution: {integrity: sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + '@babel/plugin-transform-private-methods@7.27.1': + resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + '@babel/plugin-transform-private-property-in-object@7.27.1': + resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + '@babel/plugin-transform-property-literals@7.27.1': + resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + '@babel/plugin-transform-react-display-name@7.27.1': + resolution: {integrity: sha512-p9+Vl3yuHPmkirRrg021XiP+EETmPMQTLr6Ayjj85RLNEbb3Eya/4VI0vAdzQG9SEAl2Lnt7fy5lZyMzjYoZQQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + '@babel/plugin-transform-react-jsx-development@7.27.1': + resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@babel/plugin-transform-react-jsx@7.27.1': + resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + '@babel/plugin-transform-react-pure-annotations@7.27.1': + resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + '@babel/plugin-transform-regenerator@7.27.1': + resolution: {integrity: sha512-B19lbbL7PMrKr52BNPjCqg1IyNUIjTcxKj8uX9zHO+PmWN93s19NDr/f69mIkEp2x9nmDJ08a7lgHaTTzvW7mw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==} + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + '@babel/plugin-transform-runtime@7.27.3': + resolution: {integrity: sha512-bA9ZL5PW90YwNgGfjg6U+7Qh/k3zCEQJ06BFgAGRp/yMjw9hP9UGbGPtx3KSOkHGljEPCCxaE+PH4fUR2h1sDw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + '@babel/plugin-transform-shorthand-properties@7.27.1': + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-flow@7.26.0(@babel/core@7.20.12): - resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==} + '@babel/plugin-transform-spread@7.27.1': + resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.9): - resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==} + '@babel/plugin-transform-sticky-regex@7.27.1': + resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.20.12): - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + '@babel/plugin-transform-template-literals@7.27.1': + resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.26.9): - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + '@babel/plugin-transform-typeof-symbol@7.27.1': + resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + '@babel/plugin-transform-typescript@7.27.1': + resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + '@babel/plugin-transform-unicode-escapes@7.27.1': + resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + '@babel/plugin-transform-unicode-regex@7.27.1': + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.20.12): - resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} + '@babel/preset-env@7.20.2': + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} + '@babel/preset-flow@7.23.3': + resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + '@babel/preset-modules@0.1.6': + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + '@babel/preset-react@7.18.6': + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + '@babel/preset-typescript@7.18.6': + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + '@babel/register@7.27.1': + resolution: {integrity: sha512-K13lQpoV54LATKkzBpBAEu1GGSIRzxR9f4IN4V8DCDgiUMo2UDGagEZr3lPeVNJPLkWUi5JE4hCHKneVTwQlYQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/runtime@7.26.10': + resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/runtime@7.27.3': + resolution: {integrity: sha512-7EYtGezsdiDMyY80+65EzwiGmcJqpmcZCojSXaRgdrBaGtWTgDZKq69cPIVped6MkIM78cTQ2GOiEYjwOlG4xw==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse@7.27.3': + resolution: {integrity: sha512-lId/IfN/Ye1CIu8xG7oKBHXd2iNb2aW1ilPszzGcJug6M8RCKfVNcYhpI5+bMvFYjK7lXIM0R+a+6r8xhHp2FQ==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/types@7.27.3': + resolution: {integrity: sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@biconomy/account@4.5.7': + resolution: {integrity: sha512-hJjbCJNanwDzXprKCCrHB1iV+MdQagt79Zuyv3+j1EojseWmFPXAvZagS2rcYJu1XPFlt65nckQLtW8I/eutnw==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + typescript: ^5.5.3 + viem: ^2 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@biconomy/sdk@0.0.10': + resolution: {integrity: sha512-HolZ2V95/Z/oE75qbbm2X+cGcWwh4S0oTgyDzd8XQBnnRDOGKlQuf5gxAz0AFvZTCfkjLqZe8E9cVhYPBI+2yQ==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@rhinestone/module-sdk': ^0.1.25 + typescript: ^5 + viem: ^2.20.0 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/apply-release-plan@7.0.12': + resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==} - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/assemble-release-plan@6.0.8': + resolution: {integrity: sha512-y8+8LvZCkKJdbUlpXFuqcavpzJR80PN0OIfn8HZdwK7Sh6MgLXm4hKY5vu6/NDoKp8lAlM4ERZCqRMLxP4m+MQ==} - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/changelog-git@0.2.1': + resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@changesets/changelog-github@0.5.1': + resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==} - /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.20.12): - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/cli@2.29.4': + resolution: {integrity: sha512-VW30x9oiFp/un/80+5jLeWgEU6Btj8IqOgI+X/zAYu4usVOWXjPIK5jSSlt5jsCU7/6Z7AxEkarxBxGUqkAmNg==} + hasBin: true - /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@changesets/config@3.1.1': + resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==} - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/get-dependents-graph@2.1.3': + resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} - /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/get-github-info@0.6.0': + resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} - /@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.9): - resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9) - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/get-release-plan@4.0.12': + resolution: {integrity: sha512-KukdEgaafnyGryUwpHG2kZ7xJquOmWWWk5mmoeQaSvZTWH1DC5D/Sw6ClgGFYtQnOMSQhgoEbDxAbpIIayKH1g==} - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/git@3.0.4': + resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==} - /@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9) - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/logger@0.1.1': + resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/parse@0.4.1': + resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==} - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/pre@2.0.2': + resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} - /@babel/plugin-transform-block-scoping@7.20.15(@babel/core@7.20.12): - resolution: {integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/read@0.6.5': + resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==} - /@babel/plugin-transform-block-scoping@7.20.15(@babel/core@7.26.9): - resolution: {integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/should-skip-package@0.1.2': + resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} - /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - /@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/types@6.1.0': + resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==} - /@babel/plugin-transform-classes@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.20.12) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false + '@changesets/write@0.4.0': + resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==} - /@babel/plugin-transform-classes@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} - engines: {node: '>=6.9.0'} + '@coinbase/onchainkit@0.38.13': + resolution: {integrity: sha512-TfRKX13nAZ1DTCtHG4TFRrkW+ACyAPNJA0YudImrdnrNM/eXNEqk9yBbMBfycKMscRzypvnX2hc2eQdo2Calxw==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false + react: ^18 || ^19 + react-dom: ^18 || ^19 - /@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) - '@babel/traverse': 7.26.9 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false + '@coinbase/wallet-sdk@3.9.3': + resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/template': 7.26.9 - dev: false + '@coinbase/wallet-sdk@4.3.0': + resolution: {integrity: sha512-T3+SNmiCw4HzDm4we9wCHCxlP0pqCiwKe4sOwPH3YAK2KSKjxPRydKu6UQJrdONFVLG7ujXvbd/6ZqmvJb8rkw==} - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/template': 7.26.9 - dev: false - - /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} - engines: {node: '>=6.9.0'} + '@coral-xyz/borsh@0.26.0': + resolution: {integrity: sha512-uCZ0xus0CszQPHYfWAqKS5swS1UxvePu83oOF+TWpUkedsNlg6p2p4azxZNSSqwXb9uXMFgxhuMBX9r3Xoi0vQ==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/template': 7.26.9 - dev: false + '@solana/web3.js': ^1.68.0 - /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/amino@0.33.1': + resolution: {integrity: sha512-WfWiBf2EbIWpwKG9AOcsIIkR717SY+JdlXM/SL/bI66BdrhniAF+/ZNis9Vo9HF6lP2UU5XrSmFA4snAvEgdrg==} - /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/crypto@0.33.1': + resolution: {integrity: sha512-U4kGIj/SNBzlb2FGgA0sMR0MapVgJUg8N+oIAiN5+vl4GZ3aefmoL1RDyTrFS/7HrB+M+MtHsxC0tvEu4ic/zA==} - /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/encoding@0.33.1': + resolution: {integrity: sha512-nuNxf29fUcQE14+1p//VVQDwd1iau5lhaW/7uMz7V2AH3GJbFJoJVaKvVyZvdFk+Cnu+s3wCqgq4gJkhRCJfKw==} - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/json-rpc@0.33.1': + resolution: {integrity: sha512-T6VtWzecpmuTuMRGZWuBYHsMF/aznWCYUt/cGMWNSz7DBPipVd0w774PKpxXzpEbyt5sr61NiuLXc+Az15S/Cw==} - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/math@0.33.1': + resolution: {integrity: sha512-ytGkWdKFCPiiBU5eqjHNd59djPpIsOjbr2CkNjlnI1Zmdj+HDkSoD9MUGpz9/RJvRir5IvsXqdE05x8EtoQkJA==} - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/proto-signing@0.33.1': + resolution: {integrity: sha512-Sv4W+MxX+0LVnd+2rU4Fw1HRsmMwSVSYULj7pRkij3wnPwUlTVoJjmKFgKz13ooIlfzPrz/dnNjGp/xnmXChFQ==} - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/socket@0.33.1': + resolution: {integrity: sha512-KzAeorten6Vn20sMiM6NNWfgc7jbyVo4Zmxev1FXa5EaoLCZy48cmT3hJxUJQvJP/lAy8wPGEjZ/u4rmF11x9A==} - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/stargate@0.33.1': + resolution: {integrity: sha512-CnJ1zpSiaZgkvhk+9aTp5IPmgWn2uo+cNEBN8VuD9sD6BA0V4DMjqe251cNFLiMhkGtiE5I/WXFERbLPww3k8g==} - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@cosmjs/stream@0.33.1': + resolution: {integrity: sha512-bMUvEENjeQPSTx+YRzVsWT1uFIdHRcf4brsc14SOoRQ/j5rOJM/aHfsf/BmdSAnYbdOQ3CMKj/8nGAQ7xUdn7w==} - /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.20.12): - resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.20.12) - dev: false + '@cosmjs/tendermint-rpc@0.33.1': + resolution: {integrity: sha512-22klDFq2MWnf//C8+rZ5/dYatr6jeGT+BmVbutXYfAK9fmODbtFcumyvB6uWaEORWfNukl8YK1OLuaWezoQvxA==} - /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.26.9): - resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.9) - dev: false + '@cosmjs/utils@0.33.1': + resolution: {integrity: sha512-UnLHDY6KMmC+UXf3Ufyh+onE19xzEXjT4VZ504Acmk4PXxqyvG4cCPprlKUFnGUX7f0z8Or9MAOHXBx41uHBcg==} - /@babel/plugin-transform-flow-strip-types@7.26.5(@babel/core@7.26.9): - resolution: {integrity: sha512-eGK26RsbIkYUns3Y8qKl362juDDYK+wEdPGHGrhzUl6CewZFo55VZ7hg+CyMFU4dd5QQakBN86nBMpRsFpRvbQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.9) - dev: false + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} - /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.12): - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} + '@ecies/ciphers@0.2.3': + resolution: {integrity: sha512-tapn6XhOueMwht3E2UzY0ZZjYokdaw9XtL9kEyjhQ/Fb9vL9xTFbOaI+fV0AWvTpYu4BNloC6getKW6NtSg4mA==} + engines: {bun: '>=1', deno: '>=2', node: '>=16'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@noble/ciphers': ^1.0.0 - /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.26.9): - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emnapi/core@1.4.3': + resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==} - /@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.9): - resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: false + '@emnapi/runtime@1.4.3': + resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emnapi/wasi-threads@1.0.2': + resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==} - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/babel-plugin@11.13.5': + resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} - /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@emotion/cache@11.14.0': + resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==} - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/is-prop-valid@1.3.1': + resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==} - /@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} - /@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} - engines: {node: '>=6.9.0'} + '@emotion/react@11.14.0': + resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} + '@emotion/styled@11.14.0': + resolution: {integrity: sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.26.9): - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} - /@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} - engines: {node: '>=6.9.0'} + '@emotion/use-insertion-effect-with-fallbacks@1.2.0': + resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: false + react: '>=16.8.0' - /@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.26.9): - resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: false + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} - /@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.9): - resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: false + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-identifier': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: false + '@emurgo/cardano-serialization-lib-browser@13.2.1': + resolution: {integrity: sha512-7RfX1gI16Vj2DgCp/ZoXqyLAakWo6+X95ku/rYGbVzuS/1etrlSiJmdbmdm+eYmszMlGQjrtOJQeVLXoj4L/Ag==} - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.26.9): - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-identifier': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: false + '@emurgo/cardano-serialization-lib-nodejs@13.2.0': + resolution: {integrity: sha512-Bz1zLGEqBQ0BVkqt1OgMxdBOE3BdUWUd7Ly9Ecr/aUwkA8AV1w1XzBMe4xblmJHnB1XXNlPH4SraXCvO+q0Mig==} - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - '@babel/core': ^7.0.0 + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.56.0': + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@ethereumjs/common@3.2.0': + resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} + + '@ethereumjs/common@4.4.0': + resolution: {integrity: sha512-Fy5hMqF6GsE6DpYTyqdDIJPJgUtDn4dL120zKw+Pswuo+iLyBsEYuSyzMw6NVzD2vDzcBG9fE4+qX4X2bPc97w==} + + '@ethereumjs/rlp@4.0.1': + resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} + engines: {node: '>=14'} + hasBin: true + + '@ethereumjs/rlp@5.0.2': + resolution: {integrity: sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==} + engines: {node: '>=18'} + hasBin: true + + '@ethereumjs/tx@4.2.0': + resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} + engines: {node: '>=14'} + + '@ethereumjs/tx@5.4.0': + resolution: {integrity: sha512-SCHnK7m/AouZ7nyoR0MEXw1OO/tQojSbp88t8oxhwes5iZkZCtfFdUrJaiIb72qIpH2FVw6s1k1uP7LXuH7PsA==} + engines: {node: '>=18'} + + '@ethereumjs/util@8.1.0': + resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} + engines: {node: '>=14'} + + '@ethereumjs/util@9.1.0': + resolution: {integrity: sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog==} + engines: {node: '>=18'} + + '@ethersproject/abi@5.7.0': + resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==} + + '@ethersproject/abi@5.8.0': + resolution: {integrity: sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q==} + + '@ethersproject/abstract-provider@5.7.0': + resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==} + + '@ethersproject/abstract-provider@5.8.0': + resolution: {integrity: sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg==} + + '@ethersproject/abstract-signer@5.7.0': + resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==} + + '@ethersproject/abstract-signer@5.8.0': + resolution: {integrity: sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA==} + + '@ethersproject/address@5.7.0': + resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==} + + '@ethersproject/address@5.8.0': + resolution: {integrity: sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA==} + + '@ethersproject/base64@5.7.0': + resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==} + + '@ethersproject/base64@5.8.0': + resolution: {integrity: sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ==} + + '@ethersproject/basex@5.7.0': + resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} + + '@ethersproject/bignumber@5.7.0': + resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} + + '@ethersproject/bignumber@5.8.0': + resolution: {integrity: sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==} + + '@ethersproject/bytes@5.7.0': + resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==} + + '@ethersproject/bytes@5.8.0': + resolution: {integrity: sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==} + + '@ethersproject/constants@5.7.0': + resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==} + + '@ethersproject/constants@5.8.0': + resolution: {integrity: sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==} + + '@ethersproject/contracts@5.7.0': + resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} + + '@ethersproject/contracts@5.8.0': + resolution: {integrity: sha512-0eFjGz9GtuAi6MZwhb4uvUM216F38xiuR0yYCjKJpNfSEy4HUM8hvqqBj9Jmm0IUz8l0xKEhWwLIhPgxNY0yvQ==} + + '@ethersproject/hash@5.7.0': + resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} + + '@ethersproject/hash@5.8.0': + resolution: {integrity: sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA==} + + '@ethersproject/hdnode@5.7.0': + resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} + + '@ethersproject/json-wallets@5.7.0': + resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} + + '@ethersproject/keccak256@5.7.0': + resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} + + '@ethersproject/keccak256@5.8.0': + resolution: {integrity: sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==} + + '@ethersproject/logger@5.7.0': + resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==} + + '@ethersproject/logger@5.8.0': + resolution: {integrity: sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==} + + '@ethersproject/networks@5.7.1': + resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==} + + '@ethersproject/networks@5.8.0': + resolution: {integrity: sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg==} + + '@ethersproject/pbkdf2@5.7.0': + resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} + + '@ethersproject/properties@5.7.0': + resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} + + '@ethersproject/properties@5.8.0': + resolution: {integrity: sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw==} + + '@ethersproject/providers@5.7.2': + resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} + + '@ethersproject/random@5.7.0': + resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} + + '@ethersproject/rlp@5.7.0': + resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} + + '@ethersproject/rlp@5.8.0': + resolution: {integrity: sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q==} + + '@ethersproject/sha2@5.7.0': + resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} + + '@ethersproject/sha2@5.8.0': + resolution: {integrity: sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A==} + + '@ethersproject/signing-key@5.7.0': + resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} + + '@ethersproject/signing-key@5.8.0': + resolution: {integrity: sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w==} + + '@ethersproject/solidity@5.7.0': + resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} + + '@ethersproject/solidity@5.8.0': + resolution: {integrity: sha512-4CxFeCgmIWamOHwYN9d+QWGxye9qQLilpgTU0XhYs1OahkclF+ewO+3V1U0mvpiuQxm5EHHmv8f7ClVII8EHsA==} + + '@ethersproject/strings@5.7.0': + resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} + + '@ethersproject/strings@5.8.0': + resolution: {integrity: sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==} + + '@ethersproject/transactions@5.7.0': + resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==} + + '@ethersproject/transactions@5.8.0': + resolution: {integrity: sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg==} + + '@ethersproject/units@5.7.0': + resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==} + + '@ethersproject/wallet@5.7.0': + resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} + + '@ethersproject/web@5.7.1': + resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} + + '@ethersproject/web@5.8.0': + resolution: {integrity: sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw==} + + '@ethersproject/wordlists@5.7.0': + resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} + + '@farcaster/frame-core@0.0.26': + resolution: {integrity: sha512-DqBsi+lz7WBlqcxJfYv8ZiU8+Th4Y49euq13kCxVOn6YU/rKR7Wq6E6N1bgeb625wyoIrlC3NnPRXf5SoRxNhA==} + + '@farcaster/frame-sdk@0.0.28': + resolution: {integrity: sha512-raxJkwy9oNDTodyfcY8DNvQNkt/9wdWGIqGnXW70biBPfVxfdG9WAqy1Bm552KSynd0+hGzcrQVwkMNzvpSZBg==} + + '@farcaster/frame-wagmi-connector@0.0.16': + resolution: {integrity: sha512-9ymoD49f8mT7itHdZnnXWqt6MQKqaxG/1QzOr+0MBnSPL+BTBpbKFGCUMbhLdEE2XDool139oM5uMxlPEOOP2A==} + peerDependencies: + '@farcaster/frame-sdk': ^0.0.28 + '@wagmi/core': ^2.14.1 + viem: ^2.21.55 + + '@fastify/busboy@2.1.1': + resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} + engines: {node: '>=14'} + + '@fivebinaries/coin-selection@3.0.0': + resolution: {integrity: sha512-h25Pn1ZA7oqQBQDodGAgIsQt66T2wDge9onBKNqE66WNWL0KJiKJbpij8YOLo5AAlEIg5IS7EB1QjBgDOIg6DQ==} + + '@floating-ui/core@1.7.0': + resolution: {integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==} + + '@floating-ui/dom@1.7.0': + resolution: {integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg==} + + '@floating-ui/react-dom@2.1.2': + resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/utils@0.2.9': + resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + + '@fractalwagmi/popup-connection@1.1.1': + resolution: {integrity: sha512-hYL+45iYwNbwjvP2DxP3YzVsrAGtj/RV9LOgMpJyCxsfNoyyOoi2+YrnywKkiANingiG2kJ1nKsizbu1Bd4zZw==} + peerDependencies: + react: ^17.0.2 || ^18 + react-dom: ^17.0.2 || ^18 + + '@fractalwagmi/solana-wallet-adapter@0.1.1': + resolution: {integrity: sha512-oTZLEuD+zLKXyhZC5tDRMPKPj8iaxKLxXiCjqRfOo4xmSbS2izGRWLJbKMYYsJysn/OI3UJ3P6CWP8WUWi0dZg==} + + '@gerrit0/mini-shiki@3.4.2': + resolution: {integrity: sha512-3jXo5bNjvvimvdbIhKGfFxSnKCX+MA8wzHv55ptzk/cx8wOzT+BRcYgj8aFN3yTiTs+zvQQiaZFr7Jce1ZG3fw==} + + '@graphql-typed-document-node/core@3.2.0': + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@hello-pangea/dnd@17.0.0': + resolution: {integrity: sha512-LDDPOix/5N0j5QZxubiW9T0M0+1PR0rTDWeZF5pu1Tz91UQnuVK4qQ/EjY83Qm2QeX0eM8qDXANfDh3VVqtR4Q==} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@hpke/chacha20poly1305@1.6.2': + resolution: {integrity: sha512-LAzcHlX+GfrVqwjx+EqqHmEdkzE5YYIlzZz4Q1uN2Keq81iOB9IveJpufhsbyB1zw7W5/Y4gJ6dfAZq4gFO/sA==} + engines: {node: '>=16.0.0'} + + '@hpke/common@1.7.2': + resolution: {integrity: sha512-x8wGc1S3ANyQpbTXxhDuzQwzZn9IDaOARpEq/QzDyWFBEhOFyN8mJd6oMnvFkxe0H96JFgIU6eI4G2aaNxgFJQ==} + engines: {node: '>=16.0.0'} + + '@hpke/core@1.7.2': + resolution: {integrity: sha512-WPsy/Wp1oF+47EVfQdXG55TGS+rOKAAZJ4W/4BFnTENGGq/EAJeX1h0ooCarkqWrJsREsrpa4EiIZkz1m8hMOA==} + engines: {node: '>=16.0.0'} + + '@hpke/dhkem-x25519@1.6.2': + resolution: {integrity: sha512-xL//FDIY0ai3/JZyr3UI/jaw8eLEcs+SU7Z9K5uxO8R4xzvwOfGajI4VE9GH+QXGMrHncQDLIDPX9pcdqkGSvQ==} + engines: {node: '>=16.0.0'} + + '@hpke/dhkem-x448@1.6.2': + resolution: {integrity: sha512-uA5DJczlkjpvfjHUvLTk9Ux7ET5ERnkFR0KxvdRHtArN72Bzf4MKVSB/9hqKB/rD+zx8oWIy9KHrlYxj+0DS7g==} + engines: {node: '>=16.0.0'} + + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead + + '@icons-pack/react-simple-icons@10.2.0': + resolution: {integrity: sha512-QDUxup8D3GdIIzwGpxQs6bjeFV5mJes25qqf4aqP/PaBYQNCar7AiyD8C14636TosCG0A/QqAUwm/Hviep4d4g==} + peerDependencies: + react: ^16.13 || ^17 || ^18 || ^19 + + '@img/sharp-darwin-arm64@0.34.2': + resolution: {integrity: sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.2': + resolution: {integrity: sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.1.0': + resolution: {integrity: sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.1.0': + resolution: {integrity: sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.1.0': + resolution: {integrity: sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.1.0': + resolution: {integrity: sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-ppc64@1.1.0': + resolution: {integrity: sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.1.0': + resolution: {integrity: sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.1.0': + resolution: {integrity: sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.1.0': + resolution: {integrity: sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.1.0': + resolution: {integrity: sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.34.2': + resolution: {integrity: sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.34.2': + resolution: {integrity: sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.34.2': + resolution: {integrity: sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.34.2': + resolution: {integrity: sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.34.2': + resolution: {integrity: sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.34.2': + resolution: {integrity: sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.34.2': + resolution: {integrity: sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.34.2': + resolution: {integrity: sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.2': + resolution: {integrity: sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.2': + resolution: {integrity: sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@inquirer/checkbox@1.5.2': + resolution: {integrity: sha512-CifrkgQjDkUkWexmgYYNyB5603HhTHI91vLFeQXh6qrTKiCMVASol01Rs1cv6LP/A2WccZSRlJKZhbaBIs/9ZA==} + engines: {node: '>=14.18.0'} + + '@inquirer/confirm@2.0.17': + resolution: {integrity: sha512-EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA==} + engines: {node: '>=14.18.0'} + + '@inquirer/core@2.3.1': + resolution: {integrity: sha512-faYAYnIfdEuns3jGKykaog5oUqFiEVbCx9nXGZfUhyEEpKcHt5bpJfZTb3eOBQKo8I/v4sJkZeBHmFlSZQuBCw==} + engines: {node: '>=14.18.0'} + + '@inquirer/core@6.0.0': + resolution: {integrity: sha512-fKi63Khkisgda3ohnskNf5uZJj+zXOaBvOllHsOkdsXRA/ubQLJQrZchFFi57NKbZzkTunXiBMdvWOv71alonw==} + engines: {node: '>=14.18.0'} + + '@inquirer/editor@1.2.15': + resolution: {integrity: sha512-gQ77Ls09x5vKLVNMH9q/7xvYPT6sIs5f7URksw+a2iJZ0j48tVS6crLqm2ugG33tgXHIwiEqkytY60Zyh5GkJQ==} + engines: {node: '>=14.18.0'} + + '@inquirer/expand@1.1.16': + resolution: {integrity: sha512-TGLU9egcuo+s7PxphKUCnJnpCIVY32/EwPCLLuu+gTvYiD8hZgx8Z2niNQD36sa6xcfpdLY6xXDBiL/+g1r2XQ==} + engines: {node: '>=14.18.0'} + + '@inquirer/input@1.2.16': + resolution: {integrity: sha512-Ou0LaSWvj1ni+egnyQ+NBtfM1885UwhRCMtsRt2bBO47DoC1dwtCa+ZUNgrxlnCHHF0IXsbQHYtIIjFGAavI4g==} + engines: {node: '>=14.18.0'} + + '@inquirer/password@1.1.16': + resolution: {integrity: sha512-aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw==} + engines: {node: '>=14.18.0'} + + '@inquirer/prompts@2.3.1': + resolution: {integrity: sha512-YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ==} + engines: {node: '>=14.18.0'} + + '@inquirer/rawlist@1.2.16': + resolution: {integrity: sha512-pZ6TRg2qMwZAOZAV6TvghCtkr53dGnK29GMNQ3vMZXSNguvGqtOVc4j/h1T8kqGJFagjyfBZhUPGwNS55O5qPQ==} + engines: {node: '>=14.18.0'} + + '@inquirer/select@1.3.3': + resolution: {integrity: sha512-RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg==} + engines: {node: '>=14.18.0'} + + '@inquirer/type@1.5.5': + resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==} + engines: {node: '>=18'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/ttlcache@1.4.1': + resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} + engines: {node: '>=12'} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/create-cache-key-function@29.7.0': + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@29.4.3': + resolution: {integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@29.4.3': + resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@keystonehq/alias-sampling@0.1.2': + resolution: {integrity: sha512-5ukLB3bcgltgaFfQfYKYwHDUbwHicekYo53fSEa7xhVkAEqsA74kxdIwoBIURmGUtXe3EVIRm4SYlgcrt2Ri0w==} + + '@keystonehq/bc-ur-registry-sol@0.9.5': + resolution: {integrity: sha512-HZeeph9297ZHjAziE9wL/u2W1dmV0p1H9Bu9g1bLJazP4F6W2fjCK9BAoCiKEsMBqadk6KI6r6VD67fmDzWyug==} + + '@keystonehq/bc-ur-registry@0.5.4': + resolution: {integrity: sha512-z7bZe10I5k0zz9znmDTXh+o3Rzb5XsRVpwAzexubOaLxVdZ0F7aMbe2LoEsw766Hpox/7zARi7UGmLz5C8BAzA==} + + '@keystonehq/bc-ur-registry@0.7.0': + resolution: {integrity: sha512-E6NUd6Y+YYM+IcYGOEXfO9+MU1s63Qjm8brtHftvNhxbdXhGtTYIsa4FQmqZ6q34q91bMkMqUQFsQYPmIxcxfg==} + + '@keystonehq/sdk@0.19.2': + resolution: {integrity: sha512-ilA7xAhPKvpHWlxjzv3hjMehD6IKYda4C1TeG2/DhFgX9VSffzv77Eebf8kVwzPLdYV4LjX1KQ2ZDFoN1MsSFQ==} + peerDependencies: + react: '*' + react-dom: '*' + + '@keystonehq/sol-keyring@0.20.0': + resolution: {integrity: sha512-UBeMlecybTDQaFMI951LBEVRyZarqKHOcwWqqvphV+x7WquYz0SZ/wf/PhizV0MWoGTQwt2m5aqROzksi6svqw==} + + '@ledgerhq/devices@8.4.5': + resolution: {integrity: sha512-wzfX7JRfTPXJl+4BUXxwUFUGghtqQA6V1I6xNxGfXKHjd51rjijL+9xcfZ1oj66dNNm9wiCBBZhMXXusYDUjWg==} + + '@ledgerhq/errors@6.21.0': + resolution: {integrity: sha512-2k5veG9eu+1X5oBVhKSWzA6RE+TWOTSJnytjEhPBTZB6h2ixMrCUMWF5+OAWXiI1EiSNsvGGk19XO87qpZiVTw==} + + '@ledgerhq/hw-transport-webhid@6.30.1': + resolution: {integrity: sha512-1lBXfNOhtQNeS6kiBBbknlzN/DAOQheCPkVUBxZZyfO8057H53o1h8hyrRLz04wQoon+AXa4uZ16xBnsjUiKZA==} + + '@ledgerhq/hw-transport@6.31.5': + resolution: {integrity: sha512-P7nyHU2EnotdWfN9XUKvCw4sllbERNmzb7ruyljqyiBuUfdDvzLJVFgVhu6j+8Y9cGxPysf3i3QtImFsZwKkdQ==} + + '@ledgerhq/logs@6.12.0': + resolution: {integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==} + + '@lit-labs/ssr-dom-shim@1.3.0': + resolution: {integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==} + + '@lit/reactive-element@2.1.0': + resolution: {integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==} + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@metamask/eth-json-rpc-provider@1.0.1': + resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==} + engines: {node: '>=14.0.0'} + + '@metamask/json-rpc-engine@7.3.3': + resolution: {integrity: sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-engine@8.0.2': + resolution: {integrity: sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-middleware-stream@7.0.2': + resolution: {integrity: sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==} + engines: {node: '>=16.0.0'} + + '@metamask/object-multiplex@2.1.0': + resolution: {integrity: sha512-4vKIiv0DQxljcXwfpnbsXcfa5glMj5Zg9mqn4xpIWqkv6uJ2ma5/GtUfLFSxhlxnR8asRMv8dDmWya1Tc1sDFA==} + engines: {node: ^16.20 || ^18.16 || >=20} + + '@metamask/onboarding@1.0.1': + resolution: {integrity: sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==} + + '@metamask/providers@16.1.0': + resolution: {integrity: sha512-znVCvux30+3SaUwcUGaSf+pUckzT5ukPRpcBmy+muBLC0yaWnBcvDqGfcsw6CBIenUdFrVoAFa8B6jsuCY/a+g==} + engines: {node: ^18.18 || >=20} + + '@metamask/rpc-errors@6.4.0': + resolution: {integrity: sha512-1ugFO1UoirU2esS3juZanS/Fo8C8XYocCuBpfZI5N7ECtoG+zu0wF+uWZASik6CkO6w9n/Iebt4iI4pT0vptpg==} + engines: {node: '>=16.0.0'} + + '@metamask/safe-event-emitter@2.0.0': + resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} + + '@metamask/safe-event-emitter@3.1.2': + resolution: {integrity: sha512-5yb2gMI1BDm0JybZezeoX/3XhPDOtTbcFvpTXM9kxsoZjPZFh4XciqRbpD6N86HYZqWDhEaKUDuOyR0sQHEjMA==} + engines: {node: '>=12.0.0'} + + '@metamask/sdk-communication-layer@0.32.0': + resolution: {integrity: sha512-dmj/KFjMi1fsdZGIOtbhxdg3amxhKL/A5BqSU4uh/SyDKPub/OT+x5pX8bGjpTL1WPWY/Q0OIlvFyX3VWnT06Q==} + peerDependencies: + cross-fetch: ^4.0.0 + eciesjs: '*' + eventemitter2: ^6.4.9 + readable-stream: ^3.6.2 + socket.io-client: ^4.5.1 + + '@metamask/sdk-install-modal-web@0.32.0': + resolution: {integrity: sha512-TFoktj0JgfWnQaL3yFkApqNwcaqJ+dw4xcnrJueMP3aXkSNev2Ido+WVNOg4IIMxnmOrfAC9t0UJ0u/dC9MjOQ==} + + '@metamask/sdk@0.32.0': + resolution: {integrity: sha512-WmGAlP1oBuD9hk4CsdlG1WJFuPtYJY+dnTHJMeCyohTWD2GgkcLMUUuvu9lO1/NVzuOoSi1OrnjbuY1O/1NZ1g==} + + '@metamask/superstruct@3.2.1': + resolution: {integrity: sha512-fLgJnDOXFmuVlB38rUN5SmU7hAFQcCjrg3Vrxz67KTY7YHFnSNEKvX4avmEBdOI0yTCxZjwMCFEqsC8k2+Wd3g==} + engines: {node: '>=16.0.0'} + + '@metamask/utils@5.0.2': + resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} + engines: {node: '>=14.0.0'} + + '@metamask/utils@8.5.0': + resolution: {integrity: sha512-I6bkduevXb72TIM9q2LRO63JSsF9EXduh3sBr9oybNX2hNNpr/j1tEjXrsG0Uabm4MJ1xkGAQEMwifvKZIkyxQ==} + engines: {node: '>=16.0.0'} + + '@metamask/utils@9.3.0': + resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==} + engines: {node: '>=16.0.0'} + + '@microsoft/tsdoc-config@0.17.1': + resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==} + + '@microsoft/tsdoc@0.15.1': + resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} + + '@mobily/ts-belt@3.13.1': + resolution: {integrity: sha512-K5KqIhPI/EoCTbA6CGbrenM9s41OouyK8A03fGJJcla/zKucsgLbz8HNbeseoLarRPgyWJsUyCYqFhI7t3Ra9Q==} + engines: {node: '>= 10.*'} + + '@moonpay/moonpay-js@0.7.0': + resolution: {integrity: sha512-kPFzNe2zgZnuAc5NQQQdzxKc8eGzNTtHEjxCCneBUtxlaWXvtFEGaYQrldgpH6mA2aPFce/TcC52tDGCFG/P1A==} + + '@moonpay/moonpay-react@1.10.1': + resolution: {integrity: sha512-2+qJvSTereA21CkKyTrheIvK5ZFr9huppnSmLJHtUY7KUlvmkRL+DMyOXJKYWLKbKhZ66T8gbiZRzsGoa8tVqg==} + peerDependencies: + react: '>=16' + + '@mui/core-downloads-tracker@6.4.11': + resolution: {integrity: sha512-CzAQs9CTzlwbsF9ZYB4o4lLwBv1/qNE264NjuYao+ctAXsmlPtYa8RtER4UsUXSMxNN9Qi+aQdYcKl2sUpnmAw==} + + '@mui/icons-material@6.4.11': + resolution: {integrity: sha512-+jjJGIrB1awNbMv4ZVPPdN/p7O1UKFZ+xqRvNIQ8B1KnlID5hPMPBLM6UUbRF4bu3UDCbu79rn9Nye5LGNzmeA==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@mui/material': ^6.4.11 + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/material@6.4.11': + resolution: {integrity: sha512-k2D3FLJS+/qD0qnd6ZlAjGFvaaxe1Dl10NyvpeDzIebMuYdn8VqYe6XBgGueEAtnzSJM4V03VD9kb5Fi24dnTA==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material-pigment-css': ^6.4.11 + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@mui/material-pigment-css': + optional: true + '@types/react': + optional: true + + '@mui/private-theming@6.4.9': + resolution: {integrity: sha512-LktcVmI5X17/Q5SkwjCcdOLBzt1hXuc14jYa7NPShog0GBDCDvKtcnP0V7a2s6EiVRlv7BzbWEJzH6+l/zaCxw==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/styled-engine@6.4.11': + resolution: {integrity: sha512-74AUmlHXaGNbyUqdK/+NwDJOZqgRQw6BcNvhoWYLq3LGbLTkE+khaJ7soz6cIabE4CPYqO2/QAIU1Z/HEjjpcw==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@emotion/react': ^11.4.1 + '@emotion/styled': ^11.3.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + + '@mui/system@6.4.11': + resolution: {integrity: sha512-gibtsrZEwnDaT5+I/KloOj/yHluX5G8heknuxBpQOdEQ3Gc0avjSImn5hSeKp8D4thiwZiApuggIjZw1dQguUA==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/types@7.2.24': + resolution: {integrity: sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==} + peerDependencies: + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/utils@6.4.9': + resolution: {integrity: sha512-Y12Q9hbK9g+ZY0T3Rxrx9m2m10gaphDuUMgWxyV5kNJevVxXYCLclYUCC9vXaIk1/NdNDTcW2Yfr2OGvNFNmHg==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mysten/bcs@0.7.3': + resolution: {integrity: sha512-fbusBfsyc2MpTACi72H5edWJ670T84va+qn9jSPpb5BzZ+pzUM1Q0ApPrF5OT+mB1o5Ng+mxPQpBCZQkfiV2TA==} + + '@mysten/sui.js@0.37.1': + resolution: {integrity: sha512-nEOqnjUqb/VJcVk23LgZOX1FmBib/mBCwAWaJhtsCHLwv2jIAfCPY/fpB9lJ62QHrM8UFclpWxsLkqcUkKyPgA==} + engines: {node: '>=16'} + deprecated: This package has been renamed to @mysten/sui, please update to use the renamed package. + + '@napi-rs/wasm-runtime@0.2.10': + resolution: {integrity: sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==} + + '@next/env@14.2.25': + resolution: {integrity: sha512-JnzQ2cExDeG7FxJwqAksZ3aqVJrHjFwZQAEJ9gQZSoEhIow7SNoKZzju/AwQ+PLIR4NY8V0rhcVozx/2izDO0w==} + + '@next/env@15.3.2': + resolution: {integrity: sha512-xURk++7P7qR9JG1jJtLzPzf0qEvqCN0A/T3DXf8IPMKo9/6FfjxtEffRJIIew/bIL4T3C2jLLqBor8B/zVlx6g==} + + '@next/eslint-plugin-next@14.2.25': + resolution: {integrity: sha512-L2jcdEEa0bTv1DhE67Cdx1kLLkL0iLL9ILdBYx0j7noi2AUJM7bwcqmcN8awGg+8uyKGAGof/OkFom50x+ZyZg==} + + '@next/swc-darwin-arm64@14.2.25': + resolution: {integrity: sha512-09clWInF1YRd6le00vt750s3m7SEYNehz9C4PUcSu3bAdCTpjIV4aTYQZ25Ehrr83VR1rZeqtKUPWSI7GfuKZQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-arm64@15.3.2': + resolution: {integrity: sha512-2DR6kY/OGcokbnCsjHpNeQblqCZ85/1j6njYSkzRdpLn5At7OkSdmk7WyAmB9G0k25+VgqVZ/u356OSoQZ3z0g==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@14.2.25': + resolution: {integrity: sha512-V+iYM/QR+aYeJl3/FWWU/7Ix4b07ovsQ5IbkwgUK29pTHmq+5UxeDr7/dphvtXEq5pLB/PucfcBNh9KZ8vWbug==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-darwin-x64@15.3.2': + resolution: {integrity: sha512-ro/fdqaZWL6k1S/5CLv1I0DaZfDVJkWNaUU3un8Lg6m0YENWlDulmIWzV96Iou2wEYyEsZq51mwV8+XQXqMp3w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@14.2.25': + resolution: {integrity: sha512-LFnV2899PJZAIEHQ4IMmZIgL0FBieh5keMnriMY1cK7ompR+JUd24xeTtKkcaw8QmxmEdhoE5Mu9dPSuDBgtTg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-gnu@15.3.2': + resolution: {integrity: sha512-covwwtZYhlbRWK2HlYX9835qXum4xYZ3E2Mra1mdQ+0ICGoMiw1+nVAn4d9Bo7R3JqSmK1grMq/va+0cdh7bJA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@14.2.25': + resolution: {integrity: sha512-QC5y5PPTmtqFExcKWKYgUNkHeHE/z3lUsu83di488nyP0ZzQ3Yse2G6TCxz6nNsQwgAx1BehAJTZez+UQxzLfw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@15.3.2': + resolution: {integrity: sha512-KQkMEillvlW5Qk5mtGA/3Yz0/tzpNlSw6/3/ttsV1lNtMuOHcGii3zVeXZyi4EJmmLDKYcTcByV2wVsOhDt/zg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@14.2.25': + resolution: {integrity: sha512-y6/ML4b9eQ2D/56wqatTJN5/JR8/xdObU2Fb1RBidnrr450HLCKr6IJZbPqbv7NXmje61UyxjF5kvSajvjye5w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-gnu@15.3.2': + resolution: {integrity: sha512-uRBo6THWei0chz+Y5j37qzx+BtoDRFIkDzZjlpCItBRXyMPIg079eIkOCl3aqr2tkxL4HFyJ4GHDes7W8HuAUg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@14.2.25': + resolution: {integrity: sha512-sPX0TSXHGUOZFvv96GoBXpB3w4emMqKeMgemrSxI7A6l55VBJp/RKYLwZIB9JxSqYPApqiREaIIap+wWq0RU8w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@15.3.2': + resolution: {integrity: sha512-+uxFlPuCNx/T9PdMClOqeE8USKzj8tVz37KflT3Kdbx/LOlZBRI2yxuIcmx1mPNK8DwSOMNCr4ureSet7eyC0w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@14.2.25': + resolution: {integrity: sha512-ReO9S5hkA1DU2cFCsGoOEp7WJkhFzNbU/3VUF6XxNGUCQChyug6hZdYL/istQgfT/GWE6PNIg9cm784OI4ddxQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-arm64-msvc@15.3.2': + resolution: {integrity: sha512-LLTKmaI5cfD8dVzh5Vt7+OMo+AIOClEdIU/TSKbXXT2iScUTSxOGoBhfuv+FU8R9MLmrkIL1e2fBMkEEjYAtPQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-ia32-msvc@14.2.25': + resolution: {integrity: sha512-DZ/gc0o9neuCDyD5IumyTGHVun2dCox5TfPQI/BJTYwpSNYM3CZDI4i6TOdjeq1JMo+Ug4kPSMuZdwsycwFbAw==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@next/swc-win32-x64-msvc@14.2.25': + resolution: {integrity: sha512-KSznmS6eFjQ9RJ1nEc66kJvtGIL1iZMYmGEXsZPh2YtnLtqrgdVvKXJY2ScjjoFnG6nGLyPFR0UiEvDwVah4Tw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@next/swc-win32-x64-msvc@15.3.2': + resolution: {integrity: sha512-aW5B8wOPioJ4mBdMDXkt5f3j8pUr9W8AnlX0Df35uRWNT1Y6RIybxjnSUe+PhM+M1bwgyY8PHLmXZC6zT1o5tA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@ngraveio/bc-ur@1.1.13': + resolution: {integrity: sha512-j73akJMV4+vLR2yQ4AphPIT5HZmxVjn/LxpL7YHoINnXoH6ccc90Zzck6/n6a3bCXOVZwBxq+YHwbAKRV+P8Zg==} + + '@noble/ciphers@0.5.3': + resolution: {integrity: sha512-B0+6IIHiqEs3BPMT0hcRmHvEj2QHOLu+uwt+tqDDeVd0oyVzh7BPrDcPjRnV1PV/5LaknXJJQvOuRGR0zQJz+w==} + + '@noble/ciphers@1.2.1': + resolution: {integrity: sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/ciphers@1.3.0': + resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.2.0': + resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} + + '@noble/curves@1.4.0': + resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + + '@noble/curves@1.4.2': + resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + + '@noble/curves@1.6.0': + resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.8.0': + resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.8.1': + resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.8.2': + resolution: {integrity: sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.9.1': + resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/ed25519@2.2.3': + resolution: {integrity: sha512-iHV8eI2mRcUmOx159QNrU8vTpQ/Xm70yJ2cTk3Trc86++02usfqFoNl6x0p3JN81ZDS/1gx6xiK0OwrgqCT43g==} + + '@noble/hashes@1.2.0': + resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} + + '@noble/hashes@1.3.2': + resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} + engines: {node: '>= 16'} + + '@noble/hashes@1.3.3': + resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} + engines: {node: '>= 16'} + + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + + '@noble/hashes@1.5.0': + resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.7.0': + resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==} + engines: {node: ^14.21.3 || >=16} + dev: false + + '@noble/hashes@1.7.1': + resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.7.2': + resolution: {integrity: sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.8.0': + resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} + engines: {node: ^14.21.3 || >=16} + + '@noble/secp256k1@1.7.1': + resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nolyfill/is-core-module@1.0.39': + resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} + engines: {node: '>=12.4.0'} + + '@nomicfoundation/edr-darwin-arm64@0.11.0': + resolution: {integrity: sha512-aYTVdcSs27XG7ayTzvZ4Yn9z/ABSaUwicrtrYK2NR8IH0ik4N4bWzo/qH8rax6rewVLbHUkGyGYnsy5ZN4iiMw==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-darwin-x64@0.11.0': + resolution: {integrity: sha512-RxX7UYgvJrfcyT/uHUn44Nsy1XaoW+Q1khKMdHKxeW7BrgIi+Lz+siz3bX5vhSoAnKilDPhIVLrnC8zxQhjR2A==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-arm64-gnu@0.11.0': + resolution: {integrity: sha512-J0j+rs0s11FuSipt/ymqrFmpJ7c0FSz1/+FohCIlUXDxFv//+1R/8lkGPjEYFmy8DPpk/iO8mcpqHTGckREbqA==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-arm64-musl@0.11.0': + resolution: {integrity: sha512-4r32zkGMN7WT/CMEuW0VjbuEdIeCskHNDMW4SSgQSJOE/N9L1KSLJCSsAbPD3aYE+e4WRDTyOwmuLjeUTcLZKQ==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-x64-gnu@0.11.0': + resolution: {integrity: sha512-SmdncQHLYtVNWLIMyGaY6LpAfamzTDe3fxjkirmJv3CWR5tcEyC6LMui/GsIVnJzXeNJBXAzwl8hTUAxHTM6kQ==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-x64-musl@0.11.0': + resolution: {integrity: sha512-w6hUqpn/trwiH6SRuRGysj37LsQVCX5XDCA3Xi81sbOaLhbHrNvK9TXWyZmcuzbdTKQQW6VNywcSxDdOiChcJg==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-win32-x64-msvc@0.11.0': + resolution: {integrity: sha512-BLmULjRKoH9BsX+c4Na2ypV7NGeJ+M6Zpqj/faPOwleVscDdSr/IhriyPaXCe8dyfwbge7lWsbekiADtPSnB2Q==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr@0.11.0': + resolution: {integrity: sha512-36WERf8ldvyHR6UAbcYsa+vpbW7tCrJGBwF4gXSsb8+STj1n66Hz85Y/O7B9+8AauX3PhglvV5dKl91tk43mWw==} + engines: {node: '>= 18'} + + '@nomicfoundation/hardhat-ethers@3.0.5': + resolution: {integrity: sha512-RNFe8OtbZK6Ila9kIlHp0+S80/0Bu/3p41HUpaRIoHLm6X3WekTd83vob3rE54Duufu1edCiBDxspBzi2rxHHw==} + peerDependencies: + ethers: ^6.1.0 + hardhat: ^2.0.0 + + '@nomicfoundation/hardhat-network-helpers@1.0.12': + resolution: {integrity: sha512-xTNQNI/9xkHvjmCJnJOTyqDSl8uq1rKb2WOVmixQxFtRd7Oa3ecO8zM0cyC2YmOK+jHB9WPZ+F/ijkHg1CoORA==} + peerDependencies: + hardhat: ^2.9.5 + + '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2': + resolution: {integrity: sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2': + resolution: {integrity: sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2': + resolution: {integrity: sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2': + resolution: {integrity: sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2': + resolution: {integrity: sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2': + resolution: {integrity: sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2': + resolution: {integrity: sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==} + engines: {node: '>= 12'} + + '@nomicfoundation/solidity-analyzer@0.1.2': + resolution: {integrity: sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==} + engines: {node: '>= 12'} + + '@open-rpc/client-js@1.8.1': + resolution: {integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==} + + '@openzeppelin/contracts@3.4.1-solc-0.7-2': + resolution: {integrity: sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==} + + '@openzeppelin/contracts@3.4.2-solc-0.7': + resolution: {integrity: sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==} + + '@openzeppelin/contracts@4.9.6': + resolution: {integrity: sha512-xSmezSupL+y9VkHZJGDoCBpmnB2ogM13ccaYDWqJTfS3dbuHkgjuwDFUmaFauBCboQMGB/S5UqUl2y54X99BmA==} + + '@particle-network/analytics@1.0.2': + resolution: {integrity: sha512-E4EpTRYcfNOkxj+bgNdQydBrvdLGo4HfVStZCuOr3967dYek30r6L7Nkaa9zJXRE2eGT4lPvcAXDV2WxDZl/Xg==} + + '@particle-network/auth@1.3.1': + resolution: {integrity: sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw==} + + '@particle-network/chains@1.8.3': + resolution: {integrity: sha512-WgzY2Hp3tpQYBKXF0pOFdCyJ4yekTTOCzBvBt2tvt7Wbzti2bLyRlfGZAoP57TvIMiy1S1oUfasVfM0Dqd6k5w==} + + '@particle-network/crypto@1.0.1': + resolution: {integrity: sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg==} + + '@particle-network/solana-wallet@1.3.2': + resolution: {integrity: sha512-KviKVP87OtWq813y8IumM3rIQMNkTjHBaQmCUbTWGebz3csFOv54JIoy1r+3J3NnA+mBxBdZeRedZ5g+07v75w==} + peerDependencies: + '@solana/web3.js': ^1.50.1 + bs58: ^4.0.1 + + '@paulmillr/qr@0.2.1': + resolution: {integrity: sha512-IHnV6A+zxU7XwmKFinmYjUcwlyK9+xkG3/s9KcQhI9BjQKycrJ1JRO+FbNYPwZiPKW3je/DR0k7w8/gLa5eaxQ==} + deprecated: 'The package is now available as "qr": npm install qr' + + '@peculiar/asn1-schema@2.3.15': + resolution: {integrity: sha512-QPeD8UA8axQREpgR5UTAfu2mqQmm97oUqahDtNdBcfj3qAnoXzFdQW+aNf/tD2WVXF8Fhmftxoj0eMIT++gX2w==} + + '@peculiar/json-schema@1.1.12': + resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} + engines: {node: '>=8.0.0'} + + '@peculiar/webcrypto@1.5.0': + resolution: {integrity: sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg==} + engines: {node: '>=10.12.0'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + + '@project-serum/anchor@0.26.0': + resolution: {integrity: sha512-Nq+COIjE1135T7qfnOHEn7E0q39bQTgXLFk837/rgFe6Hkew9WML7eHsS+lSYD2p3OJaTiUOHTAq1lHy36oIqQ==} + engines: {node: '>=11'} + + '@project-serum/sol-wallet-adapter@0.2.6': + resolution: {integrity: sha512-cpIb13aWPW8y4KzkZAPDgw+Kb+DXjCC6rZoH74MGm3I/6e/zKyGnfAuW5olb2zxonFqsYgnv7ev8MQnvSgJ3/g==} + engines: {node: '>=10'} + peerDependencies: + '@solana/web3.js': ^1.5.0 + + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + + '@protobufjs/codegen@2.0.4': + resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + + '@protobufjs/eventemitter@1.1.0': + resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} + + '@protobufjs/fetch@1.1.0': + resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} + + '@protobufjs/float@1.0.2': + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + + '@protobufjs/inquire@1.1.0': + resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} + + '@protobufjs/path@1.1.2': + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + + '@protobufjs/pool@1.1.0': + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + + '@protobufjs/utf8@1.1.0': + resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} + + '@radix-ui/number@1.1.1': + resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==} + + '@radix-ui/primitive@1.1.2': + resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==} + + '@radix-ui/react-arrow@1.1.7': + resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-collection@1.1.7': + resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-compose-refs@1.1.2': + resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-context@1.1.2': + resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-dialog@1.1.14': + resolution: {integrity: sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-direction@1.1.1': + resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-dismissable-layer@1.1.10': + resolution: {integrity: sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-dropdown-menu@2.1.15': + resolution: {integrity: sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-focus-guards@1.1.2': + resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-focus-scope@1.1.7': + resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-icons@1.3.2': + resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==} + peerDependencies: + react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc + + '@radix-ui/react-id@1.1.1': + resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-label@2.1.7': + resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-menu@2.1.15': + resolution: {integrity: sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-popper@1.2.7': + resolution: {integrity: sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-portal@1.1.9': + resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-presence@1.1.4': + resolution: {integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-primitive@2.1.3': + resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-radio-group@1.3.7': + resolution: {integrity: sha512-9w5XhD0KPOrm92OTTE0SysH3sYzHsSTHNvZgUBo/VZ80VdYyB5RneDbc0dKpURS24IxkoFRu/hI0i4XyfFwY6g==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-roving-focus@1.1.10': + resolution: {integrity: sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-select@2.2.5': + resolution: {integrity: sha512-HnMTdXEVuuyzx63ME0ut4+sEMYW6oouHWNGUZc7ddvUWIcfCva/AMoqEW/3wnEllriMWBa0RHspCYnfCWJQYmA==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-separator@1.1.7': + resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-slot@1.2.3': + resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-tabs@1.1.12': + resolution: {integrity: sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-toast@1.2.14': + resolution: {integrity: sha512-nAP5FBxBJGQ/YfUB+r+O6USFVkWq3gAInkxyEnmvEV5jtSbfDhfa4hwX8CraCnbjMLsE7XSf/K75l9xXY7joWg==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-toggle-group@1.1.10': + resolution: {integrity: sha512-kiU694Km3WFLTC75DdqgM/3Jauf3rD9wxeS9XtyWFKsBUeZA337lC+6uUazT7I1DhanZ5gyD5Stf8uf2dbQxOQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-toggle@1.1.9': + resolution: {integrity: sha512-ZoFkBBz9zv9GWer7wIjvdRxmh2wyc2oKWw6C6CseWd6/yq1DK/l5lJ+wnsmFwJZbBYqr02mrf8A2q/CVCuM3ZA==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-use-callback-ref@1.1.1': + resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-controllable-state@1.2.2': + resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-effect-event@0.0.2': + resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-escape-keydown@1.1.1': + resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-layout-effect@1.1.1': + resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-previous@1.1.1': + resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-rect@1.1.1': + resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-size@1.1.1': + resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-visually-hidden@1.2.3': + resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/rect@1.1.1': + resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==} + + '@react-native-async-storage/async-storage@1.24.0': + resolution: {integrity: sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g==} + peerDependencies: + react-native: ^0.0.0-0 || >=0.60 <1.0 + + '@react-native/assets-registry@0.76.5': + resolution: {integrity: sha512-MN5dasWo37MirVcKWuysRkRr4BjNc81SXwUtJYstwbn8oEkfnwR9DaqdDTo/hHOnTdhafffLIa2xOOHcjDIGEw==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.76.5': + resolution: {integrity: sha512-xe7HSQGop4bnOLMaXt0aU+rIatMNEQbz242SDl8V9vx5oOTI0VbZV9yLy6yBc6poUlYbcboF20YVjoRsxX4yww==} + engines: {node: '>=18'} + + '@react-native/babel-preset@0.76.5': + resolution: {integrity: sha512-1Nu5Um4EogOdppBLI4pfupkteTjWfmI0hqW8ezWTg7Bezw0FtBj8yS8UYVd3wTnDFT9A5mA2VNoNUqomJnvj2A==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/codegen@0.76.5': + resolution: {integrity: sha512-FoZ9VRQ5MpgtDAnVo1rT9nNRfjnWpE40o1GeJSDlpUMttd36bVXvsDm8W/NhX8BKTWXSX+CPQJsRcvN1UPYGKg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/community-cli-plugin@0.76.5': + resolution: {integrity: sha512-3MKMnlU0cZOWlMhz5UG6WqACJiWUrE3XwBEumzbMmZw3Iw3h+fIsn+7kLLE5EhzqLt0hg5Y4cgYFi4kOaNgq+g==} + engines: {node: '>=18'} + peerDependencies: + '@react-native-community/cli-server-api': '*' + peerDependenciesMeta: + '@react-native-community/cli-server-api': + optional: true + + '@react-native/debugger-frontend@0.76.5': + resolution: {integrity: sha512-5gtsLfBaSoa9WP8ToDb/8NnDBLZjv4sybQQj7rDKytKOdsXm3Pr2y4D7x7GQQtP1ZQRqzU0X0OZrhRz9xNnOqA==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.76.5': + resolution: {integrity: sha512-f8eimsxpkvMgJia7POKoUu9uqjGF6KgkxX4zqr/a6eoR1qdEAWUd6PonSAqtag3PAqvEaJpB99gLH2ZJI1nDGg==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.76.5': + resolution: {integrity: sha512-7KSyD0g0KhbngITduC8OABn0MAlJfwjIdze7nA4Oe1q3R7qmAv+wQzW+UEXvPah8m1WqFjYTkQwz/4mK3XrQGw==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.76.5': + resolution: {integrity: sha512-ggM8tcKTcaqyKQcXMIvcB0vVfqr9ZRhWVxWIdiFO1mPvJyS6n+a+lLGkgQAyO8pfH0R1qw6K9D0nqbbDo865WQ==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.76.5': + resolution: {integrity: sha512-Cm9G5Sg5BDty3/MKa3vbCAJtT3YHhlEaPlQALLykju7qBS+pHZV9bE9hocfyyvc5N/osTIGWxG5YOfqTeMu1oQ==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/normalize-colors@0.76.5': + resolution: {integrity: sha512-6QRLEok1r55gLqj+94mEWUENuU5A6wsr2OoXpyq/CgQ7THWowbHtru/kRGRr6o3AQXrVnZheR60JNgFcpNYIug==} + + '@react-native/virtualized-lists@0.76.5': + resolution: {integrity: sha512-M/fW1fTwxrHbcx0OiVOIxzG6rKC0j9cR9Csf80o77y1Xry0yrNPpAlf8D1ev3LvHsiAUiRNFlauoPtodrs2J1A==} + engines: {node: '>=18'} + peerDependencies: + '@types/react': ^18.2.6 + react: '*' + react-native: '*' + peerDependenciesMeta: + '@types/react': + optional: true + + '@react-oauth/google@0.12.2': + resolution: {integrity: sha512-d1GVm2uD4E44EJft2RbKtp8Z1fp/gK8Lb6KHgs3pHlM0PxCXGLaq8LLYQYENnN4xPWO1gkL4apBtlPKzpLvZwg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@reown/appkit-common@1.7.2': + resolution: {integrity: sha512-DZkl3P5+Iw3TmsitWmWxYbuSCox8iuzngNp/XhbNDJd7t4Cj4akaIUxSEeCajNDiGHlu4HZnfyM1swWsOJ0cOw==} + + '@reown/appkit-common@1.7.3': + resolution: {integrity: sha512-wKTr6N3z8ly17cc51xBEVkZK4zAd8J1m7RubgsdQ1olFY9YJGe61RYoNv9yFjt6tUVeYT+z7iMUwPhX2PziefQ==} + + '@reown/appkit-controllers@1.7.2': + resolution: {integrity: sha512-KCN/VOg+bgwaX5kcxcdN8Xq8YXnchMeZOvmbCltPEFDzaLRUWmqk9tNu1OVml0434iGMNo6hcVimIiwz6oaL3Q==} + + '@reown/appkit-controllers@1.7.3': + resolution: {integrity: sha512-aqAcX/nZe0gwqjncyCkVrAk3lEw0qZ9xGrdLOmA207RreO4J0Vxu8OJXCBn4C2AUI2OpBxCPah+vyuKTUJTeHQ==} + + '@reown/appkit-polyfills@1.7.2': + resolution: {integrity: sha512-TxCVSh9dV2tf1u+OzjzLjAwj7WHhBFufHlJ36tDp5vjXeUUne8KvYUS85Zsyg4Y9Yeh+hdSIOdL2oDCqlRxCmw==} + + '@reown/appkit-polyfills@1.7.3': + resolution: {integrity: sha512-vQUiAyI7WiNTUV4iNwv27iigdeg8JJTEo6ftUowIrKZ2/gtE2YdMtGpavuztT/qrXhrIlTjDGp5CIyv9WOTu4g==} + + '@reown/appkit-scaffold-ui@1.7.2': + resolution: {integrity: sha512-2Aifk5d23e40ijUipsN3qAMIB1Aphm2ZgsRQ+UvKRb838xR1oRs+MOsfDWgXhnccXWKbjPqyapZ25eDFyPYPNw==} + + '@reown/appkit-scaffold-ui@1.7.3': + resolution: {integrity: sha512-ssB15fcjmoKQ+VfoCo7JIIK66a4SXFpCH8uK1CsMmXmKIKqPN54ohLo291fniV6mKtnJxh5Xm68slGtGrO3bmA==} + + '@reown/appkit-ui@1.7.2': + resolution: {integrity: sha512-fZv8K7Df6A/TlTIWD/9ike1HwK56WfzYpHN1/yqnR/BnyOb3CKroNQxmRTmjeLlnwKWkltlOf3yx+Y6ucKMk6Q==} + + '@reown/appkit-ui@1.7.3': + resolution: {integrity: sha512-zKmFIjLp0X24pF9KtPtSHmdsh/RjEWIvz+faIbPGm4tQbwcxdg9A35HeoP0rMgKYx49SX51LgPwVXne2gYacqQ==} + + '@reown/appkit-utils@1.7.2': + resolution: {integrity: sha512-Z3gQnMPQopBdf1XEuptbf+/xVl9Hy0+yoK3K9pBb2hDdYNqJgJ4dXComhlRT8LjXFCQe1ZW0pVZTXmGQvOZ/OQ==} + peerDependencies: + valtio: 1.13.2 + + '@reown/appkit-utils@1.7.3': + resolution: {integrity: sha512-8/MNhmfri+2uu8WzBhZ5jm5llofOIa1dyXDXRC/hfrmGmCFJdrQKPpuqOFYoimo2s2g70pK4PYefvOKgZOWzgg==} + peerDependencies: + valtio: 1.13.2 + + '@reown/appkit-wallet@1.7.2': + resolution: {integrity: sha512-WQ0ykk5TwsjOcUL62ajT1bhZYdFZl0HjwwAH9LYvtKYdyZcF0Ps4+y2H4HHYOc03Q+LKOHEfrFztMBLXPTxwZA==} + + '@reown/appkit-wallet@1.7.3': + resolution: {integrity: sha512-D0pExd0QUE71ursQPp3pq/0iFrz2oz87tOyFifrPANvH5X0RQCYn/34/kXr+BFVQzNFfCBDlYP+CniNA/S0KiQ==} + + '@reown/appkit@1.7.2': + resolution: {integrity: sha512-oo/evAyVxwc33i8ZNQ0+A/VE6vyTyzL3NBJmAe3I4vobgQeiobxMM0boKyLRMMbJggPn8DtoAAyG4GfpKaUPzQ==} + + '@reown/appkit@1.7.3': + resolution: {integrity: sha512-aA/UIwi/dVzxEB62xlw3qxHa3RK1YcPMjNxoGj/fHNCqL2qWmbcOXT7coCUa9RG7/Bh26FZ3vdVT2v71j6hebQ==} + + '@rhinestone/module-sdk@0.1.32': + resolution: {integrity: sha512-wNzeIepHPhD0jiw3UOar+dAb6VKv4p8D4+947n0SLZHBdJ5S7moRCCL082NCo7Pz8+/C9kVriJASFeLZmJLo4g==} + peerDependencies: + viem: ^2.0.0 + + '@rollup/plugin-alias@5.1.1': + resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-babel@5.3.0': + resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + + '@rollup/plugin-node-resolve@16.0.0': + resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-typescript@11.1.6': + resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true + + '@rollup/plugin-url@8.0.2': + resolution: {integrity: sha512-5yW2LP5NBEgkvIRSSEdJkmxe5cUNZKG3eenKtfJvSkxVm/xTTu7w+ayBtNwhozl1ZnTUCU0xFaRQR+cBl2H7TQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/pluginutils@3.1.0': + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.41.1': + resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.41.1': + resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.41.1': + resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.41.1': + resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.41.1': + resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.41.1': + resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.41.1': + resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.41.1': + resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.41.1': + resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.41.1': + resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.41.1': + resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': + resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.41.1': + resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.41.1': + resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.41.1': + resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.41.1': + resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.41.1': + resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.41.1': + resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.41.1': + resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.41.1': + resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==} + cpu: [x64] + os: [win32] + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@rushstack/eslint-patch@1.11.0': + resolution: {integrity: sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==} + + '@safe-global/protocol-kit@3.1.1': + resolution: {integrity: sha512-ai/N1DI6U53CsC46Do8eOyb6IkgVhjoQFhbFIh5rFSAKiuw3B0hTF7nrVRb0jw4NFlNHCcWDAER/uNH0Qy2Pkg==} + + '@safe-global/safe-apps-provider@0.18.6': + resolution: {integrity: sha512-4LhMmjPWlIO8TTDC2AwLk44XKXaK6hfBTWyljDm0HQ6TWlOEijVWNrt2s3OCVMSxlXAcEzYfqyu1daHZooTC2Q==} + + '@safe-global/safe-apps-sdk@9.1.0': + resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==} + + '@safe-global/safe-core-sdk-types@1.10.1': + resolution: {integrity: sha512-BKvuYTLOlY16Rq6qCXglmnL6KxInDuXMFqZMaCzwDKiEh+uoHu3xCumG5tVtWOkCgBF4XEZXMqwZUiLcon7IsA==} + deprecated: 'WARNING: This project has been renamed to @safe-global/types-kit. Please, migrate from @safe-global/safe-core-sdk-types@5.1.0 to @safe-global/types-kit@1.0.0.' + + '@safe-global/safe-core-sdk-types@4.1.1': + resolution: {integrity: sha512-5NIWG7OjV+C5iquux0yPcu8SHUzg1qJXJ/jAQcPwXGTC7ZVsFawnR43/l2Vg9zEwf0RF0xTm3W8DXkaBYORiEQ==} + deprecated: 'WARNING: This project has been renamed to @safe-global/types-kit. Please, migrate from @safe-global/safe-core-sdk-types@5.1.0 to @safe-global/types-kit@1.0.0.' + + '@safe-global/safe-core-sdk-utils@1.7.4': + resolution: {integrity: sha512-ITocwSWlFUA1K9VMP/eJiMfgbP/I9qDxAaFz7ukj5N5NZD3ihVQZkmqML6hjse5UhrfjCnfIEcLkNZhtB2XC2Q==} + + '@safe-global/safe-deployments@1.37.32': + resolution: {integrity: sha512-3XRy6TnVz0uymPxMNo7WkaK88sL12ZpIMKOfrNHkODUZCxCO4GFA0FFfjByAPS1LAXfmV7Mulk9Zx1n9vqR8Cg==} + + '@safe-global/safe-ethers-lib@1.9.4': + resolution: {integrity: sha512-WhzcmNun0s0VxeVQKRqaapV0vEpdm76zZBR2Du+S+58u1r57OjZkOSL2Gru0tdwkt3FIZZtE3OhDu09M70pVkA==} + deprecated: 'WARNING: This package is now bundled in @safe-global/protocol-kit. Please, follow the migration guide https://docs.safe.global/safe-core-aa-sdk/protocol-kit/reference/v1' + + '@safe-global/safe-gateway-typescript-sdk@3.23.1': + resolution: {integrity: sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==} + engines: {node: '>=16'} + + '@scure/base@1.1.9': + resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==} + + '@scure/base@1.2.5': + resolution: {integrity: sha512-9rE6EOVeIQzt5TSu4v+K523F8u6DhBsoZWPGKlnCshhlDhy0kJzUX4V+tr2dWmzF1GdekvThABoEQBGBQI7xZw==} + + '@scure/bip32@1.1.5': + resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==} + + '@scure/bip32@1.3.2': + resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} + + '@scure/bip32@1.4.0': + resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} + + '@scure/bip32@1.5.0': + resolution: {integrity: sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==} + + '@scure/bip32@1.6.2': + resolution: {integrity: sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==} + + '@scure/bip32@1.7.0': + resolution: {integrity: sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==} + + '@scure/bip39@1.1.1': + resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==} + + '@scure/bip39@1.2.1': + resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} + + '@scure/bip39@1.3.0': + resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + + '@scure/bip39@1.4.0': + resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==} + + '@scure/bip39@1.5.4': + resolution: {integrity: sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==} + + '@scure/bip39@1.6.0': + resolution: {integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==} + + '@sentry/core@5.30.0': + resolution: {integrity: sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==} + engines: {node: '>=6'} + + '@sentry/hub@5.30.0': + resolution: {integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==} + engines: {node: '>=6'} + + '@sentry/minimal@5.30.0': + resolution: {integrity: sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==} + engines: {node: '>=6'} + + '@sentry/node@5.30.0': + resolution: {integrity: sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==} + engines: {node: '>=6'} + + '@sentry/tracing@5.30.0': + resolution: {integrity: sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==} + engines: {node: '>=6'} + + '@sentry/types@5.30.0': + resolution: {integrity: sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==} + engines: {node: '>=6'} + + '@sentry/utils@5.30.0': + resolution: {integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==} + engines: {node: '>=6'} + + '@shikijs/engine-oniguruma@3.4.2': + resolution: {integrity: sha512-zcZKMnNndgRa3ORja6Iemsr3DrLtkX3cAF7lTJkdMB6v9alhlBsX9uNiCpqofNrXOvpA3h6lHcLJxgCIhVOU5Q==} + + '@shikijs/langs@3.4.2': + resolution: {integrity: sha512-H6azIAM+OXD98yztIfs/KH5H4PU39t+SREhmM8LaNXyUrqj2mx+zVkr8MWYqjceSjDw9I1jawm1WdFqU806rMA==} + + '@shikijs/themes@3.4.2': + resolution: {integrity: sha512-qAEuAQh+brd8Jyej2UDDf+b4V2g1Rm8aBIdvt32XhDPrHvDkEnpb7Kzc9hSuHUxz0Iuflmq7elaDuQAP9bHIhg==} + + '@shikijs/types@3.4.2': + resolution: {integrity: sha512-zHC1l7L+eQlDXLnxvM9R91Efh2V4+rN3oMVS2swCBssbj2U/FBwybD1eeLaq8yl/iwT+zih8iUbTBCgGZOYlVg==} + + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} + + '@silencelaboratories/walletprovider-sdk@0.3.0': + resolution: {integrity: sha512-5+yS95DwIufP0qOPuk81cXZ8gepcARXwuKRDAtjtf50JVX0MOMy6pR8f/1j5PATPdImzgI8905x3ZBgXfi+FKw==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sinclair/typebox@0.33.22': + resolution: {integrity: sha512-auUj4k+f4pyrIVf4GW5UKquSZFHJWri06QgARy9C0t9ZTjJLIuNIrr1yl9bWcJWJ1Gz1vOvYN1D+QPaIlNMVkQ==} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + + '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.2.0': + resolution: {integrity: sha512-EVMlls3vgxmc2jYstdzWYujQ0s+22lEUt5JlaWYhG3aC27YfQgDP6e2zfSpdnKrLyOqMoz7bYYcti+Bx/QQPyg==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + + '@solana-mobile/mobile-wallet-adapter-protocol@2.2.1': + resolution: {integrity: sha512-fAT7Rzdw8dQH0CHOGNnwFjpNaHoQ0HJEjVK6iS6KXKlRjOm2y2BM8ZkNAyqIWKD+uGCBwDPZHWwZaME72k17kA==} + peerDependencies: + react-native: '>0.69' + + '@solana-mobile/wallet-adapter-mobile@2.2.0': + resolution: {integrity: sha512-7xcx+i6D9HlXuVgKrlDVpBYrdhM8JVzrrhuges3ATfZvlZ5zwEnNenEuQCsG5Al8vgTvMBqX6KJ1dUFill0+Nw==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + + '@solana-mobile/wallet-standard-mobile@0.2.0': + resolution: {integrity: sha512-vAv95mID0682O8wLMzsbnMzfwL8EBtJVUOQiywjnwuTxMlYhSdjp0jJw05Otm/j9N1lbkZ9tbgANGHHL8wRmjw==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + + '@solana-program/compute-budget@0.7.0': + resolution: {integrity: sha512-/JJSE1fKO5zx7Z55Z2tLGWBDDi7tUE+xMlK8qqkHlY51KpqksMsIBzQMkG9Dqhoe2Cnn5/t3QK1nJKqW6eHzpg==} + peerDependencies: + '@solana/kit': ^2.1.0 + + '@solana-program/stake@0.2.1': + resolution: {integrity: sha512-ssNPsJv9XHaA+L7ihzmWGYcm/+XYURQ8UA3wQMKf6ccEHyHOUgoglkkDU/BoA0+wul6HxZUN0tHFymC0qFw6sg==} + peerDependencies: + '@solana/kit': ^2.1.0 + + '@solana-program/system@0.7.0': + resolution: {integrity: sha512-FKTBsKHpvHHNc1ATRm7SlC5nF/VdJtOSjldhcyfMN9R7xo712Mo2jHIzvBgn8zQO5Kg0DcWuKB7268Kv1ocicw==} + peerDependencies: + '@solana/kit': ^2.1.0 + + '@solana-program/token-2022@0.4.1': + resolution: {integrity: sha512-zIjdwUwirmvvF1nb95I/88+76d9HPCmAIcjjM4NpznDFjZpPItpfKIbTyp/uxeVOzi7d5LmvuvXRr373gpdGCg==} + peerDependencies: + '@solana/kit': ^2.1.0 + '@solana/sysvars': ^2.1.0 + + '@solana-program/token@0.5.1': + resolution: {integrity: sha512-bJvynW5q9SFuVOZ5vqGVkmaPGA0MCC+m9jgJj1nk5m20I389/ms69ASnhWGoOPNcie7S9OwBX0gTj2fiyWpfag==} + peerDependencies: + '@solana/kit': ^2.1.0 + + '@solana/accounts@2.1.1': + resolution: {integrity: sha512-Q9mG0o/6oyiUSw1CXCkG50TWlYiODJr3ZilEDLIyXpYJzOstRZM4XOzbRACveX4PXFoufPzpR1sSVK6qfcUUCw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/addresses@2.1.1': + resolution: {integrity: sha512-yX6+brBXFmirxXDJCBDNKDYbGZHMZHaZS4NJWZs31DTe5To3Ky3Y9g3wFEGAX242kfNyJcgg5OeoBuZ7vdFycQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/assertions@2.1.1': + resolution: {integrity: sha512-ln6dXkliyb9ybqLGFf5Gn+LJaPZGmer9KloIFfHiiSfYFdoAqOu6+pVY+323SKWXHG+hHl9VkwuZYpSp02OroA==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/buffer-layout-utils@0.2.0': + resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} + engines: {node: '>= 10'} + + '@solana/buffer-layout@4.0.1': + resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} + engines: {node: '>=5.10'} + + '@solana/codecs-core@2.0.0-rc.1': + resolution: {integrity: sha512-bauxqMfSs8EHD0JKESaNmNuNvkvHSuN3bbWAF5RjOfDu2PugxHrvRebmYauvSumZ3cTfQ4HJJX6PG5rN852qyQ==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-core@2.1.1': + resolution: {integrity: sha512-iPQW3UZ2Vi7QFBo2r9tw0NubtH8EdrhhmZulx6lC8V5a+qjaxovtM/q/UW2BTNpqqHLfO0tIcLyBLrNH4HTWPg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/codecs-data-structures@2.0.0-rc.1': + resolution: {integrity: sha512-rinCv0RrAVJ9rE/rmaibWJQxMwC5lSaORSZuwjopSUE6T0nb/MVg6Z1siNCXhh/HFTOg0l8bNvZHgBcN/yvXog==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-data-structures@2.1.1': + resolution: {integrity: sha512-OcR7FIhWDFqg6gEslbs2GVKeDstGcSDpkZo9SeV4bm2RLd1EZfxGhWW+yHZfHqOZiIkw9w+aY45bFgKrsLQmFw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/codecs-numbers@2.0.0-rc.1': + resolution: {integrity: sha512-J5i5mOkvukXn8E3Z7sGIPxsThRCgSdgTWJDQeZvucQ9PT6Y3HiVXJ0pcWiOWAoQ3RX8e/f4I3IC+wE6pZiJzDQ==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-numbers@2.1.1': + resolution: {integrity: sha512-m20IUPJhPUmPkHSlZ2iMAjJ7PaYUvlMtFhCQYzm9BEBSI6OCvXTG3GAPpAnSGRBfg5y+QNqqmKn4QHU3B6zzCQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/codecs-strings@2.0.0-rc.1': + resolution: {integrity: sha512-9/wPhw8TbGRTt6mHC4Zz1RqOnuPTqq1Nb4EyuvpZ39GW6O2t2Q7Q0XxiB3+BdoEjwA2XgPw6e2iRfvYgqty44g==} + peerDependencies: + fastestsmallesttextencoderdecoder: ^1.0.22 + typescript: '>=5' + + '@solana/codecs-strings@2.1.1': + resolution: {integrity: sha512-uhj+A7eT6IJn4nuoX8jDdvZa7pjyZyN+k64EZ8+aUtJGt5Ft4NjRM8Jl5LljwYBWKQCgouVuigZHtTO2yAWExA==} + engines: {node: '>=20.18.0'} + peerDependencies: + fastestsmallesttextencoderdecoder: ^1.0.22 + typescript: '>=5.3.3' + + '@solana/codecs@2.0.0-rc.1': + resolution: {integrity: sha512-qxoR7VybNJixV51L0G1RD2boZTcxmwUWnKCaJJExQ5qNKwbpSyDdWfFJfM5JhGyKe9DnPVOZB+JHWXnpbZBqrQ==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs@2.1.1': + resolution: {integrity: sha512-89Fv22fZ5dNiXjOKh6I3U1D/lVO/dF/cPHexdiqjS5k5R5uKeK3506rhcnc4ciawQAoOkDwHzW+HitUumF2PJg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/errors@2.0.0-rc.1': + resolution: {integrity: sha512-ejNvQ2oJ7+bcFAYWj225lyRkHnixuAeb7RQCixm+5mH4n1IA4Qya/9Bmfy5RAAHQzxK43clu3kZmL5eF9VGtYQ==} + hasBin: true + peerDependencies: + typescript: '>=5' + + '@solana/errors@2.1.1': + resolution: {integrity: sha512-sj6DaWNbSJFvLzT8UZoabMefQUfSW/8tXK7NTiagsDmh+Q87eyQDDC9L3z+mNmx9b6dEf6z660MOIplDD2nfEw==} + engines: {node: '>=20.18.0'} + hasBin: true + peerDependencies: + typescript: '>=5.3.3' + + '@solana/fast-stable-stringify@2.1.1': + resolution: {integrity: sha512-+gyW8plyMOURMuO9iL6eQBb5wCRwMGLO5T6jBIDGws8KR4tOtIBlQnQnzk81nNepE6lbf8tLCxS8KdYgT/P+wQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/functional@2.1.1': + resolution: {integrity: sha512-HePJ49Cyz4Mb26zm5holPikm8bzsBH5zLR41+gIw9jJBmIteILNnk2OO1dVkb6aJnP42mdhWSXCo3VVEGT6aEw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/instructions@2.1.1': + resolution: {integrity: sha512-Zx48hav9Lu+JuC+U0QJ8B7g7bXQZElXCjvxosIibU2C7ygDuq0ffOly0/irWJv2xmHYm6z8Hm1ILbZ5w0GhDQQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/keys@2.1.1': + resolution: {integrity: sha512-SXuhUz1c2mVnPnB+9Z9Yw6HPluIZbMlSByr+vPFLgaPYM356bRcNnu1pa28tONiQzRBFvl9qL08SL0OaYsmqPg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/kit@2.1.1': + resolution: {integrity: sha512-vV0otDSO9HFWIkAv7lxfeR7W6ruS/kqFYzTeRI+EuaZCgKdueavZnx9ydbpMCXis3BZ4Ao+k/ebzVWXMVvz+Lw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/nominal-types@2.1.1': + resolution: {integrity: sha512-EpdDhuoATsm9bmuduv6yoNm1EKCz2tlq13nAazaVyQvkMBHhVelyT/zq0ruUplQZbl7qyYr5hG7p1SfGgQbgSQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/options@2.0.0-rc.1': + resolution: {integrity: sha512-mLUcR9mZ3qfHlmMnREdIFPf9dpMc/Bl66tLSOOWxw4ml5xMT2ohFn7WGqoKcu/UHkT9CrC6+amEdqCNvUqI7AA==} + peerDependencies: + typescript: '>=5' + + '@solana/options@2.1.1': + resolution: {integrity: sha512-rnEExUGVOAV79kiFUEl/51gmSbBYxlcuw2VPnbAV/q53mIHoTgCwDD576N9A8wFftxaJHQFBdNuKiRrnU/fFHA==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/programs@2.1.1': + resolution: {integrity: sha512-fVOA4SEijrIrpG7GoBWhid43w3pT7RTfmMYciVKMb17s2GcnLLcTDOahPf0mlIctLtbF8PgImtzUkXQyuFGr8Q==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/promises@2.1.1': + resolution: {integrity: sha512-8M+QBgJAQD0nhHzaezwwHH4WWfJEBPiiPAjMNBbbbTHA8+oYFIGgY1HwDUePK8nrT1Q1dX3gC+epBCqBi/nnGg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-api@2.1.1': + resolution: {integrity: sha512-MTBuoRA9HtxW+CRpj1Ls5XVhDe00g8mW2Ib4/0k6ThFS0+cmjf+O78d8hgjQMqTtuzzSLZ4355+C7XEAuzSQ4g==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-parsed-types@2.1.1': + resolution: {integrity: sha512-+n1IWYYglevvNE1neMiLOH6W67EzmWj8GaRlwGxcyu6MwSc/8x1bd2hnEkgK6md+ObPOxoOBdxQXIY/xnZgLcw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-spec-types@2.1.1': + resolution: {integrity: sha512-3/G/MTi/c70TVZcB0DJjh5AGV7xqOYrjrpnIg+rLZuH65qHMimWiTHj0k8lxTzRMrN06Ed0+Q7SCw9hO/grTHA==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-spec@2.1.1': + resolution: {integrity: sha512-3Hd21XpaKtW3tG0oXAUlc1k0hX7/eqHpf8Gg744sr9G3ib5gT7EopcZRsH5LdESgS0nbv/c75TznCXjaUyRi+g==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-subscriptions-api@2.1.1': + resolution: {integrity: sha512-b4JuVScYGaEgO3jszYf7LqXdJK4GoUIevXcyQWq4Zk+R7P41VxGQWa2kzdPX9LIi+UGBmCThdRBfgOYyyHRKDg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-subscriptions-channel-websocket@2.1.1': + resolution: {integrity: sha512-xEDnMXnwMtKDEpzmIXTkxxvLqGsxqlKILmyfGsQOMJ9RHYkHmz/8MarHcjnYhyZ5lrs2irN/wExUNlSZTegSEw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + ws: '>=8.17.1' + + '@solana/rpc-subscriptions-spec@2.1.1': + resolution: {integrity: sha512-ANT5Tub/ZqqewRtklz02km8iCUe0qwBGi3wsKTgiX7kRx3izHn6IHl90w1Y19wPd692mfZW8+Pk5PUrMSXhR3g==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-subscriptions@2.1.1': + resolution: {integrity: sha512-xGLIuJHxg0oCNiS40NW/5BPxHM5RurLcEmBAN1VmVtINWTm8wSbEo85a5q7cbMlPP4Vu/28lD7IITjS5qb84UQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-transformers@2.1.1': + resolution: {integrity: sha512-rBOCDQjOI1eQICkqYFV43SsiPdLcahgnrGuDNorS3uOe70pQRPs1PTuuEHqLBwuu9GRw89ifRy49aBNUNmX8uQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-transport-http@2.1.1': + resolution: {integrity: sha512-Wp7018VaPqhodQjQTDlCM7vTYlm3AdmRyvPZiwv5uzFgnC8B0xhEZW+ZSt1zkSXS6WrKqtufobuBFGtfG6v5KQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc-types@2.1.1': + resolution: {integrity: sha512-IaQKiWyTVvDoD0/3IlUxRY3OADj3cEjfLFCp1JvEdl0ANGReHp4jtqUqrYEeAdN/tGmGoiHt3n4x61wR0zFoJA==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/rpc@2.1.1': + resolution: {integrity: sha512-X15xAx8U0ATznkoNGPUkGIuxTIOmdew1pjQRHAtPSKQTiPbAnO1sowpt4UT7V7bB6zKPu+xKvhFizUuon0PZxg==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/signers@2.1.1': + resolution: {integrity: sha512-OfYEUgrJSrBDTC43kSQCz9A12A9+6xt2azmG8pP78yXN/bDzDmYF2i4nSzg/JzjjA5hBBYtDJ+15qpS/4cSgug==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/spl-token-group@0.0.7': + resolution: {integrity: sha512-V1N/iX7Cr7H0uazWUT2uk27TMqlqedpXHRqqAbVO2gvmJyT0E0ummMEAVQeXZ05ZhQ/xF39DLSdBp90XebWEug==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.3 + + '@solana/spl-token-metadata@0.1.6': + resolution: {integrity: sha512-7sMt1rsm/zQOQcUWllQX9mD2O6KhSAtY1hFR2hfFwgqfFWzSY9E9GDvFVNYUI1F0iQKcm6HmePU9QbKRXTEBiA==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.3 + + '@solana/spl-token@0.4.13': + resolution: {integrity: sha512-cite/pYWQZZVvLbg5lsodSovbetK/eA24gaR0eeUeMuBAMNrT8XFCwaygKy0N2WSg3gSyjjNpIeAGBAKZaY/1w==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.5 + + '@solana/subscribable@2.1.1': + resolution: {integrity: sha512-k6qe/Iu94nVtapap9Ei+3mm14gx1H+7YgB6n2bj9qJCdVN6z6ZN9nPtDY2ViIH4qAnxyh7pJKF7iCwNC/iALcw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/sysvars@2.1.1': + resolution: {integrity: sha512-bG7hNFpFqZm6qk763z5/P9g9Nxc0WXe+aYl6CQSptaPsmqUz1GhlBjAov9ePVFb29MmyMZ5bA+kmCTytiHK1fQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/transaction-confirmation@2.1.1': + resolution: {integrity: sha512-hXv0D80u1jNEq2/k1o9IBXXq7+JYg8x4tm0kVWjzvdJjYow8EkQay5quq5o0ciFfWqlOyFwYRC7AGrKc3imE7A==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/transaction-messages@2.1.1': + resolution: {integrity: sha512-sDf3OWV5X1C8huqsap+DyHIBAUenNJd3h7j/WI9MeIJZdGEtqxssGa2ixhecsMaevtUBKKJM9RqAvfTdRTAnLw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/transactions@2.1.1': + resolution: {integrity: sha512-LX/7XfcHH9o0Kpv+tpnCl56IaatD/0sMWw9NnaeZ2f7pJyav9Jmeu5LJXvdHJw2jh277UEqc9bHwKruoMrtOTw==} + engines: {node: '>=20.18.0'} + peerDependencies: + typescript: '>=5.3.3' + + '@solana/wallet-adapter-alpha@0.1.13': + resolution: {integrity: sha512-LYekz41uF40FtL0C38yIN36GqEV2iJe4JlVtha2WE4osrEzmKUyXgo1mqTxcDnWZkcFWBvI3mzfn17zW+iskew==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-avana@0.1.16': + resolution: {integrity: sha512-GMEbEygfgdcXHqwpfnkFiPBxfEIJ7F6/cYglPoCRFWNF0UWELE8eLhvu7Bd/i7z7lubPR0jEqTI/sk8mip+23A==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-base-ui@0.1.5': + resolution: {integrity: sha512-ho9YrZyMypFMq7o0mceaJZHwH9drj1Gvh+xFeictzhaEU8IVKx8mp5LqlQklHDjzwh8GfbLiZsGh9Om/uJ/YBg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + react: '*' + + '@solana/wallet-adapter-base@0.9.26': + resolution: {integrity: sha512-1RcmfesJ8bTT+zfg4w+Z+wisj11HR+vWwl/pS6v/zwQPe0LSzWDpkXRv9JuDSCuTcmlglEfjEqFAW+5EubK/Jg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-bitkeep@0.3.23': + resolution: {integrity: sha512-rGH6XP288H3/uTU6ancgcZfuhtWlOnb/AcWCEcQiM1AjhO8sI9wHkgfPOMCJtiNK36DZrBA3gxBXvP1d7XOpZg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-bitpie@0.5.21': + resolution: {integrity: sha512-lH+mxM1Tw1Yw1EG3JIoXvm/vGeaWa+uVtUz7W0zv39O6PnrnlZkFDoaxtVCE6Ch8xrjif29SAZJPNIg9I8zD2A==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-clover@0.4.22': + resolution: {integrity: sha512-9DJ742eWCfral0BtOHE1UPypaSs2wrq1b89iqD2OxHsnpMKvzEMB0KJAmARvO1azOHnoAHu2FV+tWfZN2buS8w==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-coin98@0.5.23': + resolution: {integrity: sha512-PkUhE3+hLVMSfekm3dSGw1q5byPDKiBFCx16JQGk7hg1dhTItgQy8VpsLMyYiNnLVahFH1W2srqthm6KpT6/+A==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-coinbase@0.1.22': + resolution: {integrity: sha512-BHnD4KCAorihHw+ywe04V6C9ixLhMiIK34R8r3pEJBmFoAcSYqxWyZZGw2OXkp09PgjuHfMTx6X/uNPEZMY/lA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-coinhub@0.3.21': + resolution: {integrity: sha512-F4mBSmm2nJnGxs1pdv+jnPCGCxXyHje+3vN4F6WllzxoHG42Ziyqv4frRa+N28rRYJT0z0aI3mUpp6CG0L9IMA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-fractal@0.1.11': + resolution: {integrity: sha512-BNWcqlsnqiMEiq9NXPXURBJBe9hFgSUquyAPa7SsliTm+g2/JVYefz3+uM8XZS2zg9tDPJ//Fg6m2pz/cFrKNw==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-huobi@0.1.18': + resolution: {integrity: sha512-V5dB3udH+/yr5Ui7y+HcPU/H9f4GukLzhLtDDFLkWp4GQjz+dokutbfpUhhuesmsvPDe2oJES2/1kfFVriOyxg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-hyperpay@0.1.17': + resolution: {integrity: sha512-JNZgJTkwJsWzJslnfHOqNnd3l0w7NybXFhg2FUgfu1i3ePduxobEHfa0JjO31bhri4YwuBCMWu6fJ4HZ5Io4eg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-keystone@0.1.18': + resolution: {integrity: sha512-fB2t71dHMzU+6LD1OOPptolZjXAzLHm8U19h6KTRYVjWTX/K3jWz/YEMkajBAc8H5hFyQ5sl1/no+rfwvCuUcg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-krystal@0.1.15': + resolution: {integrity: sha512-2nFOl7VSPCYoSIGwc1mMKj4Geer7d7hqov4ZxpBpIGe7qWItRSkVFbM/jd+BtX3IeABUhn0cxKuxEUo0oF3JlA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-ledger@0.9.28': + resolution: {integrity: sha512-0Etw52wL/hKb+3UvYHTdkJpGZpY+JTInZdlX8dt99AdTZhGAUSO5PBjiO08Havs616q9EQu5MoQieKRS//TspQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-mathwallet@0.9.21': + resolution: {integrity: sha512-D0EOOaa2Eibl3VSAbGUHFdjhYO2hbKOCBvOo75g6180EB3znLzqVLH5ByqAQnU16QRZmAgpzyHywswypB6BlhQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-neko@0.2.15': + resolution: {integrity: sha512-4JycOsuKIV9RFOtIkZVmJDhjupOpNnd7DLPR21HLjAGYpM39FHQOLc55wT2gKeaLfupnuLlGZbE0cTzNsLEIbA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-nightly@0.1.19': + resolution: {integrity: sha512-tL14hgJ5YG43sJX56E5pwLB6G8ajRhd2SV/LJUwBD+xqGHFOFJ5QNlvJ1K0xsudOclU0ahJ7/PONVSJwqLypdQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-nufi@0.1.20': + resolution: {integrity: sha512-rIdgSyrvOXLIpqJ9FOKp7LXwUZqQEoZN2ed5lD0hx4/cvFqdxHIh3uxGUG4rXOX82SVHdbOj2qHCgJTb7LvbDg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-onto@0.1.10': + resolution: {integrity: sha512-+aUi05TMlCHc80/k8+vB15OCWFqyh23H/W7HTngVDRL2lviuJGwMLoSD52q13Qzal85gRB+Rm7OMCpwwbsK9Ww==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-particle@0.1.15': + resolution: {integrity: sha512-/pr32ZHqPJZq0G06a7q3+7JraqcYQl1tOcQl4a9B+D3VA+OseLKk7FlUHdXFejiw07CDR5xxkFeKzcreDIS3EA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-phantom@0.9.27': + resolution: {integrity: sha512-tJDVhzcBubIFHJpugZqVAwISTx52JxtTXE/vWhqUZVtwBQSsGkKoR5l7uoFHLgYa7shJTKk326Y9ZzlN5DKpWg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-react-ui@0.9.38': + resolution: {integrity: sha512-TqdXhyD4SxN1vi/hEVILfyEvDWisrs0JP3fDFUTSH+4gVdqBxKAixhpa/ZFkZGtHhKQd4S13MnY7Exh745Mzgw==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + react: '*' + react-dom: '*' + + '@solana/wallet-adapter-react@0.15.38': + resolution: {integrity: sha512-BFyYigdnEb45+HNoqNHh2GNIsUJyLBnD76SXW7KXt+lheCkh2wzRqWYnRtG1yTVrLbf09fs/z3eWOc0RYCO5aA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + react: '*' + + '@solana/wallet-adapter-safepal@0.5.21': + resolution: {integrity: sha512-H2fzsly2grNWb3rJHZJr5nm0tI4znbpAoycs3sU73uUAr5TR4Vauk1F+Sy4FYzfMTcPWHWCG+DRVKcDZi+vTgQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-saifu@0.1.18': + resolution: {integrity: sha512-fa+O6F0JcFGx//Vpq1hC/imViSNYp3Vd4dAlFf10lixRqoj+Z/LuOpjNIc2qPYtpjhrCamqi2mnUTkrBz1UCZA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-salmon@0.1.17': + resolution: {integrity: sha512-PjrB+3dKA1SfAl7IdtR4xIT6zmzI/ZSHM6DwAqiGaY+4wNw+66gV/WmiYuTqlmC9hTaTgWdZSXdBboFkal7csA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-sky@0.1.18': + resolution: {integrity: sha512-QtE407XUu2yJsgF1/Rt8elckAIVkOjar1Zt9UKdJFdxFB19WpJubGW+oHP7BNcYUUrLdpHBMWwhBO0zd/dMzVg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-solflare@0.6.31': + resolution: {integrity: sha512-upP0GGLKPz2fmdisy/mAJfexe0VrO6EVK6XF41xP83wBD/kM0LuRWMG7oOxzuD4Wc6bQOMVysW+PseZHphK6RQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-solong@0.9.21': + resolution: {integrity: sha512-J+sseVVil0oe0FFWEXit/6nzmHISKSfA0/72hIk2hDKNNjj7q0xExhBIejN8tpGwUYWcHdGYaqDVNkxdWxeXZg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-spot@0.1.18': + resolution: {integrity: sha512-c882REN9b4PKL8B80MS8+3Fdd7HRJj8OOQiYg6X5NN5qqtmW5MbIEkYVO+Fc2OYe+IhKjnr4oY7LytmPu0eAbQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-tokenary@0.1.15': + resolution: {integrity: sha512-iq8+Le/n2G35N+wNLUWq13hYSjsulxswb1vC7lNT3gpIhl4JLR7BI6jCdeCKfNSDamzLXv6FMt8S0q/DYR0A5A==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-tokenpocket@0.4.22': + resolution: {integrity: sha512-u61lhRb9E37y/KbvhSMJWJWH4TdwR8yQf0JC+N9lFy8lvPXvaC7dpguXcgTlGOHTl7vhkv0/rn0X6XLBVFq85A==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-torus@0.11.31': + resolution: {integrity: sha512-HgAgdTz6rUWVIg7kGJNwxV0HtN/O3V347D4VGOJPp++WIEbApz5kqrWU2PaygFTK8lG4FrpwguTIVcPh0jU9KQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-trezor@0.1.5': + resolution: {integrity: sha512-DV4IJX06zth1uQ+6dUh5di8pC+uhRDd87cZo//bYiE3vQ6+CRJEJgkeFS5hoiEdj/119BtOegtSBqtLc77rWcg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-trust@0.1.16': + resolution: {integrity: sha512-pTdq6fycCSq94jsCjCatjyHMwIpUTOjwL/77/BiorLWT+1dTnxty/coCWMVqBi7IBE2rBDo5Zeaz67I3dMaOjg==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-unsafe-burner@0.1.10': + resolution: {integrity: sha512-I5ZTBManDZN1rrffTv6PaKEIOqqzuVlR09svKhnRbmGlOlp/532N/I/vEPnjVlhNKbjLqgkY2Cof6w7RNhjRLQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-walletconnect@0.1.20': + resolution: {integrity: sha512-qix8jOWkTCGpZIDb8iDqriUWcDWjgy3Nw7K1XUpO4lTGU9qv7DxNBsvSZ6HzZEvfa1fKbvyeICIZa+HO7MFERA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-wallets@0.19.36': + resolution: {integrity: sha512-c5MbrRvJF+N27GFfyba/AwWksXEa/N7FTwYBQrsVInRsnBsyuXLzEHd/OPSzmZFcsjafCfAY5wFi40ZNSBA0bA==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-adapter-xdefi@0.1.10': + resolution: {integrity: sha512-QpHY/fU7CKaXR9B1tHCuE1N+hgpAC76qM+3pTVtuiDe01vTjKR2A2eijCgyC6dOR94xaymF/MflfzdY3kAVxkQ==} + engines: {node: '>=20'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + + '@solana/wallet-standard-chains@1.1.1': + resolution: {integrity: sha512-Us3TgL4eMVoVWhuC4UrePlYnpWN+lwteCBlhZDUhFZBJ5UMGh94mYPXno3Ho7+iHPYRtuCi/ePvPcYBqCGuBOw==} + engines: {node: '>=16'} + + '@solana/wallet-standard-core@1.1.2': + resolution: {integrity: sha512-FaSmnVsIHkHhYlH8XX0Y4TYS+ebM+scW7ZeDkdXo3GiKge61Z34MfBPinZSUMV08hCtzxxqH2ydeU9+q/KDrLA==} + engines: {node: '>=16'} + + '@solana/wallet-standard-features@1.3.0': + resolution: {integrity: sha512-ZhpZtD+4VArf6RPitsVExvgkF+nGghd1rzPjd97GmBximpnt1rsUxMOEyoIEuH3XBxPyNB6Us7ha7RHWQR+abg==} + engines: {node: '>=16'} + + '@solana/wallet-standard-util@1.1.2': + resolution: {integrity: sha512-rUXFNP4OY81Ddq7qOjQV4Kmkozx4wjYAxljvyrqPx8Ycz0FYChG/hQVWqvgpK3sPsEaO/7ABG1NOACsyAKWNOA==} + engines: {node: '>=16'} + + '@solana/wallet-standard-wallet-adapter-base@1.1.4': + resolution: {integrity: sha512-Q2Rie9YaidyFA4UxcUIxUsvynW+/gE2noj/Wmk+IOwDwlVrJUAXCvFaCNsPDSyKoiYEKxkSnlG13OA1v08G4iw==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.98.0 + bs58: ^6.0.0 + + '@solana/wallet-standard-wallet-adapter-react@1.1.4': + resolution: {integrity: sha512-xa4KVmPgB7bTiWo4U7lg0N6dVUtt2I2WhEnKlIv0jdihNvtyhOjCKMjucWet6KAVhir6I/mSWrJk1U9SvVvhCg==} + engines: {node: '>=16'} + peerDependencies: + '@solana/wallet-adapter-base': '*' + react: '*' + + '@solana/wallet-standard-wallet-adapter@1.1.4': + resolution: {integrity: sha512-YSBrxwov4irg2hx9gcmM4VTew3ofNnkqsXQ42JwcS6ykF1P1ecVY8JCbrv75Nwe6UodnqeoZRbN7n/p3awtjNQ==} + engines: {node: '>=16'} + + '@solana/wallet-standard@1.1.4': + resolution: {integrity: sha512-NF+MI5tOxyvfTU4A+O5idh/gJFmjm52bMwsPpFGRSL79GECSN0XLmpVOO/jqTKJgac2uIeYDpQw/eMaQuWuUXw==} + engines: {node: '>=16'} + + '@solana/web3.js@1.98.2': + resolution: {integrity: sha512-BqVwEG+TaG2yCkBMbD3C4hdpustR4FpuUFRPUmqRZYYlPI9Hg4XMWxHWOWRzHE9Lkc9NDjzXFX7lDXSgzC7R1A==} + + '@solflare-wallet/metamask-sdk@1.0.3': + resolution: {integrity: sha512-os5Px5PTMYKGS5tzOoyjDxtOtj0jZKnbI1Uwt8+Jsw1HHIA+Ib2UACCGNhQ/un2f8sIbTfLD1WuucNMOy8KZpQ==} + peerDependencies: + '@solana/web3.js': '*' + + '@solflare-wallet/sdk@1.4.2': + resolution: {integrity: sha512-jrseNWipwl9xXZgrzwZF3hhL0eIVxuEtoZOSLmuPuef7FgHjstuTtNJAeT4icA7pzdDV4hZvu54pI2r2f7SmrQ==} + peerDependencies: + '@solana/web3.js': '*' + + '@suchipi/femver@1.0.0': + resolution: {integrity: sha512-bprE8+K5V+DPX7q2e2K57ImqNBdfGHDIWaGI5xHxZoxbKOuQZn4wzPiUxOAHnsUr3w3xHrWXwN7gnG/iIuEMIg==} + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} + + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@t3-oss/env-core@0.11.1': + resolution: {integrity: sha512-MaxOwEoG1ntCFoKJsS7nqwgcxLW1SJw238AJwfJeaz3P/8GtkxXZsPPolsz1AdYvUTbe3XvqZ/VCdfjt+3zmKw==} + peerDependencies: + typescript: '>=5.0.0' + zod: ^3.0.0 + peerDependenciesMeta: + typescript: + optional: true + + '@t3-oss/env-nextjs@0.11.1': + resolution: {integrity: sha512-rx2XL9+v6wtOqLNJbD5eD8OezKlQD1BtC0WvvtHwBgK66jnF5+wGqtgkKK4Ygie1LVmoDClths2T4tdFmRvGrQ==} + peerDependencies: + typescript: '>=5.0.0' + zod: ^3.0.0 + peerDependenciesMeta: + typescript: + optional: true + + '@tanstack/query-core@5.77.2': + resolution: {integrity: sha512-1lqJwPsR6GX6nZFw06erRt518O19tWU6Q+x0fJUygl4lxHCYF2nhzBPwLKk2NPjYOrpR0K567hxPc5K++xDe9Q==} + + '@tanstack/react-query@5.77.2': + resolution: {integrity: sha512-BRHxWdy1mHmgAcYA/qy2IPLylT81oebLgkm9K85viN2Qol/Vq48t1dzDFeDIVQjTWDV96AmqsLNPlH5HjyKCxA==} + peerDependencies: + react: ^18 || ^19 + + '@ton/core@0.59.1': + resolution: {integrity: sha512-SxFBAvutYJaIllTkv82vbHTJhJI6NxzqUhi499CDEjJEZ9i6i9lHJiK2df4dlLAb/4SiWX6+QUzESkK4DEdnCw==} + peerDependencies: + '@ton/crypto': '>=3.2.0' + + '@ton/crypto-primitives@2.1.0': + resolution: {integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==} + + '@ton/crypto@3.3.0': + resolution: {integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==} + + '@ton/ton@15.2.1': + resolution: {integrity: sha512-ICzozzATRfymkVfFVZrfVpKnCc5PLxAVeaB62mx/HsgllsjnR64UuoLuE6hqWHcA3/Hft9YLGdk2/rOHGZM6qA==} + peerDependencies: + '@ton/core': '>=0.60.0' + '@ton/crypto': '>=3.2.0' + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@toruslabs/base-controllers@5.11.0': + resolution: {integrity: sha512-5AsGOlpf3DRIsd6PzEemBoRq+o2OhgSFXj5LZD6gXcBlfe0OpF+ydJb7Q8rIt5wwpQLNJCs8psBUbqIv7ukD2w==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@toruslabs/broadcast-channel@10.0.2': + resolution: {integrity: sha512-aZbKNgV/OhiTKSdxBTGO86xRdeR7Ct1vkB8yeyXRX32moARhZ69uJQL49jKh4cWKV3VeijrL9XvKdn5bzgHQZg==} + engines: {node: '>=18.x', npm: '>=9.x'} + + '@toruslabs/constants@13.4.0': + resolution: {integrity: sha512-CjmnMQ5Oj0bqSBGkhv7Xm3LciGJDHwe4AJ1LF6mijlP+QcCnUM5I6kVp60j7zZ/r0DT7nIEiuHHHczGpCZor0A==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@toruslabs/eccrypto@4.0.0': + resolution: {integrity: sha512-Z3EINkbsgJx1t6jCDVIJjLSUEGUtNIeDjhMWmeDGOWcP/+v/yQ1hEvd1wfxEz4q5WqIHhevacmPiVxiJ4DljGQ==} + engines: {node: '>=18.x', npm: '>=9.x'} + + '@toruslabs/http-helpers@6.1.1': + resolution: {integrity: sha512-bJYOaltRzklzObhRdutT1wau17vXyrCCBKJOeN46F1t99MUXi5udQNeErFOcr9qBsvrq2q67eVBkU5XOeBMX5A==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': ^7.x + '@sentry/types': ^7.x + peerDependenciesMeta: + '@sentry/types': + optional: true + + '@toruslabs/metadata-helpers@5.1.0': + resolution: {integrity: sha512-7fdqKuWUaJT/ng+PlqrA4XKkn8Dij4JJozfv/4gHTi0f/6JFncpzIces09jTV70hCf0JIsTCvIDlzKOdJ+aeZg==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@toruslabs/openlogin-jrpc@8.3.0': + resolution: {integrity: sha512-1OdSkUXGXJobkkMIJHuf+XzwmUB4ROy6uQfPEJ3NXvNj84+N4hNpvC4JPg7VoWBHdfCba9cv6QnQsVArlwai4A==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@toruslabs/openlogin-utils@8.2.1': + resolution: {integrity: sha512-NSOtj61NZe7w9qbd92cYwMlE/1UwPGtDH02NfUjoEEc3p1yD5U2cLZjdSwsnAgjGNgRqVomXpND4hii12lI/ew==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@toruslabs/solana-embed@2.1.0': + resolution: {integrity: sha512-rgZniKy+yuqJp8/Z/RcqzhTL4iCH+4nP55XD5T2nEIajAClsmonsGp24AUqYwEqu+7x2hjumZEh+12rUv+Ippw==} + engines: {node: '>=18.x', npm: '>=9.x'} + peerDependencies: + '@babel/runtime': 7.x + + '@trezor/analytics@1.3.5': + resolution: {integrity: sha512-/J91CkjYr3ilYnxQd/7iFx4l3p2nQmvsVbNQZUasTOBf9Z21EliDGtU/xAiDLXDyTsccGDBMs3VFSOXVwiNeKw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/blockchain-link-types@1.3.5': + resolution: {integrity: sha512-85ZwXrAgBd9cHWkCo8hHCaqrrdTfEhAcP+QVPlcYbxdDKMNTGpIK9pRb7+om0k00pJTAN3JAsbG+W620k7gx3w==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/blockchain-link-utils@1.3.5': + resolution: {integrity: sha512-dOLt7t27tyhk6JDKL6zVdTWnuAPMeIOUcOLUJcbnaHEvp96CZEGssKPK71vBsEn8lKu5rBSQeA20lC9g92y3TQ==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/blockchain-link@2.4.5': + resolution: {integrity: sha512-k24tPIZpDkSaUiP12bLG/P9HrAR0Dy1XgBGZzcQvBAeKAE2mjI/0R0VmiEwa9VdGGdl1AZidvNVVevGrwXdLzw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/connect-analytics@1.3.3': + resolution: {integrity: sha512-QcSuPV30gUdD3vL2ktiq/lnlwCp/f0IScYJSbtHZKBuSNR0iCTKIz9e8pl/vEvEctNodlupvjoy5kZlqXwfZow==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/connect-common@0.3.5': + resolution: {integrity: sha512-hq9CnDcVHt78rxM2RQDt9z7rQ1v1ZdvU4avwVIU/Ze90FgA9BWZNxpuDqvk0aXVaV0XVQFhikBLpLDQMDTFrlg==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/connect-web@9.5.5': + resolution: {integrity: sha512-E7q2S0hTebWwYUgpU1DqZ5Wr/6f+bT7NS9/Po1YTpZG5pQ2lu4GxT+MRydbMsRBu/r+g9RYI9rPvy0G7ArqGQQ==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/connect@9.5.5': + resolution: {integrity: sha512-gvAVAfFS4UVvSYUaIw3HtbkWMiTvbORlcN4mKiEvNcQ9TVSZdCnuRiFlHEbxIDjN+SA60ubXgK6A02Vt6F26fw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/crypto-utils@1.1.3': + resolution: {integrity: sha512-KVJSQrJc8TW+HXOaPfj4GGrjJqWAQ7UeBLzIR6NorTtulykJn1TdwGwpVm248Bq1Ndgd+jjF2QH9UMSLX1VUGQ==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/device-utils@1.0.3': + resolution: {integrity: sha512-HcfiAxVypjJUEzE/QAIdDf0ZRZmY5Mb7ZY9xIy4P0NWuyZFspgyuBolk8vvKCQrR+XR2E7DNYKmAhkl2cJw+2w==} + + '@trezor/env-utils@1.3.4': + resolution: {integrity: sha512-L+cytJM0z9j8yI1Lh6AFtmfUdFOPxhcmDvzC5UgyeUsdkgrrnXFDSyaXc8a+ItukoX/CTfZBsmWRYu5BLUuLJQ==} + peerDependencies: + expo-constants: '*' + expo-localization: '*' + react-native: '*' + tslib: ^2.6.2 + peerDependenciesMeta: + expo-constants: + optional: true + expo-localization: + optional: true + react-native: + optional: true + + '@trezor/protobuf@1.3.5': + resolution: {integrity: sha512-6o67avkSvlApF18Vohizdt3HKbbj+wfcyx433Yam99yHnusNM1yAbyCPyJiRtfuoLM98+IkFm/RduxGul3PXjw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/protocol@1.2.6': + resolution: {integrity: sha512-kEgJk436ow1faDhjo+YfOAJSLr1vAlRTj+fH1D3waeOcGdHK0VzhXu35I1XmSSdvilO9+fXLjIhweRMk/1PMlQ==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/schema-utils@1.3.3': + resolution: {integrity: sha512-HxA69ZnBU0po66uaDxEmHOrNxgrF5zp8q8/OajnIfgN76iTJ+eMI8iBhzUdJxndhXDTMsCMN4u/xD05zetJpIA==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/transport@1.4.5': + resolution: {integrity: sha512-g2qTZhstvgGgvE37lafZNw87jzc76RJzDMPW0KHlainzjBUJdWW0MX/lGOZtbqc8+Q1w8lt957J05HI4ttWmdw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/type-utils@1.1.6': + resolution: {integrity: sha512-ASmizaFLyIXTWoSyFRgZjreJo977NVV9pZ3J3wOb0+Dz3PJNtcvoyCW8dVaJsv2qOPGjQ0X7hfNgcmtQf1kTMQ==} + + '@trezor/utils@9.3.5': + resolution: {integrity: sha512-lx8ERXHLw29MLA1CrEswc5RQkQWK1s311ldUpBWqNC3ycwRmmpj+yziovlB5wUIUJCGukuT2izi5jlfImk6oug==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/utxo-lib@2.3.5': + resolution: {integrity: sha512-WEXVHM0r5exyTpkGD/n1ReFPh5FjA8xb9/SCd7BZnVwiwn6EdbYzF/YrVMS1xsHA4MljOaMrKbfOkT/Fldivmw==} + peerDependencies: + tslib: ^2.6.2 + + '@trezor/websocket-client@1.1.5': + resolution: {integrity: sha512-sKOq3ZxGvd7/Il+8F/PkFATHQ3e3ufEoDg/RrPrn2TXvYhSLa6Ak+QLzqLk19KXMt5RrEHQIheLyaWP/4CUO4w==} + peerDependencies: + tslib: ^2.6.2 + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16-strictest@1.0.4': + resolution: {integrity: sha512-kp6/DuAoKzHVv5U+p0uOesYbjrEvrYVNdQMl163a+yXXUv9twabvkCGEn3pmVxKXB45JU5MPGolDDWnONZL5ZQ==} + deprecated: TypeScript 5.0 supports combining TSConfigs using array syntax in extends + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@tybys/wasm-util@0.9.0': + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + + '@typechain/ethers-v6@0.5.1': + resolution: {integrity: sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==} + peerDependencies: + ethers: 6.x + typechain: ^8.3.2 + typescript: '>=4.7.0' + + '@typechain/hardhat@9.1.0': + resolution: {integrity: sha512-mtaUlzLlkqTlfPwB3FORdejqBskSnh+Jl8AIJGjXNAQfRQ4ofHADPl1+oU7Z3pAJzmZbUXII8MhOLQltcHgKnA==} + peerDependencies: + '@typechain/ethers-v6': ^0.5.1 + ethers: ^6.1.0 + hardhat: ^2.9.9 + typechain: ^8.3.2 + + '@types/async-retry@1.4.9': + resolution: {integrity: sha512-s1ciZQJzRh3708X/m3vPExr5KJlzlZJvXsKpbtE2luqNcbROr64qU+3KpJsYHqWMeaxI839OvXf9PrUSw1Xtyg==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.7': + resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} + + '@types/bn.js@5.1.6': + resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree@0.0.39': + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/express-serve-static-core@4.19.6': + resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==} + + '@types/express@4.17.22': + resolution: {integrity: sha512-eZUmSnhRX9YRSkplpz0N+k6NljUUn5l3EWZIKZvYzhvMphEuNiyyy1viH/ejgt66JWgALwC/gtSUAeQKtSwW/w==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@29.5.14': + resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lru-cache@5.1.1': + resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/mute-stream@0.0.1': + resolution: {integrity: sha512-0yQLzYhCqGz7CQPE3iDmYjhb7KMBFOP+tBkyw+/Y2YyDI5wpS7itXXxneN1zSsUwWx3Ji6YiVYrhAnpQGS/vkw==} + + '@types/mute-stream@0.0.4': + resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} + + '@types/node-fetch@2.6.12': + resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@18.19.105': + resolution: {integrity: sha512-a+DrwD2VyzqQR2W0EVF8EaCh6Em4ilQAYLEPZnMNkQHXR7ziWW7RUhZMWZAgRpkDDAdUIcJOXSPJT/zBEwz3sA==} + + '@types/node@20.17.52': + resolution: {integrity: sha512-2aj++KfxubvW/Lc0YyXE3OEW7Es8TWn1MsRzYgcOGyTNQxi0L8rxQUCZ7ZbyOBWZQD5I63PV9egZWMsapVaklg==} + + '@types/node@20.3.1': + resolution: {integrity: sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==} + + '@types/node@22.15.24': + resolution: {integrity: sha512-w9CZGm9RDjzTh/D+hFwlBJ3ziUaVw7oufKA3vOFSOZlzmW9AkZnfjPb+DLnrV6qtgL/LNmP0/2zBNCFHL3F0ng==} + + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/pbkdf2@3.1.2': + resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} + + '@types/prettier@2.7.3': + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + + '@types/prompts@2.4.9': + resolution: {integrity: sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==} + + '@types/prop-types@15.7.14': + resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==} + + '@types/qs@6.14.0': + resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-dom@18.2.6': + resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==} + + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} + peerDependencies: + '@types/react': ^18.0.0 + + '@types/react-transition-group@4.4.12': + resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==} + peerDependencies: + '@types/react': '*' + + '@types/react@18.2.14': + resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==} + + '@types/react@18.3.23': + resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/retry@0.12.5': + resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==} + + '@types/scheduler@0.26.0': + resolution: {integrity: sha512-WFHp9YUJQ6CKshqoC37iOlHnQSmxNc795UhB26CyBBttrN9svdIrUjl/NjnNmfcwtncN0h/0PPAFWv9ovP8mLA==} + + '@types/secp256k1@4.0.6': + resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/use-sync-external-store@0.0.6': + resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} + + '@types/uuid@8.3.4': + resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} + + '@types/w3c-web-usb@1.0.10': + resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==} + + '@types/web@0.0.197': + resolution: {integrity: sha512-V4sOroWDADFx9dLodWpKm298NOJ1VJ6zoDVgaP+WBb/utWxqQ6gnMzd9lvVDAr/F3ibiKaxH9i45eS0gQPSTaQ==} + + '@types/wrap-ansi@3.0.0': + resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} + + '@types/ws@7.4.7': + resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} + + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + + '@types/ws@8.5.3': + resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@17.0.33': + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} + + '@typescript-eslint/eslint-plugin@8.33.0': + resolution: {integrity: sha512-CACyQuqSHt7ma3Ns601xykeBK/rDeZa3w6IS6UtMQbixO5DWy+8TilKkviGDH6jtWCo8FGRKEK5cLLkPvEammQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.33.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/parser@8.33.0': + resolution: {integrity: sha512-JaehZvf6m0yqYp34+RVnihBAChkqeH+tqqhS0GuX1qgPpwLvmTPheKEs6OeCK6hVJgXZHJ2vbjnC9j119auStQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/project-service@8.33.0': + resolution: {integrity: sha512-d1hz0u9l6N+u/gcrk6s6gYdl7/+pp8yHheRTqP6X5hVDKALEaTn8WfGiit7G511yueBEL3OpOEpD+3/MBdoN+A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/scope-manager@8.33.0': + resolution: {integrity: sha512-LMi/oqrzpqxyO72ltP+dBSP6V0xiUb4saY7WLtxSfiNEBI8m321LLVFU9/QDJxjDQG9/tjSqKz/E3380TEqSTw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.33.0': + resolution: {integrity: sha512-sTkETlbqhEoiFmGr1gsdq5HyVbSOF0145SYDJ/EQmXHtKViCaGvnyLqWFFHtEXoS0J1yU8Wyou2UGmgW88fEug==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/type-utils@8.33.0': + resolution: {integrity: sha512-lScnHNCBqL1QayuSrWeqAL5GmqNdVUQAAMTaCwdYEdWfIrSrOGzyLGRCHXcCixa5NK6i5l0AfSO2oBSjCjf4XQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/types@8.33.0': + resolution: {integrity: sha512-DKuXOKpM5IDT1FA2g9x9x1Ug81YuKrzf4mYX8FAVSNu5Wo/LELHWQyM1pQaDkI42bX15PWl0vNPt1uGiIFUOpg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.33.0': + resolution: {integrity: sha512-vegY4FQoB6jL97Tu/lWRsAiUUp8qJTqzAmENH2k59SJhw0Th1oszb9Idq/FyyONLuNqT1OADJPXfyUNOR8SzAQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@8.33.0': + resolution: {integrity: sha512-lPFuQaLA9aSNa7D5u2EpRiqdAUhzShwGg/nhpBlc4GR6kcTABttCuyjFs8BcEZ8VWrjCBof/bePhP3Q3fS+Yrw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@8.33.0': + resolution: {integrity: sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + '@uniswap/lib@4.0.1-alpha': + resolution: {integrity: sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==} + engines: {node: '>=10'} + + '@uniswap/sdk-core@3.2.6': + resolution: {integrity: sha512-MvH/3G0W0sM2g7XjaUy9qU7IabxL/KQp/ucU0AQGpVxiTaAhmVRtsjkkv9UDyzpIXVrmevl4kRgV7KKE29UuXA==} + engines: {node: '>=10'} + deprecated: breaking change required major version bump + + '@uniswap/sdk-core@7.7.2': + resolution: {integrity: sha512-0KqXw+y0opBo6eoPAEoLHEkNpOu0NG9gEk7GAYIGok+SHX89WlykWsRYeJKTg9tOwhLpcG9oHg8xZgQ390iOrA==} + engines: {node: '>=10'} + + '@uniswap/swap-router-contracts@1.3.1': + resolution: {integrity: sha512-mh/YNbwKb7Mut96VuEtL+Z5bRe0xVIbjjiryn+iMMrK2sFKhR4duk/86mEz0UO5gSx4pQIw9G5276P5heY/7Rg==} + engines: {node: '>=10'} + + '@uniswap/v2-core@1.0.1': + resolution: {integrity: sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==} + engines: {node: '>=10'} + + '@uniswap/v3-core@1.0.0': + resolution: {integrity: sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==} + engines: {node: '>=10'} + + '@uniswap/v3-core@1.0.1': + resolution: {integrity: sha512-7pVk4hEm00j9tc71Y9+ssYpO6ytkeI0y7WE9P6UcmNzhxPePwyAxImuhVsTqWK9YFvzgtvzJHi64pBl4jUzKMQ==} + engines: {node: '>=10'} + + '@uniswap/v3-periphery@1.4.4': + resolution: {integrity: sha512-S4+m+wh8HbWSO3DKk4LwUCPZJTpCugIsHrWR86m/OrUyvSqGDTXKFfc2sMuGXCZrD1ZqO3rhQsKgdWg3Hbb2Kw==} + engines: {node: '>=10'} + + '@uniswap/v3-sdk@3.25.2': + resolution: {integrity: sha512-0oiyJNGjUVbc958uZmAr+m4XBCjV7PfMs/OUeBv+XDl33MEYF/eH86oBhvqGDM8S/cYaK55tCXzoWkmRUByrHg==} + engines: {node: '>=10'} + + '@uniswap/v3-staker@1.0.0': + resolution: {integrity: sha512-JV0Qc46Px5alvg6YWd+UIaGH9lDuYG/Js7ngxPit1SPaIP30AlVer1UYB7BRYeUVVxE+byUyIeN5jeQ7LLDjIw==} + engines: {node: '>=10'} + deprecated: Please upgrade to 1.0.1 + + '@unrs/resolver-binding-darwin-arm64@1.7.6': + resolution: {integrity: sha512-dDhh//8GrF4PynBubCUvnJ/mG2LStUEiaWqML4SAhz2iZvG769d6e25MoJBamDR251FBT3ULpXGJ7Mdnysp27w==} + cpu: [arm64] + os: [darwin] + + '@unrs/resolver-binding-darwin-x64@1.7.6': + resolution: {integrity: sha512-u1Avp0HPAulQHMwgBJaHXIcao0LWwxF5/pd3H7DhldIFd2o3B2xVjXiqslSRpARL2b0QRdAdUf8+IAy6RlrvgQ==} + cpu: [x64] + os: [darwin] + + '@unrs/resolver-binding-freebsd-x64@1.7.6': + resolution: {integrity: sha512-nnjHghvIxEWvym6+ToAVmiXO11c+25p1E7CAQa/1uJTjcRhJTpEUKNbEWGO9tsxxIpBv1dfXaOA3gsJz5eBAjg==} + cpu: [x64] + os: [freebsd] + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.6': + resolution: {integrity: sha512-96y5xFahjyUwk1om2FRVkzXHTtgmi+6MUO9iMhyb/W/9v05z1wawgj7v4j9TPwXo/f10cDKty4Aao3Fufcu2Cg==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm-musleabihf@1.7.6': + resolution: {integrity: sha512-tyHD5mKRZpHPVg13a16a0X8wJ6Avtfecqg1gMlGB/MXOlvrJJ6EKzdWyUPi5GZUtT+JWV/NVTPLvvC/Hzxo3aw==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-gnu@1.7.6': + resolution: {integrity: sha512-rVHWGBVbhBrWYQl0y8sObTkCqSXtLAa8srG1u21S/IPGciOP0Djq7ykih5TeUtj0nAktANsiK2g/ST8UPhfbiA==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-musl@1.7.6': + resolution: {integrity: sha512-6a7res5yz781YPZCkilDf34cQyNOCaHTGiUR8Z5U+hlrOChGPaciz4IpUpO1x2BWiBvbyIC9Janh/ujel9bo3g==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-ppc64-gnu@1.7.6': + resolution: {integrity: sha512-MtejOT0dfnupO9Tja6GtakFCe1FA7yY3tv6JM+oCFpChSCfJ/G87305AJyC0WZvdOUnPFh6hIMRpEjZAWxssyw==} + cpu: [ppc64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-gnu@1.7.6': + resolution: {integrity: sha512-urwxUzOqU7KKZs5KyTTFZIztzpNBHmxgO24nxaaD8lhESzC1ng1zq+gP7CKHZmQF2t3NMTdcnrXc86XYXZcBwQ==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-musl@1.7.6': + resolution: {integrity: sha512-uqKOYPHRs+XUvq1+7ydgv6V42pMpzSJyuV6Y/R5FJUUuV2gJ54xhR+e5NqqS7WvWHZTDZ895P1fXejoooUfWgw==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-s390x-gnu@1.7.6': + resolution: {integrity: sha512-WAjhxt3hypzJf5vk2Zut/ebvuXYEOFTi45SqqkoShU9p40IEeYM2AoKC6NNo3/5CIFxR5iaIHOetlJF+iWAMIQ==} + cpu: [s390x] + os: [linux] + + '@unrs/resolver-binding-linux-x64-gnu@1.7.6': + resolution: {integrity: sha512-qsuxl8zUdwWXUlMa8zUAnonye/j+2k3QfcSXkW9bAZ0BcMLDZ/7uqXsAmk+7fP1gzv57AhCDpOcFSIsP4eSPEA==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-linux-x64-musl@1.7.6': + resolution: {integrity: sha512-5xg1/XpaJP6y5t4gAIHO6LVvd3xpkWXMBWk1lEUjh9oXfkxY9uoEd6gYJ5zj1dhiGy8uc//TG80Gnu3bqE4gsg==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-wasm32-wasi@1.7.6': + resolution: {integrity: sha512-s5QPe0XWHDY0rb+ywbwGqZ24WH1fLpSeakM+M+up58My5T2LsScoJpqN60KgaYRJpumabqcAcczL/2LEWL6bQA==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@unrs/resolver-binding-win32-arm64-msvc@1.7.6': + resolution: {integrity: sha512-lzYMuug2XyxY+Ptw0LA5sNmF3WY+IefI1IMtws3y3G0EkYnqidhEi2+7eqtEiYAxPNo9VerQNfXKJd3bIuntPQ==} + cpu: [arm64] + os: [win32] + + '@unrs/resolver-binding-win32-ia32-msvc@1.7.6': + resolution: {integrity: sha512-ysjUtTmUsgFMZqkMovWBr43izkC0kQPbW8V1Ln70FSAE7cVHCVf7PxIfllgQwLjjsYKKOVuq7iWe8G9mJlCk4A==} + cpu: [ia32] + os: [win32] + + '@unrs/resolver-binding-win32-x64-msvc@1.7.6': + resolution: {integrity: sha512-/1kM+r9G86s0ZLk2ej0MuU3hJQGmnawAA1JPIhcVMkZCtxK/pJzNtzPms3vDwVxbbwho6ExRcVLoA4h0zwzVmA==} + cpu: [x64] + os: [win32] + + '@wagmi/connectors@5.8.3': + resolution: {integrity: sha512-U4SJgi91+ny/XDGQWAMmawMafDx1BofcbYkPT/WSU6XrGL+apa7VltscqY7PVmwVGi/CYTqe8nlQiK/wmQ8D3A==} + peerDependencies: + '@wagmi/core': 2.17.2 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + '@wagmi/core@2.17.2': + resolution: {integrity: sha512-p1z8VU0YuRClx2bdPoFObDF7M2Reitz9AdByrJ+i5zcPCHuJ/UjaWPv6xD7ydhkWVK0hoa8vQ/KtaiEwEQS7Mg==} + peerDependencies: + '@tanstack/query-core': '>=5.0.0' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + '@tanstack/query-core': + optional: true + typescript: + optional: true + + '@wallet-standard/app@1.1.0': + resolution: {integrity: sha512-3CijvrO9utx598kjr45hTbbeeykQrQfKmSnxeWOgU25TOEpvcipD/bYDQWIqUv1Oc6KK4YStokSMu/FBNecGUQ==} + engines: {node: '>=16'} + + '@wallet-standard/base@1.1.0': + resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==} + engines: {node: '>=16'} + + '@wallet-standard/core@1.1.1': + resolution: {integrity: sha512-5Xmjc6+Oe0hcPfVc5n8F77NVLwx1JVAoCVgQpLyv/43/bhtIif+Gx3WUrDlaSDoM8i2kA2xd6YoFbHCxs+e0zA==} + engines: {node: '>=16'} + + '@wallet-standard/errors@0.1.1': + resolution: {integrity: sha512-V8Ju1Wvol8i/VDyQOHhjhxmMVwmKiwyxUZBnHhtiPZJTWY0U/Shb2iEWyGngYEbAkp2sGTmEeNX1tVyGR7PqNw==} + engines: {node: '>=16'} + hasBin: true + + '@wallet-standard/features@1.1.0': + resolution: {integrity: sha512-hiEivWNztx73s+7iLxsuD1sOJ28xtRix58W7Xnz4XzzA/pF0+aicnWgjOdA10doVDEDZdUuZCIIqG96SFNlDUg==} + engines: {node: '>=16'} + + '@wallet-standard/wallet@1.1.0': + resolution: {integrity: sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==} + engines: {node: '>=16'} + + '@walletconnect/core@2.19.0': + resolution: {integrity: sha512-AEoyICLHQEnjijZr9XsL4xtFhC5Cmu0RsEGxAxmwxbfGvAcYcSCNp1fYq0Q6nHc8jyoPOALpwySTle300Y1vxw==} + engines: {node: '>=18'} + + '@walletconnect/core@2.19.1': + resolution: {integrity: sha512-rMvpZS0tQXR/ivzOxN1GkHvw3jRRMlI/jRX5g7ZteLgg2L0ZcANsFvAU5IxILxIKcIkTCloF9TcfloKVbK3qmw==} + engines: {node: '>=18'} + + '@walletconnect/core@2.19.2': + resolution: {integrity: sha512-iu0mgLj51AXcKpdNj8+4EdNNBd/mkNjLEhZn6UMc/r7BM9WbmpPMEydA39WeRLbdLO4kbpmq4wTbiskI1rg+HA==} + engines: {node: '>=18'} + + '@walletconnect/core@2.20.2': + resolution: {integrity: sha512-48XnarxQQrpJ0KZJOjit56DxuzfVRYUdL8XVMvUh/ZNUiX2FB5w6YuljUUeTLfYOf04Et6qhVGEUkmX3W+9/8w==} + engines: {node: '>=18'} + + '@walletconnect/environment@1.0.1': + resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} + + '@walletconnect/ethereum-provider@2.20.2': + resolution: {integrity: sha512-fGNJtytHuBWZcmMXRIG1djlfEiPMvPJ0R3JlfJjAx2VfVN+O+1xdF6QSWcZxFizviIUFJV+f1zWt0V2VVD61Rg==} + + '@walletconnect/events@1.0.1': + resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} + + '@walletconnect/heartbeat@1.2.2': + resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + + '@walletconnect/jsonrpc-http-connection@1.0.8': + resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==} + + '@walletconnect/jsonrpc-provider@1.0.14': + resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} + + '@walletconnect/jsonrpc-types@1.0.4': + resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} + + '@walletconnect/jsonrpc-utils@1.0.8': + resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} + + '@walletconnect/jsonrpc-ws-connection@1.0.16': + resolution: {integrity: sha512-G81JmsMqh5nJheE1mPst1W0WfVv0SG3N7JggwLLGnI7iuDZJq8cRJvQwLGKHn5H1WTW7DEPCo00zz5w62AbL3Q==} + + '@walletconnect/keyvaluestorage@1.1.1': + resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==} + peerDependencies: + '@react-native-async-storage/async-storage': 1.x + peerDependenciesMeta: + '@react-native-async-storage/async-storage': + optional: true + + '@walletconnect/logger@2.1.2': + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} + + '@walletconnect/relay-api@1.0.11': + resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==} + + '@walletconnect/relay-auth@1.1.0': + resolution: {integrity: sha512-qFw+a9uRz26jRCDgL7Q5TA9qYIgcNY8jpJzI1zAWNZ8i7mQjaijRnWFKsCHAU9CyGjvt6RKrRXyFtFOpWTVmCQ==} + + '@walletconnect/safe-json@1.0.2': + resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} + + '@walletconnect/sign-client@2.19.0': + resolution: {integrity: sha512-+GkuJzPK9SPq+RZgdKHNOvgRagxh/hhYWFHOeSiGh3DyAQofWuFTq4UrN/MPjKOYswSSBKfIa+iqKYsi4t8zLQ==} + + '@walletconnect/sign-client@2.19.1': + resolution: {integrity: sha512-OgBHRPo423S02ceN3lAzcZ3MYb1XuLyTTkKqLmKp/icYZCyRzm3/ynqJDKndiBLJ5LTic0y07LiZilnliYqlvw==} + + '@walletconnect/sign-client@2.19.2': + resolution: {integrity: sha512-a/K5PRIFPCjfHq5xx3WYKHAAF8Ft2I1LtxloyibqiQOoUtNLfKgFB1r8sdMvXM7/PADNPe4iAw4uSE6PrARrfg==} + + '@walletconnect/sign-client@2.20.2': + resolution: {integrity: sha512-KyeDToypZ1OjCbij4Jx0cAg46bMwZ6zCKt0HzCkqENcex3Zchs7xBp9r8GtfEMGw+PUnXwqrhzmLBH0x/43oIQ==} + + '@walletconnect/solana-adapter@0.0.8': + resolution: {integrity: sha512-Qb7MT8SdkeBldfUCmF+rYW6vL98mxPuT1yAwww5X2vpx7xEPZvFCoAKnyT5fXu0v56rMxhW3MGejnHyyYdDY7Q==} + peerDependencies: + '@solana/wallet-adapter-base': 0.x + '@solana/web3.js': 1.x + + '@walletconnect/time@1.0.2': + resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} + + '@walletconnect/types@2.19.0': + resolution: {integrity: sha512-Ttse3p3DCdFQ/TRQrsPMQJzFr7cb/2AF5ltLPzXRNMmapmGydc6WO8QU7g/tGEB3RT9nHcLY2aqlwsND9sXMxA==} + + '@walletconnect/types@2.19.1': + resolution: {integrity: sha512-XWWGLioddH7MjxhyGhylL7VVariVON2XatJq/hy0kSGJ1hdp31z194nHN5ly9M495J9Hw8lcYjGXpsgeKvgxzw==} + + '@walletconnect/types@2.19.2': + resolution: {integrity: sha512-/LZWhkVCUN+fcTgQUxArxhn2R8DF+LSd/6Wh9FnpjeK/Sdupx1EPS8okWG6WPAqq2f404PRoNAfQytQ82Xdl3g==} + + '@walletconnect/types@2.20.2': + resolution: {integrity: sha512-XPPbJM/mGU05i6jUxhC3yI/YvhSF6TYJQ5SXTWM53lVe6hs6ukvlEhPctu9ZBTGwGFhwPXIjtK/eWx+v4WY5iw==} + + '@walletconnect/universal-provider@2.19.0': + resolution: {integrity: sha512-e9JvadT5F8QwdLmd7qBrmACq04MT7LQEe1m3X2Fzvs3DWo8dzY8QbacnJy4XSv5PCdxMWnua+2EavBk8nrI9QA==} + + '@walletconnect/universal-provider@2.19.1': + resolution: {integrity: sha512-4rdLvJ2TGDIieNWW3sZw2MXlX65iHpTuKb5vyvUHQtjIVNLj+7X/09iUAI/poswhtspBK0ytwbH+AIT/nbGpjg==} + + '@walletconnect/universal-provider@2.19.2': + resolution: {integrity: sha512-LkKg+EjcSUpPUhhvRANgkjPL38wJPIWumAYD8OK/g4OFuJ4W3lS/XTCKthABQfFqmiNbNbVllmywiyE44KdpQg==} + + '@walletconnect/universal-provider@2.20.2': + resolution: {integrity: sha512-6uVu1E88tioaXEEJCbJKwCIQlOHif1nmfY092BznZEnBn2lli5ICzQh2bxtUDNmNNLKsMDI3FV1fODFeWMVJTQ==} + + '@walletconnect/utils@2.19.0': + resolution: {integrity: sha512-LZ0D8kevknKfrfA0Sq3Hf3PpmM8oWyNfsyWwFR51t//2LBgtN2Amz5xyoDDJcjLibIbKAxpuo/i0JYAQxz+aPA==} + + '@walletconnect/utils@2.19.1': + resolution: {integrity: sha512-aOwcg+Hpph8niJSXLqkU25pmLR49B8ECXp5gFQDW5IeVgXHoOoK7w8a79GBhIBheMLlIt1322sTKQ7Rq5KzzFg==} + + '@walletconnect/utils@2.19.2': + resolution: {integrity: sha512-VU5CcUF4sZDg8a2/ov29OJzT3KfLuZqJUM0GemW30dlipI5fkpb0VPenZK7TcdLPXc1LN+Q+7eyTqHRoAu/BIA==} + + '@walletconnect/utils@2.20.2': + resolution: {integrity: sha512-2uRUDvpYSIJFYcr1WIuiFy6CEszLF030o6W8aDMkGk9/MfAZYEJQHMJcjWyaNMPHLJT0POR5lPaqkYOpuyPIQQ==} + + '@walletconnect/window-getters@1.0.1': + resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} + + '@walletconnect/window-metadata@1.0.1': + resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} + + '@xrplf/isomorphic@1.0.1': + resolution: {integrity: sha512-0bIpgx8PDjYdrLFeC3csF305QQ1L7sxaWnL5y71mCvhenZzJgku9QsA+9QCXBC1eNYtxWO/xR91zrXJy2T/ixg==} + engines: {node: '>=16.0.0'} + + '@xrplf/secret-numbers@1.0.0': + resolution: {integrity: sha512-qsCLGyqe1zaq9j7PZJopK+iGTGRbk6akkg6iZXJJgxKwck0C5x5Gnwlb1HKYGOwPKyrXWpV6a2YmcpNpUFctGg==} + + '@zerodev/ecdsa-validator@5.4.9': + resolution: {integrity: sha512-9NVE8/sQIKRo42UOoYKkNdmmHJY8VlT4t+2MHD2ipLg21cpbY9fS17TGZh61+Bl3qlqc8pP23I6f89z9im7kuA==} + peerDependencies: + '@zerodev/sdk': ^5.4.13 + viem: ^2.28.0 + + '@zerodev/sdk@5.4.36': + resolution: {integrity: sha512-8ewwlijbzWA16AZ03w7zqvTVXFdaUqGOJmbcAZPIIuz52bsdBsKYiF37RZ05KJ24hfdYsIHjE8pwocfjrtMcng==} + peerDependencies: + viem: ^2.28.0 + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abitype@0.7.1: + resolution: {integrity: sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==} + peerDependencies: + typescript: '>=4.9.4' + zod: ^3 >=3.19.1 + peerDependenciesMeta: + zod: + optional: true + + abitype@1.0.0: + resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + + abitype@1.0.6: + resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + + abitype@1.0.8: + resolution: {integrity: sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.14.1: + resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} + engines: {node: '>=0.4.0'} + hasBin: true + + adm-zip@0.4.16: + resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==} + engines: {node: '>=0.3.0'} + + aes-js@3.0.0: + resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} + + aes-js@4.0.0-beta.5: + resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + + agentkeepalive@4.6.0: + resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} + engines: {node: '>= 8.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + + anser@1.4.10: + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + aptos@1.21.0: + resolution: {integrity: sha512-PRKjoFgL8tVEc9+oS7eJUv8GNxx8n3+0byH2+m7CP3raYOD6yFKOecuwjVMIJmgfpjp6xH0P0HDMGZAXmSyU0Q==} + engines: {node: '>=11.0.0'} + deprecated: Package aptos is no longer supported, please migrate to https://www.npmjs.com/package/@aptos-labs/ts-sdk + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-hidden@1.2.6: + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} + engines: {node: '>=10'} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-back@3.1.0: + resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + engines: {node: '>=6'} + + array-back@4.0.2: + resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} + engines: {node: '>=8'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + asn1.js@4.10.1: + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + + asn1js@3.0.6: + resolution: {integrity: sha512-UOCGPYbl0tv8+006qks/dTgV9ajs97X2p0FAbyS2iyCRrmLSRolDaHdp+v/CLgnzHc3fVB+CwYiUmei7ndFcgA==} + engines: {node: '>=12.0.0'} + + assert@2.1.0: + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + ast-types@0.15.2: + resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + engines: {node: '>=4'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async-mutex@0.2.6: + resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} + + async-mutex@0.5.0: + resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==} + + async-retry@1.3.3: + resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + atomic-sleep@1.0.0: + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} + engines: {node: '>=8.0.0'} + + autoprefixer@10.4.21: + resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axe-core@4.10.3: + resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==} + engines: {node: '>=4'} + + axios@1.9.0: + resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-jest@29.4.3: + resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.3.3: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-corejs2@0.4.13: + resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.11.1: + resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.6.0: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-regenerator@0.4.1: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-regenerator@0.6.4: + resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-syntax-hermes-parser@0.23.1: + resolution: {integrity: sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==} + + babel-plugin-syntax-hermes-parser@0.25.1: + resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==} + + babel-plugin-transform-flow-enums@0.0.2: + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + + babel-preset-current-node-syntax@1.1.0: + resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base-x@3.0.11: + resolution: {integrity: sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==} + + base-x@4.0.1: + resolution: {integrity: sha512-uAZ8x6r6S3aUM9rbHGVOIsR15U/ZSc82b3ymnCPsT45Gk1DDvhDPdIgB5MrhirZWt+5K0EEPQH985kNqZgNPFw==} + dev: false + + base-x@5.0.1: + resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + base64-sol@1.0.1: + resolution: {integrity: sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==} + + base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} + + bchaddrjs@0.5.2: + resolution: {integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==} + engines: {node: '>=8.0.0'} + + bech32@1.1.4: + resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} + + bech32@2.0.0: + resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + big-integer@1.6.36: + resolution: {integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==} + engines: {node: '>=0.6'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + big.js@6.2.2: + resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==} + + bigint-buffer@1.1.5: + resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==} + engines: {node: '>= 10.0.0'} + + bignumber.js@9.1.2: + resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} + + bignumber.js@9.3.0: + resolution: {integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + + bip174@2.1.1: + resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} + engines: {node: '>=8.0.0'} + + bip32@4.0.0: + resolution: {integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==} + engines: {node: '>=6.0.0'} + + bip39@3.1.0: + resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} + + bip66@2.0.0: + resolution: {integrity: sha512-kBG+hSpgvZBrkIm9dt5T1Hd/7xGCPEX2npoxAWZfsK1FvjgaxySEh2WizjyIstWXriKo9K9uJ4u0OnsyLDUPXQ==} + + biskviit@1.0.1: + resolution: {integrity: sha512-VGCXdHbdbpEkFgtjkeoBN8vRlbj1ZRX2/mxhE8asCCRalUx2nBzOomLJv8Aw/nRt5+ccDb+tPKidg4XxcfGW4w==} + engines: {node: '>=1.0.0'} + + bitcoin-ops@1.4.1: + resolution: {integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==} + + bitcoinjs-lib@6.1.7: + resolution: {integrity: sha512-tlf/r2DGMbF7ky1MgUqXHzypYHakkEnm0SZP23CJKIqNY/5uNAnMbFhMJdhjrL/7anfb/U8+AlpdjPWjPnAalg==} + engines: {node: '>=8.0.0'} + + blake-hash@2.0.0: + resolution: {integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==} + engines: {node: '>= 10'} + + blakejs@1.2.1: + resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} + + bn.js@4.12.2: + resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} + + bn.js@5.2.2: + resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + borsh@0.7.0: + resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} + + bowser@2.11.0: + resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} + + boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + brorand@1.1.0: + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + + browser-stdout@1.3.1: + resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} + + browserify-aes@1.2.0: + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + + browserify-cipher@1.0.1: + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + + browserify-des@1.0.2: + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + + browserify-rsa@4.1.1: + resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} + engines: {node: '>= 0.10'} + + browserify-sign@4.2.3: + resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} + engines: {node: '>= 0.12'} + + browserslist@4.24.5: + resolution: {integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + + bs58@4.0.1: + resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} + + bs58@5.0.0: + resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==} + + bs58@6.0.0: + resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==} + + bs58check@2.1.2: + resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} + + bs58check@3.0.1: + resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==} + + bs58check@4.0.0: + resolution: {integrity: sha512-FsGDOnFg9aVI9erdriULkd/JjEWONV/lQE5aYziB5PoBsXRind56lh8doIZIc9X4HoxT5x4bLjMWN1/NB8Zp5g==} + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer-layout@1.2.2: + resolution: {integrity: sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==} + engines: {node: '>=4.5'} + + buffer-reverse@1.0.1: + resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==} + + buffer-xor@1.0.3: + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + bufferutil@4.0.9: + resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==} + engines: {node: '>=6.14.2'} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001718: + resolution: {integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==} + + cashaddrjs@0.4.4: + resolution: {integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==} + + cbor-sync@1.0.4: + resolution: {integrity: sha512-GWlXN4wiz0vdWWXBU71Dvc1q3aBo0HytqwAZnXF1wOwjqNnDWA1vZ1gDMFLlqohak31VQzmhiYfiCX5QSSfagA==} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chrome-launcher@0.15.2: + resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + engines: {node: '>=12.13.0'} + hasBin: true + + chromium-edge-launcher@0.2.0: + resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + cipher-base@1.0.6: + resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} + engines: {node: '>= 0.10'} + + cjs-module-lexer@1.4.3: + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} + + class-variance-authority@0.7.1: + resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-width@4.1.0: + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comlink@4.4.2: + resolution: {integrity: sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g==} + + command-exists@1.2.9: + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + + command-line-args@5.2.1: + resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + engines: {node: '>=4.0.0'} + + command-line-usage@6.1.3: + resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} + engines: {node: '>=8.0.0'} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + commander@13.1.0: + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} + engines: {node: '>=18'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + connect@3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} + + cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + + core-js-compat@3.42.0: + resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmjs-types@0.9.0: + resolution: {integrity: sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ==} + + crc-32@1.2.2: + resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} + engines: {node: '>=0.8'} + hasBin: true + + crc@3.8.0: + resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==} + + create-ecdh@4.0.4: + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + + create-hash@1.2.0: + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + + create-hmac@1.1.7: + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-fetch@3.2.0: + resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} + + cross-fetch@4.1.0: + resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crossws@0.3.5: + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} + + crypto-browserify@3.12.1: + resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} + engines: {node: '>= 0.10'} + + crypto-hash@1.3.0: + resolution: {integrity: sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg==} + engines: {node: '>=8'} + + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + + css-box-model@1.2.1: + resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + dataloader@2.2.3: + resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==} + + date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + + dateformat@4.6.3: + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decamelize@4.0.0: + resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} + engines: {node: '>=10'} + + decimal.js-light@2.5.1: + resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + + decimal.js@10.5.0: + resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + dedent@1.6.0: + resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + delay@5.0.0: + resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} + engines: {node: '>=10'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + derive-valtio@0.1.0: + resolution: {integrity: sha512-OCg2UsLbXK7GmmpzMXhYkdO64vhJ1ROUUGaTFyHjVwEdMEcTTRj7W1TxLbSBxdY8QLBPCcp66MTyaSy0RpO17A==} + peerDependencies: + valtio: '*' + + des.js@1.1.0: + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detect-browser@5.3.0: + resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + + detect-europe-js@0.1.2: + resolution: {integrity: sha512-lgdERlL3u0aUdHocoouzT10d9I89VVhk0qNRmll7mXdGfJT1/wqZ2ZLA4oJAjeACPY5fT1wsbq2AT+GkuInsow==} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node-es@1.1.0: + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + + didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + + diffie-hellman@5.0.3: + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + + dijkstrajs@1.0.3: + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dotenv@14.3.2: + resolution: {integrity: sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==} + engines: {node: '>=12'} + + dotenv@16.5.0: + resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} + engines: {node: '>=12'} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + draggabilly@3.0.0: + resolution: {integrity: sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ==} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexify@4.1.3: + resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + eciesjs@0.4.15: + resolution: {integrity: sha512-r6kEJXDKecVOCj2nLMuXK/FCPeurW33+3JRpfXVbjLja3XUYFfD9I/JBreH6sUyzcm3G/YQboBjMla6poKeSdA==} + engines: {bun: '>=1', deno: '>=2', node: '>=16'} + + ecpair@2.1.0: + resolution: {integrity: sha512-cL/mh3MtJutFOvFc27GPZE2pWL3a3k4YvzUWEOvilnfZVlH3Jwgx/7d6tlD7/75tNk8TG2m+7Kgtz0SI1tWcqw==} + engines: {node: '>=8.0.0'} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.5.160: + resolution: {integrity: sha512-8yQk54/CoCQT8GX3zuxqPBwMAQuIr6dWI/qO8Aah/JAZwB5XmCbEElsqb1n4pzc2vpkTdfc/kbyNPJOjswfbgg==} + + elliptic@6.6.1: + resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + encode-utf8@1.0.3: + resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + encoding@0.1.12: + resolution: {integrity: sha512-bl1LAgiQc4ZWr++pNYUdRe/alecaHFeHxIJ/pNciqGdKXghaTCOwKkbKp6ye7pKZGu/GcaSXFk8PBVhgs+dJdA==} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + engine.io-client@6.6.3: + resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==} + + engine.io-parser@5.2.3: + resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} + engines: {node: '>=10.0.0'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.0: + resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + es-abstract@1.23.10: + resolution: {integrity: sha512-MtUbM072wlJNyeYAe0mhzrD+M6DIJa96CZAOBBrhDbgKnB4MApIKefcyAB1eOdYn8cUNZgvwBvEzdoAYsxgEIw==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-iterator-helpers@1.2.1: + resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es-toolkit@1.33.0: + resolution: {integrity: sha512-X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg==} + + es6-promise@4.2.8: + resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + + es6-promisify@5.0.0: + resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-config-next@14.2.25: + resolution: {integrity: sha512-BwuRQJeqw4xP/fkul/WWjivwbaLs8AjvuMzQCC+nJI65ZVhnVolWs6tk5VSD92xPHu96gSTahfaSkQjIRtJ3ag==} + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: '>=3.3.1' + peerDependenciesMeta: + typescript: + optional: true + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-import-resolver-typescript@3.10.1: + resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + + eslint-module-utils@2.12.0: + resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-import@2.31.0: + resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jsx-a11y@6.10.2: + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 + + eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: + resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react@7.37.5: + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + hasBin: true + + esm@3.2.25: + resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} + engines: {node: '>=6'} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + eth-block-tracker@7.1.0: + resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==} + engines: {node: '>=14.0.0'} + + eth-json-rpc-filters@6.0.1: + resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==} + engines: {node: '>=14.0.0'} + + eth-query@2.1.2: + resolution: {integrity: sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==} + + eth-rpc-errors@4.0.3: + resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==} + + ethereum-cryptography@0.1.3: + resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} + + ethereum-cryptography@1.2.0: + resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==} + + ethereum-cryptography@2.2.1: + resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + + ethereumjs-util@7.1.5: + resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} + engines: {node: '>=10.0.0'} + + ethers@5.7.2: + resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + + ethers@6.13.5: + resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==} + engines: {node: '>=14.0.0'} + + ethers@6.14.3: + resolution: {integrity: sha512-qq7ft/oCJohoTcsNPFaXSQUm457MA5iWqkf1Mb11ujONdg7jBI6sAOrHaTi3j0CBqIGFSCeR/RMc+qwRRub7IA==} + engines: {node: '>=14.0.0'} + + ev-emitter@2.1.2: + resolution: {integrity: sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q==} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + evp_bytestokey@1.0.3: + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + exponential-backoff@3.1.2: + resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + extension-port-stream@3.0.0: + resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} + engines: {node: '>=12.0.0'} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + eyes@0.1.8: + resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} + engines: {node: '> 0.1.90'} + + fast-copy@3.0.2: + resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-redact@3.5.0: + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} + engines: {node: '>=6'} + + fast-safe-stringify@2.1.1: + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + + fast-stable-stringify@1.0.0: + resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==} + + fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fdir@6.4.5: + resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fetch@1.1.0: + resolution: {integrity: sha512-5O8TwrGzoNblBG/jtK4NFuZwNCkZX6s5GfRNOaGtm+QGJEuNakSC/i2RW0R93KX6E0jVjNXm6O3CRN4Ql3K+yA==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + + finalhandler@1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-replace@3.0.0: + resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + engines: {node: '>=4.0.0'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + flow-enums-runtime@0.0.6: + resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} + + flow-parser@0.272.1: + resolution: {integrity: sha512-rQjypovSgZ739VukA3G1bC+9TtQPBX+T3SiuEOoH/voGegTCfGvCx6/TrLbUn1ptNhQ469hdBrqzwIojKT0YXQ==} + engines: {node: '>=0.4.0'} + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + form-data@4.0.2: + resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==} + engines: {node: '>= 6'} + + fp-ts@1.19.3: + resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-nonce@1.0.1: + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-size@3.0.0: + resolution: {integrity: sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw==} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@7.1.7: + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + google-protobuf@3.21.4: + resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + graphql-request@6.1.0: + resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} + peerDependencies: + graphql: 14 - 16 + + graphql@16.11.0: + resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + + h3@1.15.3: + resolution: {integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==} + + hardhat-watcher@2.5.0: + resolution: {integrity: sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==} + peerDependencies: + hardhat: ^2.0.0 + + hardhat@2.24.1: + resolution: {integrity: sha512-3iwrO2liEGCw1rz/l/mlB1rSNexCc4CFcMj0DlvjXGChzmD3sGUgLwWDOZPf+ya8MEm5ZhO1oprRVmb/wVi0YA==} + hasBin: true + peerDependencies: + ts-node: '*' + typescript: '*' + peerDependenciesMeta: + ts-node: + optional: true + typescript: + optional: true + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hash-base@3.0.5: + resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} + engines: {node: '>= 0.10'} + + hash-base@3.1.0: + resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} + engines: {node: '>=4'} + + hash.js@1.1.7: + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + help-me@5.0.0: + resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} + + hermes-estree@0.23.1: + resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} + + hermes-estree@0.25.1: + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} + + hermes-parser@0.23.1: + resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} + + hermes-parser@0.25.1: + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + + hmac-drbg@1.0.1: + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hpke-js@1.6.2: + resolution: {integrity: sha512-HllaSHiEEd9bZ9L0F0hFERSu2iAWDptkzVUqxra3lTapSPP8Bnyc6J9Viwn/oktPLBXOJpX57lfXSHYsh4HLag==} + engines: {node: '>=16.0.0'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + human-id@4.1.1: + resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==} + hasBin: true + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + idb-keyval@6.2.2: + resolution: {integrity: sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.4: + resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==} + engines: {node: '>= 4'} + + image-size@2.0.2: + resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==} + engines: {node: '>=16.x'} + hasBin: true + + immutable@4.3.7: + resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + install@0.13.0: + resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==} + engines: {node: '>= 0.10'} + + int64-buffer@1.1.0: + resolution: {integrity: sha512-94smTCQOvigN4d/2R/YDjz8YVG0Sufvv2aAh8P5m42gwhCsDAJqnbNOrxJsrADuAFAA69Q/ptGzxvNcNuIJcvw==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + io-ts@1.10.4: + resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-standalone-pwa@0.1.1: + resolution: {integrity: sha512-9Cbovsa52vNQCjdXOzeQq5CnCbAcRk05aU62K20WO372NrTv0NxibLFCK6lQ4/iZEFdEA3p3t2VNOn8AJ53F5g==} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isomorphic-fetch@3.0.0: + resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} + + isomorphic-ws@4.0.1: + resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} + peerDependencies: + ws: '>=8.17.1' + + isomorphic-ws@5.0.0: + resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + peerDependencies: + ws: '>=8.17.1' + + isows@1.0.3: + resolution: {integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==} + peerDependencies: + ws: '>=8.17.1' + + isows@1.0.6: + resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==} + peerDependencies: + ws: '>=8.17.1' + + isows@1.0.7: + resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==} + peerDependencies: + ws: '>=8.17.1' + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + + jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jake@10.9.2: + resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} + engines: {node: '>=10'} + hasBin: true + + jayson@4.2.0: + resolution: {integrity: sha512-VfJ9t1YLwacIubLhONk0KFeosUBwstRWQ0IRT1KDjEjnVnSOVHC3uwugyV7L0c7R9lpVyrUGT2XWiBA1UTtpyg==} + engines: {node: '>=8'} + hasBin: true + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-localstorage-mock@2.4.26: + resolution: {integrity: sha512-owAJrYnjulVlMIXOYQIPRCCn3MmqI3GzgfZCXdD3/pmwrIvFMXcKVWZ+aMc44IzaASapg0Z4SEFxR+v5qxDA2w==} + engines: {node: '>=6.16.0'} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@29.4.3: + resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jiti@1.21.7: + resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} + hasBin: true + + jju@1.4.0: + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + js-base64@3.7.7: + resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} + + js-sha256@0.9.0: + resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==} + + js-sha3@0.8.0: + resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbi@3.2.5: + resolution: {integrity: sha512-aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ==} + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsc-android@250231.0.0: + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} + + jsc-safe-url@0.2.4: + resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + + jscodeshift@0.14.0: + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-rpc-engine@6.1.0: + resolution: {integrity: sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==} + engines: {node: '>=10.0.0'} + + json-rpc-random-id@1.0.1: + resolution: {integrity: sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stable-stringify@1.3.0: + resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==} + engines: {node: '>= 0.4'} + + json-stream-stringify@3.1.6: + resolution: {integrity: sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==} + engines: {node: '>=7.10.1'} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonify@0.0.1: + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} + + jsqr@1.4.0: + resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==} + + jssha@3.2.0: + resolution: {integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + jwt-decode@4.0.0: + resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==} + engines: {node: '>=18'} + + keccak@3.0.4: + resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} + engines: {node: '>=10.0.0'} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + keyvaluestorage-interface@1.0.0: + resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kzg-wasm@0.5.0: + resolution: {integrity: sha512-LK1M0dm62NKEyhaM6S0pMHKzyAB+KySUlbT+z/+N6fZvcg0jEqSAiz6YHPk8MWIadlT0vFx1uT6Pf9dLzhTn4g==} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + libphonenumber-js@1.12.8: + resolution: {integrity: sha512-f1KakiQJa9tdc7w1phC2ST+DyxWimy9c3g3yeF+84QtEanJr2K77wAmBPP22riU05xldniHsvXuflnLZ4oysqA==} + + libsodium-sumo@0.7.15: + resolution: {integrity: sha512-5tPmqPmq8T8Nikpm1Nqj0hBHvsLFCXvdhBFV7SGOitQPZAA6jso8XoL0r4L7vmfKXr486fiQInvErHtEvizFMw==} + + libsodium-wrappers-sumo@0.7.15: + resolution: {integrity: sha512-aSWY8wKDZh5TC7rMvEdTHoyppVq/1dTSAeAR7H6pzd6QRT3vQWcT5pGwCotLcpPEOLXX6VvqihSPkpEhYAjANA==} + + lighthouse-logger@1.4.2: + resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + + lit-element@4.2.0: + resolution: {integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==} + + lit-html@3.3.0: + resolution: {integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==} + + lit@3.1.0: + resolution: {integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.isequal@4.5.0: + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.throttle@4.1.1: + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + loglevel@1.9.2: + resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} + engines: {node: '>= 0.6.0'} + + long@5.2.5: + resolution: {integrity: sha512-e0r9YBBgNCq1D1o5Dp8FMH0N5hsFtXDBiVa0qoJPHpakvZkmDKPRoGffZJII/XsHvj9An9blm+cRJ01yQqU+Dw==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru_map@0.3.3: + resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} + + lucide-react@0.363.0: + resolution: {integrity: sha512-AlsfPCsXQyQx7wwsIgzcKOL9LwC498LIMAo+c0Es5PkHJa33xwmYAkkSoKoJWWWSYQEStqu58/jT4tL2gi32uQ==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 + + lucide-react@0.426.0: + resolution: {integrity: sha512-aby5G+Zt+LIIEU0n9900XQNJFJUcs7/S+jOEgIhkV08NX3kGx1zxALKh1JvAKcYqutWLg07exbnYvh66szhrRA==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc + + lunr@2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + + marky@1.3.0: + resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + md5.js@1.3.5: + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + merge-options@3.0.4: + resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} + engines: {node: '>=10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + merkletreejs@0.4.1: + resolution: {integrity: sha512-W2VSHeGTdAnWtedee+pgGn7SHvncMdINnMeHAaXrfarSaMNLff/pm7RCr/QXYxN6XzJFgJZY+28ejO0lAosW4A==} + engines: {node: '>= 7.6.0'} + + metro-babel-transformer@0.81.5: + resolution: {integrity: sha512-oKCQuajU5srm+ZdDcFg86pG/U8hkSjBlkyFjz380SZ4TTIiI5F+OQB830i53D8hmqmcosa4wR/pnKv8y4Q3dLw==} + engines: {node: '>=18.18'} + + metro-cache-key@0.81.5: + resolution: {integrity: sha512-lGWnGVm1UwO8faRZ+LXQUesZSmP1LOg14OVR+KNPBip8kbMECbQJ8c10nGesw28uQT7AE0lwQThZPXlxDyCLKQ==} + engines: {node: '>=18.18'} + + metro-cache@0.81.5: + resolution: {integrity: sha512-wOsXuEgmZMZ5DMPoz1pEDerjJ11AuMy9JifH4yNW7NmWS0ghCRqvDxk13LsElzLshey8C+my/tmXauXZ3OqZgg==} + engines: {node: '>=18.18'} + + metro-config@0.81.5: + resolution: {integrity: sha512-oDRAzUvj6RNRxratFdcVAqtAsg+T3qcKrGdqGZFUdwzlFJdHGR9Z413sW583uD2ynsuOjA2QB6US8FdwiBdNKg==} + engines: {node: '>=18.18'} + + metro-core@0.81.5: + resolution: {integrity: sha512-+2R0c8ByfV2N7CH5wpdIajCWa8escUFd8TukfoXyBq/vb6yTCsznoA25FhNXJ+MC/cz1L447Zj3vdUfCXIZBwg==} + engines: {node: '>=18.18'} + + metro-file-map@0.81.5: + resolution: {integrity: sha512-mW1PKyiO3qZvjeeVjj1brhkmIotObA3/9jdbY1fQQYvEWM6Ml7bN/oJCRDGn2+bJRlG+J8pwyJ+DgdrM4BsKyg==} + engines: {node: '>=18.18'} + + metro-minify-terser@0.81.5: + resolution: {integrity: sha512-/mn4AxjANnsSS3/Bb+zA1G5yIS5xygbbz/OuPaJYs0CPcZCaWt66D+65j4Ft/nJkffUxcwE9mk4ubpkl3rjgtw==} + engines: {node: '>=18.18'} + + metro-resolver@0.81.5: + resolution: {integrity: sha512-6BX8Nq3g3go3FxcyXkVbWe7IgctjDTk6D9flq+P201DfHHQ28J+DWFpVelFcrNTn4tIfbP/Bw7u/0g2BGmeXfQ==} + engines: {node: '>=18.18'} + + metro-runtime@0.81.5: + resolution: {integrity: sha512-M/Gf71ictUKP9+77dV/y8XlAWg7xl76uhU7ggYFUwEdOHHWPG6gLBr1iiK0BmTjPFH8yRo/xyqMli4s3oGorPQ==} + engines: {node: '>=18.18'} + + metro-source-map@0.81.5: + resolution: {integrity: sha512-Jz+CjvCKLNbJZYJTBeN3Kq9kIJf6b61MoLBdaOQZJ5Ajhw6Pf95Nn21XwA8BwfUYgajsi6IXsp/dTZsYJbN00Q==} + engines: {node: '>=18.18'} + + metro-symbolicate@0.81.5: + resolution: {integrity: sha512-X3HV3n3D6FuTE11UWFICqHbFMdTavfO48nXsSpnNGFkUZBexffu0Xd+fYKp+DJLNaQr3S+lAs8q9CgtDTlRRuA==} + engines: {node: '>=18.18'} + hasBin: true + + metro-transform-plugins@0.81.5: + resolution: {integrity: sha512-MmHhVx/1dJC94FN7m3oHgv5uOjKH8EX8pBeu1pnPMxbJrx6ZuIejO0k84zTSaQTZ8RxX1wqwzWBpXAWPjEX8mA==} + engines: {node: '>=18.18'} + + metro-transform-worker@0.81.5: + resolution: {integrity: sha512-lUFyWVHa7lZFRSLJEv+m4jH8WrR5gU7VIjUlg4XmxQfV8ngY4V10ARKynLhMYPeQGl7Qvf+Ayg0eCZ272YZ4Mg==} + engines: {node: '>=18.18'} + + metro@0.81.5: + resolution: {integrity: sha512-YpFF0DDDpDVygeca2mAn7K0+us+XKmiGk4rIYMz/CRdjFoCGqAei/IQSpV0UrGfQbToSugpMQeQJveaWSH88Hg==} + engines: {node: '>=18.18'} + hasBin: true + + micro-eth-signer@0.14.0: + resolution: {integrity: sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==} + + micro-ftch@0.3.1: + resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} + + micro-packed@0.7.3: + resolution: {integrity: sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + miller-rabin@4.0.1: + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} + hasBin: true + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimalistic-crypto-utils@1.0.1: + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mipd@0.0.7: + resolution: {integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mnemonist@0.38.5: + resolution: {integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==} + + mocha@10.8.2: + resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==} + engines: {node: '>= 14.0.0'} + hasBin: true + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + multiformats@9.9.0: + resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} + + mute-stream@1.0.0: + resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nan@2.22.2: + resolution: {integrity: sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + napi-postinstall@0.2.4: + resolution: {integrity: sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + next-themes@0.3.0: + resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==} + peerDependencies: + react: ^16.8 || ^17 || ^18 + react-dom: ^16.8 || ^17 || ^18 + + next@14.2.25: + resolution: {integrity: sha512-N5M7xMc4wSb4IkPvEV5X2BRRXUmhVHNyaXwEM86+voXthSZz8ZiRyQW4p9mwAoAPIm6OzuVZtn7idgEJeAJN3Q==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + + next@15.3.2: + resolution: {integrity: sha512-CA3BatMyHkxZ48sgOCLdVHjFU36N7TF1HhqAHLFOkV6buwZnvMI84Cug8xD56B9mCuKrqXnLn94417GrZ/jjCQ==} + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-addon-api@2.0.2: + resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + + node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + + node-addon-api@5.1.0: + resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + + node-addon-api@8.3.1: + resolution: {integrity: sha512-lytcDEdxKjGJPTLEfW4mYMigRezMlyJY8W4wxJK8zE533Jlb8L8dRuObJFWg2P+AuOIxoCgKF+2Oq4d4Zd0OUA==} + engines: {node: ^18 || ^20 || >= 21} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-fetch-native@1.6.6: + resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + + node-gyp-build@4.8.4: + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} + hasBin: true + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-mock-http@1.0.0: + resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm@9.9.4: + resolution: {integrity: sha512-NzcQiLpqDuLhavdyJ2J3tGJ/ni/ebcqHVFZkv1C4/6lblraUPbPgCJ4Vhb4oa3FFhRa2Yj9gA58jGH/ztKueNQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + bundledDependencies: + - '@isaacs/string-locale-compare' + - '@npmcli/arborist' + - '@npmcli/config' + - '@npmcli/fs' + - '@npmcli/map-workspaces' + - '@npmcli/package-json' + - '@npmcli/promise-spawn' + - '@npmcli/run-script' + - abbrev + - archy + - cacache + - chalk + - ci-info + - cli-columns + - cli-table3 + - columnify + - fastest-levenshtein + - fs-minipass + - glob + - graceful-fs + - hosted-git-info + - ini + - init-package-json + - is-cidr + - json-parse-even-better-errors + - libnpmaccess + - libnpmdiff + - libnpmexec + - libnpmfund + - libnpmhook + - libnpmorg + - libnpmpack + - libnpmpublish + - libnpmsearch + - libnpmteam + - libnpmversion + - make-fetch-happen + - minimatch + - minipass + - minipass-pipeline + - ms + - node-gyp + - nopt + - normalize-package-data + - npm-audit-report + - npm-install-checks + - npm-package-arg + - npm-pick-manifest + - npm-profile + - npm-registry-fetch + - npm-user-validate + - npmlog + - p-map + - pacote + - parse-conflict-json + - proc-log + - qrcode-terminal + - read + - semver + - sigstore + - spdx-expression-parse + - ssri + - supports-color + - tar + - text-table + - tiny-relative-date + - treeverse + - validate-npm-package-name + - which + - write-file-atomic + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nullthrows@1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + + ob1@0.81.5: + resolution: {integrity: sha512-iNpbeXPLmaiT9I5g16gFFFjsF3sGxLpYG2EGP3dfFB4z+l9X60mp/yRzStHhMtuNt8qmf7Ww80nOPQHngHhnIQ==} + engines: {node: '>=18.18'} + + obj-multiplex@1.0.0: + resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + obliterator@2.0.5: + resolution: {integrity: sha512-42CPE9AhahZRsMNslczq0ctAEtqk8Eka26QofnqC346BZdHDySk3LWka23LI7ULIw11NmltpiLagIq8gBozxTw==} + + oblivious-set@1.4.0: + resolution: {integrity: sha512-szyd0ou0T8nsAqHtprRcP3WidfsN1TnAR5yWXf2mFCEr5ek3LEOkT6EZ/92Xfs74HIdyhG5WkGxIssMU0jBaeg==} + engines: {node: '>=16'} + + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} + + on-exit-leak-free@0.2.0: + resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} + + on-exit-leak-free@2.1.2: + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} + engines: {node: '>=14.0.0'} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + opencollective-postinstall@2.0.3: + resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} + hasBin: true + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + ox@0.4.4: + resolution: {integrity: sha512-oJPEeCDs9iNiPs6J0rTx+Y0KGeCGyCAA3zo94yZhm8G5WpOxrwUtn2Ie/Y8IyARSqqY/j9JTKA3Fc1xs1DvFnw==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + ox@0.6.7: + resolution: {integrity: sha512-17Gk/eFsFRAZ80p5eKqv89a57uXjd3NgIf1CaXojATPBuujVc/fQSVhBeAU9JCRB+k7J50WQAyWTxK19T9GgbA==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + ox@0.6.9: + resolution: {integrity: sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + ox@0.7.1: + resolution: {integrity: sha512-+k9fY9PRNuAMHRFIUbiK9Nt5seYHHzSQs9Bj+iMETcGtlpS7SmBzcGSVUQO3+nqGLEiNK4598pHNFlVRaZbRsg==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-manager-detector@0.2.11: + resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==} + + pako@2.1.0: + resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-asn1@5.1.7: + resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} + engines: {node: '>= 0.10'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pbkdf2@3.1.2: + resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} + engines: {node: '>=0.12'} + + permissionless@0.1.49: + resolution: {integrity: sha512-blA6Uaj4+FpX4MKSNEqvydguFgHX+t9/EUSilN9QC0ngLCjWNbTE8OX1nPSOp2PvH5H29bVqPOBxGL8cngxBHA==} + peerDependencies: + viem: '>=2.14.1 <2.18.0' + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pino-abstract-transport@0.5.0: + resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} + + pino-abstract-transport@2.0.0: + resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} + + pino-pretty@11.3.0: + resolution: {integrity: sha512-oXwn7ICywaZPHmu3epHGU2oJX4nPmKvHvB/bwrJHlGcbEWaVcotkpyVHMKLKmiVryWYByNp0jpgAcXpFJDXJzA==} + hasBin: true + + pino-std-serializers@4.0.0: + resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} + + pino@7.11.0: + resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} + hasBin: true + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pngjs@5.0.0: + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} + + pony-cause@2.1.11: + resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} + engines: {node: '>=12.0.0'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-import@16.1.0: + resolution: {integrity: sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==} + engines: {node: '>=18.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.2.0: + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-nested@6.2.0: + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-selector-parser@7.1.0: + resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.3: + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + engines: {node: ^10 || ^12 || >=14} + + preact@10.26.7: + resolution: {integrity: sha512-43xS+QYc1X1IPbw03faSgY6I6OYWcLrJRv3hU0+qMOfh/XCHcP0MX2CVjNARYR2cC/guu975sta4OcjlczxD7g==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@3.5.3: + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} + engines: {node: '>=14'} + hasBin: true + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process-warning@1.0.0: + resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + protobufjs@7.4.0: + resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==} + engines: {node: '>=12.0.0'} + + proxy-compare@2.6.0: + resolution: {integrity: sha512-8xuCeM3l8yqdmbPoYeLbrAXCBWu19XEYc5/F28f5qOaoAIMyfmBUkl5axiK+x9olUvRlcekvnm98AP9RDngOIw==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + public-encrypt@4.0.3: + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + pushdata-bitcoin@1.0.1: + resolution: {integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==} + + pvtsutils@1.3.6: + resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==} + + pvutils@1.1.3: + resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} + engines: {node: '>=6.0.0'} + + qr.js@0.0.0: + resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} + + qrcode.react@1.0.1: + resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} + peerDependencies: + react: ^15.5.3 || ^16.0.0 || ^17.0.0 + + qrcode@1.5.3: + resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} + engines: {node: '>=10.13.0'} + hasBin: true + + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} + engines: {node: '>=10.13.0'} + hasBin: true + + quansync@0.2.10: + resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} + + query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-format-unescaped@4.0.4: + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} + + raf-schd@4.0.3: + resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + randomfill@1.0.4: + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + react-apple-login@1.1.6: + resolution: {integrity: sha512-ySV6ax0aB+ksA7lKzhr4MvsgjwSH068VtdHJXS+7rL380IJnNQNl14SszR31k3UqB8q8C1H1oyjJFGq4MyO6tw==} + engines: {node: '>=8', npm: '>=5'} + peerDependencies: + prop-types: ^15.5.4 + react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + + react-devtools-core@5.3.2: + resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==} + + react-dom@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-hook-form@7.56.4: + resolution: {integrity: sha512-Rob7Ftz2vyZ/ZGsQZPaRdIefkgOSrQSPXfqBdvOPwJfoGnjwRJUs7EM7Kc1mcoDv3NOtqBzPGbcMB8CGn9CKgw==} + engines: {node: '>=18.0.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 + + react-international-phone@4.5.0: + resolution: {integrity: sha512-wjwHv+VfiwM49B5/6El4Z5vZKmf3ILpUeiOCI9X+b0Dq4g5nL8gROcwCdVcTXywxznbDSoxSassBX3i9tPZX6g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-is@19.1.0: + resolution: {integrity: sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==} + + react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + + react-modal@3.16.3: + resolution: {integrity: sha512-yCYRJB5YkeQDQlTt17WGAgFJ7jr2QYcWa1SHqZ3PluDmnKJ/7+tVU+E6uKyZ0nODaeEj+xCpK4LcSnKXLMC0Nw==} + peerDependencies: + react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19 + react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19 + + react-native-inappbrowser-reborn@3.7.0: + resolution: {integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==} + peerDependencies: + react-native: '>=0.56' + + react-native-keychain@8.1.0: + resolution: {integrity: sha512-MI5YKO8KKmaa2iBGFDiM/cdJ2E6MXaOIRLS1OyxAM9KP5tnpsLp6zowOAaeuc3nBLZ6D/J/EvZSBRggzSGnUGQ==} + + react-native-passkey@3.0.0: + resolution: {integrity: sha512-U26Jaz8BeN+LxB9a5rwJiDHIYNBj7sobfnlQnkfyuqylKnSHxzThOnYcJq3WGCSzTYNI5DT0xUtArQkc482fkQ==} + peerDependencies: + react: '*' + react-native: '*' + + react-native@0.76.5: + resolution: {integrity: sha512-op2p2kB+lqMF1D7AdX4+wvaR0OPFbvWYs+VBE7bwsb99Cn9xISrLRLAgFflZedQsa5HvnOGrULhtnmItbIKVVw==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@types/react': ^18.2.6 + react: ^18.2.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-qr-reader@2.2.1: + resolution: {integrity: sha512-EL5JEj53u2yAOgtpAKAVBzD/SiKWn0Bl7AZy6ZrSf1lub7xHwtaXe6XSx36Wbhl1VMGmvmrwYMRwO1aSCT2fwA==} + peerDependencies: + react: ~16 + react-dom: ~16 + + react-redux@9.2.0: + resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==} + peerDependencies: + '@types/react': ^18.2.25 || ^19 + react: ^18.0 || ^19 + redux: ^5.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + redux: + optional: true + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react-remove-scroll-bar@2.3.8: + resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-remove-scroll@2.7.0: + resolution: {integrity: sha512-sGsQtcjMqdQyijAHytfGEELB8FufGbfXIsvUTe+NLx1GDRJCXtCFLBLUI1eyZCKXXvbEU2C6gai0PZKoIE9Vbg==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + react-style-singleton@2.2.3: + resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + react-transition-group@4.4.5: + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + + react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-stream@4.7.0: + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + readline@1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + + readonly-date@1.0.0: + resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} + + real-require@0.1.0: + resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} + engines: {node: '>= 12.13.0'} + + recast@0.21.5: + resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + engines: {node: '>= 4'} + + reduce-flatten@2.0.0: + resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} + engines: {node: '>=6'} + + redux@5.0.1: + resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + + resolve@1.17.0: + resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + ripemd160@2.0.2: + resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + + ripple-address-codec@5.0.0: + resolution: {integrity: sha512-de7osLRH/pt5HX2xw2TRJtbdLLWHu0RXirpQaEeCnWKY5DYHykh3ETSkofvm0aX0LJiV7kwkegJxQkmbO94gWw==} + engines: {node: '>= 16'} + + ripple-binary-codec@2.3.0: + resolution: {integrity: sha512-CPMzkknXlgO9Ow5Qa5iqQm0vOIlJyN8M1bc8etyhLw2Xfrer6bPzLA8/apuKlGQ+XdznYSKPBz5LAhwYjaDAcA==} + engines: {node: '>= 18'} + + ripple-keypairs@2.0.0: + resolution: {integrity: sha512-b5rfL2EZiffmklqZk1W+dvSy97v3V/C7936WxCCgDynaGPp7GE6R2XO7EU9O2LlM/z95rj870IylYnOQs+1Rag==} + engines: {node: '>= 16'} + + rlp@2.2.7: + resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==} + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-node-externals@6.1.2: + resolution: {integrity: sha512-2TWan0u0/zHcgPrKpIPgKSY8OMqwDAYD380I0hxx7iUQw8mrN34DWwG9sQUMEo5Yy4xd6/5QEAySYgiKN9fdBQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + rollup: ^3.0.0 || ^4.0.0 + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup-preserve-directives@1.1.3: + resolution: {integrity: sha512-oXqxd6ZzkoQej8Qt0k+S/yvO2+S4CEVEVv2g85oL15o0cjAKTKEuo2MzyA8FcsBBXbtytBzBMFAbhvQg4YyPUQ==} + peerDependencies: + rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup@4.41.1: + resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rpc-websockets@9.1.1: + resolution: {integrity: sha512-1IXGM/TfPT6nfYMIXkJdzn+L4JEsmb0FL1O2OBjaH03V3yuUDdKFulGLMFG6ErV+8pZ5HVC0limve01RyO+saA==} + + rtcpeerconnection-shim@1.2.15: + resolution: {integrity: sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw==} + engines: {node: '>=6.0.0', npm: '>=3.10.0'} + + run-async@3.0.0: + resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + salmon-adapter-sdk@1.1.1: + resolution: {integrity: sha512-28ysSzmDjx2AbotxSggqdclh9MCwlPJUldKkCph48oS5Xtwu0QOg8T9ZRHS2Mben4Y8sTq6VvxXznKssCYFBJA==} + peerDependencies: + '@solana/web3.js': ^1.44.3 + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + scheduler@0.24.0-canary-efb381bbf-20230505: + resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + + scrypt-js@3.0.1: + resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} + + sdp@2.12.0: + resolution: {integrity: sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw==} + + secp256k1@5.0.1: + resolution: {integrity: sha512-lDFs9AAIaWP9UCdtWrotXWWF9t8PWgQDcxqgAnpM9rMqxb3Oaq2J0thzPVSxBwdJgyQtkU/sYtFtbM1RSt/iYA==} + engines: {node: '>=18.0.0'} + + secure-json-parse@2.7.0: + resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + send@0.19.0: + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} + engines: {node: '>= 0.8.0'} + + serialize-error@2.1.0: + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-static@1.16.2: + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + sha.js@2.4.11: + resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} + hasBin: true + + sha256-uint8array@0.10.7: + resolution: {integrity: sha512-1Q6JQU4tX9NqsDGodej6pkrUVQVNapLZnvkwIhddH/JqzBZF1fSaxSWNY6sziXBE8aEa2twtGkXUrwzGeZCMpQ==} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + sharp@0.34.2: + resolution: {integrity: sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.2: + resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + + socket.io-client@4.8.1: + resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==} + engines: {node: '>=10.0.0'} + + socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} + engines: {node: '>=10.0.0'} + + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} + + socks@2.8.4: + resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + solady@0.0.235: + resolution: {integrity: sha512-JUEXLDG7ag3HmqUnrDG7ilhafH6R9bFPpwV63O2kH4UbnS2+gRGEOqqy4k01O7tHjo3MWkDD0cpG+UY9pjy/fQ==} + + solc@0.8.13: + resolution: {integrity: sha512-C0yTN+rjEOGO6uVOXI8+EKa75SFMuZpQ2tryex4QxWIg0HRWZvCHKfVPuLZ5wx06Sb6GBp6uQA5yqQyXZnXOJw==} + engines: {node: '>=10.0.0'} + hasBin: true + + solc@0.8.26: + resolution: {integrity: sha512-yiPQNVf5rBFHwN6SIf3TUUvVAFKcQqmSUFeq+fb6pNRCo0ZCgpYOZDi3BVoezCPIAcKrVYd/qXlBLUP9wVrZ9g==} + engines: {node: '>=10.0.0'} + hasBin: true + + sonic-boom@2.8.0: + resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} + + sonic-boom@4.2.0: + resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==} + + sonner@1.7.4: + resolution: {integrity: sha512-DIS8z4PfJRbIyfVFDVnK9rO3eYDtse4Omcm6bt0oEr5/jtLgysmjuBl1frJ9E/EQZrFmKx2A8m/s5s9CRXIzhw==} + peerDependencies: + react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + spawndamnit@3.0.1: + resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==} + + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + stable-hash@0.0.5: + resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + stacktrace-parser@0.1.11: + resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==} + engines: {node: '>=6'} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stream-browserify@3.0.0: + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + + stream-chain@2.2.5: + resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} + + stream-json@1.9.1: + resolution: {integrity: sha512-uWkjJ+2Nt/LO9Z/JyKZbMusL8Dkh97uUBTv3AJQ74y07lVahLY4eEFsPsE97pxYBwr8nnjMAIch5eqI0gPShyw==} + + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + strict-event-emitter-types@2.0.0: + resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==} + + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + + string-format@2.0.0: + resolution: {integrity: sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.repeat@1.0.0: + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + styled-jsx@5.1.1: + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + styled-jsx@5.1.6: + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + superstruct@0.15.5: + resolution: {integrity: sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ==} + + superstruct@1.0.4: + resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==} + engines: {node: '>=14.0.0'} + + superstruct@2.0.2: + resolution: {integrity: sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==} + engines: {node: '>=14.0.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + symbol-observable@2.0.3: + resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} + engines: {node: '>=0.10'} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + symbol.inspect@1.0.1: + resolution: {integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==} + + table-layout@1.0.2: + resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} + engines: {node: '>=8.0.0'} + + tailwind-merge@2.6.0: + resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==} + + tailwindcss-animate@1.0.7: + resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} + peerDependencies: + tailwindcss: '>=3.0.0 || insiders' + + tailwindcss@3.4.17: + resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} + engines: {node: '>=14.0.0'} + hasBin: true + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + terser@5.40.0: + resolution: {integrity: sha512-cfeKl/jjwSR5ar7d0FGmave9hFGJT8obyo0z+CrQOylLDbk7X81nPU6vq9VORa5jU30SkDnT2FXjLbR8HLP+xA==} + engines: {node: '>=10'} + hasBin: true + + teslabot@1.5.0: + resolution: {integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==} + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-encoding-utf-8@1.0.2: + resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + thread-stream@0.15.2: + resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} + + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tiny-secp256k1@1.1.7: + resolution: {integrity: sha512-eb+F6NabSnjbLwNoC+2o5ItbmP1kg7HliWue71JgLegQt6A5mTN8YbvTLCazdlg6e5SV6A+r8OGvZYskdlmhqQ==} + engines: {node: '>=6.0.0'} + + tiny-secp256k1@2.2.3: + resolution: {integrity: sha512-SGcL07SxcPN2nGKHTCvRMkQLYPSoeFcvArUSCYtjVARiFAWU44cCIqYS0mYAU6nY7XfvwURuTIGo2Omt3ZQr0Q==} + engines: {node: '>=14.0.0'} + + tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toformat@2.0.0: + resolution: {integrity: sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + toml@3.0.0: + resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + + treeify@1.1.0: + resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==} + engines: {node: '>=0.6'} + + tronweb@6.0.3: + resolution: {integrity: sha512-5FKHuGiSqleQ2ASxio7h9URsJ5w8nCjfI0hZawTWefbgeVM1r0sZ7qfGMWl3xjKTLvILrnocwB97TQYBnL0Faw==} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-command-line-args@2.5.1: + resolution: {integrity: sha512-H69ZwTw3rFHb5WYpQya40YAX2/w7Ut75uUECbgBIsLmM+BNuYnxsltfyyLMxy6sEeKxgijLTnQtLd0nKd6+IYw==} + hasBin: true + + ts-essentials@7.0.3: + resolution: {integrity: sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==} + peerDependencies: + typescript: '>=3.7.0' + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + ts-jest@29.3.4: + resolution: {integrity: sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + + ts-mixer@6.0.4: + resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsort@0.0.1: + resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==} + + tsx@3.14.0: + resolution: {integrity: sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==} + hasBin: true + + turbo-darwin-64@2.5.3: + resolution: {integrity: sha512-YSItEVBUIvAGPUDpAB9etEmSqZI3T6BHrkBkeSErvICXn3dfqXUfeLx35LfptLDEbrzFUdwYFNmt8QXOwe9yaw==} + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@2.5.3: + resolution: {integrity: sha512-5PefrwHd42UiZX7YA9m1LPW6x9YJBDErXmsegCkVp+GjmWrADfEOxpFrGQNonH3ZMj77WZB2PVE5Aw3gA+IOhg==} + cpu: [arm64] + os: [darwin] + + turbo-linux-64@2.5.3: + resolution: {integrity: sha512-M9xigFgawn5ofTmRzvjjLj3Lqc05O8VHKuOlWNUlnHPUltFquyEeSkpQNkE/vpPdOR14AzxqHbhhxtfS4qvb1w==} + cpu: [x64] + os: [linux] + + turbo-linux-arm64@2.5.3: + resolution: {integrity: sha512-auJRbYZ8SGJVqvzTikpg1bsRAsiI9Tk0/SDkA5Xgg0GdiHDH/BOzv1ZjDE2mjmlrO/obr19Dw+39OlMhwLffrw==} + cpu: [arm64] + os: [linux] + + turbo-windows-64@2.5.3: + resolution: {integrity: sha512-arLQYohuHtIEKkmQSCU9vtrKUg+/1TTstWB9VYRSsz+khvg81eX6LYHtXJfH/dK7Ho6ck+JaEh5G+QrE1jEmCQ==} + cpu: [x64] + os: [win32] + + turbo-windows-arm64@2.5.3: + resolution: {integrity: sha512-3JPn66HAynJ0gtr6H+hjY4VHpu1RPKcEwGATvGUTmLmYSYBQieVlnGDRMMoYN066YfyPqnNGCfhYbXfH92Cm0g==} + cpu: [arm64] + os: [win32] + + turbo@2.5.3: + resolution: {integrity: sha512-iHuaNcq5GZZnr3XDZNuu2LSyCzAOPwDuo5Qt+q64DfsTP1i3T2bKfxJhni2ZQxsvAoxRbuUK5QetJki4qc5aYA==} + hasBin: true + + tweetnacl-util@0.15.1: + resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==} + + tweetnacl@1.0.3: + resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.7.1: + resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} + engines: {node: '>=8'} + + type-fest@4.41.0: + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} + + typechain@8.3.2: + resolution: {integrity: sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q==} + hasBin: true + peerDependencies: + typescript: '>=4.3.0' + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedoc-plugin-markdown@4.6.3: + resolution: {integrity: sha512-86oODyM2zajXwLs4Wok2mwVEfCwCnp756QyhLGX2IfsdRYr1DXLCgJgnLndaMUjJD7FBhnLk2okbNE9PdLxYRw==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.28.x + + typedoc@0.28.5: + resolution: {integrity: sha512-5PzUddaA9FbaarUzIsEc4wNXCiO4Ot3bJNeMF2qKpYlTmM9TTaSHQ7162w756ERCkXER/+o2purRG6YOAv6EMA==} + engines: {node: '>= 18', pnpm: '>= 10'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x + + typeforce@1.18.0: + resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} + + typescript@5.1.3: + resolution: {integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==} + engines: {node: '>=14.17'} + hasBin: true + + typescript@5.4.3: + resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} + engines: {node: '>=14.17'} + hasBin: true + + typical@4.0.0: + resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + engines: {node: '>=8'} + + typical@5.2.0: + resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} + engines: {node: '>=8'} + + ua-is-frozen@0.1.2: + resolution: {integrity: sha512-RwKDW2p3iyWn4UbaxpP2+VxwqXh0jpvdxsYpZ5j/MLLiQOfbsV5shpgQiw93+KMYQPcteeMQ289MaAFzs3G9pw==} + + ua-parser-js@2.0.3: + resolution: {integrity: sha512-LZyXZdNttONW8LjzEH3Z8+6TE7RfrEiJqDKyh0R11p/kxvrV2o9DrT2FGZO+KVNs3k+drcIQ6C3En6wLnzJGpw==} + hasBin: true + + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + uint8array-tools@0.0.7: + resolution: {integrity: sha512-vrrNZJiusLWoFWBqz5Y5KMCgP9W9hnjZHzZiZRT8oNAkq3d5Z5Oe76jAvVVSRh4U8GGR90N2X1dWtrhvx6L8UQ==} + engines: {node: '>=14.0.0'} + + uint8array-tools@0.0.8: + resolution: {integrity: sha512-xS6+s8e0Xbx++5/0L+yyexukU7pz//Yg6IHg3BKhXotg1JcYtgxVcUctQ0HxLByiJzpAkNFawz1Nz5Xadzo82g==} + engines: {node: '>=14.0.0'} + + uint8arrays@3.1.0: + resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + undici-types@7.10.0: + resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==} + + undici@5.29.0: + resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==} + engines: {node: '>=14.0'} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unidragger@3.0.1: + resolution: {integrity: sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unload@2.4.1: + resolution: {integrity: sha512-IViSAm8Z3sRBYA+9wc0fLQmU9Nrxb16rcDmIiR6Y9LJSZzI7QY5QsDhqPpKOjAn0O9/kfK1TfNEMMAGPTIraPw==} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unrs-resolver@1.7.6: + resolution: {integrity: sha512-72mW/4N9ajUM3Pnw2CLFcsollrsfUuPl+/OW+AJsgmp5rnw7KuCre6I4EtoVBYrOy3DbVXnR33bL+Pfbdbek2Q==} + + unstorage@1.16.0: + resolution: {integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==} + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6.0.3 || ^7.0.0 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/kv': ^1.0.1 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + usb@2.15.0: + resolution: {integrity: sha512-BA9r7PFxyYp99wps1N70lIqdPb2Utcl2KkWohDtWUmhDBeM5hDH1Zl/L/CZvWxd5W3RUCNm1g+b+DEKZ6cHzqg==} + engines: {node: '>=12.22.0 <13.0 || >=14.17.0'} + + use-callback-ref@1.3.3: + resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + use-memo-one@1.1.3: + resolution: {integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sidecar@1.1.3: + resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + use-sync-external-store@1.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sync-external-store@1.4.0: + resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + use-sync-external-store@1.5.0: + resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + usehooks-ts@3.1.1: + resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==} + engines: {node: '>=16.15.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 || ^19.0.0-rc + + utf-8-validate@5.0.10: + resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} + engines: {node: '>=6.14.2'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util@0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + hasBin: true + + uuidv4@6.2.13: + resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + validator@13.12.0: + resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} + engines: {node: '>= 0.10'} + + valtio@1.13.2: + resolution: {integrity: sha512-Qik0o+DSy741TmkqmRfjq+0xpZBXi/Y6+fXZLn0xNF1z/waFMbE3rkivv5Zcf9RrMUp6zswf2J7sbh2KBlba5A==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=16.8' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + react: + optional: true + + varuint-bitcoin@1.1.2: + resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==} + + varuint-bitcoin@2.0.0: + resolution: {integrity: sha512-6QZbU/rHO2ZQYpWFDALCDSRsXbAs1VOEmXAxtbtjLtKuMJ/FQ8YbhfxlaiKv5nklci0M6lZtlZyxo9Q+qNnyog==} + + viem@2.21.32: + resolution: {integrity: sha512-2oXt5JNIb683oy7C8wuIJ/SeL3XtHVMEQpy1U2TA6WMnJQ4ScssRvyPwYLcaP6mKlrGXE/cR/V7ncWpvLUVPYQ==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.23.13: + resolution: {integrity: sha512-f3RkcrzGhU79GfBb9GHUL0m3e3LUsNudXIQTFp4fit5hUGb0ew9KOYZ6cCY5d4Melj3noBy2zq0K2fV+mp+Cpg==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.23.2: + resolution: {integrity: sha512-NVmW/E0c5crMOtbEAqMF0e3NmvQykFXhLOc/CkLIXOlzHSA6KXVz3CYVmaKqBF8/xtjsjHAGjdJN3Ru1kFJLaA==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.30.5: + resolution: {integrity: sha512-YymUl7AKsIw3BhQLZxr3j+g8OwqsxmV3xu7zDMmmuFACtvQ3YZaFsKrH7N8eTXpPHYgMlClvKIjgXS8Twt+sQQ==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.7.19: + resolution: {integrity: sha512-UOMeqy+8p2709ra2j9HEOL1NfjsXZzlJ8gwR6YO/zXH8KIZvyzW07t4iQARF5+ShVZ/7+/1ec8oPjVi1M//33A==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + vlq@1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + wagmi@2.15.4: + resolution: {integrity: sha512-0m7uo6t/oSFS+4UCUTBnmIhDSP7PGJz1qx4VtALcsBnw81UPPIXMSM8oGVrUNV9CptryiDgBlh4iYmRldg9iaA==} + peerDependencies: + '@tanstack/react-query': '>=5.0.0' + react: '>=18' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + + web3-core@4.7.1: + resolution: {integrity: sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-errors@1.3.1: + resolution: {integrity: sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-abi@4.4.1: + resolution: {integrity: sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-accounts@4.3.1: + resolution: {integrity: sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-contract@4.7.2: + resolution: {integrity: sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-ens@4.4.0: + resolution: {integrity: sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-iban@4.0.7: + resolution: {integrity: sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth-personal@4.1.0: + resolution: {integrity: sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-eth@4.11.1: + resolution: {integrity: sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-net@4.1.0: + resolution: {integrity: sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-providers-http@4.2.0: + resolution: {integrity: sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-providers-ipc@4.0.7: + resolution: {integrity: sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-providers-ws@4.0.8: + resolution: {integrity: sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-rpc-methods@1.3.0: + resolution: {integrity: sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-rpc-providers@1.0.0-rc.4: + resolution: {integrity: sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-types@1.10.0: + resolution: {integrity: sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-utils@4.3.3: + resolution: {integrity: sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3-validator@2.0.6: + resolution: {integrity: sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg==} + engines: {node: '>=14', npm: '>=6.12.0'} + + web3@4.16.0: + resolution: {integrity: sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==} + engines: {node: '>=14.0.0', npm: '>=6.12.0'} + + webauthn-p256@0.0.10: + resolution: {integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==} + + webcrypto-core@1.8.1: + resolution: {integrity: sha512-P+x1MvlNCXlKbLSOY4cYrdreqPG5hbzkmawbcXLKN/mf6DZW0SdNNkZ+sjwsqVkI4A4Ko2sPZmkZtCKY58w83A==} + + webextension-polyfill@0.10.0: + resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webrtc-adapter@7.7.1: + resolution: {integrity: sha512-TbrbBmiQBL9n0/5bvDdORc6ZfRY/Z7JnEj+EYOD1ghseZdpJ+nF2yx14k3LgQKc7JZnG7HAcL+zHnY25So9d7A==} + engines: {node: '>=6.0.0', npm: '>=3.10.0'} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + wif@2.0.6: + resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==} + + wif@5.0.0: + resolution: {integrity: sha512-iFzrC/9ne740qFbNjTZ2FciSRJlHIXoxqk/Y5EnE08QOXu1WjJyCCswwDTYbohAOEnlCtLaAAQBhyaLRFh2hMA==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrapjs@4.0.1: + resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} + engines: {node: '>=8.0.0'} + + workerpool@6.5.1: + resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ws@8.18.2: + resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xmlhttprequest-ssl@2.1.2: + resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==} + engines: {node: '>=0.4.0'} + + xrpl@4.2.5: + resolution: {integrity: sha512-QIpsqvhaRiVvlq7px7lC+lhrxESDMN1vd8mW0SfTgY5WgzP9RLiDoVywOOvSZqDDjPs0EGfhxzYjREW1gGu0Ng==} + engines: {node: '>=18.0.0'} + + xstream@11.14.0: + resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.8.0: + resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs-unparser@2.0.0: + resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} + engines: {node: '>=10'} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zod@3.22.4: + resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} + + zod@3.25.33: + resolution: {integrity: sha512-RnBGYCwJFrLi/hUmeqbYjSIrS/strWjN5PHWgUfyVq96nKycSa4gp4+p6hQGwvcabZs0DWRGzyLhEeQWl+5NhA==} + + zustand@5.0.0: + resolution: {integrity: sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=18.0.0' + immer: '>=9.0.6' + react: '>=18.0.0' + use-sync-external-store: '>=1.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + use-sync-external-store: + optional: true + +snapshots: + + '@adraffy/ens-normalize@1.10.0': {} + + '@adraffy/ens-normalize@1.10.1': {} + + '@adraffy/ens-normalize@1.11.0': {} + + '@alloc/quick-lru@5.2.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@aptos-labs/aptos-client@0.1.1': + dependencies: + axios: 1.9.0 + got: 11.8.6 + transitivePeerDependencies: + - debug + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.27.3': {} + + '@babel/core@7.20.12': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.12) + '@babel/helpers': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + convert-source-map: 1.9.0 + debug: 4.4.1(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.26.9': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) + '@babel/helpers': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + convert-source-map: 2.0.0 + debug: 4.4.1(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.27.3': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.3) + '@babel/helpers': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + convert-source-map: 2.0.0 + debug: 4.4.1(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.27.3': + dependencies: + '@babel/parser': 7.27.3 + '@babel/types': 7.27.3 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.27.3 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.24.5 + lru-cache: 5.1.1 + semver: 7.7.2 + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.12) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.27.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.27.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.3) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.27.3 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 7.7.2 + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 7.7.2 + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 7.7.2 + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.24.7': + dependencies: + '@babel/types': 7.27.3 + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.27.3 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helper-wrap-function@7.27.1': + dependencies: + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.27.3': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.27.3 + + '@babel/parser@7.27.3': + dependencies: + '@babel/types': 7.27.3 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.3) + + '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.27.3) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.3) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.26.9): - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) - /@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.3) - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) - /@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.9): - resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.3) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) - /@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.3) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12)': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.20.12) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.9)': dependencies: + '@babel/compat-data': 7.27.3 '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.26.9) - /@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.27.3)': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.3) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9) - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.3) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.20.12): - resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx@7.20.13(@babel/core@7.20.12): - resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.20.12) - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.20.12): - resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.20.12) - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) - '@babel/types': 7.26.9 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - regenerator-transform: 0.15.2 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.26.9): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - regenerator-transform: 0.15.2 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - regenerator-transform: 0.15.2 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-runtime@7.26.9(@babel/core@7.26.9): - resolution: {integrity: sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9) - babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9) - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.3) + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.12) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.26.9): - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/core': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.3) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.27.3(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.27.3(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.27.3(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.26.9): - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.20.12): - resolution: {integrity: sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.20.12) + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.12) + '@babel/traverse': 7.27.3 + globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.9): - resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9) + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + '@babel/traverse': 7.27.3 + globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.20.12): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.3) + '@babel/traverse': 7.27.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.26.9): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.26.9): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9): - resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/preset-env@7.20.2(@babel/core@7.20.12): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/compat-data': 7.22.20 '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-class-static-block': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-private-property-in-object': 7.20.5(@babel/core@7.20.12) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.20.12) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-block-scoping': 7.20.15(@babel/core@7.20.12) - '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.20.12) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.20.12) - '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.20.12) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.20.12) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.20.12) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.20.12) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.20.12) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.20.12) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.20.12) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.20.12) - '@babel/preset-modules': 0.1.5(@babel/core@7.20.12) - '@babel/types': 7.23.0 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.12) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.12) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.12) - core-js-compat: 3.35.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 - /@babel/preset-env@7.20.2(@babel/core@7.26.9): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/compat-data': 7.22.20 '@babel/core': 7.26.9 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-class-static-block': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-private-property-in-object': 7.20.5(@babel/core@7.26.9) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.26.9) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-block-scoping': 7.20.15(@babel/core@7.26.9) - '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.26.9) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.26.9) - '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.26.9) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.26.9) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.26.9) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.26.9) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.26.9) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.26.9) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.26.9) - '@babel/preset-modules': 0.1.5(@babel/core@7.26.9) - '@babel/types': 7.23.0 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.26.9) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.26.9) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.26.9) - core-js-compat: 3.35.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/preset-flow@7.23.3(@babel/core@7.20.12): - resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.20.12) - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/preset-flow@7.23.3(@babel/core@7.26.9): - resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.26.9) - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/preset-modules@0.1.5(@babel/core@7.20.12): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.20.12) - '@babel/types': 7.26.9 - esutils: 2.0.3 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.20.12) - /@babel/preset-modules@0.1.5(@babel/core@7.26.9): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.26.9) - '@babel/types': 7.26.9 - esutils: 2.0.3 - dev: false + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.26.9) - /@babel/preset-react@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.3) + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-react-jsx': 7.20.13(@babel/core@7.20.12) - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: false - /@babel/preset-typescript@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.20.12)': dependencies: '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.20.13(@babel/core@7.20.12) + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.3 transitivePeerDependencies: - supports-color - dev: false - /@babel/preset-typescript@7.24.7(@babel/core@7.26.9): - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.9) - '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.9) + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.3 transitivePeerDependencies: - supports-color - dev: false - /@babel/register@7.23.7(@babel/core@7.26.9): - resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.3 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.6 - source-map-support: 0.5.21 - dev: false + '@babel/helper-plugin-utils': 7.27.1 - /@babel/runtime@7.24.1: - resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.3)': dependencies: - regenerator-runtime: 0.14.1 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/runtime@7.24.8: - resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.26.9)': dependencies: - regenerator-runtime: 0.14.1 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/runtime@7.26.0: - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.3)': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/runtime@7.26.10: - resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.20.12)': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/template@7.20.7: - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/template@7.26.9: - resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@babel/traverse@7.23.2: - resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 - debug: 4.3.4(supports-color@8.1.1) - globals: 11.12.0 + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: false - /@babel/traverse@7.26.9: - resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.9 - '@babel/parser': 7.26.9 - '@babel/template': 7.26.9 - '@babel/types': 7.26.9 - debug: 4.3.4(supports-color@8.1.1) - globals: 11.12.0 + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - /@babel/types@7.20.7: - resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - to-fast-properties: 2.0.0 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@babel/types@7.23.0: - resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - to-fast-properties: 2.0.0 - dev: false + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@babel/types@7.26.9: - resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - dev: true + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@biconomy/account@4.5.6(typescript@5.4.3)(viem@2.23.13): - resolution: {integrity: sha512-Mq0X9HF4fsPTkf87eXklJJE/Hl3GQwQHN/2/D1fCA4Q4o4AM9HV7Tzpb+hBsh8cUJ+s2j0Q9wORXA1c0onAImQ==} - peerDependencies: - typescript: ^5 - viem: ^2 + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.20.12)': dependencies: - '@silencelaboratories/walletprovider-sdk': 0.1.0(typescript@5.4.3) - merkletreejs: 0.4.0 - typescript: 5.4.3 - viem: 2.23.13(typescript@5.4.3) + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - dev: false + - supports-color - /@biconomy/account@4.5.6(typescript@5.4.3)(viem@2.26.2): - resolution: {integrity: sha512-Mq0X9HF4fsPTkf87eXklJJE/Hl3GQwQHN/2/D1fCA4Q4o4AM9HV7Tzpb+hBsh8cUJ+s2j0Q9wORXA1c0onAImQ==} - peerDependencies: - typescript: ^5 - viem: ^2 + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.26.9)': dependencies: - '@silencelaboratories/walletprovider-sdk': 0.1.0(typescript@5.4.3) - merkletreejs: 0.4.0 - typescript: 5.4.3 - viem: 2.26.2(typescript@5.4.3) + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - dev: false + - supports-color - /@biconomy/sdk@0.0.10(@rhinestone/module-sdk@0.1.28)(typescript@5.4.3)(viem@2.26.2): - resolution: {integrity: sha512-HolZ2V95/Z/oE75qbbm2X+cGcWwh4S0oTgyDzd8XQBnnRDOGKlQuf5gxAz0AFvZTCfkjLqZe8E9cVhYPBI+2yQ==} - peerDependencies: - '@rhinestone/module-sdk': ^0.1.25 - typescript: ^5 - viem: ^2.20.0 + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.3)': dependencies: - '@rhinestone/module-sdk': 0.1.28(viem@2.26.2) - '@silencelaboratories/walletprovider-sdk': 0.3.0(typescript@5.4.3) - typescript: 5.4.3 - viem: 2.26.2(typescript@5.4.3) + '@babel/core': 7.27.3 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.3 transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - dev: false + - supports-color - /@chainsafe/as-sha256@0.3.1: - resolution: {integrity: sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==} - dev: true + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@chainsafe/persistent-merkle-tree@0.4.2: - resolution: {integrity: sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==} + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.9)': dependencies: - '@chainsafe/as-sha256': 0.3.1 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@chainsafe/persistent-merkle-tree@0.5.0: - resolution: {integrity: sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw==} + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.3)': dependencies: - '@chainsafe/as-sha256': 0.3.1 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@chainsafe/ssz@0.10.2: - resolution: {integrity: sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg==} + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.20.12)': dependencies: - '@chainsafe/as-sha256': 0.3.1 - '@chainsafe/persistent-merkle-tree': 0.5.0 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 - /@chainsafe/ssz@0.9.4: - resolution: {integrity: sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==} + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@chainsafe/as-sha256': 0.3.1 - '@chainsafe/persistent-merkle-tree': 0.4.2 - case: 1.6.3 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/apply-release-plan@7.0.3: - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/config': 3.0.1 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 2.8.8 - resolve-from: 5.0.0 - semver: 7.5.4 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/assemble-release-plan@6.0.2: - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - semver: 7.5.4 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/changelog-git@0.2.0: - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.9)': dependencies: - '@changesets/types': 6.1.0 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/changelog-github@0.5.1: - resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==} + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.3)': dependencies: - '@changesets/get-github-info': 0.6.0 - '@changesets/types': 6.1.0 - dotenv: 8.6.0 + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.26.9) + + '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.3) + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.12) transitivePeerDependencies: - - encoding - dev: true + - supports-color - /@changesets/cli@2.27.5: - resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} - hasBin: true + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/apply-release-plan': 7.0.3 - '@changesets/assemble-release-plan': 6.0.2 - '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.1 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 - '@changesets/get-release-plan': 4.0.2 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.0.0 - '@changesets/write': 0.3.1 - '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 - ansi-colors: 4.1.3 - chalk: 2.4.2 - ci-info: 3.8.0 - enquirer: 2.4.1 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.0.3 - resolve-from: 5.0.0 - semver: 7.5.4 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 4.1.6 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - /@changesets/config@3.0.1: - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.3)': dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 - '@changesets/logger': 0.1.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color - /@changesets/errors@0.2.0: - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.9)': dependencies: - extendable-error: 0.1.7 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/get-dependents-graph@2.1.0: - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.3)': dependencies: - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.5.4 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/get-github-info@0.6.0: - resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.20.12)': dependencies: - dataloader: 1.4.0 - node-fetch: 2.7.0(encoding@0.1.13) + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - - encoding - dev: true + - supports-color - /@changesets/get-release-plan@4.0.2: - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/assemble-release-plan': 6.0.2 - '@changesets/config': 3.0.1 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color - /@changesets/get-version-range-type@0.4.0: - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - dev: true + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color - /@changesets/git@3.0.0: - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - is-subdir: 1.2.0 - micromatch: 4.0.5 - spawndamnit: 2.0.0 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/logger@0.1.0: - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.26.9)': dependencies: - chalk: 2.4.2 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/parse@0.4.0: - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.3)': dependencies: - '@changesets/types': 6.1.0 - js-yaml: 3.14.1 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@changesets/pre@2.0.0: - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@changesets/read@0.6.0: - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/parse': 0.4.0 - '@changesets/types': 6.1.0 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - dev: true + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - /@changesets/should-skip-package@0.1.0: - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 - dev: true - - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/types@6.0.0: - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - dev: true + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/types@6.1.0: - resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==} - dev: true + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@changesets/write@0.3.1: - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.20.12)': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/types': 6.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 2.8.8 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@coral-xyz/borsh@0.26.0(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-uCZ0xus0CszQPHYfWAqKS5swS1UxvePu83oOF+TWpUkedsNlg6p2p4azxZNSSqwXb9uXMFgxhuMBX9r3Xoi0vQ==} - engines: {node: '>=10'} - peerDependencies: - '@solana/web3.js': ^1.68.0 + '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.26.9)': dependencies: - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bn.js: 5.2.1 - buffer-layout: 1.2.2 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/amino@0.33.0: - resolution: {integrity: sha512-a4qnWGzuM2IrlkDTFQmU7bDd+wNIzyvfcRIZ43i00ZHvTEtrCcWopT94rIv/Zy6fdgkhQ3HWrsGVlIPDT/ibRw==} + '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.27.3)': dependencies: - '@cosmjs/crypto': 0.33.0 - '@cosmjs/encoding': 0.33.0 - '@cosmjs/math': 0.33.0 - '@cosmjs/utils': 0.33.0 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/crypto@0.33.0: - resolution: {integrity: sha512-kkt06t+cFW2XRGDGUZ0cVf5yoQ2OhZnubwbYbz3QXdyhf1qOXYVPRThfFPsko7dssr+e8Yy4OJKlh5SLA8DXTQ==} + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.20.12)': dependencies: - '@cosmjs/encoding': 0.33.0 - '@cosmjs/math': 0.33.0 - '@cosmjs/utils': 0.33.0 - '@noble/hashes': 1.4.0 - bn.js: 5.2.1 - elliptic: 6.6.1 - libsodium-wrappers-sumo: 0.7.11 - dev: false + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color - /@cosmjs/encoding@0.33.0: - resolution: {integrity: sha512-9z0g9mM7w5BISVVs8BK1Yp7KSQgNLGz2SBoWYOm4wODB/YcoitODgyRqECcuMZBXtd2sCyy2M1VLs9Z69BPZRQ==} + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.26.9)': dependencies: - base64-js: 1.5.1 - bech32: 1.1.4 - readonly-date: 1.0.0 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/json-rpc@0.33.0: - resolution: {integrity: sha512-okXjxnT3zhhuYrA1aIDVD8VHt3syWyrJw3cAY6tMNM53bQcAtLGImueMrEoyv7DtLg5R5Tx5PMrQ7UYnpD8OwQ==} + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.3)': dependencies: - '@cosmjs/stream': 0.33.0 - xstream: 11.14.0 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/math@0.33.0: - resolution: {integrity: sha512-B2uOgM12iuIhJWzGuAxGwO6zO+cI8Q4z7mVu7HgFrGJJTM1HtPTYgb55oMOuUN0OZ352MEEm5uAt8sA9jZQqbA==} + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.26.9)': dependencies: - bn.js: 5.2.1 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/proto-signing@0.33.0: - resolution: {integrity: sha512-UHA92d/Siy3wnce/xhU4iagKrs6r8Ruacc0qeHj3mNrtuUH8f70cD7lzzClzI7wvRLcPprOY0YTeEzqGbPeBFw==} + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.3)': dependencies: - '@cosmjs/amino': 0.33.0 - '@cosmjs/crypto': 0.33.0 - '@cosmjs/encoding': 0.33.0 - '@cosmjs/math': 0.33.0 - '@cosmjs/utils': 0.33.0 - cosmjs-types: 0.9.0 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@cosmjs/socket@0.33.0: - resolution: {integrity: sha512-a1eHsqVFmG6N5LR53tAB1Xo4XfsZaFlrYA34yC0GnX5m/cJVEe1wkZxMsWJIW2nfCgj7nAvFK6Gx4qj+ZLeqdw==} + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.20.12)': dependencies: - '@cosmjs/stream': 0.33.0 - isomorphic-ws: 4.0.1(ws@8.17.1) - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - xstream: 11.14.0 + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.20.12) + '@babel/types': 7.27.3 transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false + - supports-color - /@cosmjs/stargate@0.33.0: - resolution: {integrity: sha512-Ti/2RRl+LKTNUrOqj6TpGnTRcbmQ5zD4Ujx/PDNPHEexyuwbz+tMcF8Y1kKPWQ1g4wWxLYO4tKY4Gm0J3c5hWA==} + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.26.9)': dependencies: - '@cosmjs/amino': 0.33.0 - '@cosmjs/encoding': 0.33.0 - '@cosmjs/math': 0.33.0 - '@cosmjs/proto-signing': 0.33.0 - '@cosmjs/stream': 0.33.0 - '@cosmjs/tendermint-rpc': 0.33.0 - '@cosmjs/utils': 0.33.0 - cosmjs-types: 0.9.0 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/types': 7.27.3 transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - dev: false + - supports-color - /@cosmjs/stream@0.33.0: - resolution: {integrity: sha512-SmsZW9Xzfk2T2MtWzVkit2WUclL7ZQHhiEhJz39EzKQRAdi4xY8nwefZF4VLQVJ0M33QfRCUzFzb+O/gddMQKA==} + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.27.3)': dependencies: - xstream: 11.14.0 - dev: false - - /@cosmjs/tendermint-rpc@0.33.0: - resolution: {integrity: sha512-A5h72fYesFKSjMjB+AMD5thcVVcdfbmWj4atJ1CYmKGyCTCPW8iEIz1ZKR0mUX+gkW6dM1h8flaRj/R14Oc0/A==} - dependencies: - '@cosmjs/crypto': 0.33.0 - '@cosmjs/encoding': 0.33.0 - '@cosmjs/json-rpc': 0.33.0 - '@cosmjs/math': 0.33.0 - '@cosmjs/socket': 0.33.0 - '@cosmjs/stream': 0.33.0 - '@cosmjs/utils': 0.33.0 - axios: 1.8.3 - readonly-date: 1.0.0 - xstream: 11.14.0 + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.3) + '@babel/types': 7.27.3 transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - dev: false - - /@cosmjs/utils@0.33.0: - resolution: {integrity: sha512-Y6glwHNlNjcOgwPg8YmNr1PSrNm307EhJVytFt8HmA/G7MRcIA+jIzCL0VlOrWGU4TrAOXvshM+oJZbTIldFRA==} - dev: false + - supports-color - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.20.12)': dependencies: - '@jridgewell/trace-mapping': 0.3.9 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@emnapi/runtime@1.3.1: - resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} - requiresBuild: true + '@babel/plugin-transform-regenerator@7.27.1(@babel/core@7.20.12)': dependencies: - tslib: 2.8.1 - dev: false - optional: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/babel-plugin@11.12.0: - resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==} + '@babel/plugin-transform-regenerator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/helper-module-imports': 7.24.7 - '@babel/runtime': 7.26.10 - '@emotion/hash': 0.9.2 - '@emotion/memoize': 0.9.0 - '@emotion/serialize': 1.3.2 - babel-plugin-macros: 3.1.0 - convert-source-map: 1.9.0 - escape-string-regexp: 4.0.0 - find-root: 1.1.0 - source-map: 0.5.7 - stylis: 4.2.0 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/cache@11.13.1: - resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==} + '@babel/plugin-transform-regenerator@7.27.1(@babel/core@7.27.3)': dependencies: - '@emotion/memoize': 0.9.0 - '@emotion/sheet': 1.4.0 - '@emotion/utils': 1.4.1 - '@emotion/weak-memoize': 0.4.0 - stylis: 4.2.0 - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/hash@0.9.2: - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} - dev: false + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/is-prop-valid@1.3.1: - resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==} + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.9)': dependencies: - '@emotion/memoize': 0.9.0 - dev: false + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/memoize@0.9.0: - resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} - dev: false + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/react@11.13.3(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@babel/plugin-transform-runtime@7.27.3(@babel/core@7.26.9)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.12.0 - '@emotion/cache': 11.13.1 - '@emotion/serialize': 1.3.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) - '@emotion/utils': 1.4.1 - '@emotion/weak-memoize': 0.4.0 - '@types/react': 18.2.14 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 + '@babel/core': 7.26.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.9) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9) + babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.9) + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: false - /@emotion/react@11.13.3(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@babel/plugin-transform-runtime@7.27.3(@babel/core@7.27.3)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.12.0 - '@emotion/cache': 11.13.1 - '@emotion/serialize': 1.3.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) - '@emotion/utils': 1.4.1 - '@emotion/weak-memoize': 0.4.0 - '@types/react': 18.2.75 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 + '@babel/core': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.3) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.3) + babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.3) + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: false - /@emotion/serialize@1.3.2: - resolution: {integrity: sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==} + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.20.12)': dependencies: - '@emotion/hash': 0.9.2 - '@emotion/memoize': 0.9.0 - '@emotion/unitless': 0.10.0 - '@emotion/utils': 1.4.1 - csstype: 3.1.3 - dev: false + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/sheet@1.4.0: - resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} - dev: false + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@emotion/styled@11.13.0(@emotion/react@11.13.3)(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.3)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.12.0 - '@emotion/is-prop-valid': 1.3.1 - '@emotion/react': 11.13.3(@types/react@18.2.14)(react@18.2.0) - '@emotion/serialize': 1.3.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) - '@emotion/utils': 1.4.1 - '@types/react': 18.2.14 - react: 18.2.0 + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: false - /@emotion/styled@11.13.0(@emotion/react@11.13.3)(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.12.0 - '@emotion/is-prop-valid': 1.3.1 - '@emotion/react': 11.13.3(@types/react@18.2.75)(react@18.2.0) - '@emotion/serialize': 1.3.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) - '@emotion/utils': 1.4.1 - '@types/react': 18.2.75 - react: 18.2.0 + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: false - - /@emotion/unitless@0.10.0: - resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} - dev: false - /@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.2.0): - resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==} - peerDependencies: - react: '>=16.8.0' + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.3)': dependencies: - react: 18.2.0 - dev: false - - /@emotion/utils@1.4.1: - resolution: {integrity: sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==} - dev: false - - /@emotion/weak-memoize@0.4.0: - resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} - dev: false - - /@emurgo/cardano-serialization-lib-browser@11.5.0: - resolution: {integrity: sha512-qchOJ9NYDUz10tzs5r5QhP9hK0p+ZOlRiBwPdTAxqAYLw/8emYBkQQLaS8T1DF6EkeudyrgS00ym5Trw1fo4iA==} - dev: false - - /@emurgo/cardano-serialization-lib-nodejs@11.5.0: - resolution: {integrity: sha512-IlVABlRgo9XaTR1NunwZpWcxnfEv04ba2l1vkUz4S1W7Jt36F4CtffP+jPeqBZGnAe+fnUwo0XjIJC3ZTNToNQ==} - dev: false + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color - /@esbuild-kit/cjs-loader@2.4.2: - resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} - deprecated: 'Merged into tsx: https://tsx.is' + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.20.12)': dependencies: - '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.8.1 - dev: true + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild-kit/core-utils@3.1.0: - resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==} - deprecated: 'Merged into tsx: https://tsx.is' + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.9)': dependencies: - esbuild: 0.17.18 - source-map-support: 0.5.21 - dev: true + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild-kit/esm-loader@2.5.5: - resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==} - deprecated: 'Merged into tsx: https://tsx.is' + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.3)': dependencies: - '@esbuild-kit/core-utils': 3.1.0 - get-tsconfig: 4.8.1 - dev: true - - /@esbuild/android-arm64@0.17.18: - resolution: {integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.17.18: - resolution: {integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.17.18: - resolution: {integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/darwin-arm64@0.17.18: - resolution: {integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/darwin-x64@0.17.18: - resolution: {integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/freebsd-arm64@0.17.18: - resolution: {integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/freebsd-x64@0.17.18: - resolution: {integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-arm64@0.17.18: - resolution: {integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-arm@0.17.18: - resolution: {integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-ia32@0.17.18: - resolution: {integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color - /@esbuild/linux-loong64@0.17.18: - resolution: {integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - /@esbuild/linux-mips64el@0.17.18: - resolution: {integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color - /@esbuild/linux-ppc64@0.17.18: - resolution: {integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-riscv64@0.17.18: - resolution: {integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-s390x@0.17.18: - resolution: {integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/linux-x64@0.17.18: - resolution: {integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/netbsd-x64@0.17.18: - resolution: {integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/openbsd-x64@0.17.18: - resolution: {integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.3) + '@babel/helper-plugin-utils': 7.27.1 - /@esbuild/sunos-x64@0.17.18: - resolution: {integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true + '@babel/preset-env@7.20.2(@babel/core@7.20.12)': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.12) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.20.12) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.20.12) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.20.12) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.20.12) + '@babel/preset-modules': 0.1.6(@babel/core@7.20.12) + '@babel/types': 7.27.3 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.12) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.12) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.12) + core-js-compat: 3.42.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color - /@esbuild/win32-arm64@0.17.18: - resolution: {integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true + '@babel/preset-env@7.20.2(@babel/core@7.26.9)': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.26.9) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.26.9) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.26.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.9) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.9) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.26.9) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9) + '@babel/preset-modules': 0.1.6(@babel/core@7.26.9) + '@babel/types': 7.27.3 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.26.9) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.26.9) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.26.9) + core-js-compat: 3.42.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color - /@esbuild/win32-ia32@0.17.18: - resolution: {integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true + '@babel/preset-env@7.20.2(@babel/core@7.27.3)': + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.27.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.27.3) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.27.3) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.27.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.27.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.27.3) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.27.3) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.3) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.3) + '@babel/preset-modules': 0.1.6(@babel/core@7.27.3) + '@babel/types': 7.27.3 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.27.3) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.27.3) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.27.3) + core-js-compat: 3.42.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color - /@esbuild/win32-x64@0.17.18: - resolution: {integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true + '@babel/preset-flow@7.23.3(@babel/core@7.20.12)': + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.20.12) - /@eslint-community/eslint-utils@4.4.0(eslint@8.43.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@babel/preset-flow@7.23.3(@babel/core@7.26.9)': dependencies: - eslint: 8.43.0 - eslint-visitor-keys: 3.4.3 + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.26.9) - /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@babel/preset-modules@0.1.6(@babel/core@7.20.12)': dependencies: - eslint: 8.56.0 - eslint-visitor-keys: 3.4.3 - dev: false + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.12) + '@babel/types': 7.27.3 + esutils: 2.0.3 - /@eslint-community/regexpp@4.12.1: - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@babel/preset-modules@0.1.6(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9) + '@babel/types': 7.27.3 + esutils: 2.0.3 - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@babel/preset-modules@0.1.6(@babel/core@7.27.3)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.27.3) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.3) + '@babel/types': 7.27.3 + esutils: 2.0.3 - /@eslint/eslintrc@2.1.0: - resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@babel/preset-react@7.18.6(@babel/core@7.20.12)': dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.20.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.20.12) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.20.12) transitivePeerDependencies: - supports-color - /@eslint/eslintrc@2.1.4: - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@babel/preset-typescript@7.18.6(@babel/core@7.20.12)': dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.20.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.20.12) transitivePeerDependencies: - supports-color - dev: false - - /@eslint/js@8.43.0: - resolution: {integrity: sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@eslint/js@8.56.0: - resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: false + '@babel/preset-typescript@7.18.6(@babel/core@7.26.9)': + dependencies: + '@babel/core': 7.26.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - /@ethereumjs/common@3.2.0: - resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} + '@babel/register@7.27.1(@babel/core@7.26.9)': dependencies: - '@ethereumjs/util': 8.1.0 - crc-32: 1.2.2 - dev: false + '@babel/core': 7.26.9 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.7 + source-map-support: 0.5.21 - /@ethereumjs/common@4.3.0: - resolution: {integrity: sha512-shBNJ0ewcPNTUfZduHiczPmqkfJDn0Dh/9BR5fq7xUFTuIq7Fu1Vx00XDwQVIrpVL70oycZocOhBM6nDO+4FEQ==} + '@babel/runtime@7.26.10': dependencies: - '@ethereumjs/util': 9.0.3 - dev: false + regenerator-runtime: 0.14.1 - /@ethereumjs/rlp@4.0.1: - resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} - engines: {node: '>=14'} - hasBin: true - dev: false + '@babel/runtime@7.27.3': {} - /@ethereumjs/rlp@5.0.2: - resolution: {integrity: sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==} - engines: {node: '>=18'} - hasBin: true - dev: false + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.27.3 + '@babel/types': 7.27.3 - /@ethereumjs/tx@4.2.0: - resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} - engines: {node: '>=14'} + '@babel/traverse@7.27.3': dependencies: - '@ethereumjs/common': 3.2.0 - '@ethereumjs/rlp': 4.0.1 - '@ethereumjs/util': 8.1.0 - ethereum-cryptography: 2.2.1 - dev: false + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/template': 7.27.2 + '@babel/types': 7.27.3 + debug: 4.4.1(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - /@ethereumjs/tx@5.3.0: - resolution: {integrity: sha512-uv++XYuIfuqYbvymL3/o14hHuC6zX0nRQ1nI2FHsbkkorLZ2ChEIDqVeeVk7Xc9/jQNU/22sk9qZZkRlsveXxw==} - engines: {node: '>=18'} + '@babel/types@7.27.3': dependencies: - '@ethereumjs/common': 4.3.0 - '@ethereumjs/rlp': 5.0.2 - '@ethereumjs/util': 9.0.3 - ethereum-cryptography: 2.2.1 - dev: false + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 - /@ethereumjs/util@8.1.0: - resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} - engines: {node: '>=14'} + '@bcoe/v8-coverage@0.2.3': {} + + '@biconomy/account@4.5.7(typescript@5.4.3)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - '@ethereumjs/rlp': 4.0.1 - ethereum-cryptography: 2.2.1 - micro-ftch: 0.3.1 - dev: false + merkletreejs: 0.4.1 + typescript: 5.4.3 + viem: 2.23.13(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /@ethereumjs/util@9.0.3: - resolution: {integrity: sha512-PmwzWDflky+7jlZIFqiGsBPap12tk9zK5SVH9YW2OEnDN7OEhCjUOMzbOqwuClrbkSIkM2ERivd7sXZ48Rh/vg==} - engines: {node: '>=18'} + '@biconomy/account@4.5.7(typescript@5.4.3)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - '@ethereumjs/rlp': 5.0.2 - ethereum-cryptography: 2.2.1 - dev: false + merkletreejs: 0.4.1 + typescript: 5.4.3 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /@ethersproject/abi@5.7.0: - resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==} + '@biconomy/sdk@0.0.10(@rhinestone/module-sdk@0.1.32(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33)': dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@rhinestone/module-sdk': 0.1.32(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + '@silencelaboratories/walletprovider-sdk': 0.3.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + typescript: 5.4.3 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod - /@ethersproject/abstract-provider@5.7.0: - resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==} + '@changesets/apply-release-plan@7.0.12': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 + '@changesets/config': 3.1.1 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.4 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 2.8.8 + resolve-from: 5.0.0 + semver: 7.7.2 - /@ethersproject/abstract-signer@5.7.0: - resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==} + '@changesets/assemble-release-plan@6.0.8': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + semver: 7.7.2 - /@ethersproject/address@5.7.0: - resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==} + '@changesets/changelog-git@0.2.1': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp': 5.7.0 + '@changesets/types': 6.1.0 - /@ethersproject/base64@5.7.0: - resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==} + '@changesets/changelog-github@0.5.1(encoding@0.1.13)': dependencies: - '@ethersproject/bytes': 5.7.0 + '@changesets/get-github-info': 0.6.0(encoding@0.1.13) + '@changesets/types': 6.1.0 + dotenv: 8.6.0 + transitivePeerDependencies: + - encoding - /@ethersproject/basex@5.7.0: - resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} + '@changesets/cli@2.29.4': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/properties': 5.7.0 + '@changesets/apply-release-plan': 7.0.12 + '@changesets/assemble-release-plan': 6.0.8 + '@changesets/changelog-git': 0.2.1 + '@changesets/config': 3.1.1 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/get-release-plan': 4.0.12 + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.5 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@changesets/write': 0.4.0 + '@manypkg/get-packages': 1.1.3 + ansi-colors: 4.1.3 + ci-info: 3.9.0 + enquirer: 2.4.1 + external-editor: 3.1.0 + fs-extra: 7.0.1 + mri: 1.2.0 + p-limit: 2.3.0 + package-manager-detector: 0.2.11 + picocolors: 1.1.1 + resolve-from: 5.0.0 + semver: 7.7.2 + spawndamnit: 3.0.1 + term-size: 2.2.1 - /@ethersproject/bignumber@5.7.0: - resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} + '@changesets/config@3.1.1': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - bn.js: 5.2.1 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/logger': 0.1.1 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.8 - /@ethersproject/bytes@5.7.0: - resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==} + '@changesets/errors@0.2.0': dependencies: - '@ethersproject/logger': 5.7.0 + extendable-error: 0.1.7 - /@ethersproject/constants@5.7.0: - resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==} + '@changesets/get-dependents-graph@2.1.3': dependencies: - '@ethersproject/bignumber': 5.7.0 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + picocolors: 1.1.1 + semver: 7.7.2 - /@ethersproject/contracts@5.7.0: - resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} + '@changesets/get-github-info@0.6.0(encoding@0.1.13)': dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 + dataloader: 1.4.0 + node-fetch: 2.7.0(encoding@0.1.13) + transitivePeerDependencies: + - encoding - /@ethersproject/hash@5.7.0: - resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} + '@changesets/get-release-plan@4.0.12': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@changesets/assemble-release-plan': 6.0.8 + '@changesets/config': 3.1.1 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.5 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 - /@ethersproject/hdnode@5.7.0: - resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} + '@changesets/get-version-range-type@0.4.0': {} + + '@changesets/git@3.0.4': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 + '@changesets/errors': 0.2.0 + '@manypkg/get-packages': 1.1.3 + is-subdir: 1.2.0 + micromatch: 4.0.8 + spawndamnit: 3.0.1 - /@ethersproject/json-wallets@5.7.0: - resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} + '@changesets/logger@0.1.1': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - aes-js: 3.0.0 - scrypt-js: 3.0.1 + picocolors: 1.1.1 - /@ethersproject/keccak256@5.7.0: - resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} + '@changesets/parse@0.4.1': dependencies: - '@ethersproject/bytes': 5.7.0 - js-sha3: 0.8.0 + '@changesets/types': 6.1.0 + js-yaml: 3.14.1 - /@ethersproject/logger@5.7.0: - resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==} + '@changesets/pre@2.0.2': + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 - /@ethersproject/networks@5.7.1: - resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==} + '@changesets/read@0.6.5': dependencies: - '@ethersproject/logger': 5.7.0 + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/parse': 0.4.1 + '@changesets/types': 6.1.0 + fs-extra: 7.0.1 + p-filter: 2.1.0 + picocolors: 1.1.1 - /@ethersproject/pbkdf2@5.7.0: - resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} + '@changesets/should-skip-package@0.1.2': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/sha2': 5.7.0 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 - /@ethersproject/properties@5.7.0: - resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} + '@changesets/types@4.1.0': {} + + '@changesets/types@6.1.0': {} + + '@changesets/write@0.4.0': dependencies: - '@ethersproject/logger': 5.7.0 + '@changesets/types': 6.1.0 + fs-extra: 7.0.1 + human-id: 4.1.1 + prettier: 2.8.8 - /@ethersproject/providers@5.7.2: - resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} + '@coinbase/onchainkit@0.38.13(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 - bech32: 1.1.4 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + '@farcaster/frame-sdk': 0.0.28(typescript@5.4.3)(zod@3.25.33) + '@farcaster/frame-wagmi-connector': 0.0.16(@farcaster/frame-sdk@0.0.28(typescript@5.4.3)(zod@3.25.33))(@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + '@tanstack/react-query': 5.77.2(react@18.2.0) + '@wagmi/core': 2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + clsx: 2.1.1 + graphql: 16.11.0 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.11.0) + qrcode: 1.5.4 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + tailwind-merge: 2.6.0 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + wagmi: 2.15.4(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.77.2)(@tanstack/react-query@5.77.2(react@18.2.0))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33) transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch - bufferutil + - db0 + - encoding + - immer + - ioredis + - supports-color + - typescript + - uploadthing + - use-sync-external-store - utf-8-validate + - zod - /@ethersproject/random@5.7.0: - resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} + '@coinbase/wallet-sdk@3.9.3': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + bn.js: 5.2.2 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 7.1.0 + eth-json-rpc-filters: 6.0.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.26.7 + sha.js: 2.4.11 + transitivePeerDependencies: + - supports-color - /@ethersproject/rlp@5.7.0: - resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} + '@coinbase/wallet-sdk@4.3.0': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + '@noble/hashes': 1.4.0 + clsx: 1.2.1 + eventemitter3: 5.0.1 + preact: 10.26.7 - /@ethersproject/sha2@5.7.0: - resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} + '@coral-xyz/borsh@0.26.0(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - hash.js: 1.1.7 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bn.js: 5.2.2 + buffer-layout: 1.2.2 - /@ethersproject/signing-key@5.7.0: - resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} + '@cosmjs/amino@0.33.1': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - bn.js: 5.2.1 - elliptic: 6.6.1 - hash.js: 1.1.7 + '@cosmjs/crypto': 0.33.1 + '@cosmjs/encoding': 0.33.1 + '@cosmjs/math': 0.33.1 + '@cosmjs/utils': 0.33.1 - /@ethersproject/solidity@5.7.0: - resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} + '@cosmjs/crypto@0.33.1': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@cosmjs/encoding': 0.33.1 + '@cosmjs/math': 0.33.1 + '@cosmjs/utils': 0.33.1 + '@noble/hashes': 1.4.0 + bn.js: 5.2.2 + elliptic: 6.6.1 + libsodium-wrappers-sumo: 0.7.15 - /@ethersproject/strings@5.7.0: - resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} + '@cosmjs/encoding@0.33.1': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 + base64-js: 1.5.1 + bech32: 1.1.4 + readonly-date: 1.0.0 - /@ethersproject/transactions@5.7.0: - resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==} + '@cosmjs/json-rpc@0.33.1': dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/signing-key': 5.7.0 + '@cosmjs/stream': 0.33.1 + xstream: 11.14.0 - /@ethersproject/units@5.7.0: - resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==} + '@cosmjs/math@0.33.1': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 + bn.js: 5.2.2 - /@ethersproject/wallet@5.7.0: - resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} + '@cosmjs/proto-signing@0.33.1': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 + '@cosmjs/amino': 0.33.1 + '@cosmjs/crypto': 0.33.1 + '@cosmjs/encoding': 0.33.1 + '@cosmjs/math': 0.33.1 + '@cosmjs/utils': 0.33.1 + cosmjs-types: 0.9.0 - /@ethersproject/web@5.7.1: - resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} + '@cosmjs/socket@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@ethersproject/base64': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@cosmjs/stream': 0.33.1 + isomorphic-ws: 4.0.1(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + xstream: 11.14.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /@ethersproject/wordlists@5.7.0: - resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} + '@cosmjs/stargate@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@cosmjs/amino': 0.33.1 + '@cosmjs/encoding': 0.33.1 + '@cosmjs/math': 0.33.1 + '@cosmjs/proto-signing': 0.33.1 + '@cosmjs/stream': 0.33.1 + '@cosmjs/tendermint-rpc': 0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@cosmjs/utils': 0.33.1 + cosmjs-types: 0.9.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate - /@fivebinaries/coin-selection@2.2.1: - resolution: {integrity: sha512-iYFsYr7RY7TEvTqP9NKR4p/yf3Iybf9abUDR7lRjzanGsrLwVsREvIuyE05iRYFrvqarlk+gWRPsdR1N2hUBrg==} + '@cosmjs/stream@0.33.1': dependencies: - '@emurgo/cardano-serialization-lib-browser': 11.5.0 - '@emurgo/cardano-serialization-lib-nodejs': 11.5.0 - dev: false + xstream: 11.14.0 - /@floating-ui/core@1.6.0: - resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} + '@cosmjs/tendermint-rpc@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@floating-ui/utils': 0.2.1 - dev: false + '@cosmjs/crypto': 0.33.1 + '@cosmjs/encoding': 0.33.1 + '@cosmjs/json-rpc': 0.33.1 + '@cosmjs/math': 0.33.1 + '@cosmjs/socket': 0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@cosmjs/stream': 0.33.1 + '@cosmjs/utils': 0.33.1 + axios: 1.9.0 + readonly-date: 1.0.0 + xstream: 11.14.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + + '@cosmjs/utils@0.33.1': {} - /@floating-ui/dom@1.6.3: - resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} + '@cspotcode/source-map-support@0.8.1': dependencies: - '@floating-ui/core': 1.6.0 - '@floating-ui/utils': 0.2.1 - dev: false + '@jridgewell/trace-mapping': 0.3.9 - /@floating-ui/react-dom@2.0.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + '@ecies/ciphers@0.2.3(@noble/ciphers@1.3.0)': dependencies: - '@floating-ui/dom': 1.6.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@noble/ciphers': 1.3.0 - /@floating-ui/react-dom@2.0.8(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + '@emnapi/core@1.4.3': dependencies: - '@floating-ui/dom': 1.6.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@emnapi/wasi-threads': 1.0.2 + tslib: 2.8.1 + optional: true - /@floating-ui/utils@0.2.1: - resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} - dev: false + '@emnapi/runtime@1.4.3': + dependencies: + tslib: 2.8.1 + optional: true - /@fractalwagmi/popup-connection@1.1.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-hYL+45iYwNbwjvP2DxP3YzVsrAGtj/RV9LOgMpJyCxsfNoyyOoi2+YrnywKkiANingiG2kJ1nKsizbu1Bd4zZw==} - peerDependencies: - react: ^17.0.2 || ^18 - react-dom: ^17.0.2 || ^18 + '@emnapi/wasi-threads@1.0.2': dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + tslib: 2.8.1 + optional: true - /@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.95.8)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-oTZLEuD+zLKXyhZC5tDRMPKPj8iaxKLxXiCjqRfOo4xmSbS2izGRWLJbKMYYsJysn/OI3UJ3P6CWP8WUWi0dZg==} + '@emotion/babel-plugin@11.13.5': dependencies: - '@fractalwagmi/popup-connection': 1.1.1(react-dom@18.3.1)(react@18.3.1) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - bs58: 5.0.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/runtime': 7.27.3 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 transitivePeerDependencies: - - '@solana/web3.js' - - react - - react-dom - dev: false + - supports-color - /@gerrit0/mini-shiki@3.2.1: - resolution: {integrity: sha512-HbzRC6MKB6U8kQhczz0APKPIzFHTrcqhaC7es2EXInq1SpjPVnpVSIsBe6hNoLWqqCx1n5VKiPXq6PfXnHZKOQ==} + '@emotion/cache@11.14.0': dependencies: - '@shikijs/engine-oniguruma': 3.2.1 - '@shikijs/types': 3.2.1 - '@shikijs/vscode-textmate': 10.0.2 - dev: true + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + stylis: 4.2.0 + + '@emotion/hash@0.9.2': {} - /@gnosis.pm/safe-deployments@1.19.0: - resolution: {integrity: sha512-EvHR/LjMwJm0QKXyTscRXqR9vnJwCUDiMnRNKRyXe1akW+udiYXjJTAiGuleFS4DOUSqs6DpAjYlLnXMzUsVMw==} - deprecated: 'WARNING: This project has been renamed to @safe-global/safe-deployments . Please, update your dependencies.' + '@emotion/is-prop-valid@1.3.1': dependencies: - semver: 7.5.4 - dev: false + '@emotion/memoize': 0.9.0 - /@hello-pangea/dnd@17.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-LDDPOix/5N0j5QZxubiW9T0M0+1PR0rTDWeZF5pu1Tz91UQnuVK4qQ/EjY83Qm2QeX0eM8qDXANfDh3VVqtR4Q==} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@emotion/memoize@0.9.0': {} + + '@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0)': dependencies: - '@babel/runtime': 7.26.0 - css-box-model: 1.2.1 - memoize-one: 6.0.0 - raf-schd: 4.0.3 + '@babel/runtime': 7.27.3 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.2.0) + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + hoist-non-react-statics: 3.3.2 react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-redux: 9.1.2(@types/react@18.2.14)(react@18.2.0)(redux@5.0.1) - redux: 5.0.1 - use-memo-one: 1.1.3(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.14 transitivePeerDependencies: - - '@types/react' - dev: false + - supports-color - /@humanwhocodes/config-array@0.11.10: - resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} - engines: {node: '>=10.10.0'} + '@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 + '@babel/runtime': 7.27.3 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1) + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + hoist-non-react-statics: 3.3.2 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 transitivePeerDependencies: - supports-color - /@humanwhocodes/config-array@0.11.14: - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@emotion/serialize@1.3.3': dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 + csstype: 3.1.3 + + '@emotion/sheet@1.4.0': {} + + '@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.27.3 + '@emotion/babel-plugin': 11.13.5 + '@emotion/is-prop-valid': 1.3.1 + '@emotion/react': 11.14.0(@types/react@18.2.14)(react@18.2.0) + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.2.0) + '@emotion/utils': 1.4.2 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.14 transitivePeerDependencies: - supports-color - dev: false - - /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead + '@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.3 + '@emotion/babel-plugin': 11.13.5 + '@emotion/is-prop-valid': 1.3.1 + '@emotion/react': 11.14.0(@types/react@18.3.23)(react@18.3.1) + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1) + '@emotion/utils': 1.4.2 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + transitivePeerDependencies: + - supports-color - /@humanwhocodes/object-schema@2.0.3: - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead - dev: false + '@emotion/unitless@0.10.0': {} - /@icons-pack/react-simple-icons@10.1.0(react@18.2.0): - resolution: {integrity: sha512-sZ2oDkYaVAci7GuNL8okERJn4Ej0INbeCwtIDVuwWfO5zILW7j5frvKQbozTB+fLtZqEwAP9KkNp7oR8WeHaIg==} - peerDependencies: - react: ^16.13 || ^17 || ^18 + '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.2.0)': dependencies: react: 18.2.0 - dev: false - /@img/sharp-darwin-arm64@0.33.5: - resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.0.4 - dev: false - optional: true + '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.3.1)': + dependencies: + react: 18.3.1 - /@img/sharp-darwin-x64@0.33.5: - resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [darwin] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.0.4 - dev: false - optional: true + '@emotion/utils@1.4.2': {} - /@img/sharp-libvips-darwin-arm64@1.0.4: - resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true + '@emotion/weak-memoize@0.4.0': {} - /@img/sharp-libvips-darwin-x64@1.0.4: - resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true + '@emurgo/cardano-serialization-lib-browser@13.2.1': {} - /@img/sharp-libvips-linux-arm64@1.0.4: - resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@emurgo/cardano-serialization-lib-nodejs@13.2.0': {} - /@img/sharp-libvips-linux-arm@1.0.5: - resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false + '@esbuild/android-arm64@0.18.20': optional: true - /@img/sharp-libvips-linux-s390x@1.0.4: - resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: false + '@esbuild/android-arm@0.18.20': optional: true - /@img/sharp-libvips-linux-x64@1.0.4: - resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@esbuild/android-x64@0.18.20': optional: true - /@img/sharp-libvips-linuxmusl-arm64@1.0.4: - resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@esbuild/darwin-arm64@0.18.20': optional: true - /@img/sharp-libvips-linuxmusl-x64@1.0.4: - resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@esbuild/darwin-x64@0.18.20': optional: true - /@img/sharp-linux-arm64@0.33.5: - resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.0.4 - dev: false + '@esbuild/freebsd-arm64@0.18.20': optional: true - /@img/sharp-linux-arm@0.33.5: - resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.0.5 - dev: false + '@esbuild/freebsd-x64@0.18.20': optional: true - /@img/sharp-linux-s390x@0.33.5: - resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [s390x] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.0.4 - dev: false + '@esbuild/linux-arm64@0.18.20': optional: true - /@img/sharp-linux-x64@0.33.5: - resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.0.4 - dev: false + '@esbuild/linux-arm@0.18.20': optional: true - /@img/sharp-linuxmusl-arm64@0.33.5: - resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 - dev: false + '@esbuild/linux-ia32@0.18.20': optional: true - /@img/sharp-linuxmusl-x64@0.33.5: - resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [linux] - requiresBuild: true - optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.0.4 - dev: false + '@esbuild/linux-loong64@0.18.20': optional: true - /@img/sharp-wasm32@0.33.5: - resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [wasm32] - requiresBuild: true - dependencies: - '@emnapi/runtime': 1.3.1 - dev: false + '@esbuild/linux-mips64el@0.18.20': optional: true - /@img/sharp-win32-ia32@0.33.5: - resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false + '@esbuild/linux-ppc64@0.18.20': optional: true - /@img/sharp-win32-x64@0.33.5: - resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@esbuild/linux-riscv64@0.18.20': optional: true - /@inquirer/checkbox@1.5.2: - resolution: {integrity: sha512-CifrkgQjDkUkWexmgYYNyB5603HhTHI91vLFeQXh6qrTKiCMVASol01Rs1cv6LP/A2WccZSRlJKZhbaBIs/9ZA==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - figures: 3.2.0 - dev: false - - /@inquirer/confirm@2.0.17: - resolution: {integrity: sha512-EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - dev: false + '@esbuild/linux-s390x@0.18.20': + optional: true - /@inquirer/core@2.3.1: - resolution: {integrity: sha512-faYAYnIfdEuns3jGKykaog5oUqFiEVbCx9nXGZfUhyEEpKcHt5bpJfZTb3eOBQKo8I/v4sJkZeBHmFlSZQuBCw==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/type': 1.5.5 - '@types/mute-stream': 0.0.1 - '@types/node': 20.17.9 - '@types/wrap-ansi': 3.0.0 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-spinners: 2.9.2 - cli-width: 4.1.0 - figures: 3.2.0 - mute-stream: 1.0.0 - run-async: 3.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - dev: false + '@esbuild/linux-x64@0.18.20': + optional: true - /@inquirer/core@6.0.0: - resolution: {integrity: sha512-fKi63Khkisgda3ohnskNf5uZJj+zXOaBvOllHsOkdsXRA/ubQLJQrZchFFi57NKbZzkTunXiBMdvWOv71alonw==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/type': 1.5.5 - '@types/mute-stream': 0.0.4 - '@types/node': 20.17.9 - '@types/wrap-ansi': 3.0.0 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-spinners: 2.9.2 - cli-width: 4.1.0 - figures: 3.2.0 - mute-stream: 1.0.0 - run-async: 3.0.0 - signal-exit: 4.1.0 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - dev: false + '@esbuild/netbsd-x64@0.18.20': + optional: true - /@inquirer/editor@1.2.15: - resolution: {integrity: sha512-gQ77Ls09x5vKLVNMH9q/7xvYPT6sIs5f7URksw+a2iJZ0j48tVS6crLqm2ugG33tgXHIwiEqkytY60Zyh5GkJQ==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - external-editor: 3.1.0 - dev: false + '@esbuild/openbsd-x64@0.18.20': + optional: true - /@inquirer/expand@1.1.16: - resolution: {integrity: sha512-TGLU9egcuo+s7PxphKUCnJnpCIVY32/EwPCLLuu+gTvYiD8hZgx8Z2niNQD36sa6xcfpdLY6xXDBiL/+g1r2XQ==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - figures: 3.2.0 - dev: false + '@esbuild/sunos-x64@0.18.20': + optional: true - /@inquirer/input@1.2.16: - resolution: {integrity: sha512-Ou0LaSWvj1ni+egnyQ+NBtfM1885UwhRCMtsRt2bBO47DoC1dwtCa+ZUNgrxlnCHHF0IXsbQHYtIIjFGAavI4g==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - dev: false + '@esbuild/win32-arm64@0.18.20': + optional: true - /@inquirer/password@1.1.16: - resolution: {integrity: sha512-aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - dev: false + '@esbuild/win32-ia32@0.18.20': + optional: true - /@inquirer/prompts@2.1.0: - resolution: {integrity: sha512-YpfNrTjItyB9CYJUdIBp+9hRUu0e5JR//qC55gRrKjpGZP7CwrMvFJiS1LMZNG5vzd61CDxpOvNmkHcmMe6QmA==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/checkbox': 1.5.2 - '@inquirer/confirm': 2.0.17 - '@inquirer/core': 2.3.1 - '@inquirer/editor': 1.2.15 - '@inquirer/expand': 1.1.16 - '@inquirer/input': 1.2.16 - '@inquirer/password': 1.1.16 - '@inquirer/rawlist': 1.2.16 - '@inquirer/select': 1.3.3 - dev: false + '@esbuild/win32-x64@0.18.20': + optional: true - /@inquirer/rawlist@1.2.16: - resolution: {integrity: sha512-pZ6TRg2qMwZAOZAV6TvghCtkr53dGnK29GMNQ3vMZXSNguvGqtOVc4j/h1T8kqGJFagjyfBZhUPGwNS55O5qPQ==} - engines: {node: '>=14.18.0'} + '@eslint-community/eslint-utils@4.7.0(eslint@8.56.0)': dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - dev: false + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 - /@inquirer/select@1.3.3: - resolution: {integrity: sha512-RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg==} - engines: {node: '>=14.18.0'} - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - figures: 3.2.0 - dev: false + '@eslint-community/regexpp@4.12.1': {} - /@inquirer/type@1.5.5: - resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==} - engines: {node: '>=18'} + '@eslint/eslintrc@2.1.4': dependencies: - mute-stream: 1.0.0 - dev: false + ajv: 6.12.6 + debug: 4.4.1(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - dependencies: - string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 + '@eslint/js@8.56.0': {} - /@isaacs/ttlcache@1.4.1: - resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} - engines: {node: '>=12'} - dev: false + '@ethereumjs/common@3.2.0': + dependencies: + '@ethereumjs/util': 8.1.0 + crc-32: 1.2.2 - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} + '@ethereumjs/common@4.4.0': dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 + '@ethereumjs/util': 9.1.0 - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + '@ethereumjs/rlp@4.0.1': {} - /@jest/console@29.7.0: - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethereumjs/rlp@5.0.2': {} + + '@ethereumjs/tx@4.2.0': dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 - dev: true + '@ethereumjs/common': 3.2.0 + '@ethereumjs/rlp': 4.0.1 + '@ethereumjs/util': 8.1.0 + ethereum-cryptography: 2.2.1 - /@jest/core@29.4.3: - resolution: {integrity: sha512-56QvBq60fS4SPZCuM7T+7scNrkGIe7Mr6PVIXUpu48ouvRaWOFqRPV91eifvFM0ay2HmfswXiGf97NGUN5KofQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@ethereumjs/tx@5.4.0': dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.8.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.3.1) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - dev: true + '@ethereumjs/common': 4.4.0 + '@ethereumjs/rlp': 5.0.2 + '@ethereumjs/util': 9.1.0 + ethereum-cryptography: 2.2.1 - /@jest/core@29.7.0: - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@ethereumjs/util@8.1.0': dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.8.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.3.1) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - dev: true + '@ethereumjs/rlp': 4.0.1 + ethereum-cryptography: 2.2.1 + micro-ftch: 0.3.1 - /@jest/create-cache-key-function@29.7.0: - resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethereumjs/util@9.1.0': dependencies: - '@jest/types': 29.6.3 - dev: false + '@ethereumjs/rlp': 5.0.2 + ethereum-cryptography: 2.2.1 - /@jest/environment@29.4.3: - resolution: {integrity: sha512-dq5S6408IxIa+lr54zeqce+QgI+CJT4nmmA+1yzFgtcsGK8c/EyiUb9XQOgz3BMKrRDfKseeOaxj2eO8LlD3lA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abi@5.7.0': dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - jest-mock: 29.7.0 - dev: true + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abi@5.8.0': dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - jest-mock: 29.7.0 + '@ethersproject/address': 5.8.0 + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/hash': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/strings': 5.8.0 - /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abstract-provider@5.7.0': dependencies: - jest-get-type: 29.6.3 - dev: true + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 - /@jest/expect@29.4.3: - resolution: {integrity: sha512-iktRU/YsxEtumI9zsPctYUk7ptpC+AVLLk1Ax3AsA4g1C+8OOnKDkIQBDHtD5hA/+VtgMd5AWI5gNlcAlt2vxQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abstract-provider@5.8.0': dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color - dev: true + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/networks': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/transactions': 5.8.0 + '@ethersproject/web': 5.8.0 - /@jest/expect@29.7.0: - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abstract-signer@5.7.0': dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color - dev: true + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 - /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/abstract-signer@5.8.0': dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.0.2 - '@types/node': 20.3.1 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-util: 29.7.0 + '@ethersproject/abstract-provider': 5.8.0 + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 - /@jest/globals@29.4.3: - resolution: {integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/address@5.7.0': dependencies: - '@jest/environment': 29.4.3 - '@jest/expect': 29.4.3 - '@jest/types': 29.4.3 - jest-mock: 29.4.3 - transitivePeerDependencies: - - supports-color - dev: true + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/rlp': 5.7.0 - /@jest/globals@29.7.0: - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/address@5.8.0': dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 - jest-mock: 29.7.0 - transitivePeerDependencies: - - supports-color - dev: true + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/rlp': 5.8.0 - /@jest/reporters@29.7.0: - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@ethersproject/base64@5.7.0': dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.3.1 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 6.0.2 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - jest-worker: 29.7.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.0 - transitivePeerDependencies: - - supports-color - dev: true + '@ethersproject/bytes': 5.7.0 - /@jest/schemas@29.4.3: - resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/base64@5.8.0': dependencies: - '@sinclair/typebox': 0.25.22 - dev: true + '@ethersproject/bytes': 5.8.0 - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/basex@5.7.0': dependencies: - '@sinclair/typebox': 0.27.8 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/properties': 5.7.0 - /@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/bignumber@5.7.0': dependencies: - '@jridgewell/trace-mapping': 0.3.25 - callsites: 3.1.0 - graceful-fs: 4.2.11 - dev: true + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + bn.js: 5.2.2 - /@jest/test-result@29.7.0: - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/bignumber@5.8.0': dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.4 - collect-v8-coverage: 1.0.1 - dev: true + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + bn.js: 5.2.2 - /@jest/test-sequencer@29.7.0: - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/bytes@5.7.0': dependencies: - '@jest/test-result': 29.7.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - slash: 3.0.0 - dev: true + '@ethersproject/logger': 5.7.0 - /@jest/transform@29.4.3: - resolution: {integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/bytes@5.8.0': dependencies: - '@babel/core': 7.26.9 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - dev: false + '@ethersproject/logger': 5.8.0 - /@jest/transform@29.7.0: - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/constants@5.7.0': dependencies: - '@babel/core': 7.26.9 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color + '@ethersproject/bignumber': 5.7.0 - /@jest/types@29.4.3: - resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/constants@5.8.0': dependencies: - '@jest/schemas': 29.4.3 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 20.3.1 - '@types/yargs': 17.0.22 - chalk: 4.1.2 - dev: true + '@ethersproject/bignumber': 5.8.0 - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@ethersproject/contracts@5.7.0': dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 20.3.1 - '@types/yargs': 17.0.22 - chalk: 4.1.2 + '@ethersproject/abi': 5.7.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 - /@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-nyRq0xLEj9i2J4UXQ0Mr4KzsooTMbLu0ewHOqdQV7iZE0PfbtKa8poTSF4ZBAQD8hoMHEx+I7zGFCNMI9BTrTA==} - peerDependencies: - '@solana/web3.js': ^1.63.0 + '@ethersproject/contracts@5.8.0': dependencies: - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.14.0 - '@walletconnect/utils': 2.14.0 - bs58: 5.0.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate - dev: false + '@ethersproject/abi': 5.8.0 + '@ethersproject/abstract-provider': 5.8.0 + '@ethersproject/abstract-signer': 5.8.0 + '@ethersproject/address': 5.8.0 + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/transactions': 5.8.0 - /@jridgewell/gen-mapping@0.1.1: - resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} - engines: {node: '>=6.0.0'} + '@ethersproject/hash@5.7.0': dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - dev: false + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - /@jridgewell/gen-mapping@0.3.5: - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + '@ethersproject/hash@5.8.0': dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 - - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} + '@ethersproject/abstract-signer': 5.8.0 + '@ethersproject/address': 5.8.0 + '@ethersproject/base64': 5.8.0 + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/strings': 5.8.0 - /@jridgewell/set-array@1.2.1: - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} + '@ethersproject/hdnode@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + '@ethersproject/json-wallets@5.7.0': dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - dev: false + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + aes-js: 3.0.0 + scrypt-js: 3.0.1 - /@jridgewell/sourcemap-codec@1.5.0: - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@ethersproject/keccak256@5.7.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + js-sha3: 0.8.0 - /@jridgewell/trace-mapping@0.3.25: - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@ethersproject/keccak256@5.8.0': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.5.0 + '@ethersproject/bytes': 5.8.0 + js-sha3: 0.8.0 - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + '@ethersproject/logger@5.7.0': {} + + '@ethersproject/logger@5.8.0': {} + + '@ethersproject/networks@5.7.1': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.5.0 - dev: true + '@ethersproject/logger': 5.7.0 - /@keystonehq/alias-sampling@0.1.2: - resolution: {integrity: sha512-5ukLB3bcgltgaFfQfYKYwHDUbwHicekYo53fSEa7xhVkAEqsA74kxdIwoBIURmGUtXe3EVIRm4SYlgcrt2Ri0w==} - dev: false + '@ethersproject/networks@5.8.0': + dependencies: + '@ethersproject/logger': 5.8.0 - /@keystonehq/bc-ur-registry-sol@0.3.1: - resolution: {integrity: sha512-Okr5hwPxBZxB4EKLK1GSC9vsrh/tFMQ5dvs3EQ9NCOmCn7CXdXIMSeafrpGCHk484Jf5c6X0Wq0yf0VqY2A/8Q==} + '@ethersproject/pbkdf2@5.7.0': dependencies: - '@keystonehq/bc-ur-registry': 0.5.5 - bs58check: 2.1.2 - uuid: 8.3.2 - dev: false + '@ethersproject/bytes': 5.7.0 + '@ethersproject/sha2': 5.7.0 - /@keystonehq/bc-ur-registry@0.5.5: - resolution: {integrity: sha512-PoclPHf0OhpIKLfLwzymsu+CjkWf5ZKvaVjpkq3HUalcI4KW8wLk0m8qI2kBVv6F0BQ0ERPqW8OfjLTVqIgWLA==} + '@ethersproject/properties@5.7.0': dependencies: - '@ngraveio/bc-ur': 1.1.13 - bs58check: 2.1.2 - tslib: 2.8.1 - dev: false + '@ethersproject/logger': 5.7.0 - /@keystonehq/sdk@0.13.1: - resolution: {integrity: sha512-545l83TE5t1cyUZUaNqZOAh15ibWOg9QbK/YeLwnrxt+GOod+ATk3j9SpN6yTSLO8DNl2/x6dKRIFVtTEkZDAg==} + '@ethersproject/properties@5.8.0': dependencies: - '@ngraveio/bc-ur': 1.1.13 - qrcode.react: 1.0.1(react@16.13.1) - react: 16.13.1 - react-dom: 16.13.1(react@16.13.1) - react-modal: 3.16.1(react-dom@16.13.1)(react@16.13.1) - react-qr-reader: 2.2.1(react-dom@16.13.1)(react@16.13.1) - rxjs: 6.6.7 - typescript: 4.9.5 - dev: false + '@ethersproject/logger': 5.8.0 - /@keystonehq/sol-keyring@0.3.1: - resolution: {integrity: sha512-RU6I3HQrQ9NpRDP9TwlBIy5DftVcNcyk0NWfhkPy/YanhMcCB0cRPw68iQl1rMnR6n1G2+YrBHMxm6swCW+B4Q==} + '@ethersproject/providers@5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@keystonehq/bc-ur-registry': 0.5.5 - '@keystonehq/bc-ur-registry-sol': 0.3.1 - '@keystonehq/sdk': 0.13.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bs58: 5.0.0 - uuid: 8.3.2 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 + bech32: 1.1.4 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - - encoding - utf-8-validate - dev: false - /@ledgerhq/devices@6.27.1: - resolution: {integrity: sha512-jX++oy89jtv7Dp2X6gwt3MMkoajel80JFWcdc0HCouwDsV1mVJ3SQdwl/bQU0zd8HI6KebvUP95QTwbQLLK/RQ==} + '@ethersproject/random@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + + '@ethersproject/rlp@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + + '@ethersproject/rlp@5.8.0': dependencies: - '@ledgerhq/errors': 6.18.0 - '@ledgerhq/logs': 6.12.0 - rxjs: 6.6.7 - semver: 7.5.4 - dev: false + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 - /@ledgerhq/errors@6.18.0: - resolution: {integrity: sha512-L3jQWAGyooxRDk/MRlW2v4Ji9+kloBtdmz9wBkHaj2j0n+05rweJSV3GHw9oye1BYMbVFqFffmT4H3hlXlCasw==} - dev: false + '@ethersproject/sha2@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + hash.js: 1.1.7 - /@ledgerhq/hw-transport-webhid@6.27.1: - resolution: {integrity: sha512-u74rBYlibpbyGblSn74fRs2pMM19gEAkYhfVibq0RE1GNFjxDMFC1n7Sb+93Jqmz8flyfB4UFJsxs8/l1tm2Kw==} + '@ethersproject/sha2@5.8.0': dependencies: - '@ledgerhq/devices': 6.27.1 - '@ledgerhq/errors': 6.18.0 - '@ledgerhq/hw-transport': 6.27.1 - '@ledgerhq/logs': 6.12.0 - dev: false + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + hash.js: 1.1.7 - /@ledgerhq/hw-transport@6.27.1: - resolution: {integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==} + '@ethersproject/signing-key@5.7.0': dependencies: - '@ledgerhq/devices': 6.27.1 - '@ledgerhq/errors': 6.18.0 - events: 3.3.0 - dev: false + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + bn.js: 5.2.2 + elliptic: 6.6.1 + hash.js: 1.1.7 - /@ledgerhq/logs@6.12.0: - resolution: {integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==} - dev: false + '@ethersproject/signing-key@5.8.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + bn.js: 5.2.2 + elliptic: 6.6.1 + hash.js: 1.1.7 - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + '@ethersproject/solidity@5.7.0': dependencies: - '@babel/runtime': 7.26.10 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - dev: true + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + '@ethersproject/solidity@5.8.0': dependencies: - '@babel/runtime': 7.26.10 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - dev: true + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/sha2': 5.8.0 + '@ethersproject/strings': 5.8.0 - /@metamask/eth-sig-util@4.0.1: - resolution: {integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==} - engines: {node: '>=12.0.0'} + '@ethersproject/strings@5.7.0': dependencies: - ethereumjs-abi: 0.6.8 - ethereumjs-util: 6.2.1 - ethjs-util: 0.1.6 - tweetnacl: 1.0.3 - tweetnacl-util: 0.15.1 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/logger': 5.8.0 - /@metamask/rpc-errors@5.1.1: - resolution: {integrity: sha512-JjZnDi2y2CfvbohhBl+FOQRzmFlJpybcQlIk37zEX8B96eVSPbH/T8S0p7cSF8IE33IWx6JkD8Ycsd+2TXFxCw==} - engines: {node: '>=16.0.0'} + '@ethersproject/strings@5.8.0': dependencies: - '@metamask/utils': 5.0.2 - fast-safe-stringify: 2.1.1 - transitivePeerDependencies: - - supports-color - dev: false + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/logger': 5.8.0 - /@metamask/utils@5.0.2: - resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} - engines: {node: '>=14.0.0'} + '@ethersproject/transactions@5.7.0': dependencies: - '@ethereumjs/tx': 4.2.0 - '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@8.1.1) - semver: 7.5.4 - superstruct: 1.0.4 - transitivePeerDependencies: - - supports-color - dev: false + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/signing-key': 5.7.0 - /@microsoft/tsdoc-config@0.17.1: - resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==} + '@ethersproject/transactions@5.8.0': dependencies: - '@microsoft/tsdoc': 0.15.1 - ajv: 8.12.0 - jju: 1.4.0 - resolve: 1.22.8 - dev: true + '@ethersproject/address': 5.8.0 + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/rlp': 5.8.0 + '@ethersproject/signing-key': 5.8.0 - /@microsoft/tsdoc@0.15.1: - resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} - dev: true + '@ethersproject/units@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 - /@mobily/ts-belt@3.13.1: - resolution: {integrity: sha512-K5KqIhPI/EoCTbA6CGbrenM9s41OouyK8A03fGJJcla/zKucsgLbz8HNbeseoLarRPgyWJsUyCYqFhI7t3Ra9Q==} - engines: {node: '>= 10.*'} - dev: false + '@ethersproject/wallet@5.7.0': + dependencies: + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/json-wallets': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 - /@mui/core-downloads-tracker@6.1.5: - resolution: {integrity: sha512-3J96098GrC95XsLw/TpGNMxhUOnoG9NZ/17Pfk1CrJj+4rcuolsF2RdF3XAFTu/3a/A+5ouxlSIykzYz6Ee87g==} - dev: false + '@ethersproject/web@5.7.1': + dependencies: + '@ethersproject/base64': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - /@mui/icons-material@6.1.5(@mui/material@6.1.5)(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-SbxFtO5I4cXfvhjAMgGib/t2lQUzcEzcDFYiRHRufZUeMMeXuoKaGsptfwAHTepYkv0VqcCwvxtvtWbpZLAbjQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': ^6.1.5 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@ethersproject/web@5.8.0': dependencies: - '@babel/runtime': 7.26.0 - '@mui/material': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@ethersproject/base64': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/properties': 5.8.0 + '@ethersproject/strings': 5.8.0 - /@mui/icons-material@6.1.5(@mui/material@6.1.5)(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-SbxFtO5I4cXfvhjAMgGib/t2lQUzcEzcDFYiRHRufZUeMMeXuoKaGsptfwAHTepYkv0VqcCwvxtvtWbpZLAbjQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': ^6.1.5 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@ethersproject/wordlists@5.7.0': dependencies: - '@babel/runtime': 7.26.0 - '@mui/material': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.75)(react-dom@18.3.1)(react@18.2.0) - '@types/react': 18.2.75 - react: 18.2.0 - dev: false + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - /@mui/material@6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-rhaxC7LnlOG8zIVYv7BycNbWkC5dlm9A/tcDUp0CuwA7Zf9B9JP6M3rr50cNKxI7Z0GIUesAT86ceVm44quwnQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material-pigment-css': ^6.1.5 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@mui/material-pigment-css': - optional: true - '@types/react': - optional: true + '@farcaster/frame-core@0.0.26(typescript@5.4.3)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/react': 11.13.3(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.14)(react@18.2.0) - '@mui/core-downloads-tracker': 6.1.5 - '@mui/system': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.14)(react@18.2.0) - '@mui/types': 7.2.18(@types/react@18.2.14) - '@mui/utils': 6.1.5(@types/react@18.2.14)(react@18.2.0) - '@popperjs/core': 2.11.8 - '@types/react': 18.2.14 - '@types/react-transition-group': 4.4.11 - clsx: 2.1.1 - csstype: 3.1.3 - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) - dev: false + ox: 0.4.4(typescript@5.4.3)(zod@3.25.33) + zod: 3.25.33 + transitivePeerDependencies: + - typescript - /@mui/material@6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.75)(react-dom@18.3.1)(react@18.2.0): - resolution: {integrity: sha512-rhaxC7LnlOG8zIVYv7BycNbWkC5dlm9A/tcDUp0CuwA7Zf9B9JP6M3rr50cNKxI7Z0GIUesAT86ceVm44quwnQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material-pigment-css': ^6.1.5 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@mui/material-pigment-css': - optional: true - '@types/react': - optional: true + '@farcaster/frame-sdk@0.0.28(typescript@5.4.3)(zod@3.25.33)': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/react': 11.13.3(@types/react@18.2.75)(react@18.2.0) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.75)(react@18.2.0) - '@mui/core-downloads-tracker': 6.1.5 - '@mui/system': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.75)(react@18.2.0) - '@mui/types': 7.2.18(@types/react@18.2.75) - '@mui/utils': 6.1.5(@types/react@18.2.75)(react@18.2.0) - '@popperjs/core': 2.11.8 - '@types/react': 18.2.75 - '@types/react-transition-group': 4.4.11 - clsx: 2.1.1 - csstype: 3.1.3 - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.3.1(react@18.2.0) - react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.2.0) - dev: false + '@farcaster/frame-core': 0.0.26(typescript@5.4.3) + comlink: 4.4.2 + eventemitter3: 5.0.1 + ox: 0.4.4(typescript@5.4.3)(zod@3.25.33) + transitivePeerDependencies: + - typescript + - zod - /@mui/private-theming@6.1.5(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-FJqweqEXk0KdtTho9C2h6JEKXsOT7MAVH2Uj3N5oIqs6YKxnwBn2/zL2QuYYEtj5OJ87rEUnCfFic6ldClvzJw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@farcaster/frame-wagmi-connector@0.0.16(@farcaster/frame-sdk@0.0.28(typescript@5.4.3)(zod@3.25.33))(@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - '@babel/runtime': 7.26.10 - '@mui/utils': 6.1.5(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - prop-types: 15.8.1 - react: 18.2.0 - dev: false + '@farcaster/frame-sdk': 0.0.28(typescript@5.4.3)(zod@3.25.33) + '@wagmi/core': 2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /@mui/private-theming@6.1.5(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-FJqweqEXk0KdtTho9C2h6JEKXsOT7MAVH2Uj3N5oIqs6YKxnwBn2/zL2QuYYEtj5OJ87rEUnCfFic6ldClvzJw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@fastify/busboy@2.1.1': {} + + '@fivebinaries/coin-selection@3.0.0': dependencies: - '@babel/runtime': 7.26.10 - '@mui/utils': 6.1.5(@types/react@18.2.75)(react@18.2.0) - '@types/react': 18.2.75 - prop-types: 15.8.1 - react: 18.2.0 - dev: false + '@emurgo/cardano-serialization-lib-browser': 13.2.1 + '@emurgo/cardano-serialization-lib-nodejs': 13.2.0 - /@mui/styled-engine@6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(react@18.2.0): - resolution: {integrity: sha512-tiyWzMkHeWlOoE6AqomWvYvdml8Nv5k5T+LDwOiwHEawx8P9Lyja6ZwWPU6xljwPXYYPT2KBp1XvMly7dsK46A==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@emotion/react': ^11.4.1 - '@emotion/styled': ^11.3.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true + '@floating-ui/core@1.7.0': dependencies: - '@babel/runtime': 7.26.10 - '@emotion/cache': 11.13.1 - '@emotion/react': 11.13.3(@types/react@18.2.14)(react@18.2.0) - '@emotion/serialize': 1.3.2 - '@emotion/sheet': 1.4.0 - '@emotion/styled': 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.14)(react@18.2.0) - csstype: 3.1.3 - prop-types: 15.8.1 - react: 18.2.0 - dev: false + '@floating-ui/utils': 0.2.9 - /@mui/system@6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-vPM9ocQ8qquRDByTG3XF/wfYTL7IWL/20EiiKqByLDps8wOmbrDG9rVznSE3ZbcjFCFfMRMhtxvN92bwe/63SA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@floating-ui/dom@1.7.0': dependencies: - '@babel/runtime': 7.26.10 - '@emotion/react': 11.13.3(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.14)(react@18.2.0) - '@mui/private-theming': 6.1.5(@types/react@18.2.14)(react@18.2.0) - '@mui/styled-engine': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(react@18.2.0) - '@mui/types': 7.2.18(@types/react@18.2.14) - '@mui/utils': 6.1.5(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - clsx: 2.1.1 - csstype: 3.1.3 - prop-types: 15.8.1 - react: 18.2.0 - dev: false + '@floating-ui/core': 1.7.0 + '@floating-ui/utils': 0.2.9 - /@mui/system@6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-vPM9ocQ8qquRDByTG3XF/wfYTL7IWL/20EiiKqByLDps8wOmbrDG9rVznSE3ZbcjFCFfMRMhtxvN92bwe/63SA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/dom': 1.7.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@floating-ui/utils@0.2.9': {} + + '@fractalwagmi/popup-connection@1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@emotion/react': 11.13.3(@types/react@18.2.75)(react@18.2.0) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3)(@types/react@18.2.75)(react@18.2.0) - '@mui/private-theming': 6.1.5(@types/react@18.2.75)(react@18.2.0) - '@mui/styled-engine': 6.1.5(@emotion/react@11.13.3)(@emotion/styled@11.13.0)(react@18.2.0) - '@mui/types': 7.2.18(@types/react@18.2.75) - '@mui/utils': 6.1.5(@types/react@18.2.75)(react@18.2.0) - '@types/react': 18.2.75 - clsx: 2.1.1 - csstype: 3.1.3 - prop-types: 15.8.1 - react: 18.2.0 - dev: false + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@mui/types@7.2.18(@types/react@18.2.14): - resolution: {integrity: sha512-uvK9dWeyCJl/3ocVnTOS6nlji/Knj8/tVqVX03UVTpdmTJYu/s4jtDd9Kvv0nRGE0CUSNW1UYAci7PYypjealg==} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@types/react': 18.2.14 - dev: false + '@fractalwagmi/popup-connection': 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + bs58: 5.0.0 + transitivePeerDependencies: + - '@solana/web3.js' + - react + - react-dom - /@mui/types@7.2.18(@types/react@18.2.75): - resolution: {integrity: sha512-uvK9dWeyCJl/3ocVnTOS6nlji/Knj8/tVqVX03UVTpdmTJYu/s4jtDd9Kvv0nRGE0CUSNW1UYAci7PYypjealg==} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@gerrit0/mini-shiki@3.4.2': dependencies: - '@types/react': 18.2.75 - dev: false + '@shikijs/engine-oniguruma': 3.4.2 + '@shikijs/langs': 3.4.2 + '@shikijs/themes': 3.4.2 + '@shikijs/types': 3.4.2 + '@shikijs/vscode-textmate': 10.0.2 - /@mui/utils@6.1.5(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-vp2WfNDY+IbKUIGg+eqX1Ry4t/BilMjzp6p9xO1rfqpYjH1mj8coQxxDfKxcQLzBQkmBJjymjoGOak5VUYwXug==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)': dependencies: - '@babel/runtime': 7.26.10 - '@mui/types': 7.2.18(@types/react@18.2.14) - '@types/prop-types': 15.7.13 - '@types/react': 18.2.14 - clsx: 2.1.1 - prop-types: 15.8.1 - react: 18.2.0 - react-is: 18.3.1 - dev: false + graphql: 16.11.0 - /@mui/utils@6.1.5(@types/react@18.2.75)(react@18.2.0): - resolution: {integrity: sha512-vp2WfNDY+IbKUIGg+eqX1Ry4t/BilMjzp6p9xO1rfqpYjH1mj8coQxxDfKxcQLzBQkmBJjymjoGOak5VUYwXug==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 - react: ^17.0.0 || ^18.0.0 || ^19.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@hello-pangea/dnd@17.0.0(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.26.10 - '@mui/types': 7.2.18(@types/react@18.2.75) - '@types/prop-types': 15.7.13 - '@types/react': 18.2.75 - clsx: 2.1.1 - prop-types: 15.8.1 + '@babel/runtime': 7.27.3 + css-box-model: 1.2.1 + memoize-one: 6.0.0 + raf-schd: 4.0.3 react: 18.2.0 - react-is: 18.3.1 - dev: false + react-dom: 18.2.0(react@18.2.0) + react-redux: 9.2.0(@types/react@18.2.14)(react@18.2.0)(redux@5.0.1) + redux: 5.0.1 + use-memo-one: 1.1.3(react@18.2.0) + transitivePeerDependencies: + - '@types/react' - /@mysten/bcs@0.7.3: - resolution: {integrity: sha512-fbusBfsyc2MpTACi72H5edWJ670T84va+qn9jSPpb5BzZ+pzUM1Q0ApPrF5OT+mB1o5Ng+mxPQpBCZQkfiV2TA==} + '@hpke/chacha20poly1305@1.6.2': dependencies: - bs58: 5.0.0 - dev: false + '@hpke/common': 1.7.2 + '@noble/ciphers': 1.3.0 - /@mysten/sui.js@0.37.1: - resolution: {integrity: sha512-nEOqnjUqb/VJcVk23LgZOX1FmBib/mBCwAWaJhtsCHLwv2jIAfCPY/fpB9lJ62QHrM8UFclpWxsLkqcUkKyPgA==} - engines: {node: '>=16'} + '@hpke/common@1.7.2': {} + + '@hpke/core@1.7.2': dependencies: - '@mysten/bcs': 0.7.3 - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@open-rpc/client-js': 1.8.1 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 - '@suchipi/femver': 1.0.0 - events: 3.3.0 - superstruct: 1.0.4 - tweetnacl: 1.0.3 + '@hpke/common': 1.7.2 + + '@hpke/dhkem-x25519@1.6.2': + dependencies: + '@hpke/common': 1.7.2 + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + + '@hpke/dhkem-x448@1.6.2': + dependencies: + '@hpke/common': 1.7.2 + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + + '@humanwhocodes/config-array@0.11.14': + dependencies: + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.4.1(supports-color@8.1.1) + minimatch: 3.1.2 transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate - dev: false + - supports-color - /@next/env@14.2.25: - resolution: {integrity: sha512-JnzQ2cExDeG7FxJwqAksZ3aqVJrHjFwZQAEJ9gQZSoEhIow7SNoKZzju/AwQ+PLIR4NY8V0rhcVozx/2izDO0w==} - dev: false + '@humanwhocodes/module-importer@1.0.1': {} - /@next/env@15.2.3: - resolution: {integrity: sha512-a26KnbW9DFEUsSxAxKBORR/uD9THoYoKbkpFywMN/AFvboTt94b8+g/07T8J6ACsdLag8/PDU60ov4rPxRAixw==} - dev: false + '@humanwhocodes/object-schema@2.0.3': {} - /@next/eslint-plugin-next@14.2.25: - resolution: {integrity: sha512-L2jcdEEa0bTv1DhE67Cdx1kLLkL0iLL9ILdBYx0j7noi2AUJM7bwcqmcN8awGg+8uyKGAGof/OkFom50x+ZyZg==} + '@icons-pack/react-simple-icons@10.2.0(react@18.3.1)': dependencies: - glob: 10.3.10 + react: 18.3.1 - /@next/swc-darwin-arm64@14.2.25: - resolution: {integrity: sha512-09clWInF1YRd6le00vt750s3m7SEYNehz9C4PUcSu3bAdCTpjIV4aTYQZ25Ehrr83VR1rZeqtKUPWSI7GfuKZQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false + '@img/sharp-darwin-arm64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.1.0 optional: true - /@next/swc-darwin-arm64@15.2.3: - resolution: {integrity: sha512-uaBhA8aLbXLqwjnsHSkxs353WrRgQgiFjduDpc7YXEU0B54IKx3vU+cxQlYwPCyC8uYEEX7THhtQQsfHnvv8dw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false + '@img/sharp-darwin-x64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.1.0 optional: true - /@next/swc-darwin-x64@14.2.25: - resolution: {integrity: sha512-V+iYM/QR+aYeJl3/FWWU/7Ix4b07ovsQ5IbkwgUK29pTHmq+5UxeDr7/dphvtXEq5pLB/PucfcBNh9KZ8vWbug==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false + '@img/sharp-libvips-darwin-arm64@1.1.0': optional: true - /@next/swc-darwin-x64@15.2.3: - resolution: {integrity: sha512-pVwKvJ4Zk7h+4hwhqOUuMx7Ib02u3gDX3HXPKIShBi9JlYllI0nU6TWLbPT94dt7FSi6mSBhfc2JrHViwqbOdw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false + '@img/sharp-libvips-darwin-x64@1.1.0': optional: true - /@next/swc-linux-arm64-gnu@14.2.25: - resolution: {integrity: sha512-LFnV2899PJZAIEHQ4IMmZIgL0FBieh5keMnriMY1cK7ompR+JUd24xeTtKkcaw8QmxmEdhoE5Mu9dPSuDBgtTg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linux-arm64@1.1.0': optional: true - /@next/swc-linux-arm64-gnu@15.2.3: - resolution: {integrity: sha512-50ibWdn2RuFFkOEUmo9NCcQbbV9ViQOrUfG48zHBCONciHjaUKtHcYFiCwBVuzD08fzvzkWuuZkd4AqbvKO7UQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linux-arm@1.1.0': optional: true - /@next/swc-linux-arm64-musl@14.2.25: - resolution: {integrity: sha512-QC5y5PPTmtqFExcKWKYgUNkHeHE/z3lUsu83di488nyP0ZzQ3Yse2G6TCxz6nNsQwgAx1BehAJTZez+UQxzLfw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linux-ppc64@1.1.0': optional: true - /@next/swc-linux-arm64-musl@15.2.3: - resolution: {integrity: sha512-2gAPA7P652D3HzR4cLyAuVYwYqjG0mt/3pHSWTCyKZq/N/dJcUAEoNQMyUmwTZWCJRKofB+JPuDVP2aD8w2J6Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linux-s390x@1.1.0': optional: true - /@next/swc-linux-x64-gnu@14.2.25: - resolution: {integrity: sha512-y6/ML4b9eQ2D/56wqatTJN5/JR8/xdObU2Fb1RBidnrr450HLCKr6IJZbPqbv7NXmje61UyxjF5kvSajvjye5w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linux-x64@1.1.0': optional: true - /@next/swc-linux-x64-gnu@15.2.3: - resolution: {integrity: sha512-ODSKvrdMgAJOVU4qElflYy1KSZRM3M45JVbeZu42TINCMG3anp7YCBn80RkISV6bhzKwcUqLBAmOiWkaGtBA9w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linuxmusl-arm64@1.1.0': optional: true - /@next/swc-linux-x64-musl@14.2.25: - resolution: {integrity: sha512-sPX0TSXHGUOZFvv96GoBXpB3w4emMqKeMgemrSxI7A6l55VBJp/RKYLwZIB9JxSqYPApqiREaIIap+wWq0RU8w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-libvips-linuxmusl-x64@1.1.0': optional: true - /@next/swc-linux-x64-musl@15.2.3: - resolution: {integrity: sha512-ZR9kLwCWrlYxwEoytqPi1jhPd1TlsSJWAc+H/CJHmHkf2nD92MQpSRIURR1iNgA/kuFSdxB8xIPt4p/T78kwsg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@img/sharp-linux-arm64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.1.0 optional: true - /@next/swc-win32-arm64-msvc@14.2.25: - resolution: {integrity: sha512-ReO9S5hkA1DU2cFCsGoOEp7WJkhFzNbU/3VUF6XxNGUCQChyug6hZdYL/istQgfT/GWE6PNIg9cm784OI4ddxQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false + '@img/sharp-linux-arm@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.1.0 optional: true - /@next/swc-win32-arm64-msvc@15.2.3: - resolution: {integrity: sha512-+G2FrDcfm2YDbhDiObDU/qPriWeiz/9cRR0yMWJeTLGGX6/x8oryO3tt7HhodA1vZ8r2ddJPCjtLcpaVl7TE2Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false + '@img/sharp-linux-s390x@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.1.0 optional: true - /@next/swc-win32-ia32-msvc@14.2.25: - resolution: {integrity: sha512-DZ/gc0o9neuCDyD5IumyTGHVun2dCox5TfPQI/BJTYwpSNYM3CZDI4i6TOdjeq1JMo+Ug4kPSMuZdwsycwFbAw==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false + '@img/sharp-linux-x64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.1.0 optional: true - /@next/swc-win32-x64-msvc@14.2.25: - resolution: {integrity: sha512-KSznmS6eFjQ9RJ1nEc66kJvtGIL1iZMYmGEXsZPh2YtnLtqrgdVvKXJY2ScjjoFnG6nGLyPFR0UiEvDwVah4Tw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@img/sharp-linuxmusl-arm64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 optional: true - /@next/swc-win32-x64-msvc@15.2.3: - resolution: {integrity: sha512-gHYS9tc+G2W0ZC8rBL+H6RdtXIyk40uLiaos0yj5US85FNhbFEndMA2nW3z47nzOWiSvXTZ5kBClc3rD0zJg0w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@img/sharp-linuxmusl-x64@0.34.2': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.1.0 optional: true - /@ngraveio/bc-ur@1.1.13: - resolution: {integrity: sha512-j73akJMV4+vLR2yQ4AphPIT5HZmxVjn/LxpL7YHoINnXoH6ccc90Zzck6/n6a3bCXOVZwBxq+YHwbAKRV+P8Zg==} + '@img/sharp-wasm32@0.34.2': dependencies: - '@keystonehq/alias-sampling': 0.1.2 - assert: 2.1.0 - bignumber.js: 9.1.2 - cbor-sync: 1.0.4 - crc: 3.8.0 - jsbi: 3.2.5 - sha.js: 2.4.11 - dev: false - - /@noble/ciphers@0.4.1: - resolution: {integrity: sha512-QCOA9cgf3Rc33owG0AYBB9wszz+Ul2kramWN8tXG44Gyciud/tbkEqvxRF/IpqQaBpRBNi9f4jdNxqB2CQCIXg==} - dev: false + '@emnapi/runtime': 1.4.3 + optional: true - /@noble/ciphers@1.3.0: - resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==} - engines: {node: ^14.21.3 || >=16} - dev: false + '@img/sharp-win32-arm64@0.34.2': + optional: true - /@noble/curves@1.2.0: - resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} - dependencies: - '@noble/hashes': 1.3.2 + '@img/sharp-win32-ia32@0.34.2': + optional: true - /@noble/curves@1.3.0: - resolution: {integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==} - dependencies: - '@noble/hashes': 1.3.3 - dev: false + '@img/sharp-win32-x64@0.34.2': + optional: true - /@noble/curves@1.4.0: - resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + '@inquirer/checkbox@1.5.2': dependencies: - '@noble/hashes': 1.4.0 - dev: false + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + figures: 3.2.0 - /@noble/curves@1.4.2: - resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + '@inquirer/confirm@2.0.17': dependencies: - '@noble/hashes': 1.4.0 - dev: false + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + chalk: 4.1.2 - /@noble/curves@1.6.0: - resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/core@2.3.1': dependencies: - '@noble/hashes': 1.5.0 + '@inquirer/type': 1.5.5 + '@types/mute-stream': 0.0.1 + '@types/node': 20.17.52 + '@types/wrap-ansi': 3.0.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-spinners: 2.9.2 + cli-width: 4.1.0 + figures: 3.2.0 + mute-stream: 1.0.0 + run-async: 3.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 - /@noble/curves@1.8.0: - resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/core@6.0.0': dependencies: - '@noble/hashes': 1.7.0 - dev: false + '@inquirer/type': 1.5.5 + '@types/mute-stream': 0.0.4 + '@types/node': 20.17.52 + '@types/wrap-ansi': 3.0.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-spinners: 2.9.2 + cli-width: 4.1.0 + figures: 3.2.0 + mute-stream: 1.0.0 + run-async: 3.0.0 + signal-exit: 4.1.0 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 - /@noble/curves@1.8.1: - resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/editor@1.2.15': dependencies: - '@noble/hashes': 1.7.1 + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + chalk: 4.1.2 + external-editor: 3.1.0 - /@noble/curves@1.8.2: - resolution: {integrity: sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/expand@1.1.16': dependencies: - '@noble/hashes': 1.7.2 + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + chalk: 4.1.2 + figures: 3.2.0 - /@noble/curves@1.9.0: - resolution: {integrity: sha512-7YDlXiNMdO1YZeH6t/kvopHHbIZzlxrCV9WLqCY6QhcXOoXiNCMDqJIglZ9Yjx5+w7Dz30TITFrlTjnRg7sKEg==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/input@1.2.16': dependencies: - '@noble/hashes': 1.8.0 - - /@noble/ed25519@2.1.0: - resolution: {integrity: sha512-KM4qTyXPinyCgMzeYJH/UudpdL+paJXtY3CHtHYZQtBkS8MZoPr4rOikZllIutJe0d06QDQKisyn02gxZ8TcQA==} - dev: false - - /@noble/hashes@1.1.5: - resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==} - dev: false - - /@noble/hashes@1.2.0: - resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + chalk: 4.1.2 - /@noble/hashes@1.3.2: - resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} - engines: {node: '>= 16'} + '@inquirer/password@1.1.16': + dependencies: + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + ansi-escapes: 4.3.2 + chalk: 4.1.2 - /@noble/hashes@1.3.3: - resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} - engines: {node: '>= 16'} - dev: false + '@inquirer/prompts@2.3.1': + dependencies: + '@inquirer/checkbox': 1.5.2 + '@inquirer/confirm': 2.0.17 + '@inquirer/core': 2.3.1 + '@inquirer/editor': 1.2.15 + '@inquirer/expand': 1.1.16 + '@inquirer/input': 1.2.16 + '@inquirer/password': 1.1.16 + '@inquirer/rawlist': 1.2.16 + '@inquirer/select': 1.3.3 - /@noble/hashes@1.4.0: - resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} - engines: {node: '>= 16'} + '@inquirer/rawlist@1.2.16': + dependencies: + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + chalk: 4.1.2 - /@noble/hashes@1.5.0: - resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} - engines: {node: ^14.21.3 || >=16} + '@inquirer/select@1.3.3': + dependencies: + '@inquirer/core': 6.0.0 + '@inquirer/type': 1.5.5 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + figures: 3.2.0 - /@noble/hashes@1.7.0: - resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==} - engines: {node: ^14.21.3 || >=16} - dev: false + '@inquirer/type@1.5.5': + dependencies: + mute-stream: 1.0.0 - /@noble/hashes@1.7.1: - resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} - engines: {node: ^14.21.3 || >=16} + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@noble/hashes@1.7.2: - resolution: {integrity: sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==} - engines: {node: ^14.21.3 || >=16} + '@isaacs/ttlcache@1.4.1': {} - /@noble/hashes@1.8.0: - resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} - engines: {node: ^14.21.3 || >=16} + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 - /@noble/secp256k1@1.7.1: - resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} + '@istanbuljs/schema@0.1.3': {} - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@jest/console@29.7.0': dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 + '@jest/types': 29.6.3 + '@types/node': 20.3.1 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.3.1 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))': dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.3.1 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node - /@nomicfoundation/edr-darwin-arm64@0.3.2: - resolution: {integrity: sha512-l6wfSBUUbGJiCENT6272CDI8yoMuf0sZH56H5qz3HnAyVzenkOvmzyF6/lar54m986kdAQqWls4cLvDxiOuLxg==} - engines: {node: '>= 18'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + '@jest/create-cache-key-function@29.7.0': + dependencies: + '@jest/types': 29.6.3 - /@nomicfoundation/edr-darwin-x64@0.3.2: - resolution: {integrity: sha512-OboExL7vEw+TRJQl3KkaEKU4K7PTdZPTInZ0fxMAtOpcWp7EKR+dQo68vc/iAOusB3xszHKxt7t+WpisItfdcg==} - engines: {node: '>= 18'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.3.1 + jest-mock: 29.7.0 - /@nomicfoundation/edr-linux-arm64-gnu@0.3.2: - resolution: {integrity: sha512-xtEK+1eg++3pHi6405NDXd80S3CGOFEGQIyVGCwjMGQFOLSzBGGCsrb/0GB4J19zd1o/8ftCd/HjZcbVAWWTLQ==} - engines: {node: '>= 18'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jest/expect-utils@29.7.0': + dependencies: + jest-get-type: 29.6.3 - /@nomicfoundation/edr-linux-arm64-musl@0.3.2: - resolution: {integrity: sha512-3cIsskJOXQ1yEVsImmCacY7O03tUTiWrmd54F05PnPFrDLkjbzodQ3b2gUWzfbzUZWl67ZTJd1CvVSzpe7XGzw==} - engines: {node: '>= 18'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jest/expect@29.7.0': + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/edr-linux-x64-gnu@0.3.2: - resolution: {integrity: sha512-ouPdphHNsyO7wqwa4hwahC5WqBglK/fIvMmhR/SXNZ9qruIpsA8ZZKIURaHMOv/2h2BbNGcyTX9uEk6+5rK/MQ==} - engines: {node: '>= 18'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.3.1 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 - /@nomicfoundation/edr-linux-x64-musl@0.3.2: - resolution: {integrity: sha512-sRhwhiPbkpJMOUwXW1FZw9ks6xWyQhIhM0E8o3TXEXKSPKTE6whQLEk1R37iFITaI36vb6rSwLKTU1cb32gCoA==} - engines: {node: '>= 18'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + '@jest/globals@29.4.3': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.4.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/edr-win32-arm64-msvc@0.3.2: - resolution: {integrity: sha512-IEwVealKfumu1HSSnama26yPuQC/uthRPK5IWtFsQUOGwOXaS1r9Bu7cGYH2jBHl3IT/JbxD4xzPq/2pM9uK0A==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true + '@jest/globals@29.7.0': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/edr-win32-ia32-msvc@0.3.2: - resolution: {integrity: sha512-jYMnf6SFgguqROswwdsjJ1wvneD/5c16pVu9OD4DxNqhKNP5bHEw6L2N4DcJ89tpXMpJ6AlOpc0QuwzddiZ3tA==} - engines: {node: '>= 18'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true + '@jest/reporters@29.7.0': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 20.3.1 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.3.0 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/edr-win32-x64-msvc@0.3.2: - resolution: {integrity: sha512-Byn4QuWczRy/DUUQM3WjglgX/jGVUURVFaUsmIhnGg//MPlCLawubBGRqsrMuvaYedlIIJ4I2rgKvZlxdgHrqg==} - engines: {node: '>= 18'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 - /@nomicfoundation/edr@0.3.2: - resolution: {integrity: sha512-HGWtjibAK1mo4I2A7nJ/fXqe/J9G54OrSPJnnkY2K8TiXotYLShGd9GvHkae3PuFjTJKm6ZgBy7tveJj5yrCfw==} - engines: {node: '>= 18'} - optionalDependencies: - '@nomicfoundation/edr-darwin-arm64': 0.3.2 - '@nomicfoundation/edr-darwin-x64': 0.3.2 - '@nomicfoundation/edr-linux-arm64-gnu': 0.3.2 - '@nomicfoundation/edr-linux-arm64-musl': 0.3.2 - '@nomicfoundation/edr-linux-x64-gnu': 0.3.2 - '@nomicfoundation/edr-linux-x64-musl': 0.3.2 - '@nomicfoundation/edr-win32-arm64-msvc': 0.3.2 - '@nomicfoundation/edr-win32-ia32-msvc': 0.3.2 - '@nomicfoundation/edr-win32-x64-msvc': 0.3.2 - - /@nomicfoundation/ethereumjs-block@4.0.0: - resolution: {integrity: sha512-bk8uP8VuexLgyIZAHExH1QEovqx0Lzhc9Ntm63nCRKLHXIZkobaFaeCVwTESV7YkPKUk7NiK11s8ryed4CS9yA==} - engines: {node: '>=14'} + '@jest/source-map@29.6.3': dependencies: - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-trie': 5.0.0 - '@nomicfoundation/ethereumjs-tx': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - ethereum-cryptography: 0.1.3 - dev: false + '@jridgewell/trace-mapping': 0.3.25 + callsites: 3.1.0 + graceful-fs: 4.2.11 - /@nomicfoundation/ethereumjs-block@5.0.2: - resolution: {integrity: sha512-hSe6CuHI4SsSiWWjHDIzWhSiAVpzMUcDRpWYzN0T9l8/Rz7xNn3elwVOJ/tAyS0LqL6vitUD78Uk7lQDXZun7Q==} - engines: {node: '>=14'} + '@jest/test-result@29.7.0': dependencies: - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-trie': 6.0.2 - '@nomicfoundation/ethereumjs-tx': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - ethereum-cryptography: 0.1.3 - ethers: 5.7.2 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: true + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 - /@nomicfoundation/ethereumjs-blockchain@6.0.0: - resolution: {integrity: sha512-pLFEoea6MWd81QQYSReLlLfH7N9v7lH66JC/NMPN848ySPPQA5renWnE7wPByfQFzNrPBuDDRFFULMDmj1C0xw==} - engines: {node: '>=14'} + '@jest/test-sequencer@29.7.0': dependencies: - '@nomicfoundation/ethereumjs-block': 4.0.0 - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-ethash': 2.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-trie': 5.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - abstract-level: 1.0.3 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - level: 8.0.0 - lru-cache: 5.1.1 - memory-level: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: false + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 - /@nomicfoundation/ethereumjs-blockchain@7.0.2: - resolution: {integrity: sha512-8UUsSXJs+MFfIIAKdh3cG16iNmWzWC/91P40sazNvrqhhdR/RtGDlFk2iFTGbBAZPs2+klZVzhRX8m2wvuvz3w==} - engines: {node: '>=14'} + '@jest/transform@29.7.0': dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.2 - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-ethash': 3.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-trie': 6.0.2 - '@nomicfoundation/ethereumjs-tx': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - abstract-level: 1.0.3 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - level: 8.0.0 - lru-cache: 5.1.1 - memory-level: 1.0.0 + '@babel/core': 7.26.9 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.8 + pirates: 4.0.7 + slash: 3.0.0 + write-file-atomic: 4.0.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - dev: true - /@nomicfoundation/ethereumjs-common@3.0.0: - resolution: {integrity: sha512-WS7qSshQfxoZOpHG/XqlHEGRG1zmyjYrvmATvc4c62+gZXgre1ymYP8ZNgx/3FyZY0TWe9OjFlKOfLqmgOeYwA==} + '@jest/types@29.4.3': dependencies: - '@nomicfoundation/ethereumjs-util': 8.0.0 - crc-32: 1.2.2 - dev: false + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.3.1 + '@types/yargs': 17.0.33 + chalk: 4.1.2 - /@nomicfoundation/ethereumjs-common@4.0.2: - resolution: {integrity: sha512-I2WGP3HMGsOoycSdOTSqIaES0ughQTueOsddJ36aYVpI3SN8YSusgRFLwzDJwRFVIYDKx/iJz0sQ5kBHVgdDwg==} + '@jest/types@29.6.3': dependencies: - '@nomicfoundation/ethereumjs-util': 9.0.2 - crc-32: 1.2.2 - dev: true + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.3.1 + '@types/yargs': 17.0.33 + chalk: 4.1.2 - /@nomicfoundation/ethereumjs-common@4.0.4: - resolution: {integrity: sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==} + '@jridgewell/gen-mapping@0.3.8': dependencies: - '@nomicfoundation/ethereumjs-util': 9.0.4 - transitivePeerDependencies: - - c-kzg + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - /@nomicfoundation/ethereumjs-ethash@2.0.0: - resolution: {integrity: sha512-WpDvnRncfDUuXdsAXlI4lXbqUDOA+adYRQaEezIkxqDkc+LDyYDbd/xairmY98GnQzo1zIqsIL6GB5MoMSJDew==} - engines: {node: '>=14'} - dependencies: - '@nomicfoundation/ethereumjs-block': 4.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - abstract-level: 1.0.3 - bigint-crypto-utils: 3.3.0 - ethereum-cryptography: 0.1.3 - dev: false + '@jridgewell/resolve-uri@3.1.2': {} - /@nomicfoundation/ethereumjs-ethash@3.0.2: - resolution: {integrity: sha512-8PfoOQCcIcO9Pylq0Buijuq/O73tmMVURK0OqdjhwqcGHYC2PwhbajDh7GZ55ekB0Px197ajK3PQhpKoiI/UPg==} - engines: {node: '>=14'} + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - abstract-level: 1.0.3 - bigint-crypto-utils: 3.3.0 - ethereum-cryptography: 0.1.3 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: true + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 - /@nomicfoundation/ethereumjs-evm@1.0.0: - resolution: {integrity: sha512-hVS6qRo3V1PLKCO210UfcEQHvlG7GqR8iFzp0yyjTg2TmJQizcChKgWo8KFsdMw6AyoLgLhHGHw4HdlP8a4i+Q==} - engines: {node: '>=14'} + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': dependencies: - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - '@types/async-eventemitter': 0.2.1 - async-eventemitter: 0.2.4 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - mcl-wasm: 0.7.9 - rustbn.js: 0.2.0 - transitivePeerDependencies: - - supports-color - dev: false + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 - /@nomicfoundation/ethereumjs-evm@2.0.2: - resolution: {integrity: sha512-rBLcUaUfANJxyOx9HIdMX6uXGin6lANCulIm/pjMgRqfiCRMZie3WKYxTSd8ZE/d+qT+zTedBF4+VHTdTSePmQ==} - engines: {node: '>=14'} + '@jridgewell/trace-mapping@0.3.9': dependencies: - '@ethersproject/providers': 5.7.2 - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-tx': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - mcl-wasm: 0.7.9 - rustbn.js: 0.2.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 - /@nomicfoundation/ethereumjs-rlp@4.0.0: - resolution: {integrity: sha512-GaSOGk5QbUk4eBP5qFbpXoZoZUj/NrW7MRa0tKY4Ew4c2HAS0GXArEMAamtFrkazp0BO4K5p2ZCG3b2FmbShmw==} - engines: {node: '>=14'} - hasBin: true - dev: false + '@keystonehq/alias-sampling@0.1.2': {} - /@nomicfoundation/ethereumjs-rlp@5.0.2: - resolution: {integrity: sha512-QwmemBc+MMsHJ1P1QvPl8R8p2aPvvVcKBbvHnQOKBpBztEo0omN0eaob6FeZS/e3y9NSe+mfu3nNFBHszqkjTA==} - engines: {node: '>=14'} - hasBin: true - dev: true + '@keystonehq/bc-ur-registry-sol@0.9.5': + dependencies: + '@keystonehq/bc-ur-registry': 0.7.0 + bs58check: 2.1.2 + uuid: 8.3.2 - /@nomicfoundation/ethereumjs-rlp@5.0.4: - resolution: {integrity: sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==} - engines: {node: '>=18'} - hasBin: true + '@keystonehq/bc-ur-registry@0.5.4': + dependencies: + '@ngraveio/bc-ur': 1.1.13 + bs58check: 2.1.2 + tslib: 2.8.1 - /@nomicfoundation/ethereumjs-statemanager@1.0.0: - resolution: {integrity: sha512-jCtqFjcd2QejtuAMjQzbil/4NHf5aAWxUc+CvS0JclQpl+7M0bxMofR2AJdtz+P3u0ke2euhYREDiE7iSO31vQ==} + '@keystonehq/bc-ur-registry@0.7.0': dependencies: - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-trie': 5.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - functional-red-black-tree: 1.0.1 - transitivePeerDependencies: - - supports-color - dev: false + '@ngraveio/bc-ur': 1.1.13 + bs58check: 2.1.2 + tslib: 2.8.1 - /@nomicfoundation/ethereumjs-statemanager@2.0.2: - resolution: {integrity: sha512-dlKy5dIXLuDubx8Z74sipciZnJTRSV/uHG48RSijhgm1V7eXYFC567xgKtsKiVZB1ViTP9iFL4B6Je0xD6X2OA==} + '@keystonehq/sdk@0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - ethers: 5.7.2 - js-sdsl: 4.4.2 + '@ngraveio/bc-ur': 1.1.13 + qrcode.react: 1.0.1(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-modal: 3.16.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-qr-reader: 2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rxjs: 6.6.7 + + '@keystonehq/sol-keyring@0.20.0(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)': + dependencies: + '@keystonehq/bc-ur-registry': 0.5.4 + '@keystonehq/bc-ur-registry-sol': 0.9.5 + '@keystonehq/sdk': 0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bs58: 5.0.0 + uuid: 8.3.2 transitivePeerDependencies: - bufferutil - - supports-color + - encoding + - react + - react-dom + - typescript - utf-8-validate - dev: true - /@nomicfoundation/ethereumjs-trie@5.0.0: - resolution: {integrity: sha512-LIj5XdE+s+t6WSuq/ttegJzZ1vliwg6wlb+Y9f4RlBpuK35B9K02bO7xU+E6Rgg9RGptkWd6TVLdedTI4eNc2A==} - engines: {node: '>=14'} + '@ledgerhq/devices@8.4.5': dependencies: - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - ethereum-cryptography: 0.1.3 - readable-stream: 3.6.2 - dev: false + '@ledgerhq/errors': 6.21.0 + '@ledgerhq/logs': 6.12.0 + rxjs: 7.8.2 + semver: 7.7.2 - /@nomicfoundation/ethereumjs-trie@6.0.2: - resolution: {integrity: sha512-yw8vg9hBeLYk4YNg5MrSJ5H55TLOv2FSWUTROtDtTMMmDGROsAu+0tBjiNGTnKRi400M6cEzoFfa89Fc5k8NTQ==} - engines: {node: '>=14'} - dependencies: - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - '@types/readable-stream': 2.3.15 - ethereum-cryptography: 0.1.3 - readable-stream: 3.6.2 - dev: true + '@ledgerhq/errors@6.21.0': {} - /@nomicfoundation/ethereumjs-tx@4.0.0: - resolution: {integrity: sha512-Gg3Lir2lNUck43Kp/3x6TfBNwcWC9Z1wYue9Nz3v4xjdcv6oDW9QSMJxqsKw9QEGoBBZ+gqwpW7+F05/rs/g1w==} - engines: {node: '>=14'} + '@ledgerhq/hw-transport-webhid@6.30.1': dependencies: - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - ethereum-cryptography: 0.1.3 - dev: false + '@ledgerhq/devices': 8.4.5 + '@ledgerhq/errors': 6.21.0 + '@ledgerhq/hw-transport': 6.31.5 + '@ledgerhq/logs': 6.12.0 - /@nomicfoundation/ethereumjs-tx@5.0.2: - resolution: {integrity: sha512-T+l4/MmTp7VhJeNloMkM+lPU3YMUaXdcXgTGCf8+ZFvV9NYZTRLFekRwlG6/JMmVfIfbrW+dRRJ9A6H5Q/Z64g==} - engines: {node: '>=14'} + '@ledgerhq/hw-transport@6.31.5': dependencies: - '@chainsafe/ssz': 0.9.4 - '@ethersproject/providers': 5.7.2 - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - ethereum-cryptography: 0.1.3 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: true + '@ledgerhq/devices': 8.4.5 + '@ledgerhq/errors': 6.21.0 + '@ledgerhq/logs': 6.12.0 + events: 3.3.0 - /@nomicfoundation/ethereumjs-tx@5.0.4: - resolution: {integrity: sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==} - engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true - dependencies: - '@nomicfoundation/ethereumjs-common': 4.0.4 - '@nomicfoundation/ethereumjs-rlp': 5.0.4 - '@nomicfoundation/ethereumjs-util': 9.0.4 - ethereum-cryptography: 0.1.3 + '@ledgerhq/logs@6.12.0': {} - /@nomicfoundation/ethereumjs-util@8.0.0: - resolution: {integrity: sha512-2emi0NJ/HmTG+CGY58fa+DQuAoroFeSH9gKu9O6JnwTtlzJtgfTixuoOqLEgyyzZVvwfIpRueuePb8TonL1y+A==} - engines: {node: '>=14'} + '@lit-labs/ssr-dom-shim@1.3.0': {} + + '@lit/reactive-element@2.1.0': dependencies: - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - ethereum-cryptography: 0.1.3 - dev: false + '@lit-labs/ssr-dom-shim': 1.3.0 - /@nomicfoundation/ethereumjs-util@9.0.2: - resolution: {integrity: sha512-4Wu9D3LykbSBWZo8nJCnzVIYGvGCuyiYLIJa9XXNVt1q1jUzHdB+sJvx95VGCpPkCT+IbLecW6yfzy3E1bQrwQ==} - engines: {node: '>=14'} + '@manypkg/find-root@1.1.0': dependencies: - '@chainsafe/ssz': 0.10.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - ethereum-cryptography: 0.1.3 - dev: true + '@babel/runtime': 7.27.3 + '@types/node': 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 - /@nomicfoundation/ethereumjs-util@9.0.4: - resolution: {integrity: sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==} - engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true + '@manypkg/get-packages@1.1.3': dependencies: - '@nomicfoundation/ethereumjs-rlp': 5.0.4 - ethereum-cryptography: 0.1.3 + '@babel/runtime': 7.27.3 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 - /@nomicfoundation/ethereumjs-vm@6.0.0: - resolution: {integrity: sha512-JMPxvPQ3fzD063Sg3Tp+UdwUkVxMoo1uML6KSzFhMH3hoQi/LMuXBoEHAoW83/vyNS9BxEe6jm6LmT5xdeEJ6w==} - engines: {node: '>=14'} + '@metamask/eth-json-rpc-provider@1.0.1': dependencies: - '@nomicfoundation/ethereumjs-block': 4.0.0 - '@nomicfoundation/ethereumjs-blockchain': 6.0.0 - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-evm': 1.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-statemanager': 1.0.0 - '@nomicfoundation/ethereumjs-trie': 5.0.0 - '@nomicfoundation/ethereumjs-tx': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - '@types/async-eventemitter': 0.2.1 - async-eventemitter: 0.2.4 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - functional-red-black-tree: 1.0.1 - mcl-wasm: 0.7.9 - rustbn.js: 0.2.0 + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 5.0.2 transitivePeerDependencies: - supports-color - dev: false - /@nomicfoundation/ethereumjs-vm@7.0.2: - resolution: {integrity: sha512-Bj3KZT64j54Tcwr7Qm/0jkeZXJMfdcAtRBedou+Hx0dPOSIgqaIr0vvLwP65TpHbak2DmAq+KJbW2KNtIoFwvA==} - engines: {node: '>=14'} + '@metamask/json-rpc-engine@7.3.3': dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.2 - '@nomicfoundation/ethereumjs-blockchain': 7.0.2 - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-evm': 2.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-statemanager': 2.0.2 - '@nomicfoundation/ethereumjs-trie': 6.0.2 - '@nomicfoundation/ethereumjs-tx': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - debug: 4.3.4(supports-color@8.1.1) - ethereum-cryptography: 0.1.3 - mcl-wasm: 0.7.9 - rustbn.js: 0.2.0 + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - dev: true - /@nomicfoundation/hardhat-ethers@3.0.5(ethers@6.10.0)(hardhat@2.19.4): - resolution: {integrity: sha512-RNFe8OtbZK6Ila9kIlHp0+S80/0Bu/3p41HUpaRIoHLm6X3WekTd83vob3rE54Duufu1edCiBDxspBzi2rxHHw==} - peerDependencies: - ethers: ^6.1.0 - hardhat: ^2.0.0 + '@metamask/json-rpc-engine@8.0.2': dependencies: - debug: 4.3.4(supports-color@8.1.1) - ethers: 6.10.0 - hardhat: 2.19.4(typescript@5.4.3) - lodash.isequal: 4.5.0 + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 transitivePeerDependencies: - supports-color - dev: true - /@nomicfoundation/hardhat-network-helpers@1.0.8(hardhat@2.19.4): - resolution: {integrity: sha512-MNqQbzUJZnCMIYvlniC3U+kcavz/PhhQSsY90tbEtUyMj/IQqsLwIRZa4ctjABh3Bz0KCh9OXUZ7Yk/d9hr45Q==} - peerDependencies: - hardhat: ^2.9.5 + '@metamask/json-rpc-middleware-stream@7.0.2': dependencies: - ethereumjs-util: 7.1.5 - hardhat: 2.19.4(typescript@5.4.3) - dev: true - - /@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.0: - resolution: {integrity: sha512-vEF3yKuuzfMHsZecHQcnkUrqm8mnTWfJeEVFHpg+cO+le96xQA4lAJYdUan8pXZohQxv1fSReQsn4QGNuBNuCw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1: - resolution: {integrity: sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-darwin-x64@0.1.0: - resolution: {integrity: sha512-dlHeIg0pTL4dB1l9JDwbi/JG6dHQaU1xpDK+ugYO8eJ1kxx9Dh2isEUtA4d02cQAl22cjOHTvifAk96A+ItEHA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1: - resolution: {integrity: sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.0: - resolution: {integrity: sha512-WFCZYMv86WowDA4GiJKnebMQRt3kCcFqHeIomW6NMyqiKqhK1kIZCxSLDYsxqlx396kKLPN1713Q1S8tu68GKg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1: - resolution: {integrity: sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.0: - resolution: {integrity: sha512-DTw6MNQWWlCgc71Pq7CEhEqkb7fZnS7oly13pujs4cMH1sR0JzNk90Mp1zpSCsCs4oKan2ClhMlLKtNat/XRKQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1: - resolution: {integrity: sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.0: - resolution: {integrity: sha512-wUpUnR/3GV5Da88MhrxXh/lhb9kxh9V3Jya2NpBEhKDIRCDmtXMSqPMXHZmOR9DfCwCvG6vLFPr/+YrPCnUN0w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1: - resolution: {integrity: sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.0: - resolution: {integrity: sha512-lR0AxK1x/MeKQ/3Pt923kPvwigmGX3OxeU5qNtQ9pj9iucgk4PzhbS3ruUeSpYhUxG50jN4RkIGwUMoev5lguw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1: - resolution: {integrity: sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - /@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.0: - resolution: {integrity: sha512-A1he/8gy/JeBD3FKvmI6WUJrGrI5uWJNr5Xb9WdV+DK0F8msuOqpEByLlnTdLkXMwW7nSl3awvLezOs9xBHJEg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1: - resolution: {integrity: sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + '@metamask/json-rpc-engine': 8.0.2 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.0: - resolution: {integrity: sha512-7x5SXZ9R9H4SluJZZP8XPN+ju7Mx+XeUMWZw7ZAqkdhP5mK19I4vz3x0zIWygmfE8RT7uQ5xMap0/9NPsO+ykw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@metamask/object-multiplex@2.1.0': + dependencies: + once: 1.4.0 + readable-stream: 3.6.2 - /@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1: - resolution: {integrity: sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true + '@metamask/onboarding@1.0.1': + dependencies: + bowser: 2.11.0 - /@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.0: - resolution: {integrity: sha512-m7w3xf+hnE774YRXu+2mGV7RiF3QJtUoiYU61FascCkQhX3QMQavh7saH/vzb2jN5D24nT/jwvaHYX/MAM9zUw==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@metamask/providers@16.1.0': + dependencies: + '@metamask/json-rpc-engine': 8.0.2 + '@metamask/json-rpc-middleware-stream': 7.0.2 + '@metamask/object-multiplex': 2.1.0 + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1: - resolution: {integrity: sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true + '@metamask/rpc-errors@6.4.0': + dependencies: + '@metamask/utils': 9.3.0 + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.0: - resolution: {integrity: sha512-xCuybjY0sLJQnJhupiFAXaek2EqF0AP0eBjgzaalPXSNvCEN6ZYHvUzdA50ENDVeSYFXcUsYf3+FsD3XKaeptA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@metamask/safe-event-emitter@2.0.0': {} - /@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1: - resolution: {integrity: sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true + '@metamask/safe-event-emitter@3.1.2': {} - /@nomicfoundation/solidity-analyzer@0.1.0: - resolution: {integrity: sha512-xGWAiVCGOycvGiP/qrlf9f9eOn7fpNbyJygcB0P21a1MDuVPlKt0Srp7rvtBEutYQ48ouYnRXm33zlRnlTOPHg==} - engines: {node: '>= 12'} - optionalDependencies: - '@nomicfoundation/solidity-analyzer-darwin-arm64': 0.1.0 - '@nomicfoundation/solidity-analyzer-darwin-x64': 0.1.0 - '@nomicfoundation/solidity-analyzer-freebsd-x64': 0.1.0 - '@nomicfoundation/solidity-analyzer-linux-arm64-gnu': 0.1.0 - '@nomicfoundation/solidity-analyzer-linux-arm64-musl': 0.1.0 - '@nomicfoundation/solidity-analyzer-linux-x64-gnu': 0.1.0 - '@nomicfoundation/solidity-analyzer-linux-x64-musl': 0.1.0 - '@nomicfoundation/solidity-analyzer-win32-arm64-msvc': 0.1.0 - '@nomicfoundation/solidity-analyzer-win32-ia32-msvc': 0.1.0 - '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.0 - dev: false + '@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.15)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + bufferutil: 4.0.9 + cross-fetch: 4.1.0(encoding@0.1.13) + date-fns: 2.30.0 + debug: 4.4.1(supports-color@8.1.1) + eciesjs: 0.4.15 + eventemitter2: 6.4.9 + readable-stream: 3.6.2 + socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + utf-8-validate: 5.0.10 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color - /@nomicfoundation/solidity-analyzer@0.1.1: - resolution: {integrity: sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==} - engines: {node: '>= 12'} - optionalDependencies: - '@nomicfoundation/solidity-analyzer-darwin-arm64': 0.1.1 - '@nomicfoundation/solidity-analyzer-darwin-x64': 0.1.1 - '@nomicfoundation/solidity-analyzer-freebsd-x64': 0.1.1 - '@nomicfoundation/solidity-analyzer-linux-arm64-gnu': 0.1.1 - '@nomicfoundation/solidity-analyzer-linux-arm64-musl': 0.1.1 - '@nomicfoundation/solidity-analyzer-linux-x64-gnu': 0.1.1 - '@nomicfoundation/solidity-analyzer-linux-x64-musl': 0.1.1 - '@nomicfoundation/solidity-analyzer-win32-arm64-msvc': 0.1.1 - '@nomicfoundation/solidity-analyzer-win32-ia32-msvc': 0.1.1 - '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.1 - - /@open-rpc/client-js@1.8.1: - resolution: {integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==} + '@metamask/sdk-install-modal-web@0.32.0': dependencies: - isomorphic-fetch: 3.0.0 - isomorphic-ws: 5.0.0(ws@8.17.1) - strict-event-emitter-types: 2.0.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + '@paulmillr/qr': 0.2.1 + + '@metamask/sdk@0.32.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@babel/runtime': 7.27.3 + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 16.1.0 + '@metamask/sdk-communication-layer': 0.32.0(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.15)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.32.0 + '@paulmillr/qr': 0.2.1 + bowser: 2.11.0 + cross-fetch: 4.1.0(encoding@0.1.13) + debug: 4.4.1(supports-color@8.1.1) + eciesjs: 0.4.15 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + obj-multiplex: 1.0.0 + pump: 3.0.2 + readable-stream: 3.6.2 + socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + tslib: 2.8.1 + util: 0.12.5 + uuid: 8.3.2 transitivePeerDependencies: - bufferutil - encoding + - supports-color - utf-8-validate - dev: false - - /@openzeppelin/contracts@3.4.1-solc-0.7-2: - resolution: {integrity: sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==} - dev: false - - /@openzeppelin/contracts@3.4.2-solc-0.7: - resolution: {integrity: sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==} - dev: false - - /@openzeppelin/contracts@4.9.0: - resolution: {integrity: sha512-DUP74AFGKlic2sQb/CmgrN2aUPMFGxRrmCTUxLHsiU2RzwWqVuMPZBxiAyvlff6Pea77uylAX6B5x9W6evEbhA==} - dev: true - - /@parcel/watcher-android-arm64@2.4.1: - resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: false - optional: true - /@parcel/watcher-darwin-arm64@2.4.1: - resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true + '@metamask/superstruct@3.2.1': {} - /@parcel/watcher-darwin-x64@2.4.1: - resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true + '@metamask/utils@5.0.2': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.12 + debug: 4.4.1(supports-color@8.1.1) + semver: 7.7.2 + superstruct: 1.0.4 + transitivePeerDependencies: + - supports-color - /@parcel/watcher-freebsd-x64@2.4.1: - resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true + '@metamask/utils@8.5.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@metamask/superstruct': 3.2.1 + '@noble/hashes': 1.4.0 + '@scure/base': 1.2.5 + '@types/debug': 4.1.12 + debug: 4.4.1(supports-color@8.1.1) + pony-cause: 2.1.11 + semver: 7.7.2 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color - /@parcel/watcher-linux-arm-glibc@2.4.1: - resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@metamask/utils@9.3.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@metamask/superstruct': 3.2.1 + '@noble/hashes': 1.4.0 + '@scure/base': 1.2.5 + '@types/debug': 4.1.12 + debug: 4.4.1(supports-color@8.1.1) + pony-cause: 2.1.11 + semver: 7.7.2 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color - /@parcel/watcher-linux-arm64-glibc@2.4.1: - resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@microsoft/tsdoc-config@0.17.1': + dependencies: + '@microsoft/tsdoc': 0.15.1 + ajv: 8.12.0 + jju: 1.4.0 + resolve: 1.22.10 - /@parcel/watcher-linux-arm64-musl@2.4.1: - resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@microsoft/tsdoc@0.15.1': {} - /@parcel/watcher-linux-x64-glibc@2.4.1: - resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@mobily/ts-belt@3.13.1': {} - /@parcel/watcher-linux-x64-musl@2.4.1: - resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true + '@moonpay/moonpay-js@0.7.0': {} - /@parcel/watcher-wasm@2.4.1: - resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} - engines: {node: '>= 10.0.0'} + '@moonpay/moonpay-react@1.10.1(react@18.2.0)': dependencies: - is-glob: 4.0.3 - micromatch: 4.0.5 - napi-wasm: 1.1.0 - dev: false - bundledDependencies: - - napi-wasm + react: 18.2.0 - /@parcel/watcher-win32-arm64@2.4.1: - resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@mui/core-downloads-tracker@6.4.11': {} - /@parcel/watcher-win32-ia32@2.4.1: - resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} - engines: {node: '>= 10.0.0'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@mui/icons-material@6.4.11(@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.2.14)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.27.3 + '@mui/material': 6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.14 - /@parcel/watcher-win32-x64@2.4.1: - resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true + '@mui/icons-material@6.4.11(@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.3 + '@mui/material': 6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@parcel/watcher@2.4.1: - resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} - engines: {node: '>= 10.0.0'} + '@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - detect-libc: 1.0.3 - is-glob: 4.0.3 - micromatch: 4.0.5 - node-addon-api: 7.1.1 + '@babel/runtime': 7.27.3 + '@mui/core-downloads-tracker': 6.4.11 + '@mui/system': 6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) + '@mui/types': 7.2.24(@types/react@18.2.14) + '@mui/utils': 6.4.9(@types/react@18.2.14)(react@18.2.0) + '@popperjs/core': 2.11.8 + '@types/react-transition-group': 4.4.12(@types/react@18.2.14) + clsx: 2.1.1 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 19.1.0 + react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) optionalDependencies: - '@parcel/watcher-android-arm64': 2.4.1 - '@parcel/watcher-darwin-arm64': 2.4.1 - '@parcel/watcher-darwin-x64': 2.4.1 - '@parcel/watcher-freebsd-x64': 2.4.1 - '@parcel/watcher-linux-arm-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-musl': 2.4.1 - '@parcel/watcher-linux-x64-glibc': 2.4.1 - '@parcel/watcher-linux-x64-musl': 2.4.1 - '@parcel/watcher-win32-arm64': 2.4.1 - '@parcel/watcher-win32-ia32': 2.4.1 - '@parcel/watcher-win32-x64': 2.4.1 - dev: false + '@emotion/react': 11.14.0(@types/react@18.2.14)(react@18.2.0) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) + '@types/react': 18.2.14 - /@particle-network/analytics@1.0.1: - resolution: {integrity: sha512-ApcSMo1BXQlywO+lvOpG3Y2/SVGNCpJzXO/4e3zHzE/9j+uMehsilDzPwWQwLhrCXZYwVm7mmE71Gs36yobiNw==} + '@mui/material@6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - hash.js: 1.1.7 - uuidv4: 6.2.13 - dev: false + '@babel/runtime': 7.27.3 + '@mui/core-downloads-tracker': 6.4.11 + '@mui/system': 6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) + '@mui/types': 7.2.24(@types/react@18.3.23) + '@mui/utils': 6.4.9(@types/react@18.3.23)(react@18.3.1) + '@popperjs/core': 2.11.8 + '@types/react-transition-group': 4.4.12(@types/react@18.3.23) + clsx: 2.1.1 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 19.1.0 + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + optionalDependencies: + '@emotion/react': 11.14.0(@types/react@18.3.23)(react@18.3.1) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) + '@types/react': 18.3.23 - /@particle-network/auth@1.3.1: - resolution: {integrity: sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw==} + '@mui/private-theming@6.4.9(@types/react@18.2.14)(react@18.2.0)': dependencies: - '@particle-network/analytics': 1.0.1 - '@particle-network/chains': 1.5.7 - '@particle-network/crypto': 1.0.1 - buffer: 6.0.3 - draggabilly: 3.0.0 - dev: false + '@babel/runtime': 7.27.3 + '@mui/utils': 6.4.9(@types/react@18.2.14)(react@18.2.0) + prop-types: 15.8.1 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.14 - /@particle-network/chains@1.5.7: - resolution: {integrity: sha512-oFBlm2XeALLoBMAIBxkRBtlq+2xafxTjJjlb0u5iyMXB4GFvo4AWmKcLo7REC5g6YUXPzjTa+Z7W/pkkxYGsIw==} - dev: false + '@mui/private-theming@6.4.9(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.3 + '@mui/utils': 6.4.9(@types/react@18.3.23)(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@particle-network/crypto@1.0.1: - resolution: {integrity: sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg==} + '@mui/styled-engine@6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(react@18.2.0)': dependencies: - crypto-js: 4.2.0 - uuidv4: 6.2.13 - dev: false + '@babel/runtime': 7.27.3 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/sheet': 1.4.0 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.2.0 + optionalDependencies: + '@emotion/react': 11.14.0(@types/react@18.2.14)(react@18.2.0) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) - /@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.95.8)(bs58@6.0.0): - resolution: {integrity: sha512-KviKVP87OtWq813y8IumM3rIQMNkTjHBaQmCUbTWGebz3csFOv54JIoy1r+3J3NnA+mBxBdZeRedZ5g+07v75w==} - peerDependencies: - '@solana/web3.js': ^1.50.1 - bs58: ^4.0.1 + '@mui/styled-engine@6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(react@18.3.1)': dependencies: - '@particle-network/auth': 1.3.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bs58: 6.0.0 - dev: false + '@babel/runtime': 7.27.3 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/sheet': 1.4.0 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.3.1 + optionalDependencies: + '@emotion/react': 11.14.0(@types/react@18.3.23)(react@18.3.1) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) - /@peculiar/asn1-schema@2.3.13: - resolution: {integrity: sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g==} + '@mui/system@6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0)': dependencies: - asn1js: 3.0.5 - pvtsutils: 1.3.5 - tslib: 2.8.1 - dev: false + '@babel/runtime': 7.27.3 + '@mui/private-theming': 6.4.9(@types/react@18.2.14)(react@18.2.0) + '@mui/styled-engine': 6.4.11(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0))(react@18.2.0) + '@mui/types': 7.2.24(@types/react@18.2.14) + '@mui/utils': 6.4.9(@types/react@18.2.14)(react@18.2.0) + clsx: 2.1.1 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.2.0 + optionalDependencies: + '@emotion/react': 11.14.0(@types/react@18.2.14)(react@18.2.0) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.2.14)(react@18.2.0))(@types/react@18.2.14)(react@18.2.0) + '@types/react': 18.2.14 - /@peculiar/json-schema@1.1.12: - resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} - engines: {node: '>=8.0.0'} + '@mui/system@6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1)': dependencies: - tslib: 2.8.1 - dev: false + '@babel/runtime': 7.27.3 + '@mui/private-theming': 6.4.9(@types/react@18.3.23)(react@18.3.1) + '@mui/styled-engine': 6.4.11(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1))(react@18.3.1) + '@mui/types': 7.2.24(@types/react@18.3.23) + '@mui/utils': 6.4.9(@types/react@18.3.23)(react@18.3.1) + clsx: 2.1.1 + csstype: 3.1.3 + prop-types: 15.8.1 + react: 18.3.1 + optionalDependencies: + '@emotion/react': 11.14.0(@types/react@18.3.23)(react@18.3.1) + '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.23)(react@18.3.1))(@types/react@18.3.23)(react@18.3.1) + '@types/react': 18.3.23 - /@peculiar/webcrypto@1.5.0: - resolution: {integrity: sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg==} - engines: {node: '>=10.12.0'} + '@mui/types@7.2.24(@types/react@18.2.14)': + optionalDependencies: + '@types/react': 18.2.14 + + '@mui/types@7.2.24(@types/react@18.3.23)': + optionalDependencies: + '@types/react': 18.3.23 + + '@mui/utils@6.4.9(@types/react@18.2.14)(react@18.2.0)': dependencies: - '@peculiar/asn1-schema': 2.3.13 - '@peculiar/json-schema': 1.1.12 - pvtsutils: 1.3.5 - tslib: 2.6.3 - webcrypto-core: 1.8.0 - dev: false + '@babel/runtime': 7.27.3 + '@mui/types': 7.2.24(@types/react@18.2.14) + '@types/prop-types': 15.7.14 + clsx: 2.1.1 + prop-types: 15.8.1 + react: 18.2.0 + react-is: 19.1.0 + optionalDependencies: + '@types/react': 18.2.14 - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - optional: true + '@mui/utils@6.4.9(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.3 + '@mui/types': 7.2.24(@types/react@18.3.23) + '@types/prop-types': 15.7.14 + clsx: 2.1.1 + prop-types: 15.8.1 + react: 18.3.1 + react-is: 19.1.0 + optionalDependencies: + '@types/react': 18.3.23 - /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@mysten/bcs@0.7.3': dependencies: - cross-spawn: 7.0.6 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.1.1 - tslib: 2.8.1 - - /@popperjs/core@2.11.8: - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - dev: false + bs58: 5.0.0 - /@project-serum/anchor@0.26.0: - resolution: {integrity: sha512-Nq+COIjE1135T7qfnOHEn7E0q39bQTgXLFk837/rgFe6Hkew9WML7eHsS+lSYD2p3OJaTiUOHTAq1lHy36oIqQ==} - engines: {node: '>=11'} + '@mysten/sui.js@0.37.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@coral-xyz/borsh': 0.26.0(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - base64-js: 1.5.1 - bn.js: 5.2.1 - bs58: 4.0.1 - buffer-layout: 1.2.2 - camelcase: 6.3.0 - cross-fetch: 3.1.5 - crypto-hash: 1.3.0 - eventemitter3: 4.0.7 - js-sha256: 0.9.0 - pako: 2.1.0 - snake-case: 3.0.4 - superstruct: 0.15.5 - toml: 3.0.0 + '@mysten/bcs': 0.7.3 + '@noble/curves': 1.8.0 + '@noble/hashes': 1.4.0 + '@open-rpc/client-js': 1.8.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + '@suchipi/femver': 1.0.0 + events: 3.3.0 + superstruct: 1.0.4 + tweetnacl: 1.0.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /@project-serum/sol-wallet-adapter@0.2.6(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-cpIb13aWPW8y4KzkZAPDgw+Kb+DXjCC6rZoH74MGm3I/6e/zKyGnfAuW5olb2zxonFqsYgnv7ev8MQnvSgJ3/g==} - engines: {node: '>=10'} - peerDependencies: - '@solana/web3.js': ^1.5.0 + '@napi-rs/wasm-runtime@0.2.10': dependencies: - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bs58: 4.0.1 - eventemitter3: 4.0.7 - dev: false + '@emnapi/core': 1.4.3 + '@emnapi/runtime': 1.4.3 + '@tybys/wasm-util': 0.9.0 + optional: true - /@protobufjs/aspromise@1.1.2: - resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} - dev: false + '@next/env@14.2.25': {} - /@protobufjs/base64@1.1.2: - resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} - dev: false + '@next/env@15.3.2': {} - /@protobufjs/codegen@2.0.4: - resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} - dev: false + '@next/eslint-plugin-next@14.2.25': + dependencies: + glob: 10.3.10 - /@protobufjs/eventemitter@1.1.0: - resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} - dev: false + '@next/swc-darwin-arm64@14.2.25': + optional: true - /@protobufjs/fetch@1.1.0: - resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} - dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/inquire': 1.1.0 - dev: false + '@next/swc-darwin-arm64@15.3.2': + optional: true - /@protobufjs/float@1.0.2: - resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} - dev: false + '@next/swc-darwin-x64@14.2.25': + optional: true - /@protobufjs/inquire@1.1.0: - resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} - dev: false + '@next/swc-darwin-x64@15.3.2': + optional: true - /@protobufjs/path@1.1.2: - resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} - dev: false + '@next/swc-linux-arm64-gnu@14.2.25': + optional: true - /@protobufjs/pool@1.1.0: - resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} - dev: false + '@next/swc-linux-arm64-gnu@15.3.2': + optional: true - /@protobufjs/utf8@1.1.0: - resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - dev: false + '@next/swc-linux-arm64-musl@14.2.25': + optional: true - /@radix-ui/number@1.0.1: - resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} - dependencies: - '@babel/runtime': 7.26.10 - dev: false + '@next/swc-linux-arm64-musl@15.3.2': + optional: true - /@radix-ui/primitive@1.0.1: - resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} - dependencies: - '@babel/runtime': 7.26.10 - dev: false + '@next/swc-linux-x64-gnu@14.2.25': + optional: true - /@radix-ui/primitive@1.1.0: - resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==} - dev: false + '@next/swc-linux-x64-gnu@15.3.2': + optional: true - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@next/swc-linux-x64-musl@14.2.25': + optional: true - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@next/swc-linux-x64-musl@15.3.2': + optional: true - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@next/swc-win32-arm64-msvc@14.2.25': + optional: true - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@next/swc-win32-arm64-msvc@15.3.2': + optional: true - /@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@next/swc-win32-ia32-msvc@14.2.25': + optional: true - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@next/swc-win32-x64-msvc@14.2.25': + optional: true - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@next/swc-win32-x64-msvc@15.3.2': + optional: true + + '@ngraveio/bc-ur@1.1.13': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@keystonehq/alias-sampling': 0.1.2 + assert: 2.1.0 + bignumber.js: 9.3.0 + cbor-sync: 1.0.4 + crc: 3.8.0 + jsbi: 3.2.5 + sha.js: 2.4.11 - /@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/ciphers@0.5.3': {} + + '@noble/ciphers@1.2.1': {} + + '@noble/ciphers@1.3.0': {} + + '@noble/curves@1.2.0': dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@noble/hashes': 1.3.2 - /@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/curves@1.4.0': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@noble/hashes': 1.4.0 - /@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/curves@1.4.2': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@noble/hashes': 1.4.0 - /@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/curves@1.6.0': dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@noble/hashes': 1.5.0 - /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@noble/curves@1.8.0': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) - dev: false + '@noble/hashes': 1.7.0 - /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@noble/curves@1.8.1': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - aria-hidden: 1.2.4 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) - dev: false + '@noble/hashes': 1.7.1 - /@radix-ui/react-direction@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/curves@1.8.2': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@noble/hashes': 1.7.2 - /@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/curves@1.9.1': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@noble/hashes': 1.8.0 - /@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@noble/ed25519@2.2.3': {} + + '@noble/hashes@1.2.0': {} + + '@noble/hashes@1.3.2': {} + + '@noble/hashes@1.3.3': {} + + '@noble/hashes@1.4.0': {} + + '@noble/hashes@1.5.0': {} + + '@noble/hashes@1.7.0': {} + + '@noble/hashes@1.7.1': {} + + '@noble/hashes@1.7.2': {} + + '@noble/hashes@1.8.0': {} + + '@noble/secp256k1@1.7.1': {} + + '@nodelib/fs.scandir@2.1.5': dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@nolyfill/is-core-module@1.0.39': {} + + '@nomicfoundation/edr-darwin-arm64@0.11.0': {} + + '@nomicfoundation/edr-darwin-x64@0.11.0': {} + + '@nomicfoundation/edr-linux-arm64-gnu@0.11.0': {} + + '@nomicfoundation/edr-linux-arm64-musl@0.11.0': {} + + '@nomicfoundation/edr-linux-x64-gnu@0.11.0': {} + + '@nomicfoundation/edr-linux-x64-musl@0.11.0': {} + + '@nomicfoundation/edr-win32-x64-msvc@0.11.0': {} + + '@nomicfoundation/edr@0.11.0': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@nomicfoundation/edr-darwin-arm64': 0.11.0 + '@nomicfoundation/edr-darwin-x64': 0.11.0 + '@nomicfoundation/edr-linux-arm64-gnu': 0.11.0 + '@nomicfoundation/edr-linux-arm64-musl': 0.11.0 + '@nomicfoundation/edr-linux-x64-gnu': 0.11.0 + '@nomicfoundation/edr-linux-x64-musl': 0.11.0 + '@nomicfoundation/edr-win32-x64-msvc': 0.11.0 - /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@nomicfoundation/hardhat-ethers@3.0.5(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + debug: 4.4.1(supports-color@8.1.1) + ethers: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + hardhat: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) + lodash.isequal: 4.5.0 + transitivePeerDependencies: + - supports-color - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@nomicfoundation/hardhat-network-helpers@1.0.12(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + ethereumjs-util: 7.1.5 + hardhat: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2': + optional: true + + '@nomicfoundation/solidity-analyzer@0.1.2': + optionalDependencies: + '@nomicfoundation/solidity-analyzer-darwin-arm64': 0.1.2 + '@nomicfoundation/solidity-analyzer-darwin-x64': 0.1.2 + '@nomicfoundation/solidity-analyzer-linux-arm64-gnu': 0.1.2 + '@nomicfoundation/solidity-analyzer-linux-arm64-musl': 0.1.2 + '@nomicfoundation/solidity-analyzer-linux-x64-gnu': 0.1.2 + '@nomicfoundation/solidity-analyzer-linux-x64-musl': 0.1.2 + '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.2 + + '@open-rpc/client-js@1.8.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + isomorphic-fetch: 3.0.0(encoding@0.1.13) + isomorphic-ws: 5.0.0(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + strict-event-emitter-types: 2.0.0 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - encoding + - utf-8-validate + + '@openzeppelin/contracts@3.4.1-solc-0.7-2': {} + + '@openzeppelin/contracts@3.4.2-solc-0.7': {} + + '@openzeppelin/contracts@4.9.6': {} + + '@particle-network/analytics@1.0.2': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + hash.js: 1.1.7 + uuidv4: 6.2.13 - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@particle-network/auth@1.3.1': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@particle-network/analytics': 1.0.2 + '@particle-network/chains': 1.8.3 + '@particle-network/crypto': 1.0.1 + buffer: 6.0.3 + draggabilly: 3.0.0 - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@particle-network/chains@1.8.3': {} + + '@particle-network/crypto@1.0.1': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + crypto-js: 4.2.0 + uuidv4: 6.2.13 - /@radix-ui/react-icons@1.3.0(react@18.2.0): - resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==} - peerDependencies: - react: ^16.x || ^17.x || ^18.x + '@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)': dependencies: - react: 18.2.0 - dev: false + '@particle-network/auth': 1.3.1 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bs58: 5.0.0 - /@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@paulmillr/qr@0.2.1': {} + + '@peculiar/asn1-schema@2.3.15': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + asn1js: 3.0.6 + pvtsutils: 1.3.6 + tslib: 2.8.1 - /@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@peculiar/json-schema@1.1.12': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + tslib: 2.8.1 - /@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@peculiar/webcrypto@1.5.0': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@peculiar/asn1-schema': 2.3.15 + '@peculiar/json-schema': 1.1.12 + pvtsutils: 1.3.6 + tslib: 2.8.1 + webcrypto-core: 1.8.1 - /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@pkgjs/parseargs@0.11.0': + optional: true + + '@popperjs/core@2.11.8': {} + + '@project-serum/anchor@0.26.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@coral-xyz/borsh': 0.26.0(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + base64-js: 1.5.1 + bn.js: 5.2.2 + bs58: 4.0.1 + buffer-layout: 1.2.2 + camelcase: 6.3.0 + cross-fetch: 3.2.0(encoding@0.1.13) + crypto-hash: 1.3.0 + eventemitter3: 4.0.7 + js-sha256: 0.9.0 + pako: 2.1.0 + snake-case: 3.0.4 + superstruct: 0.15.5 + toml: 3.0.0 + transitivePeerDependencies: + - bufferutil + - encoding + - typescript + - utf-8-validate - /@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@project-serum/sol-wallet-adapter@0.2.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@babel/runtime': 7.24.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bs58: 4.0.1 + eventemitter3: 4.0.7 - /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@protobufjs/aspromise@1.1.2': {} + + '@protobufjs/base64@1.1.2': {} + + '@protobufjs/codegen@2.0.4': {} + + '@protobufjs/eventemitter@1.1.0': {} + + '@protobufjs/fetch@1.1.0': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) - dev: false + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/inquire': 1.1.0 + + '@protobufjs/float@1.0.2': {} + + '@protobufjs/inquire@1.1.0': {} + + '@protobufjs/path@1.1.2': {} - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@protobufjs/pool@1.1.0': {} + + '@protobufjs/utf8@1.1.0': {} + + '@radix-ui/number@1.1.1': {} + + '@radix-ui/primitive@1.1.2': {} + + '@radix-ui/react-arrow@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-collection@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@floating-ui/react-dom': 2.0.8(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/rect': 1.0.1 - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-compose-refs@1.1.2(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-context@1.1.2(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + '@radix-ui/react-dialog@1.1.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + aria-hidden: 1.2.6 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + react-remove-scroll: 2.7.0(@types/react@18.3.23)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-direction@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-dropdown-menu@2.1.15(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-menu': 2.1.15(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-focus-guards@1.1.2(@types/react@18.3.23)(react@18.3.1)': + dependencies: + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-icons@1.3.2(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + react: 18.3.1 - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-id@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-label@2.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-menu@2.1.15(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + aria-hidden: 1.2.6 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.7.0(@types/react@18.3.23)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-popper@1.2.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-rect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/rect': 1.1.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-radio-group@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-yv+oiLaicYMBpqgfpSPw6q+RyXlLdIpQWDHZbUKURxe+nEh53hFXPPlfhfQQtYkS5MMK/5IWIa76SksleQZSzw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-portal@1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-presence@1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-primitive@2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-radio-group@1.3.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-roving-focus@1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-select@2.2.5(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/number': 1.1.1 + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + aria-hidden: 1.2.6 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.7.0(@types/react@18.3.23)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-separator@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.8 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) - dev: false + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-slot@1.2.3(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.8 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - aria-hidden: 1.2.4 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + '@radix-ui/react-tabs@1.1.12(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-toast@1.2.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + + '@radix-ui/react-toggle-group@1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-toggle': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-toggle@1.1.9(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.3.23)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@radix-ui/react-use-effect-event@0.0.2(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1) react: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-tabs@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-use-previous@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-use-rect@1.1.1(@types/react@18.3.23)(react@18.3.1)': dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-toggle': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/rect': 1.1.1 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-toggle@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@radix-ui/react-use-size@1.1.1(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false + optionalDependencies: + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@radix-ui/rect@1.1.1': {} + + '@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + merge-options: 3.0.4 + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + optional: true - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + merge-options: 3.0.4 + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + optional: true - /@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/assets-registry@0.76.5': {} + + '@react-native/babel-plugin-codegen@0.76.5(@babel/preset-env@7.20.2(@babel/core@7.26.9))': dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/babel-plugin-codegen@0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3))': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/babel-preset@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@babel/core': 7.26.9 + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-runtime': 7.27.3(@babel/core@7.26.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9) + '@babel/template': 7.27.2 + '@react-native/babel-plugin-codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + babel-plugin-syntax-hermes-parser: 0.25.1 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.9) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color - /@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/babel-preset@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))': + dependencies: + '@babel/core': 7.27.3 + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-regenerator': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-runtime': 7.27.3(@babel/core@7.27.3) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.3) + '@babel/template': 7.27.2 + '@react-native/babel-plugin-codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + babel-plugin-syntax-hermes-parser: 0.25.1 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.27.3) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/codegen@0.76.5(@babel/preset-env@7.20.2(@babel/core@7.26.9))': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@babel/parser': 7.27.3 + '@babel/preset-env': 7.20.2(@babel/core@7.26.9) + glob: 7.2.3 + hermes-parser: 0.23.1 + invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/codegen@0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3))': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@babel/parser': 7.27.3 + '@babel/preset-env': 7.20.2(@babel/core@7.27.3) + glob: 7.2.3 + hermes-parser: 0.23.1 + invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/community-cli-plugin@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@react-native/dev-middleware': 0.76.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@react-native/metro-babel-transformer': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + chalk: 4.1.2 + execa: 5.1.1 + invariant: 2.2.4 + metro: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-config: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-core: 0.81.5 + node-fetch: 2.7.0(encoding@0.1.13) + readline: 1.3.0 + semver: 7.7.2 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/community-cli-plugin@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + '@react-native/dev-middleware': 0.76.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@react-native/metro-babel-transformer': 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + chalk: 4.1.2 + execa: 5.1.1 + invariant: 2.2.4 + metro: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-config: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-core: 0.81.5 + node-fetch: 2.7.0(encoding@0.1.13) + readline: 1.3.0 + semver: 7.7.2 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/debugger-frontend@0.76.5': {} + + '@react-native/dev-middleware@0.76.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.76.5 + chrome-launcher: 0.15.2 + chromium-edge-launcher: 0.2.0 + connect: 3.7.0 + debug: 2.6.9 + nullthrows: 1.1.1 + open: 7.4.2 + selfsigned: 2.4.1 + serve-static: 1.16.2 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate - /@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/gradle-plugin@0.76.5': {} + + '@react-native/js-polyfills@0.76.5': {} + + '@react-native/metro-babel-transformer@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))': dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + '@babel/core': 7.26.9 + '@react-native/babel-preset': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + hermes-parser: 0.23.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/metro-babel-transformer@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))': + dependencies: + '@babel/core': 7.27.3 + '@react-native/babel-preset': 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + hermes-parser: 0.23.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/normalize-colors@0.76.5': {} + + '@react-native/virtualized-lists@0.76.5(@types/react@18.2.14)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.2.14 + invariant: 2.2.4 + nullthrows: 1.1.1 react: 18.2.0 - dev: false + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + optionalDependencies: + '@types/react': 18.2.14 + optional: true - /@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/virtualized-lists@0.76.5(@types/react@18.3.23)(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@types/react': 18.3.3 + invariant: 2.2.4 + nullthrows: 1.1.1 react: 18.3.1 - dev: false + react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-use-previous@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native/virtualized-lists@0.76.5(@types/react@18.3.23)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@types/react': 18.3.3 + invariant: 2.2.4 + nullthrows: 1.1.1 react: 18.3.1 - dev: false + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + optionalDependencies: + '@types/react': 18.3.23 - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-oauth/google@0.12.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.14 react: 18.2.0 - dev: false + react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@react-oauth/google@0.12.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/rect': 1.0.1 - '@types/react': 18.3.3 react: 18.3.1 - dev: false + react-dom: 18.3.1(react@18.3.1) - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@reown/appkit-common@1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - react: 18.2.0 - dev: false + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - /@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@reown/appkit-common@1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - /@radix-ui/react-use-size@1.1.0(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - dev: false + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true + '@reown/appkit-controllers@1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@babel/runtime': 7.26.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-wallet': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + valtio: 1.13.2(@types/react@18.3.23)(react@18.3.1) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@radix-ui/rect@1.0.1: - resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} + '@reown/appkit-controllers@1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@babel/runtime': 7.26.10 - dev: false + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + valtio: 1.13.2(@types/react@18.2.14)(react@18.2.0) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5): - resolution: {integrity: sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g==} - requiresBuild: true - peerDependencies: - react-native: ^0.0.0-0 || >=0.60 <1.0 + '@reown/appkit-polyfills@1.7.2': dependencies: - merge-options: 3.0.4 - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) - dev: false - optional: true + buffer: 6.0.3 - /@react-native/assets-registry@0.76.5: - resolution: {integrity: sha512-MN5dasWo37MirVcKWuysRkRr4BjNc81SXwUtJYstwbn8oEkfnwR9DaqdDTo/hHOnTdhafffLIa2xOOHcjDIGEw==} - engines: {node: '>=18'} - dev: false + '@reown/appkit-polyfills@1.7.3': + dependencies: + buffer: 6.0.3 - /@react-native/babel-plugin-codegen@0.76.5(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-xe7HSQGop4bnOLMaXt0aU+rIatMNEQbz242SDl8V9vx5oOTI0VbZV9yLy6yBc6poUlYbcboF20YVjoRsxX4yww==} - engines: {node: '>=18'} + '@reown/appkit-scaffold-ui@1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1))(zod@3.25.33)': dependencies: - '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2) + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-ui': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-utils': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1))(zod@3.25.33) + '@reown/appkit-wallet': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + lit: 3.1.0 transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - valtio + - zod - /@react-native/babel-preset@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-1Nu5Um4EogOdppBLI4pfupkteTjWfmI0hqW8ezWTg7Bezw0FtBj8yS8UYVd3wTnDFT9A5mA2VNoNUqomJnvj2A==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' + '@reown/appkit-scaffold-ui@1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0))(zod@3.25.33)': dependencies: - '@babel/core': 7.26.9 - '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.26.9) - '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.9) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.9) - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-runtime': 7.26.9(@babel/core@7.26.9) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.9) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9) - '@babel/template': 7.26.9 - '@react-native/babel-plugin-codegen': 0.76.5(@babel/preset-env@7.20.2) - babel-plugin-syntax-hermes-parser: 0.25.1 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.9) - react-refresh: 0.14.0 + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-ui': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-utils': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0))(zod@3.25.33) + '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + lit: 3.1.0 transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - valtio + - zod + + '@reown/appkit-ui@1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': + dependencies: + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-wallet': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + lit: 3.1.0 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@react-native/codegen@0.76.5(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-FoZ9VRQ5MpgtDAnVo1rT9nNRfjnWpE40o1GeJSDlpUMttd36bVXvsDm8W/NhX8BKTWXSX+CPQJsRcvN1UPYGKg==} - engines: {node: '>=18'} - peerDependencies: - '@babel/preset-env': ^7.1.6 + '@reown/appkit-ui@1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@babel/parser': 7.26.9 - '@babel/preset-env': 7.20.2(@babel/core@7.26.9) - glob: 7.2.3 - hermes-parser: 0.23.1 - invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.20.2) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - yargs: 17.6.2 + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + lit: 3.1.0 + qrcode: 1.5.3 transitivePeerDependencies: - - supports-color - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@react-native/community-cli-plugin@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-3MKMnlU0cZOWlMhz5UG6WqACJiWUrE3XwBEumzbMmZw3Iw3h+fIsn+7kLLE5EhzqLt0hg5Y4cgYFi4kOaNgq+g==} - engines: {node: '>=18'} - peerDependencies: - '@react-native-community/cli-server-api': '*' - peerDependenciesMeta: - '@react-native-community/cli-server-api': - optional: true + '@reown/appkit-utils@1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1))(zod@3.25.33)': dependencies: - '@react-native/dev-middleware': 0.76.5 - '@react-native/metro-babel-transformer': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2) - chalk: 4.1.2 - execa: 5.1.1 - invariant: 2.2.4 - metro: 0.81.1 - metro-config: 0.81.1 - metro-core: 0.81.1 - node-fetch: 2.7.0(encoding@0.1.13) - readline: 1.3.0 - semver: 7.5.4 + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-polyfills': 1.7.2 + '@reown/appkit-wallet': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/logger': 2.1.2 + '@walletconnect/universal-provider': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + valtio: 1.13.2(@types/react@18.3.23)(react@18.3.1) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch - bufferutil + - db0 - encoding - - supports-color + - ioredis + - react + - typescript + - uploadthing - utf-8-validate - dev: false - - /@react-native/debugger-frontend@0.76.5: - resolution: {integrity: sha512-5gtsLfBaSoa9WP8ToDb/8NnDBLZjv4sybQQj7rDKytKOdsXm3Pr2y4D7x7GQQtP1ZQRqzU0X0OZrhRz9xNnOqA==} - engines: {node: '>=18'} - dev: false + - zod - /@react-native/dev-middleware@0.76.5: - resolution: {integrity: sha512-f8eimsxpkvMgJia7POKoUu9uqjGF6KgkxX4zqr/a6eoR1qdEAWUd6PonSAqtag3PAqvEaJpB99gLH2ZJI1nDGg==} - engines: {node: '>=18'} + '@reown/appkit-utils@1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0))(zod@3.25.33)': dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.76.5 - chrome-launcher: 0.15.2 - chromium-edge-launcher: 0.2.0 - connect: 3.7.0 - debug: 2.6.9 - nullthrows: 1.1.1 - open: 7.4.2 - selfsigned: 2.4.1 - serve-static: 1.15.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-polyfills': 1.7.3 + '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/logger': 2.1.2 + '@walletconnect/universal-provider': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + valtio: 1.13.2(@types/react@18.2.14)(react@18.2.0) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch - bufferutil - - supports-color + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing - utf-8-validate - dev: false - - /@react-native/gradle-plugin@0.76.5: - resolution: {integrity: sha512-7KSyD0g0KhbngITduC8OABn0MAlJfwjIdze7nA4Oe1q3R7qmAv+wQzW+UEXvPah8m1WqFjYTkQwz/4mK3XrQGw==} - engines: {node: '>=18'} - dev: false - - /@react-native/js-polyfills@0.76.5: - resolution: {integrity: sha512-ggM8tcKTcaqyKQcXMIvcB0vVfqr9ZRhWVxWIdiFO1mPvJyS6n+a+lLGkgQAyO8pfH0R1qw6K9D0nqbbDo865WQ==} - engines: {node: '>=18'} - dev: false + - zod - /@react-native/metro-babel-transformer@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-Cm9G5Sg5BDty3/MKa3vbCAJtT3YHhlEaPlQALLykju7qBS+pHZV9bE9hocfyyvc5N/osTIGWxG5YOfqTeMu1oQ==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' + '@reown/appkit-wallet@1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@babel/core': 7.26.9 - '@react-native/babel-preset': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2) - hermes-parser: 0.23.1 - nullthrows: 1.1.1 + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.7.2 + '@walletconnect/logger': 2.1.2 + zod: 3.22.4 transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - dev: false - - /@react-native/normalize-colors@0.76.5: - resolution: {integrity: sha512-6QRLEok1r55gLqj+94mEWUENuU5A6wsr2OoXpyq/CgQ7THWowbHtru/kRGRr6o3AQXrVnZheR60JNgFcpNYIug==} - dev: false + - bufferutil + - typescript + - utf-8-validate - /@react-native/virtualized-lists@0.76.5(@types/react@18.3.3)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-M/fW1fTwxrHbcx0OiVOIxzG6rKC0j9cR9Csf80o77y1Xry0yrNPpAlf8D1ev3LvHsiAUiRNFlauoPtodrs2J1A==} - engines: {node: '>=18'} - peerDependencies: - '@types/react': ^18.2.6 - react: '*' - react-native: '*' - peerDependenciesMeta: - '@types/react': - optional: true + '@reown/appkit-wallet@1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@types/react': 18.3.3 - invariant: 2.2.4 - nullthrows: 1.1.1 - react: 18.3.1 - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) - dev: false + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.7.3 + '@walletconnect/logger': 2.1.2 + zod: 3.22.4 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate - /@react-oauth/google@0.12.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-qagsy22t+7UdkYAiT5ZhfM4StXi9PPNvw0zuwNmabrWyMKddczMtBIOARflbaIj+wHiQjnMAsZmzsUYuXeyoSg==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false + '@reown/appkit@1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': + dependencies: + '@reown/appkit-common': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-polyfills': 1.7.2 + '@reown/appkit-scaffold-ui': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1))(zod@3.25.33) + '@reown/appkit-ui': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-utils': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1))(zod@3.25.33) + '@reown/appkit-wallet': 1.7.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + bs58: 6.0.0 + valtio: 1.13.2(@types/react@18.3.23)(react@18.3.1) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@react-oauth/google@0.12.1(react-dom@18.3.1)(react@18.2.0): - resolution: {integrity: sha512-qagsy22t+7UdkYAiT5ZhfM4StXi9PPNvw0zuwNmabrWyMKddczMtBIOARflbaIj+wHiQjnMAsZmzsUYuXeyoSg==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - dependencies: - react: 18.2.0 - react-dom: 18.3.1(react@18.2.0) - dev: false + '@reown/appkit@1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': + dependencies: + '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-controllers': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-polyfills': 1.7.3 + '@reown/appkit-scaffold-ui': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0))(zod@3.25.33) + '@reown/appkit-ui': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@reown/appkit-utils': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0))(zod@3.25.33) + '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + bs58: 6.0.0 + valtio: 1.13.2(@types/react@18.2.14)(react@18.2.0) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@rhinestone/module-sdk@0.1.28(viem@2.26.2): - resolution: {integrity: sha512-Ob9qMs/scBrk6/X0dvb02kWqiCdP3Vau6PRNr3PP7PGxIIBFunJoVHuLWg4Tb/DHS3dCUXhuTk+XhObH1HjH+w==} - peerDependencies: - viem: ^2.0.0 + '@rhinestone/module-sdk@0.1.32(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: solady: 0.0.235 tslib: 2.8.1 - viem: 2.26.2(typescript@5.4.3) - dev: false + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /@rollup/plugin-alias@5.1.1(rollup@4.22.4): - resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - rollup: 4.22.4 - dev: true + '@rollup/plugin-alias@5.1.1(rollup@4.41.1)': + optionalDependencies: + rollup: 4.41.1 - /@rollup/plugin-babel@5.3.0(@babel/core@7.26.9)(rollup@4.22.4): - resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true + '@rollup/plugin-babel@5.3.0(@babel/core@7.26.9)(@types/babel__core@7.20.5)(rollup@4.41.1)': dependencies: '@babel/core': 7.26.9 - '@babel/helper-module-imports': 7.24.7 - '@rollup/pluginutils': 3.1.0(rollup@4.22.4) - rollup: 4.22.4 + '@babel/helper-module-imports': 7.27.1 + '@rollup/pluginutils': 3.1.0(rollup@4.41.1) + rollup: 4.41.1 + optionalDependencies: + '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color - dev: true - /@rollup/plugin-node-resolve@16.0.0(rollup@4.22.4): - resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@16.0.0(rollup@4.41.1)': dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.22.4) + '@rollup/pluginutils': 5.1.4(rollup@4.41.1) '@types/resolve': 1.20.2 - deepmerge: 4.3.0 + deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.8 - rollup: 4.22.4 - dev: true - - /@rollup/plugin-typescript@11.1.5(rollup@4.22.4)(typescript@5.4.3): - resolution: {integrity: sha512-rnMHrGBB0IUEv69Q8/JGRD/n4/n6b3nfpufUu26axhUcboUzv/twfZU8fIBbTOphRAe0v8EyxzeDpKXqGHfyDA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.22.4) - resolve: 1.22.1 - rollup: 4.22.4 - typescript: 5.4.3 - dev: true - - /@rollup/plugin-url@8.0.2(rollup@4.22.4): - resolution: {integrity: sha512-5yW2LP5NBEgkvIRSSEdJkmxe5cUNZKG3eenKtfJvSkxVm/xTTu7w+ayBtNwhozl1ZnTUCU0xFaRQR+cBl2H7TQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + resolve: 1.22.10 + optionalDependencies: + rollup: 4.41.1 + + '@rollup/plugin-typescript@11.1.6(rollup@4.41.1)(tslib@2.8.1)(typescript@5.4.3)': + dependencies: + '@rollup/pluginutils': 5.1.4(rollup@4.41.1) + resolve: 1.22.10 + typescript: 5.4.3 + optionalDependencies: + rollup: 4.41.1 + tslib: 2.8.1 + + '@rollup/plugin-url@8.0.2(rollup@4.41.1)': dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.22.4) + '@rollup/pluginutils': 5.1.4(rollup@4.41.1) make-dir: 3.1.0 mime: 3.0.0 - rollup: 4.22.4 - dev: true + optionalDependencies: + rollup: 4.41.1 - /@rollup/pluginutils@3.1.0(rollup@4.22.4): - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + '@rollup/pluginutils@3.1.0(rollup@4.41.1)': dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 4.22.4 - dev: true + rollup: 4.41.1 - /@rollup/pluginutils@5.0.5(rollup@4.22.4): - resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.1.4(rollup@4.41.1)': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.7 estree-walker: 2.0.2 - picomatch: 2.3.1 - rollup: 4.22.4 - dev: true + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.41.1 - /@rollup/rollup-android-arm-eabi@4.22.4: - resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm-eabi@4.41.1': optional: true - /@rollup/rollup-android-arm64@4.22.4: - resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm64@4.41.1': optional: true - /@rollup/rollup-darwin-arm64@4.22.4: - resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-arm64@4.41.1': optional: true - /@rollup/rollup-darwin-x64@4.22.4: - resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-x64@4.41.1': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.22.4: - resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-arm64@4.41.1': optional: true - /@rollup/rollup-linux-arm-musleabihf@4.22.4: - resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-x64@4.41.1': optional: true - /@rollup/rollup-linux-arm64-gnu@4.22.4: - resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-gnueabihf@4.41.1': optional: true - /@rollup/rollup-linux-arm64-musl@4.22.4: - resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-musleabihf@4.41.1': optional: true - /@rollup/rollup-linux-powerpc64le-gnu@4.22.4: - resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-gnu@4.41.1': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.22.4: - resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-musl@4.41.1': optional: true - /@rollup/rollup-linux-s390x-gnu@4.22.4: - resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-loongarch64-gnu@4.41.1': optional: true - /@rollup/rollup-linux-x64-gnu@4.22.4: - resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': optional: true - /@rollup/rollup-linux-x64-musl@4.22.4: - resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-gnu@4.41.1': optional: true - /@rollup/rollup-win32-arm64-msvc@4.22.4: - resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-musl@4.41.1': optional: true - /@rollup/rollup-win32-ia32-msvc@4.22.4: - resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-s390x-gnu@4.41.1': optional: true - /@rollup/rollup-win32-x64-msvc@4.22.4: - resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.41.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.41.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.41.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.41.1': optional: true - /@rushstack/eslint-patch@1.9.0: - resolution: {integrity: sha512-AAWymnpvHbGty1BmgbdfbqQDboXs6xN6h2yAacO4yKVyyUUBnpYkp+P9jjPrV9zrAGw7JVVriRtGOHPInnfjZQ==} + '@rtsao/scc@1.1.0': {} + + '@rushstack/eslint-patch@1.11.0': {} - /@safe-global/protocol-kit@3.0.1(typescript@5.4.3): - resolution: {integrity: sha512-7S2QCvIDw3NsErF0f8tIfiTBz32btCAkw7IYuQFPc+G7clLrvDNhDaZYSoDsa8F0EoEhn+605VA7XP//iL6AIg==} + '@safe-global/protocol-kit@3.1.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: '@noble/hashes': 1.4.0 - '@safe-global/safe-deployments': 1.34.0 + '@safe-global/safe-deployments': 1.37.32 ethereumjs-util: 7.1.5 - ethers: 6.10.0 - semver: 7.5.4 - web3: 4.7.0(typescript@5.4.3) - web3-core: 4.3.2 - web3-utils: 4.2.1 + ethers: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + semver: 7.7.2 + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-utils: 4.3.3 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /@safe-global/safe-core-sdk-types@1.9.0: - resolution: {integrity: sha512-3VFhnggdLT9kWhnb35eqxEC9cVpW5Sl4E51TZo0RmH1cSzMwlNDbeGINb38PpUbw/wwXFJbCVFmeXELz2ZlCfw==} + '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@gnosis.pm/safe-deployments': 1.19.0 - web3-core: 4.3.2 - web3-utils: 4.2.1 + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': + dependencies: + '@safe-global/safe-gateway-typescript-sdk': 3.23.1 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-core-sdk-types@1.10.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/contracts': 5.8.0 + '@safe-global/safe-deployments': 1.37.32 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-utils: 4.3.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /@safe-global/safe-core-sdk-types@4.0.1: - resolution: {integrity: sha512-cXW6petRWqUw1n04ZhVPgjzIL65FkAMqbPwkFAAlQ1lBxTt6xdxktLoAhgEDlqLNGibvncsNvKhxa1ib4T9MGg==} + '@safe-global/safe-core-sdk-types@4.1.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@safe-global/safe-deployments': 1.34.0 - ethers: 6.10.0 - web3-core: 4.3.2 - web3-utils: 4.2.1 + '@safe-global/safe-deployments': 1.37.32 + ethers: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-utils: 4.3.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /@safe-global/safe-core-sdk-utils@1.7.2: - resolution: {integrity: sha512-nlS9/vtd6rj+2IK0tgt4xq6vqdGOAa+6MwAeiYCoP1ihcqFD38k6LBn7ZdXWjRF9VBvMXTgclkjvzp+PkLKtAw==} + '@safe-global/safe-core-sdk-utils@1.7.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@safe-global/safe-core-sdk-types': 1.9.0 - semver: 7.5.4 - web3-utils: 4.2.1 + '@safe-global/safe-core-sdk-types': 1.10.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + semver: 7.7.2 + web3-utils: 4.3.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /@safe-global/safe-deployments@1.34.0: - resolution: {integrity: sha512-J55iHhB1tiNoPeVQ5s943zrfeKRYPqBtnz/EM7d878WzUmmDlTGKHN98qPYKBxkRKP1UjEWuQDrZxy80lx1rJw==} + '@safe-global/safe-deployments@1.37.32': dependencies: - semver: 7.5.4 - dev: false + semver: 7.7.2 - /@safe-global/safe-ethers-lib@1.9.2: - resolution: {integrity: sha512-x8Lq6ViRHW9UC+SAF+VOZ8Lt7jXMhbNS/+WYhSdAKhM+SHwkaaDi03pyZgm4FK0C3Zah7vryU3dSDR/CwEtqhQ==} + '@safe-global/safe-ethers-lib@1.9.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@safe-global/safe-core-sdk-types': 1.9.0 - '@safe-global/safe-core-sdk-utils': 1.7.2 - ethers: 5.7.2 + '@safe-global/safe-core-sdk-types': 1.10.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@safe-global/safe-core-sdk-utils': 1.7.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + ethers: 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /@scure/base@1.1.7: - resolution: {integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==} - dev: false + '@safe-global/safe-gateway-typescript-sdk@3.23.1': {} - /@scure/base@1.1.9: - resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==} + '@scure/base@1.1.9': {} - /@scure/base@1.2.4: - resolution: {integrity: sha512-5Yy9czTO47mqz+/J8GM6GIId4umdCk1wc1q8rKERQulIoc8VP9pzDcghv10Tl2E7R96ZUx/PhND3ESYUQX8NuQ==} + '@scure/base@1.2.5': {} - /@scure/bip32@1.1.5: - resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==} + '@scure/bip32@1.1.5': dependencies: '@noble/hashes': 1.2.0 '@noble/secp256k1': 1.7.1 '@scure/base': 1.1.9 - /@scure/bip32@1.3.2: - resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} + '@scure/bip32@1.3.2': dependencies: '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.3.2 '@scure/base': 1.1.9 - dev: false - /@scure/bip32@1.4.0: - resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} + '@scure/bip32@1.4.0': dependencies: - '@noble/curves': 1.4.2 + '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 '@scure/base': 1.1.9 - dev: false - /@scure/bip32@1.5.0: - resolution: {integrity: sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==} + '@scure/bip32@1.5.0': dependencies: '@noble/curves': 1.6.0 '@noble/hashes': 1.5.0 '@scure/base': 1.1.9 - dev: false - /@scure/bip32@1.6.2: - resolution: {integrity: sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==} + '@scure/bip32@1.6.2': dependencies: - '@noble/curves': 1.8.2 - '@noble/hashes': 1.7.2 - '@scure/base': 1.2.4 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.5 - /@scure/bip39@1.1.1: - resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==} + '@scure/bip32@1.7.0': + dependencies: + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/base': 1.2.5 + + '@scure/bip39@1.1.1': dependencies: '@noble/hashes': 1.2.0 '@scure/base': 1.1.9 - /@scure/bip39@1.2.1: - resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} + '@scure/bip39@1.2.1': dependencies: '@noble/hashes': 1.3.3 '@scure/base': 1.1.9 - dev: false - /@scure/bip39@1.3.0: - resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + '@scure/bip39@1.3.0': dependencies: '@noble/hashes': 1.4.0 '@scure/base': 1.1.9 - dev: false - /@scure/bip39@1.4.0: - resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==} + '@scure/bip39@1.4.0': dependencies: '@noble/hashes': 1.5.0 '@scure/base': 1.1.9 - dev: false - /@scure/bip39@1.5.4: - resolution: {integrity: sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==} + '@scure/bip39@1.5.4': dependencies: - '@noble/hashes': 1.7.2 - '@scure/base': 1.2.4 + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.5 - /@sentry/core@5.30.0: - resolution: {integrity: sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==} - engines: {node: '>=6'} + '@scure/bip39@1.6.0': + dependencies: + '@noble/hashes': 1.8.0 + '@scure/base': 1.2.5 + + '@sentry/core@5.30.0': dependencies: '@sentry/hub': 5.30.0 '@sentry/minimal': 5.30.0 @@ -11384,25 +18876,19 @@ packages: '@sentry/utils': 5.30.0 tslib: 1.14.1 - /@sentry/hub@5.30.0: - resolution: {integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==} - engines: {node: '>=6'} + '@sentry/hub@5.30.0': dependencies: '@sentry/types': 5.30.0 '@sentry/utils': 5.30.0 tslib: 1.14.1 - /@sentry/minimal@5.30.0: - resolution: {integrity: sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==} - engines: {node: '>=6'} + '@sentry/minimal@5.30.0': dependencies: '@sentry/hub': 5.30.0 '@sentry/types': 5.30.0 tslib: 1.14.1 - /@sentry/node@5.30.0: - resolution: {integrity: sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==} - engines: {node: '>=6'} + '@sentry/node@5.30.0': dependencies: '@sentry/core': 5.30.0 '@sentry/hub': 5.30.0 @@ -11416,9 +18902,7 @@ packages: transitivePeerDependencies: - supports-color - /@sentry/tracing@5.30.0: - resolution: {integrity: sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==} - engines: {node: '>=6'} + '@sentry/tracing@5.30.0': dependencies: '@sentry/hub': 5.30.0 '@sentry/minimal': 5.30.0 @@ -11426,341 +18910,515 @@ packages: '@sentry/utils': 5.30.0 tslib: 1.14.1 - /@sentry/types@5.30.0: - resolution: {integrity: sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==} - engines: {node: '>=6'} + '@sentry/types@5.30.0': {} - /@sentry/utils@5.30.0: - resolution: {integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==} - engines: {node: '>=6'} + '@sentry/utils@5.30.0': dependencies: '@sentry/types': 5.30.0 tslib: 1.14.1 - /@shikijs/engine-oniguruma@3.2.1: - resolution: {integrity: sha512-wZZAkayEn6qu2+YjenEoFqj0OyQI64EWsNR6/71d1EkG4sxEOFooowKivsWPpaWNBu3sxAG+zPz5kzBL/SsreQ==} + '@shikijs/engine-oniguruma@3.4.2': dependencies: - '@shikijs/types': 3.2.1 + '@shikijs/types': 3.4.2 '@shikijs/vscode-textmate': 10.0.2 - dev: true - /@shikijs/types@3.2.1: - resolution: {integrity: sha512-/NTWAk4KE2M8uac0RhOsIhYQf4pdU0OywQuYDGIGAJ6Mjunxl2cGiuLkvu4HLCMn+OTTLRWkjZITp+aYJv60yA==} + '@shikijs/langs@3.4.2': + dependencies: + '@shikijs/types': 3.4.2 + + '@shikijs/themes@3.4.2': + dependencies: + '@shikijs/types': 3.4.2 + + '@shikijs/types@3.4.2': dependencies: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - dev: true - /@shikijs/vscode-textmate@10.0.2: - resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} - dev: true + '@shikijs/vscode-textmate@10.0.2': {} - /@silencelaboratories/walletprovider-sdk@0.1.0(typescript@5.4.3): - resolution: {integrity: sha512-53fV1noQJDUN9JNydDohyzsFl4+QYoWNkkkAfRzmIgtv+6DR+Dksb0fKmme2WdtA8MPEw/HsRwN3Lr6YC3iF7A==} + '@silencelaboratories/walletprovider-sdk@0.3.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@noble/curves': 1.9.0 - viem: 2.28.0(typescript@5.4.3) + '@noble/curves': 1.8.0 + js-base64: 3.7.7 + viem: 2.21.32(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - dev: false - /@silencelaboratories/walletprovider-sdk@0.3.0(typescript@5.4.3): - resolution: {integrity: sha512-5+yS95DwIufP0qOPuk81cXZ8gepcARXwuKRDAtjtf50JVX0MOMy6pR8f/1j5PATPdImzgI8905x3ZBgXfi+FKw==} + '@sinclair/typebox@0.27.8': {} + + '@sinclair/typebox@0.33.22': {} + + '@sindresorhus/is@4.6.0': {} + + '@sinonjs/commons@3.0.1': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.1 + + '@socket.io/component-emitter@3.1.2': {} + + '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.2.0(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + dependencies: + '@solana-mobile/mobile-wallet-adapter-protocol': 2.2.1(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bs58: 5.0.0 + js-base64: 3.7.7 + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - react + - react-native + + '@solana-mobile/mobile-wallet-adapter-protocol@2.2.1(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + dependencies: + '@solana/wallet-standard': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1) + '@solana/wallet-standard-util': 1.1.2 + '@wallet-standard/core': 1.1.1 + js-base64: 3.7.7 + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - '@solana/web3.js' + - bs58 + - react + + '@solana-mobile/wallet-adapter-mobile@2.2.0(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + dependencies: + '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.2.0(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana-mobile/wallet-standard-mobile': 0.2.0(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-features': 1.3.0 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + js-base64: 3.7.7 + optionalDependencies: + '@react-native-async-storage/async-storage': 1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)) + transitivePeerDependencies: + - react + - react-native + + '@solana-mobile/wallet-standard-mobile@0.2.0(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@noble/curves': 1.9.0 + '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.2.0(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-standard-chains': 1.1.1 + '@solana/wallet-standard-features': 1.3.0 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + bs58: 5.0.0 js-base64: 3.7.7 - viem: 2.21.32(typescript@5.4.3) + qrcode: 1.5.4 + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - react + - react-native + + '@solana-program/compute-budget@0.7.0(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))': + dependencies: + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + + '@solana-program/stake@0.2.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))': + dependencies: + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + + '@solana-program/system@0.7.0(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))': + dependencies: + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + + '@solana-program/token-2022@0.4.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))': + dependencies: + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/sysvars': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + + '@solana-program/token@0.5.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))': + dependencies: + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + + '@solana/accounts@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/addresses@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/assertions': 2.1.1(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/assertions@2.1.1(typescript@5.4.3)': + dependencies: + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + + '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)': + dependencies: + '@solana/buffer-layout': 4.0.1 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bigint-buffer: 1.1.5 + bignumber.js: 9.3.0 transitivePeerDependencies: - bufferutil + - encoding - typescript - utf-8-validate - - zod - dev: false - /@sinclair/typebox@0.25.22: - resolution: {integrity: sha512-6U6r2L7rnM7EG8G1tWzIjdB3QlsHF4slgcqXNN/SF0xJOAr0nDmT2GedlkyO3mrv8mDTJ24UuOMWR3diBrCvQQ==} - dev: true + '@solana/buffer-layout@4.0.1': + dependencies: + buffer: 6.0.3 + + '@solana/codecs-core@2.0.0-rc.1(typescript@5.4.3)': + dependencies: + '@solana/errors': 2.0.0-rc.1(typescript@5.4.3) + typescript: 5.4.3 - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + '@solana/codecs-core@2.1.1(typescript@5.4.3)': + dependencies: + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 - /@sinclair/typebox@0.31.28: - resolution: {integrity: sha512-/s55Jujywdw/Jpan+vsy6JZs1z2ZTGxTmbZTPiuSL2wz9mfzA2gN1zzaqmvfi4pq+uOt7Du85fkiwv5ymW84aQ==} - dev: false + '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.4.3) + typescript: 5.4.3 - /@sindresorhus/is@4.6.0: - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - dev: false + '@solana/codecs-data-structures@2.1.1(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + + '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.4.3) + typescript: 5.4.3 + + '@solana/codecs-numbers@2.1.1(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + + '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.4.3) + fastestsmallesttextencoderdecoder: 1.0.22 + typescript: 5.4.3 + + '@solana/codecs-strings@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + fastestsmallesttextencoderdecoder: 1.0.22 + typescript: 5.4.3 + + '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/codecs@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/options': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/errors@2.0.0-rc.1(typescript@5.4.3)': + dependencies: + chalk: 5.4.1 + commander: 12.1.0 + typescript: 5.4.3 + + '@solana/errors@2.1.1(typescript@5.4.3)': + dependencies: + chalk: 5.4.1 + commander: 13.1.0 + typescript: 5.4.3 + + '@solana/fast-stable-stringify@2.1.1(typescript@5.4.3)': + dependencies: + typescript: 5.4.3 - /@sinonjs/commons@2.0.0: - resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==} + '@solana/functional@2.1.1(typescript@5.4.3)': dependencies: - type-detect: 4.0.8 + typescript: 5.4.3 - /@sinonjs/fake-timers@10.0.2: - resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==} + '@solana/instructions@2.1.1(typescript@5.4.3)': dependencies: - '@sinonjs/commons': 2.0.0 - - /@socket.io/component-emitter@3.1.2: - resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} - dev: false + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 - /@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.3(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-IEvPzp4m39sWTS3gybbVfk1WQ5Bx9TrGlthtRlVw1BJPvjbmT6lTcnndgXp7HmMkz5e6cc8fwJWp3EKx5upAug==} - peerDependencies: - '@solana/web3.js': ^1.58.0 + '@solana/keys@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.3(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react-native@0.76.5)(react@18.3.1) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bs58: 5.0.0 - js-base64: 3.7.7 + '@solana/assertions': 2.1.1(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - - '@solana/wallet-adapter-base' - - react - - react-native - dev: false + - fastestsmallesttextencoderdecoder - /@solana-mobile/mobile-wallet-adapter-protocol@2.1.3(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-rj1/cSQVjPYdQjHsJDxmlpgRjI9jly/0Md3bEeqCan2sLXPf5F6+TiVlAg9+Hxg+uVWd1peUrepFUdOykbklSw==} - peerDependencies: - '@solana/web3.js': ^1.58.0 - react-native: '>0.69' - dependencies: - '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1) - '@solana/wallet-standard-util': 1.1.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@wallet-standard/core': 1.0.3 - js-base64: 3.7.7 - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) + '@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + '@solana/accounts': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/instructions': 2.1.1(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/programs': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-parsed-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-subscriptions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/signers': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/sysvars': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transaction-confirmation': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transactions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - - '@solana/wallet-adapter-base' - - bs58 - - react - dev: false + - fastestsmallesttextencoderdecoder + - ws - /@solana-mobile/wallet-adapter-mobile@2.1.3(@solana/web3.js@1.95.8)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-V9gxV7/F1BLode6I+j134kFvQv1mnF0OlN+tYPHEmJOcH4caDfH6rlJy7t9Pktkl9ZEVTO9kT8K19Y4MRl6nxg==} - peerDependencies: - '@solana/web3.js': ^1.58.0 + '@solana/nominal-types@2.1.1(typescript@5.4.3)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.3(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(react-native@0.76.5)(react@18.3.1) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-features': 1.2.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - js-base64: 3.7.7 - optionalDependencies: - '@react-native-async-storage/async-storage': 1.24.0(react-native@0.76.5) - transitivePeerDependencies: - - react - - react-native - dev: false + typescript: 5.4.3 - /@solana/buffer-layout-utils@0.2.0: - resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} - engines: {node: '>= 10'} + '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/buffer-layout': 4.0.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bigint-buffer: 1.1.5 - bignumber.js: 9.1.2 + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.3) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate - dev: false + - fastestsmallesttextencoderdecoder - /@solana/buffer-layout@4.0.1: - resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} - engines: {node: '>=5.10'} + '@solana/options@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - buffer: 6.0.3 + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/codecs-core@2.0.0-preview.2: - resolution: {integrity: sha512-gLhCJXieSCrAU7acUJjbXl+IbGnqovvxQLlimztPoGgfLQ1wFYu+XJswrEVQqknZYK1pgxpxH3rZ+OKFs0ndQg==} + '@solana/programs@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/errors': 2.0.0-preview.2 - dev: false + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/codecs-core@2.0.0-preview.4(typescript@5.4.3): - resolution: {integrity: sha512-A0VVuDDA5kNKZUinOqHxJQK32aKTucaVbvn31YenGzHX1gPqq+SOnFwgaEY6pq4XEopSmaK16w938ZQS8IvCnw==} - peerDependencies: - typescript: '>=5' + '@solana/promises@2.1.1(typescript@5.4.3)': dependencies: - '@solana/errors': 2.0.0-preview.4(typescript@5.4.3) typescript: 5.4.3 - dev: false - /@solana/codecs-data-structures@2.0.0-preview.2: - resolution: {integrity: sha512-Xf5vIfromOZo94Q8HbR04TbgTwzigqrKII0GjYr21K7rb3nba4hUW2ir8kguY7HWFBcjHGlU5x3MevKBOLp3Zg==} - dependencies: - '@solana/codecs-core': 2.0.0-preview.2 - '@solana/codecs-numbers': 2.0.0-preview.2 - '@solana/errors': 2.0.0-preview.2 - dev: false + '@solana/rpc-api@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-parsed-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-transformers': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transactions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/codecs-data-structures@2.0.0-preview.4(typescript@5.4.3): - resolution: {integrity: sha512-nt2k2eTeyzlI/ccutPcG36M/J8NAYfxBPI9h/nQjgJ+M+IgOKi31JV8StDDlG/1XvY0zyqugV3I0r3KAbZRJpA==} - peerDependencies: - typescript: '>=5' + '@solana/rpc-parsed-types@2.1.1(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-numbers': 2.0.0-preview.4(typescript@5.4.3) - '@solana/errors': 2.0.0-preview.4(typescript@5.4.3) typescript: 5.4.3 - dev: false - /@solana/codecs-numbers@2.0.0-preview.2: - resolution: {integrity: sha512-aLZnDTf43z4qOnpTcDsUVy1Ci9im1Md8thWipSWbE+WM9ojZAx528oAql+Cv8M8N+6ALKwgVRhPZkto6E59ARw==} + '@solana/rpc-spec-types@2.1.1(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.2 - '@solana/errors': 2.0.0-preview.2 - dev: false + typescript: 5.4.3 - /@solana/codecs-numbers@2.0.0-preview.4(typescript@5.4.3): - resolution: {integrity: sha512-Q061rLtMadsO7uxpguT+Z7G4UHnjQ6moVIxAQxR58nLxDPCC7MB1Pk106/Z7NDhDLHTcd18uO6DZ7ajHZEn2XQ==} - peerDependencies: - typescript: '>=5' + '@solana/rpc-spec@2.1.1(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.4(typescript@5.4.3) - '@solana/errors': 2.0.0-preview.4(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) typescript: 5.4.3 - dev: false - /@solana/codecs-strings@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22): - resolution: {integrity: sha512-EgBwY+lIaHHgMJIqVOGHfIfpdmmUDNoNO/GAUGeFPf+q0dF+DtwhJPEMShhzh64X2MeCZcmSO6Kinx0Bvmmz2g==} - peerDependencies: - fastestsmallesttextencoderdecoder: ^1.0.22 + '@solana/rpc-subscriptions-api@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.2 - '@solana/codecs-numbers': 2.0.0-preview.2 - '@solana/errors': 2.0.0-preview.2 - fastestsmallesttextencoderdecoder: 1.0.22 - dev: false + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-subscriptions-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-transformers': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transactions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/codecs-strings@2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3): - resolution: {integrity: sha512-YDbsQePRWm+xnrfS64losSGRg8Wb76cjK1K6qfR8LPmdwIC3787x9uW5/E4icl/k+9nwgbIRXZ65lpF+ucZUnw==} - peerDependencies: - fastestsmallesttextencoderdecoder: ^1.0.22 - typescript: '>=5' + '@solana/rpc-subscriptions-channel-websocket@2.1.1(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: - '@solana/codecs-core': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-numbers': 2.0.0-preview.4(typescript@5.4.3) - '@solana/errors': 2.0.0-preview.4(typescript@5.4.3) - fastestsmallesttextencoderdecoder: 1.0.22 + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/rpc-subscriptions-spec': 2.1.1(typescript@5.4.3) + '@solana/subscribable': 2.1.1(typescript@5.4.3) typescript: 5.4.3 - dev: false + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /@solana/codecs@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22): - resolution: {integrity: sha512-4HHzCD5+pOSmSB71X6w9ptweV48Zj1Vqhe732+pcAQ2cMNnN0gMPMdDq7j3YwaZDZ7yrILVV/3+HTnfT77t2yA==} + '@solana/rpc-subscriptions-spec@2.1.1(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.2 - '@solana/codecs-data-structures': 2.0.0-preview.2 - '@solana/codecs-numbers': 2.0.0-preview.2 - '@solana/codecs-strings': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22) - '@solana/options': 2.0.0-preview.2 + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/promises': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + '@solana/subscribable': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + + '@solana/rpc-subscriptions@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/fast-stable-stringify': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/promises': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-subscriptions-api': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-subscriptions-channel-websocket': 2.1.1(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/rpc-subscriptions-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-transformers': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/subscribable': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - dev: false + - ws - /@solana/codecs@2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3): - resolution: {integrity: sha512-gLMupqI4i+G4uPi2SGF/Tc1aXcviZF2ybC81x7Q/fARamNSgNOCUUoSCg9nWu1Gid6+UhA7LH80sWI8XjKaRog==} - peerDependencies: - typescript: '>=5' + '@solana/rpc-transformers@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-data-structures': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-numbers': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-strings': 2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) - '@solana/options': 2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) typescript: 5.4.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - dev: false - /@solana/errors@2.0.0-preview.2: - resolution: {integrity: sha512-H2DZ1l3iYF5Rp5pPbJpmmtCauWeQXRJapkDg8epQ8BJ7cA2Ut/QEtC3CMmw/iMTcuS6uemFNLcWvlOfoQhvQuA==} - hasBin: true + '@solana/rpc-transport-http@2.1.1(typescript@5.4.3)': dependencies: - chalk: 5.3.0 - commander: 12.1.0 - dev: false + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 + undici-types: 7.10.0 - /@solana/errors@2.0.0-preview.4(typescript@5.4.3): - resolution: {integrity: sha512-kadtlbRv2LCWr8A9V22On15Us7Nn8BvqNaOB4hXsTB3O0fU40D1ru2l+cReqLcRPij4znqlRzW9Xi0m6J5DIhA==} - hasBin: true - peerDependencies: - typescript: '>=5' + '@solana/rpc-types@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - chalk: 5.3.0 - commander: 12.1.0 + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) typescript: 5.4.3 - dev: false + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/options@2.0.0-preview.2: - resolution: {integrity: sha512-FAHqEeH0cVsUOTzjl5OfUBw2cyT8d5Oekx4xcn5hn+NyPAfQJgM3CEThzgRD6Q/4mM5pVUnND3oK/Mt1RzSE/w==} - dependencies: - '@solana/codecs-core': 2.0.0-preview.2 - '@solana/codecs-numbers': 2.0.0-preview.2 - dev: false + '@solana/rpc@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/fast-stable-stringify': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/rpc-api': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-spec': 2.1.1(typescript@5.4.3) + '@solana/rpc-spec-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-transformers': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-transport-http': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/options@2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3): - resolution: {integrity: sha512-tv2O/Frxql/wSe3jbzi5nVicIWIus/BftH+5ZR+r9r3FO0/htEllZS5Q9XdbmSboHu+St87584JXeDx3xm4jaA==} - peerDependencies: - typescript: '>=5' + '@solana/signers@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/codecs-core': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-data-structures': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-numbers': 2.0.0-preview.4(typescript@5.4.3) - '@solana/codecs-strings': 2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) - '@solana/errors': 2.0.0-preview.4(typescript@5.4.3) + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/instructions': 2.1.1(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transactions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) typescript: 5.4.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - dev: false - /@solana/spl-token-group@0.0.5(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3): - resolution: {integrity: sha512-CLJnWEcdoUBpQJfx9WEbX3h6nTdNiUzswfFdkABUik7HVwSNA98u5AYvBVK2H93d9PGMOHAak2lHW9xr+zAJGQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.94.0 + '@solana/spl-token-group@0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/codecs': 2.0.0-preview.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) - '@solana/spl-type-length-value': 0.1.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - fastestsmallesttextencoderdecoder - typescript - dev: false - /@solana/spl-token-metadata@0.1.4(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22): - resolution: {integrity: sha512-N3gZ8DlW6NWDV28+vCCDJoTqaCZiF/jDUnk3o8GRkAFzHObiR60Bs1gXHBa8zCPdvOwiG6Z3dg5pg7+RW6XNsQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.91.6 + '@solana/spl-token-metadata@0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/codecs': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22) - '@solana/spl-type-length-value': 0.1.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - fastestsmallesttextencoderdecoder - dev: false + - typescript - /@solana/spl-token@0.4.8(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3): - resolution: {integrity: sha512-RO0JD9vPRi4LsAbMUdNbDJ5/cv2z11MGhtAvFeRzT4+hAGE/FUzRi0tkkWtuCfSIU3twC6CtmAihRp/+XXjWsA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.94.0 + '@solana/spl-token@0.4.13(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: '@solana/buffer-layout': 4.0.1 - '@solana/buffer-layout-utils': 0.2.0 - '@solana/spl-token-group': 0.0.5(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) - '@solana/spl-token-metadata': 0.1.4(@solana/web3.js@1.95.8)(fastestsmallesttextencoderdecoder@1.0.22) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@solana/spl-token-group': 0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/spl-token-metadata': 0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) buffer: 6.0.3 transitivePeerDependencies: - bufferutil @@ -11768,412 +19426,296 @@ packages: - fastestsmallesttextencoderdecoder - typescript - utf-8-validate - dev: false - /@solana/spl-type-length-value@0.1.0: - resolution: {integrity: sha512-JBMGB0oR4lPttOZ5XiUGyvylwLQjt1CPJa6qQ5oM+MBCndfjz2TKKkw0eATlLLcYmq1jBVsNlJ2cD6ns2GR7lA==} - engines: {node: '>=16'} + '@solana/subscribable@2.1.1(typescript@5.4.3)': dependencies: - buffer: 6.0.3 - dev: false + '@solana/errors': 2.1.1(typescript@5.4.3) + typescript: 5.4.3 - /@solana/wallet-adapter-alpha@0.1.10(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-TOUhDyUNSmp8bqeUueN0LPmurTAEmYm3PTrPGSnsq6JFeTzwTv5xZRygtCvULpBzCPZu/7AfIqh/TSoz4P92aw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/accounts': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder - /@solana/wallet-adapter-avana@0.1.13(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-dvKDzaFo9KgfNh0ohI6qOBTnOU2f6cHKPiDxdtLfXVubdic1mUYzuA2PcrBZQuRc5EBcvHbGCpr3Ds90cGB+xQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/transaction-confirmation@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/promises': 2.1.1(typescript@5.4.3) + '@solana/rpc': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/rpc-subscriptions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transactions': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + - ws + + '@solana/transaction-messages@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/instructions': 2.1.1(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/transactions@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)': + dependencies: + '@solana/addresses': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/codecs-core': 2.1.1(typescript@5.4.3) + '@solana/codecs-data-structures': 2.1.1(typescript@5.4.3) + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + '@solana/codecs-strings': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/errors': 2.1.1(typescript@5.4.3) + '@solana/functional': 2.1.1(typescript@5.4.3) + '@solana/instructions': 2.1.1(typescript@5.4.3) + '@solana/keys': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/nominal-types': 2.1.1(typescript@5.4.3) + '@solana/rpc-types': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + '@solana/transaction-messages': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/wallet-adapter-alpha@0.1.13(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-33l0WqY0mKKhcrNBbqS9anvT4MjzNnKewoF1VcdbI/uSlMOZtGy+9fr8ETVFI+ivr44QHpvbiZX9dmz2mTCGXw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 - react: '*' + '@solana/wallet-adapter-avana@0.1.16(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + + '@solana/wallet-adapter-base-ui@0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + dependencies: + '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 transitivePeerDependencies: - bs58 - react-native - dev: false - /@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-apqMuYwFp1jFi55NxDfvXUX2x1T0Zh07MxhZ/nCCTGys5raSfYUh82zen2BLv8BSDj/JxZ2P/s7jrQZGrX8uAw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-standard-features': 1.2.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@wallet-standard/base': 1.0.1 - '@wallet-standard/features': 1.0.3 - eventemitter3: 4.0.7 - dev: false + '@solana/wallet-standard-features': 1.3.0 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + eventemitter3: 5.0.1 - /@solana/wallet-adapter-bitkeep@0.3.20(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-v6Jd13CZOPNIAX0nFlopAJ3HDvC+MhiB4sde3C8sSnNbjVi9h1WLHBmaUfgqU6mAyhDjWUZjKt4zYlMhLdp/bg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-bitkeep@0.3.23(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-bitpie@0.5.18(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-gEflEwAyUbfmU4NEmsoDYt1JNFyoBQGm99BBvrvXdJsDdExvT6PwHNi5YlQKp1A4EAqjqaEj+nQzr6ygUpmCBQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-bitpie@0.5.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-clover@0.4.19(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-48PoaPte/SRYeU25bvOSmSEqoKCcyOBH9CXebsDcXkrgf+g46KRlAlsY605q1ebzr+iaFEONtTdxW8LthvJtbA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-clover@0.4.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-coin98@0.5.20(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-gnDFNsFq4IeB6jtQj6fZOUthuuQpvtomCkwkwsOWARNhl8nhnsfbuNs3r4XaT4Q79my07ogNQUBPGKY/8CqjiA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-coin98@0.5.23(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - bs58: 4.0.1 - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + bs58: 6.0.0 + buffer: 6.0.3 - /@solana/wallet-adapter-coinbase@0.1.19(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-hcf9ieAbQxD2g8/5glXVAt67w+3iixpjMMZC7lT7Wa8SJZsq6lmISC9AtZctDEQcWSVV0IkedZp3bg6bp22kng==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-coinbase@0.1.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-coinhub@0.3.18(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-yeJo+cHVlUBlH16Q+knnFDJrH9wzEB3zvSq57PXfqvlWSjySm4PkkK7srRoAwfNOxL/eArSJWfBwRprsymttJQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-coinhub@0.3.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-fractal@0.1.8(@solana/web3.js@1.95.8)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-lV/rXOMQSR7sBIEDx8g0jwvXP/fT2Vw/47CSj9BaVYC5LGphhuoYbcI4ko1y0Zv+dJu8JVRTeKbnaiRBjht5DA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-fractal@0.1.11(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.95.8)(react-dom@18.3.1)(react@18.3.1) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - react - react-dom - dev: false - /@solana/wallet-adapter-huobi@0.1.15(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-VKwlK0fE7v97NEWwP86iBY/xgnB3fQJv2/RYaw8ODAcfJqVQZAV6EhDR8fo6++jdS1KkcWc2GcHdBMrqPli3yQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-huobi@0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-hyperpay@0.1.14(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-K0qMVpPHbeIVAvhwnn+2GR8jjBe/a5EP514TL/10SQQ8vTLd7ggNWZdTRCjUkHRlsbTOK7yYWAOHu3gx7429rw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-hyperpay@0.1.17(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-keystone@0.1.15(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-2A31/vuDRAfASOEyWvJ2YjtwCQohwim3/K+KzhPfvG20C4wr6agDbMXi1T2lDWwrd13kyP+dIgOzPfuLn09tWw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-keystone@0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@keystonehq/sol-keyring': 0.3.1 - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@keystonehq/sol-keyring': 0.20.0(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + buffer: 6.0.3 transitivePeerDependencies: - bufferutil - encoding + - react + - react-dom + - typescript - utf-8-validate - dev: false - /@solana/wallet-adapter-krystal@0.1.12(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-umQV9cbLZcqJFkcjpdOgPvTeDvUjcivRSzWgbx27drmeQ9bi4w9bYH5XkFmbj9iD98q+fjrYQUOK772IHZqrkQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-krystal@0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-ledger@0.9.25(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-59yD3aveLwlzXqk4zBCaPLobeqAhmtMxPizfUBOjzwRKyepi1Nnnt9AC9Af3JrweU2x4qySRxAaZfU/iNqJ3rQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-ledger@0.9.28(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@ledgerhq/devices': 6.27.1 - '@ledgerhq/hw-transport': 6.27.1 - '@ledgerhq/hw-transport-webhid': 6.27.1 - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@ledgerhq/devices': 8.4.5 + '@ledgerhq/hw-transport': 6.31.5 + '@ledgerhq/hw-transport-webhid': 6.30.1 + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) buffer: 6.0.3 - dev: false - /@solana/wallet-adapter-mathwallet@0.9.18(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-sleBX+wB8Wahu2lLBCWihkFtnl64DMJgla/kgsf75PCNmNA93+WLA4gYOK+fFKeBkU12a/Hp5oZKEQsQGFPSOA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-mathwallet@0.9.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-neko@0.2.12(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-ei1QoQZhiYMuH/qm3bnXlueT0jQmH4tZfQvEwudFB8+a0fLtSA8lZU+CYI1jd1YLDjkUEIiXV6R/u32nlCuYDA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-neko@0.2.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-nightly@0.1.16(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-JaPzT8R4HHUqGn/QdElx9iRW98h0NaANBt0j3CZZYWlqsdG0f8fFfy2xofILA+qnDL6NaRI9AzQ4NcQGuVZsVQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-nightly@0.1.19(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-nufi@0.1.17(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-ggTZKvYPJS3m/9hsMaGSH0F8kqumPqP0WdY7WNihWR6O4Pr401kDBdgXPXNSGorIahdPrRBzp5UrahnrlodvTQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-nufi@0.1.20(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-onto@0.1.7(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-WS4LY0Z0J+NcyEkjdjkD11uKURkRQ/RHMYSFE59U+MuBHggEpXJFZuJzUE9SZbG1ltlLTh13hS5ZuiEz7F+faA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-onto@0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-particle@0.1.12(@solana/web3.js@1.95.8)(bs58@6.0.0): - resolution: {integrity: sha512-6tD5pbyuyCRDswDVD5LCakVQ/vIwjO2lXlVvJFDLdhGa6MinbjTHigLmE58nkTgKATRScyS8FuCCzGmYcXGbow==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-particle@0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)': dependencies: - '@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.95.8)(bs58@6.0.0) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - bs58 - dev: false - /@solana/wallet-adapter-phantom@0.9.24(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-D24AxRHmRJ4AYoRvijbiuUb9LmC4xLGKLMSJS2ly+zGxVmaPASPM/ThaY/DlYTDL31QvkYtl8RzSR4yIU1gpLg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-phantom@0.9.27(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-dom@18.3.1)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-SyHUavEAyzBL5zim5xAlYaqP5jF3bOtxi/02wgXzMpKXUYpG4EiXXY3DeGw5eUbcvvej45rQENtTHWEEH9fW+A==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 - react: '*' - react-dom: '*' + '@solana/wallet-adapter-react-ui@0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1) - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-base-ui': 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - bs58 - react-native - dev: false - /@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-i4hc/gNLTYNLMEt2LS+4lrrc0QAwa5SU2PtYMnZ2A3rsoKF5m1bv1h6cjLj2KBry4/zRGEBoqkiMOC5zHkLnRQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 - react: '*' + '@solana/wallet-adapter-react@0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@solana-mobile/wallet-adapter-mobile': 2.1.3(@solana/web3.js@1.95.8)(react-native@0.76.5)(react@18.3.1) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@6.0.0)(react@18.3.1) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana-mobile/wallet-adapter-mobile': 2.2.0(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 transitivePeerDependencies: - bs58 - react-native - dev: false - /@solana/wallet-adapter-safepal@0.5.18(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-E/EIO5j+f0FS9Yj5o5JLJ/qHh3Se/9jP2KdHKhooWTlXWbQDzrxMjV88qIKKl5sgWEndqRYDuDbAdW+2dhw6hw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-safepal@0.5.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-saifu@0.1.15(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-4nrziKQ+4QInh+COsICpNNUlUt456EJ60SZLxvG/z1AOGpatuzT0gN1+RdMcwHGUtiPBPCkEneUVhFZhhbMJlg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-saifu@0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-salmon@0.1.14(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-CMXdbhaj3prloCJwvxO7e1wfAyRd58QiPB8pjvB4GBbznyoSnHbFXmpxZrKX1Dk6FoJOGBgjB71xnreGcc6oMw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-salmon@0.1.17(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - salmon-adapter-sdk: 1.1.1(@solana/web3.js@1.95.8) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + salmon-adapter-sdk: 1.1.1(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) - /@solana/wallet-adapter-sky@0.1.15(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-1vlk1/jnlOC/WfDDgDoUk3XtEhB3hq1fKtUb+xj0pVuSOg2Db+8ka9vPPYlVaKHoGvjm30iGGfr3ZrCxVfG6OQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-sky@0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-solflare@0.6.28(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-iiUQtuXp8p4OdruDawsm1dRRnzUCcsu+lKo8OezESskHtbmZw2Ifej0P99AbJbBAcBw7q4GPI6987Vh05Si5rw==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-solflare@0.6.31(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-chains': 1.1.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@solflare-wallet/metamask-sdk': 1.0.3(@solana/web3.js@1.95.8) - '@solflare-wallet/sdk': 1.4.2(@solana/web3.js@1.95.8) - '@wallet-standard/wallet': 1.0.1 - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-chains': 1.1.1 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@solflare-wallet/metamask-sdk': 1.0.3(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solflare-wallet/sdk': 1.4.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@wallet-standard/wallet': 1.1.0 - /@solana/wallet-adapter-solong@0.9.18(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-n40eemFUbJlOP+FKvn8rgq+YAOW51lEsn7uVz5ZjmiaW6MnRQniId9KkGYPPOUjytFyM+6/4x6IXI+QJknlSqA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-solong@0.9.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-spot@0.1.15(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-daU2iBTSJp1RGfQrB2uV06+2WHfeyW0uhjoJ3zTkz24kXqv5/ycoPHr8Gi2jkDSGMFkewnjWF8g0KMEzq2VYug==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-spot@0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-tokenary@0.1.12(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-iIsOzzEHfRfDUiwYy2BAVGeMl+xBUu92qYK1yAKeKxQPF5McJrnjS3FXwT/onBU5WMdxI6dWm0HKZUiDwefN6A==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-tokenary@0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false - - /@solana/wallet-adapter-tokenpocket@0.4.19(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-zKXTN+tuKIr/stSxUeG9XPBks9iqeliBWS9JF8eq+8u/Qb/bIDbNSQmd8Z5u1x2lf0puiStc9/iUu/+MLaOSVg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + + '@solana/wallet-adapter-tokenpocket@0.4.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-torus@0.11.28(@babel/runtime@7.26.10)(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-bu1oJQ+AoIZICxz8J1lVcdL+iBBrdbynnEs5N6dxwoM/cMGLbX7PGYqaH0J1dEXisA+1H5AzGAnW4UU05VBmLA==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-torus@0.11.31(@babel/runtime@7.27.3)(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@toruslabs/solana-embed': 0.3.4(@babel/runtime@7.26.10) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@toruslabs/solana-embed': 2.1.0(@babel/runtime@7.27.3)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) assert: 2.1.0 - crypto-browserify: 3.12.0 + crypto-browserify: 3.12.1 process: 0.11.10 stream-browserify: 3.0.0 transitivePeerDependencies: @@ -12182,63 +19724,47 @@ packages: - bufferutil - encoding - supports-color + - typescript - utf-8-validate - dev: false - /@solana/wallet-adapter-trezor@0.1.2(@babel/core@7.26.9)(@solana/web3.js@1.95.8)(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-x4nXntYi1SIv63ZdXWX/Rq/VKwguByKu67WpyUXsu8kOdviksb20bQMuAR7Ue41oJ9zSnLlTxAxA1SuWNkFRBg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-trezor@0.1.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@trezor/connect-web': 9.3.0(@babel/core@7.26.9)(react-native@0.76.5)(tslib@2.8.1) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@trezor/connect-web': 9.5.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) buffer: 6.0.3 transitivePeerDependencies: - - '@babel/core' + - '@solana/sysvars' - bufferutil - encoding - expo-constants - expo-localization + - fastestsmallesttextencoderdecoder - react-native - supports-color - tslib + - typescript - utf-8-validate - dev: false + - ws - /@solana/wallet-adapter-trust@0.1.13(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-lkmPfNdyRgx+z0K7i2cDa3a6SOKXpi3FiaYSo8Zozoxkp+Ga/NXVWxlXtMca4GAc/MnJMVp7yF/31kyFIee+3A==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-trust@0.1.16(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-unsafe-burner@0.1.7(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-SuBVqQxA1NNUwP4Lo70rLPaM8aWkV1EFAlxkRoRLtwyw/gM8bxTO6+9EVyKCv+ix3yw1rCGIF3B0idXx0i37eQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-unsafe-burner@0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@noble/curves': 1.9.0 - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-features': 1.2.0 - '@solana/wallet-standard-util': 1.1.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@noble/curves': 1.8.0 + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-features': 1.3.0 + '@solana/wallet-standard-util': 1.1.2 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-adapter-walletconnect@0.1.16(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-jNaQwSho8hT7gF1ifePE8TJc1FULx8jCF16KX3fZPtzXDxKrj0R4VUpHMGcw4MlDknrnZNLOJAVvyiawAkPCRQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-walletconnect@0.1.20(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/solana-adapter': 0.0.8(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -12247,61 +19773,64 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@types/react' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch - bufferutil + - db0 - encoding - ioredis - - uWebSockets.js + - react + - typescript + - uploadthing - utf-8-validate - dev: false + - zod - /@solana/wallet-adapter-wallets@0.19.32(@babel/core@7.26.9)(@babel/runtime@7.26.10)(@solana/web3.js@1.95.8)(bs58@6.0.0)(react-dom@18.3.1)(react-native@0.76.5)(react@18.3.1)(tslib@2.8.1): - resolution: {integrity: sha512-voZYQiIy1yXuKvm7x7YpnQ53eiJC7NpIYSQjzApOUiswiBRVeYcnPO4O/MMPUwsGkS7iZKqKZjo5CnOaN44n+g==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 - dependencies: - '@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-bitkeep': 0.3.20(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-bitpie': 0.5.18(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-clover': 0.4.19(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-coin98': 0.5.20(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-coinbase': 0.1.19(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-coinhub': 0.3.18(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.95.8)(react-dom@18.3.1)(react@18.3.1) - '@solana/wallet-adapter-huobi': 0.1.15(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-hyperpay': 0.1.14(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-keystone': 0.1.15(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-krystal': 0.1.12(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-ledger': 0.9.25(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-mathwallet': 0.9.18(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-neko': 0.2.12(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-onto': 0.1.7(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.95.8)(bs58@6.0.0) - '@solana/wallet-adapter-phantom': 0.9.24(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-salmon': 0.1.14(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-sky': 0.1.15(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-solflare': 0.6.28(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-solong': 0.9.18(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-spot': 0.1.15(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-tokenary': 0.1.12(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-tokenpocket': 0.4.19(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-torus': 0.11.28(@babel/runtime@7.26.10)(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-trezor': 0.1.2(@babel/core@7.26.9)(@solana/web3.js@1.95.8)(react-native@0.76.5)(tslib@2.8.1) - '@solana/wallet-adapter-trust': 0.1.13(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-unsafe-burner': 0.1.7(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-walletconnect': 0.1.16(@solana/web3.js@1.95.8) - '@solana/wallet-adapter-xdefi': 0.1.7(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/wallet-adapter-wallets@0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@5.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33)': + dependencies: + '@solana/wallet-adapter-alpha': 0.1.13(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-avana': 0.1.16(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-bitkeep': 0.3.23(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-bitpie': 0.5.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-clover': 0.4.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-coin98': 0.5.23(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-coinbase': 0.1.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-coinhub': 0.3.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-fractal': 0.1.11(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@solana/wallet-adapter-huobi': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-hyperpay': 0.1.17(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-keystone': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-krystal': 0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-ledger': 0.9.28(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-mathwallet': 0.9.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-neko': 0.2.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-nightly': 0.1.19(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-nufi': 0.1.20(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-onto': 0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-particle': 0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@solana/wallet-adapter-phantom': 0.9.27(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-safepal': 0.5.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-saifu': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-salmon': 0.1.17(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-sky': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-solflare': 0.6.31(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-solong': 0.9.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-spot': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-tokenary': 0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-tokenpocket': 0.4.22(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-torus': 0.11.31(@babel/runtime@7.27.3)(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-trezor': 0.1.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-trust': 0.1.16(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-unsafe-burner': 0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-adapter-walletconnect': 0.1.20(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@solana/wallet-adapter-xdefi': 0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -12309,662 +19838,336 @@ packages: - '@azure/identity' - '@azure/keyvault-secrets' - '@azure/storage-blob' - - '@babel/core' - '@babel/runtime' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@sentry/types' + - '@solana/sysvars' + - '@types/react' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch - bs58 - bufferutil + - db0 - encoding - expo-constants - expo-localization + - fastestsmallesttextencoderdecoder - ioredis - react - react-dom - react-native - supports-color - tslib - - uWebSockets.js + - typescript + - uploadthing - utf-8-validate - dev: false + - ws + - zod - /@solana/wallet-adapter-xdefi@0.1.7(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-d0icfBOQyaY8kpsdU/wQwaBIahZZPzkXkXfBjpMGwjixD8oeZUFfsg8LC7T1rOIUObeczlocaR/lwtEqWpnaeg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.77.3 + '@solana/wallet-adapter-xdefi@0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) - dev: false + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - /@solana/wallet-standard-chains@1.1.0: - resolution: {integrity: sha512-IRJHf94UZM8AaRRmY18d34xCJiVPJej1XVwXiTjihHnmwD0cxdQbc/CKjrawyqFyQAKJx7raE5g9mnJsAdspTg==} - engines: {node: '>=16'} + '@solana/wallet-standard-chains@1.1.1': dependencies: - '@wallet-standard/base': 1.0.1 - dev: false + '@wallet-standard/base': 1.1.0 - /@solana/wallet-standard-core@1.1.1: - resolution: {integrity: sha512-DoQ5Ryly4GAZtxRUmW2rIWrgNvTYVCWrFCFFjZI5s4zu2QNsP7sHZUax3kc1GbmFLXNL1FWRZlPOXRs6e0ZEng==} - engines: {node: '>=16'} + '@solana/wallet-standard-core@1.1.2': dependencies: - '@solana/wallet-standard-chains': 1.1.0 - '@solana/wallet-standard-features': 1.2.0 - '@solana/wallet-standard-util': 1.1.1 - dev: false + '@solana/wallet-standard-chains': 1.1.1 + '@solana/wallet-standard-features': 1.3.0 + '@solana/wallet-standard-util': 1.1.2 - /@solana/wallet-standard-features@1.2.0: - resolution: {integrity: sha512-tUd9srDLkRpe1BYg7we+c4UhRQkq+XQWswsr/L1xfGmoRDF47BPSXf4zE7ZU2GRBGvxtGt7lwJVAufQyQYhxTQ==} - engines: {node: '>=16'} + '@solana/wallet-standard-features@1.3.0': dependencies: - '@wallet-standard/base': 1.0.1 - '@wallet-standard/features': 1.0.3 - dev: false + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 - /@solana/wallet-standard-util@1.1.1: - resolution: {integrity: sha512-dPObl4ntmfOc0VAGGyyFvrqhL8UkHXmVsgbj0K9RcznKV4KB3MgjGwzo8CTSX5El5lkb0rDeEzFqvToJXRz3dw==} - engines: {node: '>=16'} + '@solana/wallet-standard-util@1.1.2': dependencies: - '@noble/curves': 1.9.0 - '@solana/wallet-standard-chains': 1.1.0 - '@solana/wallet-standard-features': 1.2.0 - dev: false + '@noble/curves': 1.8.0 + '@solana/wallet-standard-chains': 1.1.1 + '@solana/wallet-standard-features': 1.3.0 - /@solana/wallet-standard-wallet-adapter-base@1.1.2(@solana/web3.js@1.95.8)(bs58@5.0.0): - resolution: {integrity: sha512-DqhzYbgh3disHMgcz6Du7fmpG29BYVapNEEiL+JoVMa+bU9d4P1wfwXUNyJyRpGGNXtwhyZjIk2umWbe5ZBNaQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.58.0 - bs58: ^4.0.1 + '@solana/wallet-standard-wallet-adapter-base@1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-chains': 1.1.0 - '@solana/wallet-standard-features': 1.2.0 - '@solana/wallet-standard-util': 1.1.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@wallet-standard/app': 1.0.1 - '@wallet-standard/base': 1.0.1 - '@wallet-standard/features': 1.0.3 - '@wallet-standard/wallet': 1.0.1 + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-chains': 1.1.1 + '@solana/wallet-standard-features': 1.3.0 + '@solana/wallet-standard-util': 1.1.2 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 bs58: 5.0.0 - dev: false - - /@solana/wallet-standard-wallet-adapter-base@1.1.2(@solana/web3.js@1.95.8)(bs58@6.0.0): - resolution: {integrity: sha512-DqhzYbgh3disHMgcz6Du7fmpG29BYVapNEEiL+JoVMa+bU9d4P1wfwXUNyJyRpGGNXtwhyZjIk2umWbe5ZBNaQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.58.0 - bs58: ^4.0.1 - dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-chains': 1.1.0 - '@solana/wallet-standard-features': 1.2.0 - '@solana/wallet-standard-util': 1.1.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@wallet-standard/app': 1.0.1 - '@wallet-standard/base': 1.0.1 - '@wallet-standard/features': 1.0.3 - '@wallet-standard/wallet': 1.0.1 - bs58: 6.0.0 - dev: false - - /@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1): - resolution: {integrity: sha512-bN6W4QkzenyjUoUz3sC5PAed+z29icGtPh9VSmLl1ZrRO7NbFB49a8uwUUVXNxhL/ZbMsyVKhb9bNj47/p8uhQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/wallet-adapter-base': '*' - react: '*' - dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.95.8)(bs58@5.0.0) - '@wallet-standard/app': 1.0.1 - '@wallet-standard/base': 1.0.1 - react: 18.3.1 - transitivePeerDependencies: - - '@solana/web3.js' - - bs58 - dev: false - /@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@6.0.0)(react@18.3.1): - resolution: {integrity: sha512-bN6W4QkzenyjUoUz3sC5PAed+z29icGtPh9VSmLl1ZrRO7NbFB49a8uwUUVXNxhL/ZbMsyVKhb9bNj47/p8uhQ==} - engines: {node: '>=16'} - peerDependencies: - '@solana/wallet-adapter-base': '*' - react: '*' + '@solana/wallet-standard-wallet-adapter-react@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)': dependencies: - '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.8) - '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.95.8)(bs58@6.0.0) - '@wallet-standard/app': 1.0.1 - '@wallet-standard/base': 1.0.1 + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 react: 18.3.1 transitivePeerDependencies: - '@solana/web3.js' - bs58 - dev: false - /@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1): - resolution: {integrity: sha512-lCwoA+vhPfmvjcmJOhSRV94wouVWTfJv1Z7eeULAe+GodCeKA/0T9/uBYgXHUxQjLHd7o8LpLYIkfm+xjA5sMA==} - engines: {node: '>=16'} + '@solana/wallet-standard-wallet-adapter@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)': dependencies: - '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.95.8)(bs58@5.0.0) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1) + '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1) transitivePeerDependencies: - '@solana/wallet-adapter-base' - '@solana/web3.js' - bs58 - react - dev: false - /@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1): - resolution: {integrity: sha512-o7wk+zr5/QgyE393cGRC04K1hacR4EkBu3MB925ddaLvCVaXjwr2asgdviGzN9PEm3FiEJp3sMmMKYHFnwOITQ==} - engines: {node: '>=16'} + '@solana/wallet-standard@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)': dependencies: - '@solana/wallet-standard-core': 1.1.1 - '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23)(@solana/web3.js@1.95.8)(bs58@5.0.0)(react@18.3.1) + '@solana/wallet-standard-core': 1.1.2 + '@solana/wallet-standard-wallet-adapter': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1) transitivePeerDependencies: - '@solana/wallet-adapter-base' - '@solana/web3.js' - bs58 - react - dev: false - /@solana/web3.js@1.95.8(encoding@0.1.13): - resolution: {integrity: sha512-sBHzNh7dHMrmNS5xPD1d0Xa2QffW/RXaxu/OysRXBfwTp+LYqGGmMtCYYwrHPrN5rjAmJCsQRNAwv4FM0t3B6g==} + '@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.0 - '@noble/curves': 1.6.0 + '@babel/runtime': 7.27.3 + '@noble/curves': 1.8.0 '@noble/hashes': 1.4.0 '@solana/buffer-layout': 4.0.1 - agentkeepalive: 4.5.0 - bigint-buffer: 1.1.5 - bn.js: 5.2.1 + '@solana/codecs-numbers': 2.1.1(typescript@5.4.3) + agentkeepalive: 4.6.0 + bn.js: 5.2.2 borsh: 0.7.0 bs58: 4.0.1 buffer: 6.0.3 fast-stable-stringify: 1.0.0 - jayson: 4.1.1 + jayson: 4.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) node-fetch: 2.7.0(encoding@0.1.13) - rpc-websockets: 9.0.2 + rpc-websockets: 9.1.1 superstruct: 2.0.2 transitivePeerDependencies: - bufferutil - encoding + - typescript - utf-8-validate - /@solflare-wallet/metamask-sdk@1.0.3(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-os5Px5PTMYKGS5tzOoyjDxtOtj0jZKnbI1Uwt8+Jsw1HHIA+Ib2UACCGNhQ/un2f8sIbTfLD1WuucNMOy8KZpQ==} - peerDependencies: - '@solana/web3.js': '*' + '@solflare-wallet/metamask-sdk@1.0.3(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/wallet-standard-features': 1.2.0 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@wallet-standard/base': 1.0.1 + '@solana/wallet-standard-features': 1.3.0 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@wallet-standard/base': 1.1.0 bs58: 5.0.0 eventemitter3: 5.0.1 uuid: 9.0.1 - dev: false - /@solflare-wallet/sdk@1.4.2(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-jrseNWipwl9xXZgrzwZF3hhL0eIVxuEtoZOSLmuPuef7FgHjstuTtNJAeT4icA7pzdDV4hZvu54pI2r2f7SmrQ==} - peerDependencies: - '@solana/web3.js': '*' + '@solflare-wallet/sdk@1.4.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) bs58: 5.0.0 eventemitter3: 5.0.1 uuid: 9.0.1 - dev: false - - /@stablelib/aead@1.0.1: - resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} - dev: false - - /@stablelib/binary@1.0.1: - resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} - dependencies: - '@stablelib/int': 1.0.1 - dev: false - - /@stablelib/bytes@1.0.1: - resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==} - dev: false - - /@stablelib/chacha20poly1305@1.0.1: - resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==} - dependencies: - '@stablelib/aead': 1.0.1 - '@stablelib/binary': 1.0.1 - '@stablelib/chacha': 1.0.1 - '@stablelib/constant-time': 1.0.1 - '@stablelib/poly1305': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/chacha@1.0.1: - resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/constant-time@1.0.1: - resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==} - dev: false - - /@stablelib/ed25519@1.0.3: - resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} - dependencies: - '@stablelib/random': 1.0.2 - '@stablelib/sha512': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/hash@1.0.1: - resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==} - dev: false - - /@stablelib/hkdf@1.0.1: - resolution: {integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==} - dependencies: - '@stablelib/hash': 1.0.1 - '@stablelib/hmac': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/hmac@1.0.1: - resolution: {integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==} - dependencies: - '@stablelib/constant-time': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/int@1.0.1: - resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} - dev: false - - /@stablelib/keyagreement@1.0.1: - resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==} - dependencies: - '@stablelib/bytes': 1.0.1 - dev: false - - /@stablelib/poly1305@1.0.1: - resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==} - dependencies: - '@stablelib/constant-time': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/random@1.0.2: - resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/sha256@1.0.1: - resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - /@stablelib/sha512@1.0.1: - resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/wipe@1.0.1: - resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} - dev: false - - /@stablelib/x25519@1.0.3: - resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} - dependencies: - '@stablelib/keyagreement': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stacks/common@7.0.2: - resolution: {integrity: sha512-+RSecHdkxOtswmE4tDDoZlYEuULpnTQVeDIG5eZ32opK8cFxf4EugAcK9CsIsHx/Se1yTEaQ21WGATmJGK84lQ==} - dev: false + '@suchipi/femver@1.0.0': {} - /@stacks/network@7.0.2: - resolution: {integrity: sha512-XzHnoWqku/jRrTgMXhmh3c+I0O9vDH24KlhzGDZtBu+8CGGyHNPAZzGwvoUShonMXrXjEnfO9IYQwV5aJhfv6g==} - dependencies: - '@stacks/common': 7.0.2 - cross-fetch: 3.1.5 - transitivePeerDependencies: - - encoding - dev: false + '@swc/counter@0.1.3': {} - /@stacks/transactions@7.1.0: - resolution: {integrity: sha512-/4n5h+ka5N3mq16f1Zo0O0g2gyOYhaXFdGN8ifLz38NJmkjnCDXqi/ogB6NFNpSKGonyqyF5Vz1UPaQHwO8+IA==} + '@swc/helpers@0.5.15': dependencies: - '@noble/hashes': 1.1.5 - '@noble/secp256k1': 1.7.1 - '@stacks/common': 7.0.2 - '@stacks/network': 7.0.2 - c32check: 2.0.0 - lodash.clonedeep: 4.5.0 - transitivePeerDependencies: - - encoding - dev: false - - /@suchipi/femver@1.0.0: - resolution: {integrity: sha512-bprE8+K5V+DPX7q2e2K57ImqNBdfGHDIWaGI5xHxZoxbKOuQZn4wzPiUxOAHnsUr3w3xHrWXwN7gnG/iIuEMIg==} - dev: false - - /@swc/counter@0.1.3: - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - dev: false + tslib: 2.8.1 - /@swc/helpers@0.5.15: - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + '@swc/helpers@0.5.17': dependencies: tslib: 2.8.1 - /@swc/helpers@0.5.5: - resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} + '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 tslib: 2.8.1 - dev: false - /@szmarczak/http-timer@4.0.6: - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} + '@szmarczak/http-timer@4.0.6': dependencies: defer-to-connect: 2.0.1 - dev: false - /@t3-oss/env-core@0.11.0(typescript@5.4.3)(zod@3.23.8): - resolution: {integrity: sha512-PSalC5bG0a7XbyoLydiQdAnx3gICX6IQNctvh+TyLrdFxsxgocdj9Ui7sd061UlBzi+z4aIGjnem1kZx9QtUgQ==} - peerDependencies: - typescript: '>=5.0.0' - zod: ^3.0.0 - peerDependenciesMeta: - typescript: - optional: true + '@t3-oss/env-core@0.11.1(typescript@5.4.3)(zod@3.25.33)': dependencies: + zod: 3.25.33 + optionalDependencies: typescript: 5.4.3 - zod: 3.23.8 - dev: false - /@t3-oss/env-nextjs@0.11.0(typescript@5.4.3)(zod@3.23.8): - resolution: {integrity: sha512-gcRrY2CzSMSrxDf5+fKCUfzbBK125IxOcJHcoMVdjcTmYxEgIZFZ5qPPtngOY3UmTeXSqRZOGuNiosqWTFTkMw==} - peerDependencies: - typescript: '>=5.0.0' - zod: ^3.0.0 - peerDependenciesMeta: - typescript: - optional: true + '@t3-oss/env-nextjs@0.11.1(typescript@5.4.3)(zod@3.25.33)': dependencies: - '@t3-oss/env-core': 0.11.0(typescript@5.4.3)(zod@3.23.8) + '@t3-oss/env-core': 0.11.1(typescript@5.4.3)(zod@3.25.33) + zod: 3.25.33 + optionalDependencies: typescript: 5.4.3 - zod: 3.23.8 - dev: false - /@ton/core@0.59.0(@ton/crypto@3.3.0): - resolution: {integrity: sha512-LSIkGst7BoY7fMWshejzcH0UJnoW21JGlRrW0ch+6A7Xb/7EuekxgdKym7fHxcry6OIf6FoeFg97lJ960N/Ghg==} - peerDependencies: - '@ton/crypto': '>=3.2.0' + '@tanstack/query-core@5.77.2': {} + + '@tanstack/react-query@5.77.2(react@18.2.0)': + dependencies: + '@tanstack/query-core': 5.77.2 + react: 18.2.0 + + '@ton/core@0.59.1(@ton/crypto@3.3.0)': dependencies: '@ton/crypto': 3.3.0 symbol.inspect: 1.0.1 - dev: false - /@ton/crypto-primitives@2.1.0: - resolution: {integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==} + '@ton/crypto-primitives@2.1.0': dependencies: jssha: 3.2.0 - dev: false - /@ton/crypto@3.3.0: - resolution: {integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==} + '@ton/crypto@3.3.0': dependencies: '@ton/crypto-primitives': 2.1.0 jssha: 3.2.0 tweetnacl: 1.0.3 - dev: false - /@ton/ton@15.1.0(@ton/core@0.59.0)(@ton/crypto@3.3.0): - resolution: {integrity: sha512-almetcfTu7jLjcNcEEPB7wAc8yl90ES1M//sOr1QE+kv7RbmEvMkaPSc7kFxzs10qrjIPKxlodBJlMSWP5LuVQ==} - peerDependencies: - '@ton/core': '>=0.59.0' - '@ton/crypto': '>=3.2.0' + '@ton/ton@15.2.1(@ton/core@0.59.1(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)': dependencies: - '@ton/core': 0.59.0(@ton/crypto@3.3.0) + '@ton/core': 0.59.1(@ton/crypto@3.3.0) '@ton/crypto': 3.3.0 - axios: 1.8.3 + axios: 1.9.0 dataloader: 2.2.3 symbol.inspect: 1.0.1 teslabot: 1.5.0 - zod: 3.23.8 + zod: 3.25.33 transitivePeerDependencies: - debug - dev: false - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - dev: true + '@tootallnate/once@2.0.0': {} - /@toruslabs/base-controllers@2.9.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-rKc+bR4QB/wdbH0CxLZC5e2PUZcIgkr9yY7TMd3oIffDklaYBnsuC5ES2/rgK1aRUDRWz+qWbTwLqsY6PlT37Q==} - peerDependencies: - '@babel/runtime': 7.x + '@toruslabs/base-controllers@5.11.0(@babel/runtime@7.27.3)(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@ethereumjs/util': 8.1.0 - '@toruslabs/broadcast-channel': 6.3.1 - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.26.10) - '@toruslabs/openlogin-jrpc': 4.7.2(@babel/runtime@7.26.10) - async-mutex: 0.4.1 - bignumber.js: 9.1.2 + '@babel/runtime': 7.27.3 + '@ethereumjs/util': 9.1.0 + '@toruslabs/broadcast-channel': 10.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@toruslabs/http-helpers': 6.1.1(@babel/runtime@7.27.3) + '@toruslabs/openlogin-jrpc': 8.3.0(@babel/runtime@7.27.3) + '@toruslabs/openlogin-utils': 8.2.1(@babel/runtime@7.27.3) + async-mutex: 0.5.0 + bignumber.js: 9.3.0 bowser: 2.11.0 - eth-rpc-errors: 4.0.3 - json-rpc-random-id: 1.0.1 - lodash: 4.17.21 - loglevel: 1.9.1 + jwt-decode: 4.0.0 + loglevel: 1.9.2 transitivePeerDependencies: - '@sentry/types' - bufferutil - supports-color - utf-8-validate - dev: false - /@toruslabs/broadcast-channel@6.3.1: - resolution: {integrity: sha512-BEtJQ+9bMfFoGuCsp5NmxyY+C980Ho+3BZIKSiYwRtl5qymJ+jMX5lsoCppoQblcb34dP6FwEjeFw80Y9QC/rw==} + '@toruslabs/broadcast-channel@10.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@toruslabs/eccrypto': 2.2.1 - '@toruslabs/metadata-helpers': 3.2.0(@babel/runtime@7.26.10) - bowser: 2.11.0 - loglevel: 1.9.1 - oblivious-set: 1.1.1 - socket.io-client: 4.7.5 + '@babel/runtime': 7.27.3 + '@toruslabs/eccrypto': 4.0.0 + '@toruslabs/metadata-helpers': 5.1.0(@babel/runtime@7.27.3) + loglevel: 1.9.2 + oblivious-set: 1.4.0 + socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) unload: 2.4.1 transitivePeerDependencies: - '@sentry/types' - bufferutil - supports-color - utf-8-validate - dev: false - /@toruslabs/eccrypto@2.2.1: - resolution: {integrity: sha512-7sviL0wLYsfA5ogEAOIdb0tu/QAOFXfHc9B8ONYtF04x4Mg3Nr89LL35FhjaEm055q8Ru7cUQhEFSiqJqm9GCw==} + '@toruslabs/constants@13.4.0(@babel/runtime@7.27.3)': + dependencies: + '@babel/runtime': 7.27.3 + + '@toruslabs/eccrypto@4.0.0': dependencies: elliptic: 6.6.1 - dev: false - /@toruslabs/http-helpers@3.4.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-CoeJSL32mpp0gmYjxv48odu6pfjHk/rbJHDwCtYPcMHAl+qUQ/DTpVOOn9U0fGkD+fYZrQmZbRkXFgLhiT0ajQ==} - engines: {node: '>=14.17.0', npm: '>=6.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@sentry/types': ^7.x - peerDependenciesMeta: - '@sentry/types': - optional: true + '@toruslabs/http-helpers@6.1.1(@babel/runtime@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 lodash.merge: 4.6.2 - loglevel: 1.9.1 - dev: false + loglevel: 1.9.2 - /@toruslabs/metadata-helpers@3.2.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-2bCc6PNKd9y+aWfZQ1FXd47QmfyT4NmmqPGfsqk+sQS2o+MlxIyLuh9uh7deMgXo4b4qBDX+RQGbIKM1zVk56w==} - engines: {node: '>=14.17.0', npm: '>=6.x'} - peerDependencies: - '@babel/runtime': 7.x + '@toruslabs/metadata-helpers@5.1.0(@babel/runtime@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 - '@toruslabs/eccrypto': 2.2.1 - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.26.10) + '@babel/runtime': 7.27.3 + '@toruslabs/eccrypto': 4.0.0 + '@toruslabs/http-helpers': 6.1.1(@babel/runtime@7.27.3) elliptic: 6.6.1 ethereum-cryptography: 2.2.1 - json-stable-stringify: 1.1.1 + json-stable-stringify: 1.3.0 transitivePeerDependencies: - '@sentry/types' - dev: false - - /@toruslabs/openlogin-jrpc@3.2.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-G+K0EHyVUaAEyeD4xGsnAZRpn/ner8lQ2HC2+pGKg6oGmzKI2wGMDcw2KMH6+HKlfBGVJ5/VR9AQfC/tZlLDmQ==} - deprecated: Not supported. Pls upgrade - peerDependencies: - '@babel/runtime': 7.x - dependencies: - '@babel/runtime': 7.26.10 - '@toruslabs/openlogin-utils': 3.0.0(@babel/runtime@7.26.10) - end-of-stream: 1.4.4 - eth-rpc-errors: 4.0.3 - events: 3.3.0 - fast-safe-stringify: 2.1.1 - once: 1.4.0 - pump: 3.0.0 - readable-stream: 3.6.2 - dev: false - /@toruslabs/openlogin-jrpc@4.7.2(@babel/runtime@7.26.10): - resolution: {integrity: sha512-9Eb0cPc0lPuS6v2YkQlgzfbRnZ6fLez9Ike5wznoHSFA2/JVu1onwuI56EV1HwswdDrOWPPQEyzI1j9NriZ0ew==} - engines: {node: '>=16.18.1', npm: '>=8.x'} - peerDependencies: - '@babel/runtime': 7.x + '@toruslabs/openlogin-jrpc@8.3.0(@babel/runtime@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 - '@metamask/rpc-errors': 5.1.1 - '@toruslabs/openlogin-utils': 4.7.0(@babel/runtime@7.26.10) + '@babel/runtime': 7.27.3 end-of-stream: 1.4.4 events: 3.3.0 fast-safe-stringify: 2.1.1 once: 1.4.0 - pump: 3.0.0 - readable-stream: 4.5.2 - transitivePeerDependencies: - - supports-color - dev: false - - /@toruslabs/openlogin-utils@3.0.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-T5t29/AIFqXc84x4OoAkZWjd0uoP2Lk6iaFndnIIMzCPu+BwwV0spX/jd/3YYNjZ8Po8D+faEnwAhiqemYeK2w==} - deprecated: Not supported. Pls upgrade - peerDependencies: - '@babel/runtime': 7.x - dependencies: - '@babel/runtime': 7.26.10 - base64url: 3.0.1 - keccak: 3.0.3 - randombytes: 2.1.0 - dev: false + pump: 3.0.2 + readable-stream: 4.7.0 - /@toruslabs/openlogin-utils@4.7.0(@babel/runtime@7.26.10): - resolution: {integrity: sha512-w6XkHs4WKuufsf/zzteBzs4EJuOknrUmJ+iv5FZ8HzIpMQeL/984CP8HYaFSEYkbGCP4ydAnhY4Uh0QAhpDbPg==} - engines: {node: '>=16.18.1', npm: '>=8.x'} - peerDependencies: - '@babel/runtime': 7.x + '@toruslabs/openlogin-utils@8.2.1(@babel/runtime@7.27.3)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 + '@toruslabs/constants': 13.4.0(@babel/runtime@7.27.3) base64url: 3.0.1 - dev: false + color: 4.2.3 - /@toruslabs/solana-embed@0.3.4(@babel/runtime@7.26.10): - resolution: {integrity: sha512-yj+aBJoBAneap7Jlu9/OOp7irWNuC5CqAhyhVcmb0IjWrCUFnioLdL0U7UfGaqVm/5O0leJh7/Z5Ll+3toWJBg==} - engines: {node: '>=14.17.0', npm: '>=6.x'} - peerDependencies: - '@babel/runtime': 7.x + '@toruslabs/solana-embed@2.1.0(@babel/runtime@7.27.3)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.10 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@toruslabs/base-controllers': 2.9.0(@babel/runtime@7.26.10) - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.26.10) - '@toruslabs/openlogin-jrpc': 3.2.0(@babel/runtime@7.26.10) + '@babel/runtime': 7.27.3 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@toruslabs/base-controllers': 5.11.0(@babel/runtime@7.27.3)(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@toruslabs/http-helpers': 6.1.1(@babel/runtime@7.27.3) + '@toruslabs/openlogin-jrpc': 8.3.0(@babel/runtime@7.27.3) eth-rpc-errors: 4.0.3 fast-deep-equal: 3.1.3 - is-stream: 2.0.1 lodash-es: 4.17.21 - loglevel: 1.9.1 - pump: 3.0.0 + loglevel: 1.9.2 + pump: 3.0.2 transitivePeerDependencies: - '@sentry/types' - bufferutil - encoding - supports-color + - typescript - utf-8-validate - dev: false - /@trezor/analytics@1.1.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-1SpPYt335qatjMxd0Sd1ZsTWxkifRCBPo6/2XjioUGHzurJYO5Lt58mlPd48k2c97JorwCSCCv863PD8Ja/GgA==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/analytics@1.3.5(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)': dependencies: - '@trezor/env-utils': 1.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) + '@trezor/env-utils': 1.3.4(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) tslib: 2.8.1 transitivePeerDependencies: + - encoding - expo-constants - expo-localization - react-native - dev: false - /@trezor/blockchain-link-types@1.1.0(tslib@2.8.1): - resolution: {integrity: sha512-PTUKxAa+e0USf4/33mXlgttedCB8OWOzBANnFJqQ7/FFI2XhEC610ore86FTt6uPz4hyNkquiiQXRv07OYQJjQ==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/blockchain-link-types@1.3.5(tslib@2.8.1)': dependencies: - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@trezor/type-utils': 1.1.0 - '@trezor/utxo-lib': 2.1.0(tslib@2.8.1) - socks-proxy-agent: 6.1.1 + '@trezor/utxo-lib': 2.3.5(tslib@2.8.1) tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - dev: false - /@trezor/blockchain-link-utils@1.1.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-BBMKYZQchh16dMtc0rAwg4os58L/ubsHn6hpb/OQeLHhEvvW4g0Og4fPl4zNjSG4BX3lFt+J2GfZteXJCOjGQg==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/blockchain-link-utils@1.3.5(bufferutil@4.0.9)(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(utf-8-validate@5.0.10)': dependencies: '@mobily/ts-belt': 3.13.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@trezor/env-utils': 1.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) + '@trezor/env-utils': 1.3.4(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) tslib: 2.8.1 + xrpl: 4.2.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding @@ -12972,1291 +20175,1533 @@ packages: - expo-localization - react-native - utf-8-validate - dev: false - /@trezor/blockchain-link@2.2.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-jtMr+YZX7h1HGpXl5J8h25THC37bOA3fiPUeRMjaeYarAojKpygWf5J2oNShKlbyO6XqcyVXuVk2Ao6P5KGeuw==} - peerDependencies: - tslib: ^2.6.2 - dependencies: - '@solana/buffer-layout': 4.0.1 - '@solana/web3.js': 1.95.8(encoding@0.1.13) - '@trezor/blockchain-link-types': 1.1.0(tslib@2.8.1) - '@trezor/blockchain-link-utils': 1.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) - '@trezor/utxo-lib': 2.1.0(tslib@2.8.1) - '@types/web': 0.0.138 + '@trezor/blockchain-link@2.4.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + '@solana-program/stake': 0.2.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))) + '@solana-program/token': 0.5.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))) + '@solana-program/token-2022': 0.4.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)) + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@trezor/blockchain-link-types': 1.3.5(tslib@2.8.1) + '@trezor/blockchain-link-utils': 1.3.5(bufferutil@4.0.9)(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(utf-8-validate@5.0.10) + '@trezor/env-utils': 1.3.4(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) + '@trezor/utxo-lib': 2.3.5(tslib@2.8.1) + '@trezor/websocket-client': 1.1.5(bufferutil@4.0.9)(tslib@2.8.1)(utf-8-validate@5.0.10) + '@types/web': 0.0.197 events: 3.3.0 - ripple-lib: 1.10.1 - socks-proxy-agent: 6.1.1 + socks-proxy-agent: 8.0.5 tslib: 2.8.1 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + xrpl: 4.2.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: + - '@solana/sysvars' - bufferutil - encoding - expo-constants - expo-localization + - fastestsmallesttextencoderdecoder - react-native - supports-color + - typescript - utf-8-validate - dev: false + - ws - /@trezor/connect-analytics@1.1.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-FhQOwCNpUyorf29I3eCD0K7/XU7JiOBMWKftxszCyVAIb2FJuLaIivEN8m83iNqQUliXm+DQXhICQyauhcuWXQ==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/connect-analytics@1.3.3(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)': dependencies: - '@trezor/analytics': 1.1.0(react-native@0.76.5)(tslib@2.8.1) + '@trezor/analytics': 1.3.5(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) tslib: 2.8.1 transitivePeerDependencies: + - encoding - expo-constants - expo-localization - react-native - dev: false - /@trezor/connect-common@0.1.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-V80a4BOg7md47Hm28FOdWIG9dwZyjc1um3+JywNnw3aMJL1Uj3kQt2tUVHJn1ObMkKPdKy9hFhjd6yUlRs1iPg==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/connect-common@0.3.5(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)': dependencies: - '@trezor/env-utils': 1.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) + '@trezor/env-utils': 1.3.4(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) tslib: 2.8.1 transitivePeerDependencies: + - encoding - expo-constants - expo-localization - react-native - dev: false - /@trezor/connect-web@9.3.0(@babel/core@7.26.9)(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-Toh/AN0UDafN3HiEMNKGiBJlmXuRnfNnbzd2m+SvkAp5gDGtrn8zgci72RXJmwVKdzmHxmRRb/A6cdCH7/yFtw==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/connect-web@9.5.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: - '@trezor/connect': 9.3.0(@babel/core@7.26.9)(react-native@0.76.5)(tslib@2.8.1) - '@trezor/connect-common': 0.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) + '@trezor/connect': 9.5.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@trezor/connect-common': 0.3.5(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) tslib: 2.8.1 transitivePeerDependencies: - - '@babel/core' + - '@solana/sysvars' - bufferutil - encoding - expo-constants - expo-localization + - fastestsmallesttextencoderdecoder - react-native - supports-color + - typescript - utf-8-validate - dev: false + - ws - /@trezor/connect@9.3.0(@babel/core@7.26.9)(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-GRXzRTFZ53Va86xXa0n8NA0w/V4Oc6BYfQUal++ZnyTLeEqNfkGC0rSkgUWuBC0r1RO72GYG5pzP3Xuus+oSSw==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/connect@9.5.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: - '@babel/preset-typescript': 7.24.7(@babel/core@7.26.9) - '@ethereumjs/common': 4.3.0 - '@ethereumjs/tx': 5.3.0 - '@fivebinaries/coin-selection': 2.2.1 - '@trezor/blockchain-link': 2.2.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/blockchain-link-types': 1.1.0(tslib@2.8.1) - '@trezor/connect-analytics': 1.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/connect-common': 0.1.0(react-native@0.76.5)(tslib@2.8.1) - '@trezor/protobuf': 1.1.0(tslib@2.8.1) - '@trezor/protocol': 1.1.0(tslib@2.8.1) - '@trezor/schema-utils': 1.1.0(tslib@2.8.1) - '@trezor/transport': 1.2.0(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) - '@trezor/utxo-lib': 2.1.0(tslib@2.8.1) + '@ethereumjs/common': 4.4.0 + '@ethereumjs/tx': 5.4.0 + '@fivebinaries/coin-selection': 3.0.0 + '@mobily/ts-belt': 3.13.1 + '@noble/hashes': 1.8.0 + '@scure/bip39': 1.6.0 + '@solana-program/compute-budget': 0.7.0(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))) + '@solana-program/system': 0.7.0(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))) + '@solana-program/token': 0.5.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))) + '@solana-program/token-2022': 0.4.1(@solana/kit@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)) + '@solana/kit': 2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@trezor/blockchain-link': 2.4.5(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@trezor/blockchain-link-types': 1.3.5(tslib@2.8.1) + '@trezor/blockchain-link-utils': 1.3.5(bufferutil@4.0.9)(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)(utf-8-validate@5.0.10) + '@trezor/connect-analytics': 1.3.3(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/connect-common': 0.3.5(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1) + '@trezor/crypto-utils': 1.1.3(tslib@2.8.1) + '@trezor/device-utils': 1.0.3 + '@trezor/protobuf': 1.3.5(tslib@2.8.1) + '@trezor/protocol': 1.2.6(tslib@2.8.1) + '@trezor/schema-utils': 1.3.3(tslib@2.8.1) + '@trezor/transport': 1.4.5(encoding@0.1.13)(tslib@2.8.1) + '@trezor/type-utils': 1.1.6 + '@trezor/utils': 9.3.5(tslib@2.8.1) + '@trezor/utxo-lib': 2.3.5(tslib@2.8.1) blakejs: 1.2.1 - bs58: 5.0.0 - bs58check: 3.0.1 - cross-fetch: 4.0.0 + bs58: 6.0.0 + bs58check: 4.0.0 + cross-fetch: 4.1.0(encoding@0.1.13) tslib: 2.8.1 transitivePeerDependencies: - - '@babel/core' + - '@solana/sysvars' - bufferutil - encoding - expo-constants - expo-localization + - fastestsmallesttextencoderdecoder - react-native - supports-color + - typescript - utf-8-validate - dev: false + - ws - /@trezor/env-utils@1.1.0(react-native@0.76.5)(tslib@2.8.1): - resolution: {integrity: sha512-inGzkeervHlfBvsReH2fKmkSSF2+zmBFFrGZMEEbDDNqpSURalyfujXAwxh3PbFlLzLr8YlTbt++micD5n204Q==} - peerDependencies: - expo-constants: '*' - expo-localization: '*' - react-native: '*' - tslib: ^2.6.2 - peerDependenciesMeta: - expo-constants: - optional: true - expo-localization: - optional: true - react-native: - optional: true + '@trezor/crypto-utils@1.1.3(tslib@2.8.1)': dependencies: - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) tslib: 2.8.1 - ua-parser-js: 1.0.38 - dev: false - /@trezor/protobuf@1.1.0(tslib@2.8.1): - resolution: {integrity: sha512-x6nFIi8q9PRJOPnEn1dITLbFmzCUaWXvbSJxPnzuUYSMJr0iSSj8BA3HqiXpK97+FseGbusee8oo4njAMLWOrA==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/device-utils@1.0.3': {} + + '@trezor/env-utils@1.3.4(encoding@0.1.13)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(tslib@2.8.1)': dependencies: - '@trezor/schema-utils': 1.1.0(tslib@2.8.1) - protobufjs: 7.2.6 tslib: 2.8.1 - dev: false + ua-parser-js: 2.0.3(encoding@0.1.13) + optionalDependencies: + react-native: 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - encoding - /@trezor/protocol@1.1.0(tslib@2.8.1): - resolution: {integrity: sha512-+EtR8CNlqkBw47oA8rexq2CHORF40xoE3f2Kiu7s9uq2sKHYEW3o20TZnDLMGqUOWcl1h3zxrvL8wymsUddjzw==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/protobuf@1.3.5(tslib@2.8.1)': dependencies: + '@trezor/schema-utils': 1.3.3(tslib@2.8.1) + long: 5.2.5 + protobufjs: 7.4.0 tslib: 2.8.1 - dev: false - /@trezor/schema-utils@1.1.0(tslib@2.8.1): - resolution: {integrity: sha512-FvHR3mzSB030E5HKQDEFioBEA36J27U1/z74Gobz6jy1SJu6vZsBhwerh7bZaLShkrmUQP7iHzSH/9x8jJxPhg==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/protocol@1.2.6(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 + + '@trezor/schema-utils@1.3.3(tslib@2.8.1)': dependencies: - '@sinclair/typebox': 0.31.28 + '@sinclair/typebox': 0.33.22 ts-mixer: 6.0.4 tslib: 2.8.1 - dev: false - /@trezor/transport@1.2.0(tslib@2.8.1): - resolution: {integrity: sha512-JaVhZ2KU48bCxT3Y+TnpU/J5rVxJ3OFiWWBBSxVeLlHM0ghCey2YlWrzfZIAfwCvFBfSqJA0VVYGKM2GSYhH0w==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/transport@1.4.5(encoding@0.1.13)(tslib@2.8.1)': dependencies: - '@trezor/protobuf': 1.1.0(tslib@2.8.1) - '@trezor/protocol': 1.1.0(tslib@2.8.1) - '@trezor/utils': 9.1.0(tslib@2.8.1) - cross-fetch: 4.0.0 - json-stable-stringify: 1.1.1 - long: 4.0.0 - protobufjs: 7.2.6 + '@trezor/protobuf': 1.3.5(tslib@2.8.1) + '@trezor/protocol': 1.2.6(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) + cross-fetch: 4.1.0(encoding@0.1.13) tslib: 2.8.1 - usb: 2.13.0 + usb: 2.15.0 transitivePeerDependencies: - encoding - dev: false - /@trezor/type-utils@1.1.0: - resolution: {integrity: sha512-zoPN9ZmdYlr03WyCWEQY6xCHPfhsodENYHPcZMKObVsUlhtMh1Z7OSD/pzd/NzOPBAtSctNbldx4aFu9A88afw==} - dev: false + '@trezor/type-utils@1.1.6': {} - /@trezor/utils@9.1.0(tslib@2.8.1): - resolution: {integrity: sha512-ok9PxsVwwkyCFX6CVUjUzKsNQ0XblVnp5AYSUrPqESez3uioedzBd7f+tzHGo9sVAb7adYzQF2C2jzaINtHbiQ==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/utils@9.3.5(tslib@2.8.1)': dependencies: - bignumber.js: 9.1.2 + bignumber.js: 9.3.0 tslib: 2.8.1 - dev: false - /@trezor/utxo-lib@2.1.0(tslib@2.8.1): - resolution: {integrity: sha512-qVwTgdqDMAduZWJc6/rXKHejUwTZT+KwxKvbqplm5KIIJdiqtjcEYi/5nXVZzuKZco4kOr0LoCjr35rhqJvW2w==} - peerDependencies: - tslib: ^2.6.2 + '@trezor/utxo-lib@2.3.5(tslib@2.8.1)': dependencies: - '@trezor/utils': 9.1.0(tslib@2.8.1) + '@trezor/utils': 9.3.5(tslib@2.8.1) bchaddrjs: 0.5.2 bech32: 2.0.0 - bip66: 1.1.5 + bip66: 2.0.0 bitcoin-ops: 1.4.1 blake-hash: 2.0.0 blakejs: 1.2.1 - bn.js: 5.2.1 - bs58: 5.0.0 - bs58check: 3.0.1 + bn.js: 5.2.2 + bs58: 6.0.0 + bs58check: 4.0.0 create-hmac: 1.1.7 - int64-buffer: 1.0.1 + int64-buffer: 1.1.0 pushdata-bitcoin: 1.0.1 - tiny-secp256k1: 2.2.3 + tiny-secp256k1: 1.1.7 tslib: 2.8.1 typeforce: 1.18.0 - varuint-bitcoin: 1.1.2 - wif: 4.0.0 - dev: false + varuint-bitcoin: 2.0.0 + wif: 5.0.0 - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - dev: true + '@trezor/websocket-client@1.1.5(bufferutil@4.0.9)(tslib@2.8.1)(utf-8-validate@5.0.10)': + dependencies: + '@trezor/utils': 9.3.5(tslib@2.8.1) + tslib: 2.8.1 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /@tsconfig/node10@1.0.11: - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - dev: true + '@trysound/sax@0.2.0': {} - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true + '@tsconfig/node10@1.0.11': {} - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true + '@tsconfig/node12@1.0.11': {} - /@tsconfig/node16-strictest@1.0.4: - resolution: {integrity: sha512-kp6/DuAoKzHVv5U+p0uOesYbjrEvrYVNdQMl163a+yXXUv9twabvkCGEn3pmVxKXB45JU5MPGolDDWnONZL5ZQ==} - deprecated: TypeScript 5.0 supports combining TSConfigs using array syntax in extends - dev: true + '@tsconfig/node14@1.0.3': {} - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true + '@tsconfig/node16-strictest@1.0.4': {} - /@typechain/ethers-v6@0.5.1(ethers@6.10.0)(typechain@8.3.2)(typescript@5.4.3): - resolution: {integrity: sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==} - peerDependencies: - ethers: 6.x - typechain: ^8.3.2 - typescript: '>=4.7.0' + '@tsconfig/node16@1.0.4': {} + + '@tybys/wasm-util@0.9.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@typechain/ethers-v6@0.5.1(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))(typescript@5.4.3)': dependencies: - ethers: 6.10.0 + ethers: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) lodash: 4.17.21 ts-essentials: 7.0.3(typescript@5.4.3) typechain: 8.3.2(typescript@5.4.3) typescript: 5.4.3 - dev: true - /@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.10.0)(hardhat@2.19.4)(typechain@8.3.2): - resolution: {integrity: sha512-mtaUlzLlkqTlfPwB3FORdejqBskSnh+Jl8AIJGjXNAQfRQ4ofHADPl1+oU7Z3pAJzmZbUXII8MhOLQltcHgKnA==} - peerDependencies: - '@typechain/ethers-v6': ^0.5.1 - ethers: ^6.1.0 - hardhat: ^2.9.9 - typechain: ^8.3.2 + '@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))(typescript@5.4.3))(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))': dependencies: - '@typechain/ethers-v6': 0.5.1(ethers@6.10.0)(typechain@8.3.2)(typescript@5.4.3) - ethers: 6.10.0 + '@typechain/ethers-v6': 0.5.1(ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.3))(typescript@5.4.3) + ethers: 6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) fs-extra: 9.1.0 - hardhat: 2.19.4(typescript@5.4.3) + hardhat: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) typechain: 8.3.2(typescript@5.4.3) - dev: true - - /@types/async-eventemitter@0.2.1: - resolution: {integrity: sha512-M2P4Ng26QbAeITiH7w1d7OxtldgfAe0wobpyJzVK/XOb0cUGKU2R4pfAhqcJBXAe2ife5ZOhSv4wk7p+ffURtg==} - dev: false - /@types/async-retry@1.4.8: - resolution: {integrity: sha512-Qup/B5PWLe86yI5I3av6ePGaeQrIHNKCwbsQotD6aHQ6YkHsMUxVZkZsmx/Ry3VZQ6uysHwTjQ7666+k6UjVJA==} + '@types/async-retry@1.4.9': dependencies: '@types/retry': 0.12.5 - dev: true - /@types/babel__core@7.20.0: - resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} + '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.18.3 + '@babel/parser': 7.27.3 + '@babel/types': 7.27.3 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.7 - /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + '@types/babel__generator@7.27.0': dependencies: - '@babel/types': 7.26.9 + '@babel/types': 7.27.3 - /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 + '@babel/parser': 7.27.3 + '@babel/types': 7.27.3 - /@types/babel__traverse@7.18.3: - resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} + '@types/babel__traverse@7.20.7': dependencies: - '@babel/types': 7.26.9 + '@babel/types': 7.27.3 - /@types/bn.js@4.11.6: - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} + '@types/bn.js@5.1.6': dependencies: '@types/node': 20.3.1 - /@types/bn.js@5.1.1: - resolution: {integrity: sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==} - dependencies: - '@types/node': 20.3.1 - dev: false - - /@types/bn.js@5.1.2: - resolution: {integrity: sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==} - dependencies: - '@types/node': 20.3.1 - - /@types/body-parser@1.19.5: - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@types/body-parser@1.19.5': dependencies: - '@types/connect': 3.4.35 + '@types/connect': 3.4.38 '@types/node': 20.3.1 - dev: true - /@types/cacheable-request@6.0.3: - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 20.3.1 '@types/responselike': 1.0.3 - dev: false - /@types/connect@3.4.35: - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} + '@types/connect@3.4.38': dependencies: '@types/node': 20.3.1 - /@types/debug@4.1.12: - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/debug@4.1.12': dependencies: - '@types/ms': 0.7.34 - dev: false + '@types/ms': 2.1.0 - /@types/estree@0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true + '@types/estree@0.0.39': {} - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - dev: true + '@types/estree@1.0.7': {} - /@types/express-serve-static-core@4.17.43: - resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} + '@types/express-serve-static-core@4.19.6': dependencies: '@types/node': 20.3.1 - '@types/qs': 6.9.14 + '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 - dev: true - /@types/express@4.17.21: - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/express@4.17.22': dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.43 - '@types/qs': 6.9.14 - '@types/serve-static': 1.15.5 - dev: true + '@types/express-serve-static-core': 4.19.6 + '@types/qs': 6.14.0 + '@types/serve-static': 1.15.7 - /@types/fs-extra@8.1.5: - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + '@types/fs-extra@8.1.5': dependencies: '@types/node': 20.3.1 - dev: true - /@types/glob@7.2.0: - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 '@types/node': 20.3.1 - dev: true - /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 20.3.1 - /@types/hast@3.0.4: - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 - dev: true - /@types/http-cache-semantics@4.0.4: - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - dev: false + '@types/http-cache-semantics@4.0.4': {} - /@types/http-errors@2.0.4: - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - dev: true + '@types/http-errors@2.0.4': {} - /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + '@types/istanbul-lib-coverage@2.0.6': {} - /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + '@types/istanbul-lib-report@3.0.3': dependencies: - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.6 - /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + '@types/istanbul-reports@3.0.4': dependencies: - '@types/istanbul-lib-report': 3.0.0 + '@types/istanbul-lib-report': 3.0.3 - /@types/jest@29.5.3: - resolution: {integrity: sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==} + '@types/jest@29.5.14': dependencies: expect: 29.7.0 pretty-format: 29.7.0 - dev: true - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + '@types/jsdom@20.0.1': dependencies: '@types/node': 20.3.1 '@types/tough-cookie': 4.0.5 - parse5: 7.2.1 - dev: true + parse5: 7.3.0 - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/json5@0.0.29': {} - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + '@types/keyv@3.1.4': + dependencies: + '@types/node': 20.3.1 - /@types/keyv@3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + '@types/lru-cache@5.1.1': {} + + '@types/mime@1.3.5': {} + + '@types/minimatch@5.1.2': {} + + '@types/ms@2.1.0': {} + + '@types/mute-stream@0.0.1': dependencies: '@types/node': 20.3.1 - dev: false - /@types/lodash@4.17.7: - resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} - dev: false + '@types/mute-stream@0.0.4': + dependencies: + '@types/node': 20.3.1 - /@types/lru-cache@5.1.1: - resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==} + '@types/node-fetch@2.6.12': + dependencies: + '@types/node': 20.3.1 + form-data: 4.0.2 - /@types/mime@1.3.5: - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - dev: true + '@types/node-forge@1.3.11': + dependencies: + '@types/node': 20.3.1 - /@types/mime@3.0.4: - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - dev: true + '@types/node@12.20.55': {} - /@types/minimatch@5.1.2: - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - dev: true + '@types/node@18.19.105': + dependencies: + undici-types: 5.26.5 - /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} - dev: true + '@types/node@20.17.52': + dependencies: + undici-types: 6.19.8 - /@types/ms@0.7.34: - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - dev: false + '@types/node@20.3.1': {} - /@types/mute-stream@0.0.1: - resolution: {integrity: sha512-0yQLzYhCqGz7CQPE3iDmYjhb7KMBFOP+tBkyw+/Y2YyDI5wpS7itXXxneN1zSsUwWx3Ji6YiVYrhAnpQGS/vkw==} + '@types/node@22.15.24': + dependencies: + undici-types: 6.21.0 + + '@types/node@22.7.5': + dependencies: + undici-types: 6.19.8 + + '@types/parse-json@4.0.2': {} + + '@types/pbkdf2@3.1.2': dependencies: '@types/node': 20.3.1 - dev: false - /@types/mute-stream@0.0.4: - resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} + '@types/prettier@2.7.3': {} + + '@types/prompts@2.4.9': dependencies: '@types/node': 20.3.1 - dev: false + kleur: 3.0.3 + + '@types/prop-types@15.7.14': {} + + '@types/qs@6.14.0': {} + + '@types/range-parser@1.2.7': {} + + '@types/react-dom@18.2.6': + dependencies: + '@types/react': 18.3.23 + + '@types/react-dom@18.3.7(@types/react@18.3.23)': + dependencies: + '@types/react': 18.3.23 + + '@types/react-transition-group@4.4.12(@types/react@18.2.14)': + dependencies: + '@types/react': 18.2.14 + + '@types/react-transition-group@4.4.12(@types/react@18.3.23)': + dependencies: + '@types/react': 18.3.23 + + '@types/react@18.2.14': + dependencies: + '@types/prop-types': 15.7.14 + '@types/scheduler': 0.26.0 + csstype: 3.1.3 + + '@types/react@18.3.23': + dependencies: + '@types/prop-types': 15.7.14 + csstype: 3.1.3 + + '@types/resolve@1.20.2': {} + + '@types/responselike@1.0.3': + dependencies: + '@types/node': 20.3.1 + + '@types/retry@0.12.5': {} + + '@types/scheduler@0.26.0': {} + + '@types/secp256k1@4.0.6': + dependencies: + '@types/node': 20.3.1 + + '@types/send@0.17.4': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 20.3.1 + + '@types/serve-static@1.15.7': + dependencies: + '@types/http-errors': 2.0.4 + '@types/node': 20.3.1 + '@types/send': 0.17.4 + + '@types/stack-utils@2.0.3': {} + + '@types/tough-cookie@4.0.5': {} + + '@types/trusted-types@2.0.7': {} + + '@types/unist@3.0.3': {} + + '@types/use-sync-external-store@0.0.6': {} + + '@types/uuid@8.3.4': {} + + '@types/w3c-web-usb@1.0.10': {} + + '@types/web@0.0.197': {} + + '@types/wrap-ansi@3.0.0': {} + + '@types/ws@7.4.7': + dependencies: + '@types/node': 20.3.1 + + '@types/ws@8.18.1': + dependencies: + '@types/node': 20.3.1 + + '@types/ws@8.5.3': + dependencies: + '@types/node': 20.3.1 + + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@17.0.33': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint@8.56.0)(typescript@5.1.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.1.3) + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/type-utils': 8.33.0(eslint@8.56.0)(typescript@5.1.3) + '@typescript-eslint/utils': 8.33.0(eslint@8.56.0)(typescript@5.1.3) + '@typescript-eslint/visitor-keys': 8.33.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 7.0.4 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.1.3) + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/type-utils': 8.33.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/utils': 8.33.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 8.33.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 7.0.4 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.1.3) + '@typescript-eslint/visitor-keys': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + eslint: 8.56.0 + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color - /@types/node-forge@1.3.11: - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + '@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3)': dependencies: - '@types/node': 20.3.1 - dev: false - - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + eslint: 8.56.0 + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color - /@types/node@18.15.13: - resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} + '@typescript-eslint/project-service@8.33.0(typescript@5.1.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.1.3) + '@typescript-eslint/types': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript - /@types/node@18.18.2: - resolution: {integrity: sha512-u1cis+7wLZMPI62EozwsqvgMZyauczyiqRRu/vcqZKI5N5yidrJHqOFxEg5seT8adc96Q6Yczg1c0DlqGtMJMw==} - dev: true + '@typescript-eslint/project-service@8.33.0(typescript@5.4.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.4.3) + '@typescript-eslint/types': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript - /@types/node@20.17.9: - resolution: {integrity: sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==} + '@typescript-eslint/scope-manager@8.33.0': dependencies: - undici-types: 6.19.8 - dev: false + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/visitor-keys': 8.33.0 - /@types/node@20.3.1: - resolution: {integrity: sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==} + '@typescript-eslint/tsconfig-utils@8.33.0(typescript@5.1.3)': + dependencies: + typescript: 5.1.3 - /@types/node@22.7.5: - resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} + '@typescript-eslint/tsconfig-utils@8.33.0(typescript@5.4.3)': dependencies: - undici-types: 6.19.8 - dev: false + typescript: 5.4.3 - /@types/node@22.7.7: - resolution: {integrity: sha512-SRxCrrg9CL/y54aiMCG3edPKdprgMVGDXjA3gB8UmmBW5TcXzRUYAh8EWzTnSJFAd1rgImPELza+A3bJ+qxz8Q==} + '@typescript-eslint/type-utils@8.33.0(eslint@8.56.0)(typescript@5.1.3)': dependencies: - undici-types: 6.19.8 - dev: true + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.1.3) + '@typescript-eslint/utils': 8.33.0(eslint@8.56.0)(typescript@5.1.3) + debug: 4.4.1(supports-color@8.1.1) + eslint: 8.56.0 + ts-api-utils: 2.1.0(typescript@5.1.3) + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} - dev: true + '@typescript-eslint/type-utils@8.33.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.4.3) + '@typescript-eslint/utils': 8.33.0(eslint@8.56.0)(typescript@5.4.3) + debug: 4.4.1(supports-color@8.1.1) + eslint: 8.56.0 + ts-api-utils: 2.1.0(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color - /@types/parse-json@4.0.2: - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - dev: false + '@typescript-eslint/types@8.33.0': {} - /@types/pbkdf2@3.1.0: - resolution: {integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==} + '@typescript-eslint/typescript-estree@8.33.0(typescript@5.1.3)': dependencies: - '@types/node': 20.3.1 + '@typescript-eslint/project-service': 8.33.0(typescript@5.1.3) + '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.1.3) + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/visitor-keys': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.1.3) + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color - /@types/prettier@2.7.2: - resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} - dev: true + '@typescript-eslint/typescript-estree@8.33.0(typescript@5.4.3)': + dependencies: + '@typescript-eslint/project-service': 8.33.0(typescript@5.4.3) + '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.4.3) + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/visitor-keys': 8.33.0 + debug: 4.4.1(supports-color@8.1.1) + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.4.3) + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color - /@types/prompts@2.4.2: - resolution: {integrity: sha512-TwNx7qsjvRIUv/BCx583tqF5IINEVjCNqg9ofKHRlSoUHE62WBHrem4B1HGXcIrG511v29d1kJ9a/t2Esz7MIg==} + '@typescript-eslint/utils@8.33.0(eslint@8.56.0)(typescript@5.1.3)': dependencies: - '@types/node': 22.7.7 - kleur: 3.0.3 - dev: true + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.1.3) + eslint: 8.56.0 + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color - /@types/prop-types@15.7.13: - resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} + '@typescript-eslint/utils@8.33.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 8.33.0 + '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.4.3) + eslint: 8.56.0 + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + '@typescript-eslint/visitor-keys@8.33.0': + dependencies: + '@typescript-eslint/types': 8.33.0 + eslint-visitor-keys: 4.2.0 - /@types/qs@6.9.14: - resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} - dev: true + '@ungap/structured-clone@1.3.0': {} - /@types/range-parser@1.2.7: - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - dev: true + '@uniswap/lib@4.0.1-alpha': {} - /@types/react-dom@18.2.6: - resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==} + '@uniswap/sdk-core@3.2.6': dependencies: - '@types/react': 18.3.3 + '@ethersproject/address': 5.8.0 + big.js: 5.2.2 + decimal.js-light: 2.5.1 + jsbi: 3.2.5 + tiny-invariant: 1.3.3 + toformat: 2.0.0 - /@types/react-dom@18.3.0: - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + '@uniswap/sdk-core@7.7.2': dependencies: - '@types/react': 18.3.3 + '@ethersproject/address': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/strings': 5.7.0 + big.js: 5.2.2 + decimal.js-light: 2.5.1 + jsbi: 3.2.5 + tiny-invariant: 1.3.3 + toformat: 2.0.0 - /@types/react-transition-group@4.4.11: - resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==} + '@uniswap/swap-router-contracts@1.3.1(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@types/react': 18.3.3 - dev: false + '@openzeppelin/contracts': 3.4.2-solc-0.7 + '@uniswap/v2-core': 1.0.1 + '@uniswap/v3-core': 1.0.1 + '@uniswap/v3-periphery': 1.4.4 + dotenv: 14.3.2 + hardhat-watcher: 2.5.0(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) + transitivePeerDependencies: + - hardhat - /@types/react@18.2.14: - resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==} - dependencies: - '@types/prop-types': 15.7.13 - '@types/scheduler': 0.16.3 - csstype: 3.1.3 + '@uniswap/v2-core@1.0.1': {} - /@types/react@18.2.75: - resolution: {integrity: sha512-+DNnF7yc5y0bHkBTiLKqXFe+L4B3nvOphiMY3tuA5X10esmjqk7smyBZzbGTy2vsiy/Bnzj8yFIBL8xhRacoOg==} - dependencies: - '@types/prop-types': 15.7.5 - csstype: 3.1.2 - dev: false + '@uniswap/v3-core@1.0.0': {} - /@types/react@18.3.3: - resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} - dependencies: - '@types/prop-types': 15.7.5 - csstype: 3.1.2 + '@uniswap/v3-core@1.0.1': {} - /@types/readable-stream@2.3.15: - resolution: {integrity: sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==} + '@uniswap/v3-periphery@1.4.4': dependencies: - '@types/node': 20.3.1 - safe-buffer: 5.1.2 - dev: true - - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - dev: true + '@openzeppelin/contracts': 3.4.2-solc-0.7 + '@uniswap/lib': 4.0.1-alpha + '@uniswap/v2-core': 1.0.1 + '@uniswap/v3-core': 1.0.1 + base64-sol: 1.0.1 - /@types/responselike@1.0.3: - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + '@uniswap/v3-sdk@3.25.2(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@types/node': 20.3.1 - dev: false + '@ethersproject/abi': 5.8.0 + '@ethersproject/solidity': 5.8.0 + '@uniswap/sdk-core': 7.7.2 + '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@uniswap/v3-periphery': 1.4.4 + '@uniswap/v3-staker': 1.0.0 + tiny-invariant: 1.3.3 + tiny-warning: 1.0.3 + transitivePeerDependencies: + - hardhat - /@types/retry@0.12.5: - resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==} - dev: true + '@uniswap/v3-staker@1.0.0': + dependencies: + '@openzeppelin/contracts': 3.4.1-solc-0.7-2 + '@uniswap/v3-core': 1.0.0 + '@uniswap/v3-periphery': 1.4.4 - /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + '@unrs/resolver-binding-darwin-arm64@1.7.6': + optional: true - /@types/secp256k1@4.0.3: - resolution: {integrity: sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==} - dependencies: - '@types/node': 20.3.1 + '@unrs/resolver-binding-darwin-x64@1.7.6': + optional: true - /@types/semver@7.5.8: - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + '@unrs/resolver-binding-freebsd-x64@1.7.6': + optional: true - /@types/send@0.17.4: - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - dependencies: - '@types/mime': 1.3.5 - '@types/node': 20.3.1 - dev: true + '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.6': + optional: true - /@types/serve-static@1.15.5: - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - dependencies: - '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 20.3.1 - dev: true + '@unrs/resolver-binding-linux-arm-musleabihf@1.7.6': + optional: true - /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + '@unrs/resolver-binding-linux-arm64-gnu@1.7.6': + optional: true - /@types/tough-cookie@4.0.5: - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - dev: true + '@unrs/resolver-binding-linux-arm64-musl@1.7.6': + optional: true - /@types/unist@3.0.3: - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - dev: true + '@unrs/resolver-binding-linux-ppc64-gnu@1.7.6': + optional: true - /@types/use-sync-external-store@0.0.3: - resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} - dev: false + '@unrs/resolver-binding-linux-riscv64-gnu@1.7.6': + optional: true - /@types/uuid@8.3.4: - resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} + '@unrs/resolver-binding-linux-riscv64-musl@1.7.6': + optional: true - /@types/w3c-web-usb@1.0.10: - resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==} - dev: false + '@unrs/resolver-binding-linux-s390x-gnu@1.7.6': + optional: true - /@types/web@0.0.138: - resolution: {integrity: sha512-oQD74hl+cNCZdSWIupJCXZ2azTuB3MJ/mrWlgYt+v4pD7/Dr78gl5hKAdieZNf9NrAqwUez79bHtnFVSNSscWA==} - dev: false + '@unrs/resolver-binding-linux-x64-gnu@1.7.6': + optional: true - /@types/wrap-ansi@3.0.0: - resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} - dev: false + '@unrs/resolver-binding-linux-x64-musl@1.7.6': + optional: true - /@types/ws@7.4.7: - resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} + '@unrs/resolver-binding-wasm32-wasi@1.7.6': dependencies: - '@types/node': 20.3.1 + '@napi-rs/wasm-runtime': 0.2.10 + optional: true - /@types/ws@8.5.3: - resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} - dependencies: - '@types/node': 20.3.1 + '@unrs/resolver-binding-win32-arm64-msvc@1.7.6': + optional: true - /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + '@unrs/resolver-binding-win32-ia32-msvc@1.7.6': + optional: true - /@types/yargs@17.0.22: - resolution: {integrity: sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==} - dependencies: - '@types/yargs-parser': 21.0.0 + '@unrs/resolver-binding-win32-x64-msvc@1.7.6': + optional: true - /@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.43.0)(typescript@5.4.3): - resolution: {integrity: sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@wagmi/connectors@5.8.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33)': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.4.3) - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/type-utils': 7.2.0(eslint@8.43.0)(typescript@5.4.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.43.0)(typescript@5.4.3) - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.43.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.3.0(typescript@5.4.3) + '@coinbase/wallet-sdk': 4.3.0 + '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@wagmi/core': 2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + '@walletconnect/ethereum-provider': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react - supports-color - dev: true + - uploadthing + - utf-8-validate + - zod - /@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.1.3): - resolution: {integrity: sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.4.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.1.3) - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/type-utils': 7.2.0(eslint@8.56.0)(typescript@5.1.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.56.0)(typescript@5.1.3) - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.3.0(typescript@5.1.3) - typescript: 5.1.3 + eventemitter3: 5.0.1 + mipd: 0.0.7(typescript@5.4.3) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + zustand: 5.0.0(@types/react@18.2.14)(react@18.2.0)(use-sync-external-store@1.4.0(react@18.2.0)) + optionalDependencies: + '@tanstack/query-core': 5.77.2 + typescript: 5.4.3 transitivePeerDependencies: - - supports-color - dev: false + - '@types/react' + - immer + - react + - use-sync-external-store - /@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.4.3): - resolution: {integrity: sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.4.3) - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/type-utils': 7.2.0(eslint@8.56.0)(typescript@5.4.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.56.0)(typescript@5.4.3) - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.3.0(typescript@5.4.3) + eventemitter3: 5.0.1 + mipd: 0.0.7(typescript@5.4.3) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + zustand: 5.0.0(@types/react@18.2.14)(react@18.2.0)(use-sync-external-store@1.5.0(react@18.2.0)) + optionalDependencies: + '@tanstack/query-core': 5.77.2 typescript: 5.4.3 transitivePeerDependencies: - - supports-color - dev: false + - '@types/react' + - immer + - react + - use-sync-external-store - /@typescript-eslint/parser@5.62.0(eslint@8.43.0)(typescript@5.4.3): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@wallet-standard/app@1.1.0': dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.43.0 - typescript: 5.4.3 - transitivePeerDependencies: - - supports-color + '@wallet-standard/base': 1.1.0 - /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.1.3): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@wallet-standard/base@1.1.0': {} + + '@wallet-standard/core@1.1.1': + dependencies: + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/errors': 0.1.1 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 + + '@wallet-standard/errors@0.1.1': + dependencies: + chalk: 5.4.1 + commander: 13.1.0 + + '@wallet-standard/features@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + + '@wallet-standard/wallet@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + + '@walletconnect/core@2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/window-getters': 1.0.1 + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/core@2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - typescript: 5.1.3 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 transitivePeerDependencies: - - supports-color - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.4.3): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/core@2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - typescript: 5.4.3 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 transitivePeerDependencies: - - supports-color - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@typescript-eslint/scope-manager@5.62.0: - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@walletconnect/core@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@typescript-eslint/scope-manager@7.2.0: - resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} - engines: {node: ^16.0.0 || >=18.0.0} + '@walletconnect/environment@1.0.1': dependencies: - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/visitor-keys': 7.2.0 + tslib: 1.14.1 - /@typescript-eslint/type-utils@7.2.0(eslint@8.43.0)(typescript@5.4.3): - resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/ethereum-provider@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.43.0)(typescript@5.4.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.43.0 - ts-api-utils: 1.3.0(typescript@5.4.3) - typescript: 5.4.3 + '@reown/appkit': 1.7.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/types': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/utils': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 transitivePeerDependencies: - - supports-color - dev: true + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@typescript-eslint/type-utils@7.2.0(eslint@8.56.0)(typescript@5.1.3): - resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/events@1.0.1': dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.1.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.56.0)(typescript@5.1.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - ts-api-utils: 1.3.0(typescript@5.1.3) - typescript: 5.1.3 - transitivePeerDependencies: - - supports-color - dev: false + keyvaluestorage-interface: 1.0.0 + tslib: 1.14.1 - /@typescript-eslint/type-utils@7.2.0(eslint@8.56.0)(typescript@5.4.3): - resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/heartbeat@1.2.2': dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.56.0)(typescript@5.4.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - ts-api-utils: 1.3.0(typescript@5.4.3) - typescript: 5.4.3 - transitivePeerDependencies: - - supports-color - dev: false - - /@typescript-eslint/types@5.62.0: - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - /@typescript-eslint/types@7.2.0: - resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} - engines: {node: ^16.0.0 || >=18.0.0} + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + events: 3.3.0 - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.3): - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)': dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@5.1.3) - typescript: 5.1.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + cross-fetch: 3.2.0(encoding@0.1.13) + events: 3.3.0 transitivePeerDependencies: - - supports-color - dev: false + - encoding - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3): - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/jsonrpc-provider@1.0.14': dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@5.4.3) - typescript: 5.4.3 - transitivePeerDependencies: - - supports-color + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 - /@typescript-eslint/typescript-estree@7.2.0(typescript@5.1.3): - resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/jsonrpc-types@1.0.4': dependencies: - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.5.4 - ts-api-utils: 1.3.0(typescript@5.1.3) - typescript: 5.1.3 - transitivePeerDependencies: - - supports-color - dev: false + events: 3.3.0 + keyvaluestorage-interface: 1.0.0 - /@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.3): - resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@walletconnect/jsonrpc-utils@1.0.8': dependencies: - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.5.4 - ts-api-utils: 1.3.0(typescript@5.4.3) - typescript: 5.4.3 - transitivePeerDependencies: - - supports-color + '@walletconnect/environment': 1.0.1 + '@walletconnect/jsonrpc-types': 1.0.4 + tslib: 1.14.1 - /@typescript-eslint/utils@7.2.0(eslint@8.43.0)(typescript@5.4.3): - resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 + '@walletconnect/jsonrpc-ws-connection@1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) - eslint: 8.43.0 - semver: 7.5.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - - supports-color - - typescript - dev: true + - bufferutil + - utf-8-validate - /@typescript-eslint/utils@7.2.0(eslint@8.56.0)(typescript@5.1.3): - resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 + '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.1.3) - eslint: 8.56.0 - semver: 7.5.4 + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.2 + unstorage: 1.16.0(idb-keyval@6.2.2) + optionalDependencies: + '@react-native-async-storage/async-storage': 1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - - supports-color - - typescript - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@typescript-eslint/utils@7.2.0(eslint@8.56.0)(typescript@5.4.3): - resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 + '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) - eslint: 8.56.0 - semver: 7.5.4 + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.2 + unstorage: 1.16.0(idb-keyval@6.2.2) + optionalDependencies: + '@react-native-async-storage/async-storage': 1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)) transitivePeerDependencies: - - supports-color - - typescript - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@typescript-eslint/visitor-keys@5.62.0: - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@walletconnect/logger@2.1.2': dependencies: - '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.4.3 + '@walletconnect/safe-json': 1.0.2 + pino: 7.11.0 - /@typescript-eslint/visitor-keys@7.2.0: - resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} - engines: {node: ^16.0.0 || >=18.0.0} + '@walletconnect/relay-api@1.0.11': dependencies: - '@typescript-eslint/types': 7.2.0 - eslint-visitor-keys: 3.4.3 - - /@ungap/structured-clone@1.2.1: - resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} - dev: false - - /@uniswap/lib@4.0.1-alpha: - resolution: {integrity: sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==} - engines: {node: '>=10'} - dev: false + '@walletconnect/jsonrpc-types': 1.0.4 - /@uniswap/sdk-core@3.1.1: - resolution: {integrity: sha512-afXn3R2ICf1mAZU+Ug8MmPbuXG7PYjoUYr0+sKLApyOPuhlxpwV4tR4ba8w4jSXoFhqOWxZ9qh44isWoScK96w==} - engines: {node: '>=10'} + '@walletconnect/relay-auth@1.1.0': dependencies: - '@ethersproject/address': 5.7.0 - big.js: 5.2.2 - decimal.js-light: 2.5.1 - jsbi: 3.2.5 - tiny-invariant: 1.3.1 - toformat: 2.0.0 - dev: false + '@noble/curves': 1.8.0 + '@noble/hashes': 1.7.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + uint8arrays: 3.1.0 - /@uniswap/swap-router-contracts@1.3.0(hardhat@2.12.7): - resolution: {integrity: sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==} - engines: {node: '>=10'} + '@walletconnect/safe-json@1.0.2': dependencies: - '@openzeppelin/contracts': 3.4.2-solc-0.7 - '@uniswap/v2-core': 1.0.1 - '@uniswap/v3-core': 1.0.0 - '@uniswap/v3-periphery': 1.4.1(hardhat@2.12.7) - dotenv: 14.3.2 - hardhat-watcher: 2.5.0(hardhat@2.12.7) - transitivePeerDependencies: - - hardhat - dev: false + tslib: 1.14.1 - /@uniswap/swap-router-contracts@1.3.0(hardhat@2.22.2): - resolution: {integrity: sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==} - engines: {node: '>=10'} + '@walletconnect/sign-client@2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@openzeppelin/contracts': 3.4.2-solc-0.7 - '@uniswap/v2-core': 1.0.1 - '@uniswap/v3-core': 1.0.0 - '@uniswap/v3-periphery': 1.4.1(hardhat@2.22.2) - dotenv: 14.3.2 - hardhat-watcher: 2.5.0(hardhat@2.22.2) + '@walletconnect/core': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 transitivePeerDependencies: - - hardhat - dev: false - - /@uniswap/v2-core@1.0.1: - resolution: {integrity: sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==} - engines: {node: '>=10'} - dev: false - - /@uniswap/v3-core@1.0.0: - resolution: {integrity: sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==} - engines: {node: '>=10'} - dev: false - - /@uniswap/v3-core@1.0.1: - resolution: {integrity: sha512-7pVk4hEm00j9tc71Y9+ssYpO6ytkeI0y7WE9P6UcmNzhxPePwyAxImuhVsTqWK9YFvzgtvzJHi64pBl4jUzKMQ==} - engines: {node: '>=10'} - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@uniswap/v3-periphery@1.4.1(hardhat@2.12.7): - resolution: {integrity: sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==} - engines: {node: '>=10'} + '@walletconnect/sign-client@2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@openzeppelin/contracts': 3.4.2-solc-0.7 - '@uniswap/lib': 4.0.1-alpha - '@uniswap/v2-core': 1.0.1 - '@uniswap/v3-core': 1.0.0 - base64-sol: 1.0.1 - hardhat-watcher: 2.5.0(hardhat@2.12.7) + '@walletconnect/core': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 transitivePeerDependencies: - - hardhat - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@uniswap/v3-periphery@1.4.1(hardhat@2.22.2): - resolution: {integrity: sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==} - engines: {node: '>=10'} + '@walletconnect/sign-client@2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@openzeppelin/contracts': 3.4.2-solc-0.7 - '@uniswap/lib': 4.0.1-alpha - '@uniswap/v2-core': 1.0.1 - '@uniswap/v3-core': 1.0.0 - base64-sol: 1.0.1 - hardhat-watcher: 2.5.0(hardhat@2.22.2) + '@walletconnect/core': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 transitivePeerDependencies: - - hardhat - dev: false - - /@uniswap/v3-periphery@1.4.3: - resolution: {integrity: sha512-80c+wtVzl5JJT8UQskxVYYG3oZb4pkhY0zDe0ab/RX4+8f9+W5d8wI4BT0wLB0wFQTSnbW+QdBSpkHA/vRyGBA==} - engines: {node: '>=10'} - dependencies: - '@openzeppelin/contracts': 3.4.2-solc-0.7 - '@uniswap/lib': 4.0.1-alpha - '@uniswap/v2-core': 1.0.1 - '@uniswap/v3-core': 1.0.0 - base64-sol: 1.0.1 - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@uniswap/v3-sdk@3.9.0(hardhat@2.12.7): - resolution: {integrity: sha512-LuoF3UcY1DxSAQKJ3E4/1Eq4HaNp+x+7q9mvbpiu+/PBj+O1DjLforAMrKxu+RsA0aarmZtz7yBnAPy+akgfgQ==} - engines: {node: '>=10'} + '@walletconnect/sign-client@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/solidity': 5.7.0 - '@uniswap/sdk-core': 3.1.1 - '@uniswap/swap-router-contracts': 1.3.0(hardhat@2.12.7) - '@uniswap/v3-periphery': 1.4.3 - '@uniswap/v3-staker': 1.0.0 - tiny-invariant: 1.3.1 - tiny-warning: 1.0.3 + '@walletconnect/core': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + events: 3.3.0 transitivePeerDependencies: - - hardhat - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@uniswap/v3-sdk@3.9.0(hardhat@2.22.2): - resolution: {integrity: sha512-LuoF3UcY1DxSAQKJ3E4/1Eq4HaNp+x+7q9mvbpiu+/PBj+O1DjLforAMrKxu+RsA0aarmZtz7yBnAPy+akgfgQ==} - engines: {node: '>=10'} + '@walletconnect/solana-adapter@0.0.8(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/solidity': 5.7.0 - '@uniswap/sdk-core': 3.1.1 - '@uniswap/swap-router-contracts': 1.3.0(hardhat@2.22.2) - '@uniswap/v3-periphery': 1.4.3 - '@uniswap/v3-staker': 1.0.0 - tiny-invariant: 1.3.1 - tiny-warning: 1.0.3 + '@reown/appkit': 1.7.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/utils': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + bs58: 6.0.0 transitivePeerDependencies: - - hardhat - dev: false - - /@uniswap/v3-staker@1.0.0: - resolution: {integrity: sha512-JV0Qc46Px5alvg6YWd+UIaGH9lDuYG/Js7ngxPit1SPaIP30AlVer1UYB7BRYeUVVxE+byUyIeN5jeQ7LLDjIw==} - engines: {node: '>=10'} - deprecated: Please upgrade to 1.0.1 - dependencies: - '@openzeppelin/contracts': 3.4.1-solc-0.7-2 - '@uniswap/v3-core': 1.0.0 - '@uniswap/v3-periphery': 1.4.3 - dev: false + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod - /@wallet-standard/app@1.0.1: - resolution: {integrity: sha512-LnLYq2Vy2guTZ8GQKKSXQK3+FRGPil75XEdkZqE6fiLixJhZJoJa5hT7lXxwe0ykVTt9LEThdTbOpT7KadS26Q==} - engines: {node: '>=16'} + '@walletconnect/time@1.0.2': dependencies: - '@wallet-standard/base': 1.0.1 - dev: false - - /@wallet-standard/base@1.0.1: - resolution: {integrity: sha512-1To3ekMfzhYxe0Yhkpri+Fedq0SYcfrOfJi3vbLjMwF2qiKPjTGLwZkf2C9ftdQmxES+hmxhBzTwF4KgcOwf8w==} - engines: {node: '>=16'} - dev: false + tslib: 1.14.1 - /@wallet-standard/core@1.0.3: - resolution: {integrity: sha512-Jb33IIjC1wM1HoKkYD7xQ6d6PZ8EmMZvyc8R7dFgX66n/xkvksVTW04g9yLvQXrLFbcIjHrCxW6TXMhvpsAAzg==} - engines: {node: '>=16'} + '@walletconnect/types@2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))': dependencies: - '@wallet-standard/app': 1.0.1 - '@wallet-standard/base': 1.0.1 - '@wallet-standard/features': 1.0.3 - '@wallet-standard/wallet': 1.0.1 - dev: false + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@wallet-standard/features@1.0.3: - resolution: {integrity: sha512-m8475I6W5LTatTZuUz5JJNK42wFRgkJTB0I9tkruMwfqBF2UN2eomkYNVf9RbrsROelCRzSFmugqjKZBFaubsA==} - engines: {node: '>=16'} + '@walletconnect/types@2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))': dependencies: - '@wallet-standard/base': 1.0.1 - dev: false + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@wallet-standard/wallet@1.0.1: - resolution: {integrity: sha512-qkhJeuQU2afQTZ02yMZE5SFc91Fo3hyFjFkpQglHudENNyiSG0oUKcIjky8X32xVSaumgTZSQUAzpXnCTWHzKQ==} - engines: {node: '>=16'} + '@walletconnect/types@2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: - '@wallet-standard/base': 1.0.1 - dev: false + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@walletconnect/browser-utils@1.8.0: - resolution: {integrity: sha512-Wcqqx+wjxIo9fv6eBUFHPsW1y/bGWWRboni5dfD8PtOmrihrEpOCmvRJe4rfl7xgJW8Ea9UqKEaq0bIRLHlK4A==} + '@walletconnect/types@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: - '@walletconnect/safe-json': 1.0.0 - '@walletconnect/types': 1.8.0 - '@walletconnect/window-getters': 1.0.0 - '@walletconnect/window-metadata': 1.0.0 - detect-browser: 5.2.0 - dev: false + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing - /@walletconnect/core@2.14.0: - resolution: {integrity: sha512-E/dgBM9q3judXnTfZQ5ILvDpeSdDpabBLsXtYXa3Nyc26cfNplfLJ2nXm9FgtTdhM1nZ7yx4+zDPiXawBRZl2g==} + '@walletconnect/universal-provider@2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.10 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 - '@walletconnect/utils': 2.14.0 + '@walletconnect/sign-client': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/types': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) events: 3.3.0 - isomorphic-unfetch: 3.1.0 - lodash.isequal: 4.5.0 - uint8arrays: 3.1.0 + lodash: 4.17.21 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -14265,85 +21710,115 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch - bufferutil + - db0 - encoding - ioredis - - uWebSockets.js + - typescript + - uploadthing - utf-8-validate - dev: false - - /@walletconnect/environment@1.0.1: - resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} - dependencies: - tslib: 1.14.1 - dev: false - - /@walletconnect/events@1.0.1: - resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} - dependencies: - keyvaluestorage-interface: 1.0.0 - tslib: 1.14.1 - dev: false + - zod - /@walletconnect/heartbeat@1.2.2: - resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + '@walletconnect/universal-provider@2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/time': 1.0.2 - events: 3.3.0 - dev: false - - /@walletconnect/jsonrpc-provider@1.0.14: - resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} - dependencies: + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - events: 3.3.0 - dev: false - - /@walletconnect/jsonrpc-types@1.0.4: - resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} - dependencies: + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/types': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + es-toolkit: 1.33.0 events: 3.3.0 - keyvaluestorage-interface: 1.0.0 - dev: false + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@walletconnect/jsonrpc-utils@1.0.8: - resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} + '@walletconnect/universal-provider@2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@walletconnect/environment': 1.0.1 + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 - tslib: 1.14.1 - dev: false - - /@walletconnect/jsonrpc-ws-connection@1.0.14: - resolution: {integrity: sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==} - dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/types': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + es-toolkit: 1.33.0 events: 3.3.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing - utf-8-validate - dev: false + - zod - /@walletconnect/keyvaluestorage@1.1.1: - resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==} - peerDependencies: - '@react-native-async-storage/async-storage': 1.x - peerDependenciesMeta: - '@react-native-async-storage/async-storage': - optional: true + '@walletconnect/universal-provider@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@walletconnect/safe-json': 1.0.2 - idb-keyval: 6.2.1 - unstorage: 1.10.2(idb-keyval@6.2.1) + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + '@walletconnect/types': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + es-toolkit: 1.33.0 + events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -14352,77 +21827,86 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' + - '@react-native-async-storage/async-storage' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding - ioredis - - uWebSockets.js - dev: false - - /@walletconnect/logger@2.1.2: - resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} - dependencies: - '@walletconnect/safe-json': 1.0.2 - pino: 7.11.0 - dev: false - - /@walletconnect/mobile-registry@1.4.0: - resolution: {integrity: sha512-ZtKRio4uCZ1JUF7LIdecmZt7FOLnX72RPSY7aUVu7mj7CSfxDwUn6gBuK6WGtH+NZCldBqDl5DenI5fFSvkKYw==} - deprecated: 'Deprecated in favor of dynamic registry available from: https://github.com/walletconnect/walletconnect-registry' - dev: false - - /@walletconnect/qrcode-modal@1.8.0: - resolution: {integrity: sha512-BueaFefaAi8mawE45eUtztg3ZFbsAH4DDXh1UNwdUlsvFMjqcYzLUG0xZvDd6z2eOpbgDg2N3bl6gF0KONj1dg==} - deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/' - dependencies: - '@walletconnect/browser-utils': 1.8.0 - '@walletconnect/mobile-registry': 1.4.0 - '@walletconnect/types': 1.8.0 - copy-to-clipboard: 3.3.3 - preact: 10.4.1 - qrcode: 1.4.4 - dev: false - - /@walletconnect/relay-api@1.0.10: - resolution: {integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==} - dependencies: - '@walletconnect/jsonrpc-types': 1.0.4 - dev: false + - typescript + - uploadthing + - utf-8-validate + - zod - /@walletconnect/relay-auth@1.0.4: - resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==} + '@walletconnect/utils@2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@stablelib/ed25519': 1.0.3 - '@stablelib/random': 1.0.2 + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - tslib: 1.14.1 + '@walletconnect/types': 2.19.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + elliptic: 6.6.1 + query-string: 7.1.3 uint8arrays: 3.1.0 - dev: false - - /@walletconnect/safe-json@1.0.0: - resolution: {integrity: sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg==} - dev: false - - /@walletconnect/safe-json@1.0.2: - resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} - dependencies: - tslib: 1.14.1 - dev: false + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod - /@walletconnect/sign-client@2.14.0: - resolution: {integrity: sha512-UrB3S3eLjPYfBLCN3WJ5u7+WcZ8kFMe/QIDqLf76Jk6TaLwkSUy563LvnSw4KW/kA+/cY1KBSdUDfX1tzYJJXg==} + '@walletconnect/utils@2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@walletconnect/core': 2.14.0 - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.1.2 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 - '@walletconnect/utils': 2.14.0 - events: 3.3.0 + '@walletconnect/types': 2.19.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 + detect-browser: 5.3.0 + elliptic: 6.6.1 + query-string: 7.1.3 + uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -14431,38 +21915,41 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch - bufferutil - - encoding + - db0 - ioredis - - uWebSockets.js + - typescript + - uploadthing - utf-8-validate - dev: false - - /@walletconnect/time@1.0.2: - resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} - dependencies: - tslib: 1.14.1 - dev: false - - /@walletconnect/types@1.8.0: - resolution: {integrity: sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==} - deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/' - dev: false + - zod - /@walletconnect/types@2.14.0: - resolution: {integrity: sha512-vevMi4jZLJ55vLuFOicQFmBBbLyb+S0sZS4IsaBdZkQflfGIq34HkN13c/KPl4Ye0aoR4/cUcUSitmGIzEQM5g==} + '@walletconnect/utils@2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.1.2 - events: 3.3.0 + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -14471,32 +21958,41 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 - ioredis - - uWebSockets.js - dev: false + - typescript + - uploadthing + - utf-8-validate + - zod - /@walletconnect/utils@2.14.0: - resolution: {integrity: sha512-vRVomYQEtEAyCK2c5bzzEvtgxaGGITF8mWuIL+WYSAMyEJLY97mirP2urDucNwcUczwxUgI+no9RiNFbUHreQQ==} + '@walletconnect/utils@2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/hkdf': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.10 + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 + '@walletconnect/types': 2.20.2(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 detect-browser: 5.3.0 query-string: 7.1.3 uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -14505,307 +22001,183 @@ packages: - '@azure/keyvault-secrets' - '@azure/storage-blob' - '@capacitor/preferences' + - '@deno/kv' - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@upstash/redis' + - '@vercel/blob' - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 - ioredis - - uWebSockets.js - dev: false - - /@walletconnect/window-getters@1.0.0: - resolution: {integrity: sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA==} - dev: false + - typescript + - uploadthing + - utf-8-validate + - zod - /@walletconnect/window-getters@1.0.1: - resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} + '@walletconnect/window-getters@1.0.1': dependencies: tslib: 1.14.1 - dev: false - /@walletconnect/window-metadata@1.0.0: - resolution: {integrity: sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==} - dependencies: - '@walletconnect/window-getters': 1.0.0 - dev: false - - /@walletconnect/window-metadata@1.0.1: - resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} + '@walletconnect/window-metadata@1.0.1': dependencies: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 - dev: false - /@zerodev/ecdsa-validator@5.4.8(@zerodev/sdk@5.4.32)(viem@2.26.2): - resolution: {integrity: sha512-EqDj304KP9PNupY0pUL/VSmhRn9B29pxHkZW+jn7nndn763CNDO3t0fEwReUr+qahg/gV/8TWWWMI8igc3ZJ9g==} - peerDependencies: - '@zerodev/sdk': ^5.4.13 - viem: ^2.28.0 + '@xrplf/isomorphic@1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@zerodev/sdk': 5.4.32(viem@2.26.2) - viem: 2.26.2(typescript@5.4.3) - dev: false + '@noble/hashes': 1.4.0 + eventemitter3: 5.0.1 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /@zerodev/sdk@5.4.32(viem@2.26.2): - resolution: {integrity: sha512-kAmFazTOXwdORTr/SqkZMSxzIhT39pOKbhm2iOfgP5P4v9oBdlI5KnkX9YPnCs252cMtYcgbURwN0o65TGHydw==} - peerDependencies: - viem: ^2.28.0 + '@xrplf/secret-numbers@1.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - semver: 7.5.4 - viem: 2.26.2(typescript@5.4.3) - dev: false + '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ripple-keypairs: 2.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true + '@zerodev/ecdsa-validator@5.4.9(@zerodev/sdk@5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': dependencies: - jsonparse: 1.3.1 - through: 2.3.8 + '@zerodev/sdk': 5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - dev: true + '@zerodev/sdk@5.4.36(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))': + dependencies: + semver: 7.7.2 + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /abitype@0.7.1(typescript@5.4.3): - resolution: {integrity: sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==} - peerDependencies: - typescript: '>=4.9.4' - zod: ^3 >=3.19.1 - peerDependenciesMeta: - zod: - optional: true + abab@2.0.6: {} + + abitype@0.7.1(typescript@5.4.3)(zod@3.25.33): dependencies: typescript: 5.4.3 - dev: false + optionalDependencies: + zod: 3.25.33 - /abitype@1.0.0(typescript@5.4.3): - resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==} - peerDependencies: - typescript: '>=5.0.4' - zod: ^3 >=3.22.0 - peerDependenciesMeta: - typescript: - optional: true - zod: - optional: true - dependencies: + abitype@1.0.0(typescript@5.4.3)(zod@3.25.33): + optionalDependencies: typescript: 5.4.3 - dev: false + zod: 3.25.33 - /abitype@1.0.5(typescript@5.4.3)(zod@3.23.8): - resolution: {integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==} - peerDependencies: - typescript: '>=5.0.4' - zod: ^3 >=3.22.0 - peerDependenciesMeta: - typescript: - optional: true - zod: - optional: true - dependencies: + abitype@1.0.6(typescript@5.4.3)(zod@3.25.33): + optionalDependencies: typescript: 5.4.3 - zod: 3.23.8 - dev: false + zod: 3.25.33 - /abitype@1.0.6(typescript@5.4.3): - resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==} - peerDependencies: - typescript: '>=5.0.4' - zod: ^3 >=3.22.0 - peerDependenciesMeta: - typescript: - optional: true - zod: - optional: true - dependencies: + abitype@1.0.8(typescript@5.4.3)(zod@3.22.4): + optionalDependencies: typescript: 5.4.3 - dev: false + zod: 3.22.4 - /abitype@1.0.8(typescript@5.4.3): - resolution: {integrity: sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==} - peerDependencies: - typescript: '>=5.0.4' - zod: ^3 >=3.22.0 - peerDependenciesMeta: - typescript: - optional: true - zod: - optional: true - dependencies: + abitype@1.0.8(typescript@5.4.3)(zod@3.25.33): + optionalDependencies: typescript: 5.4.3 + zod: 3.25.33 - /abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} + abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 - /abstract-level@1.0.3: - resolution: {integrity: sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==} - engines: {node: '>=12'} - dependencies: - buffer: 6.0.3 - catering: 2.1.1 - is-buffer: 2.0.5 - level-supports: 4.0.1 - level-transcoder: 1.0.1 - module-error: 1.0.2 - queue-microtask: 1.2.3 - - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - dev: false - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + acorn-globals@7.0.1: dependencies: - acorn: 8.12.1 + acorn: 8.14.1 acorn-walk: 8.3.4 - dev: true - /acorn-jsx@5.3.2(acorn@8.12.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@8.14.1): dependencies: - acorn: 8.12.1 + acorn: 8.14.1 - /acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} - engines: {node: '>=0.4.0'} + acorn-walk@8.3.4: dependencies: - acorn: 8.12.1 - dev: true + acorn: 8.14.1 - /acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@8.14.1: {} - /adm-zip@0.4.16: - resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==} - engines: {node: '>=0.3.0'} + adm-zip@0.4.16: {} - /aes-js@3.0.0: - resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} + aes-js@3.0.0: {} - /aes-js@4.0.0-beta.5: - resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + aes-js@4.0.0-beta.5: {} - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + agent-base@6.0.2: dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} + agent-base@7.1.3: {} + + agentkeepalive@4.6.0: dependencies: humanize-ms: 1.2.1 - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + ajv@8.12.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - dev: true - /anser@1.4.10: - resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} - dev: false + anser@1.4.10: {} - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + ansi-align@3.0.1: dependencies: string-width: 4.2.3 - /ansi-colors@4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} - engines: {node: '>=6'} - - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + ansi-colors@4.1.3: {} - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - /ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} - dev: false - - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + ansi-regex@6.1.0: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + ansi-styles@5.2.0: {} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + ansi-styles@6.2.1: {} - /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + any-promise@1.3.0: {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /aptos@1.21.0: - resolution: {integrity: sha512-PRKjoFgL8tVEc9+oS7eJUv8GNxx8n3+0byH2+m7CP3raYOD6yFKOecuwjVMIJmgfpjp6xH0P0HDMGZAXmSyU0Q==} - engines: {node: '>=11.0.0'} - deprecated: Package aptos is no longer supported, please migrate to https://www.npmjs.com/package/@aptos-labs/ts-sdk + aptos@1.21.0: dependencies: '@aptos-labs/aptos-client': 0.1.1 '@noble/hashes': 1.3.3 @@ -14815,299 +22187,192 @@ packages: tweetnacl: 1.0.3 transitivePeerDependencies: - debug - dev: false - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true + arg@4.1.3: {} - /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + arg@5.0.2: {} - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + argparse@2.0.1: {} - /aria-hidden@1.2.4: - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} - engines: {node: '>=10'} + aria-hidden@1.2.6: dependencies: tslib: 2.8.1 - dev: false - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - dependencies: - dequal: 2.0.3 + aria-query@5.3.2: {} - /array-back@3.1.0: - resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} - engines: {node: '>=6'} - dev: true + array-back@3.1.0: {} - /array-back@4.0.2: - resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} - engines: {node: '>=8'} - dev: true + array-back@4.0.2: {} - /array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.2: dependencies: - call-bind: 1.0.8 - is-array-buffer: 3.0.4 + call-bound: 1.0.4 + is-array-buffer: 3.0.5 - /array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} + array-includes@3.1.8: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 - es-object-atoms: 1.0.0 - get-intrinsic: 1.2.4 - is-string: 1.0.7 + es-abstract: 1.23.10 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + array-union@2.1.0: {} - /array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} + array.prototype.findlast@1.2.5: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-shim-unscopables: 1.0.2 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 - /array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} + array.prototype.findlastindex@1.2.6: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-shim-unscopables: 1.0.2 - - /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.2 - es-shim-unscopables: 1.0.2 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 - /array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + array.prototype.flat@1.3.3: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 - es-shim-unscopables: 1.0.2 + es-abstract: 1.23.10 + es-shim-unscopables: 1.1.0 - /array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + array.prototype.flatmap@1.3.3: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 - es-shim-unscopables: 1.0.2 + es-abstract: 1.23.10 + es-shim-unscopables: 1.1.0 - /array.prototype.tosorted@1.1.3: - resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} + array.prototype.tosorted@1.1.4: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 - es-shim-unscopables: 1.0.2 + es-shim-unscopables: 1.1.0 - /arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.4: dependencies: - array-buffer-byte-length: 1.0.1 + array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 get-intrinsic: 1.3.0 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 - - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true + is-array-buffer: 3.0.5 - /asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - dev: false + asap@2.0.6: {} - /asn1.js@4.10.1: - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + asn1.js@4.10.1: dependencies: - bn.js: 4.12.0 + bn.js: 4.12.2 inherits: 2.0.4 minimalistic-assert: 1.0.1 - dev: false - /asn1js@3.0.5: - resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==} - engines: {node: '>=12.0.0'} + asn1js@3.0.6: dependencies: - pvtsutils: 1.3.5 + pvtsutils: 1.3.6 pvutils: 1.1.3 tslib: 2.8.1 - dev: false - /assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + assert@2.1.0: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 is-nan: 1.3.2 object-is: 1.1.6 - object.assign: 4.1.5 + object.assign: 4.1.7 util: 0.12.5 - dev: false - /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + ast-types-flow@0.0.8: {} - /ast-types@0.15.2: - resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} - engines: {node: '>=4'} + ast-types@0.15.2: dependencies: tslib: 2.8.1 - dev: false - /async-eventemitter@0.2.4: - resolution: {integrity: sha512-pd20BwL7Yt1zwDFy+8MX8F1+WCT8aQeKj0kQnTrH9WaeRETlRamVhD0JtRPmrV4GfOJ2F9CvdQkZeZhnh2TuHw==} - dependencies: - async: 2.6.4 - dev: false + async-function@1.0.0: {} - /async-mutex@0.4.1: - resolution: {integrity: sha512-WfoBo4E/TbCX1G95XTjbWTE3X2XLG0m1Xbv2cwOtuPdyH9CZvnaA5nCt1ucjaKEgW2A5IF71hxrRhr83Je5xjA==} + async-mutex@0.2.6: dependencies: tslib: 2.8.1 - dev: false - /async-retry@1.3.3: - resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + async-mutex@0.5.0: dependencies: - retry: 0.13.1 - dev: false + tslib: 2.8.1 - /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + async-retry@1.3.3: dependencies: - lodash: 4.17.21 - dev: false + retry: 0.13.1 - /async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - dev: true + async@3.2.6: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + asynckit@0.4.0: {} - /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} - dev: true + at-least-node@1.0.0: {} - /atomic-sleep@1.0.0: - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} - engines: {node: '>=8.0.0'} + atomic-sleep@1.0.0: {} - /autoprefixer@10.0.1(postcss@8.4.38): - resolution: {integrity: sha512-aQo2BDIsoOdemXUAOBpFv4ZQa2DrOtEufarYhtFsK1088Ca0TUwu/aQWf0M3mrILXZ3mTIVn1lR3hPW8acacsw==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + autoprefixer@10.4.21(postcss@8.5.3): dependencies: - browserslist: 4.22.3 - caniuse-lite: 1.0.30001581 - colorette: 1.4.0 + browserslist: 4.24.5 + caniuse-lite: 1.0.30001718 + fraction.js: 4.3.7 normalize-range: 0.1.2 - num2fraction: 1.2.2 - postcss: 8.4.38 + picocolors: 1.1.1 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + available-typed-arrays@1.0.7: dependencies: - possible-typed-array-names: 1.0.0 + possible-typed-array-names: 1.1.0 - /axe-core@4.7.2: - resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} - engines: {node: '>=4'} + axe-core@4.10.3: {} - /axios@1.8.3: - resolution: {integrity: sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==} + axios@1.9.0: dependencies: - follow-redirects: 1.15.4(debug@4.3.4) - form-data: 4.0.0 + follow-redirects: 1.15.9(debug@4.4.1) + form-data: 4.0.2 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - dev: false - /axobject-query@3.2.1: - resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} - dependencies: - dequal: 2.0.3 + axobject-query@4.1.0: {} - /babel-core@7.0.0-bridge.0(@babel/core@7.26.9): - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-core@7.0.0-bridge.0(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 - dev: false - /babel-jest@29.4.3(@babel/core@7.20.12): - resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 + babel-jest@29.4.3(@babel/core@7.20.12): dependencies: '@babel/core': 7.20.12 - '@jest/transform': 29.4.3 - '@types/babel__core': 7.20.0 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.3(@babel/core@7.20.12) + babel-preset-jest: 29.6.3(@babel/core@7.20.12) chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - dev: false - /babel-jest@29.7.0(@babel/core@7.26.9): - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 + babel-jest@29.7.0(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.0 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.6.3(@babel/core@7.26.9) chalk: 4.1.2 @@ -15116,11 +22381,22 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + babel-jest@29.7.0(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.27.3) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -15128,161 +22404,167 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.26.9 - '@babel/types': 7.26.9 - '@types/babel__core': 7.20.0 - '@types/babel__traverse': 7.18.3 + '@babel/template': 7.27.2 + '@babel/types': 7.27.3 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.7 - /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + babel-plugin-macros@3.1.0: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 cosmiconfig: 7.1.0 - resolve: 1.22.8 - dev: false + resolve: 1.22.10 - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.12): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.12): dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.27.3 '@babel/core': 7.20.12 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) - semver: 7.5.4 + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.26.9): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.26.9): dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.27.3 '@babel/core': 7.26.9 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.9) - semver: 7.5.4 + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9): - resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.27.3): + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.27.3) + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.9): dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.27.3 '@babel/core': 7.26.9 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) - semver: 7.5.4 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9): - resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.3): + dependencies: + '@babel/compat-data': 7.27.3 + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.3) + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) - core-js-compat: 3.40.0 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) + core-js-compat: 3.42.0 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.12): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.3) + core-js-compat: 3.42.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.12): dependencies: '@babel/core': 7.20.12 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) - core-js-compat: 3.28.0 + core-js-compat: 3.42.0 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.26.9): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.9) - core-js-compat: 3.28.0 + core-js-compat: 3.42.0 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.12): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.27.3) + core-js-compat: 3.42.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.12): dependencies: '@babel/core': 7.20.12 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.26.9): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9): - resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-syntax-hermes-parser@0.23.1: - resolution: {integrity: sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==} + babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.3) + transitivePeerDependencies: + - supports-color + + babel-plugin-syntax-hermes-parser@0.23.1: dependencies: hermes-parser: 0.23.1 - dev: false - /babel-plugin-syntax-hermes-parser@0.25.1: - resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==} + babel-plugin-syntax-hermes-parser@0.25.1: dependencies: hermes-parser: 0.25.1 - dev: false - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.9): - resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.9): dependencies: - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.9) + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.26.9) transitivePeerDependencies: - '@babel/core' - dev: false - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.12): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.27.3): + dependencies: + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.3) + transitivePeerDependencies: + - '@babel/core' + + babel-preset-current-node-syntax@1.1.0(@babel/core@7.20.12): dependencies: '@babel/core': 7.20.12 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.12) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.20.12) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.12) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) @@ -15291,18 +22573,17 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) - dev: false - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.26.9): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.9) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) @@ -15311,158 +22592,119 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) - /babel-preset-jest@29.4.3(@babel/core@7.20.12): - resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.3) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.3) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.3) + + babel-preset-jest@29.6.3(@babel/core@7.20.12): dependencies: '@babel/core': 7.20.12 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.12) - dev: false + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.20.12) - /babel-preset-jest@29.6.3(@babel/core@7.26.9): - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@29.6.3(@babel/core@7.26.9): dependencies: '@babel/core': 7.26.9 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.9) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9) - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + babel-preset-jest@29.6.3(@babel/core@7.27.3): + dependencies: + '@babel/core': 7.27.3 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.3) - /base-x@3.0.11: - resolution: {integrity: sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==} + balanced-match@1.0.2: {} + + base-x@3.0.11: dependencies: safe-buffer: 5.2.1 - /base-x@4.0.1: - resolution: {integrity: sha512-uAZ8x6r6S3aUM9rbHGVOIsR15U/ZSc82b3ymnCPsT45Gk1DDvhDPdIgB5MrhirZWt+5K0EEPQH985kNqZgNPFw==} - dev: false + base-x@4.0.1: {} - /base-x@5.0.1: - resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==} + base-x@5.0.1: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + base64-js@1.5.1: {} - /base64-sol@1.0.1: - resolution: {integrity: sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==} - dev: false + base64-sol@1.0.1: {} - /base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} - dev: false + base64url@3.0.1: {} - /bchaddrjs@0.5.2: - resolution: {integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==} - engines: {node: '>=8.0.0'} + bchaddrjs@0.5.2: dependencies: bs58check: 2.1.2 buffer: 6.0.3 cashaddrjs: 0.4.4 stream-browserify: 3.0.0 - dev: false - /bech32@1.1.4: - resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} + bech32@1.1.4: {} - /bech32@2.0.0: - resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} - dev: false + bech32@2.0.0: {} - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - dev: true - /big-integer@1.6.36: - resolution: {integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==} - engines: {node: '>=0.6'} - dev: false + big-integer@1.6.36: {} - /big-integer@1.6.51: - resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} - engines: {node: '>=0.6'} + big.js@5.2.2: {} - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - dev: false + big.js@6.2.2: {} - /bigint-buffer@1.1.5: - resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==} - engines: {node: '>= 10.0.0'} - requiresBuild: true + bigint-buffer@1.1.5: dependencies: bindings: 1.5.0 - /bigint-crypto-utils@3.3.0: - resolution: {integrity: sha512-jOTSb+drvEDxEq6OuUybOAv/xxoh3cuYRUIPyu8sSHQNKM303UQ2R1DAo45o1AkcIXw6fzbaFI1+xGGdaXs2lg==} - engines: {node: '>=14.0.0'} + bignumber.js@9.1.2: {} - /bignumber.js@9.1.2: - resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} - dev: false + bignumber.js@9.3.0: {} - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + binary-extensions@2.3.0: {} - /bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + bindings@1.5.0: dependencies: file-uri-to-path: 1.0.0 - /bip174@2.1.1: - resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} - engines: {node: '>=8.0.0'} - dev: false + bip174@2.1.1: {} - /bip32@4.0.0: - resolution: {integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==} - engines: {node: '>=6.0.0'} + bip32@4.0.0: dependencies: '@noble/hashes': 1.4.0 - '@scure/base': 1.1.7 + '@scure/base': 1.2.5 typeforce: 1.18.0 wif: 2.0.6 - dev: false - /bip39@3.1.0: - resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} + bip39@3.1.0: dependencies: '@noble/hashes': 1.4.0 - dev: false - /bip66@1.1.5: - resolution: {integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==} - dependencies: - safe-buffer: 5.2.1 - dev: false + bip66@2.0.0: {} - /biskviit@1.0.1: - resolution: {integrity: sha512-VGCXdHbdbpEkFgtjkeoBN8vRlbj1ZRX2/mxhE8asCCRalUx2nBzOomLJv8Aw/nRt5+ccDb+tPKidg4XxcfGW4w==} - engines: {node: '>=1.0.0'} + biskviit@1.0.1: dependencies: - psl: 1.9.0 - dev: false + psl: 1.15.0 - /bitcoin-ops@1.4.1: - resolution: {integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==} - dev: false + bitcoin-ops@1.4.1: {} - /bitcoinjs-lib@6.1.6: - resolution: {integrity: sha512-Fk8+Vc+e2rMoDU5gXkW9tD+313rhkm5h6N9HfZxXvYU9LedttVvmXKTgd9k5rsQJjkSfsv6XRM8uhJv94SrvcA==} - engines: {node: '>=8.0.0'} + bitcoinjs-lib@6.1.7: dependencies: '@noble/hashes': 1.4.0 bech32: 2.0.0 @@ -15470,45 +22712,30 @@ packages: bs58check: 3.0.1 typeforce: 1.18.0 varuint-bitcoin: 1.1.2 - dev: false - /blake-hash@2.0.0: - resolution: {integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==} - engines: {node: '>= 10'} - requiresBuild: true + blake-hash@2.0.0: dependencies: node-addon-api: 3.2.1 - node-gyp-build: 4.6.0 + node-gyp-build: 4.8.4 readable-stream: 3.6.2 - dev: false - /blakejs@1.2.1: - resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} + blakejs@1.2.1: {} - /bn.js@4.12.0: - resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} + bn.js@4.12.2: {} - /bn.js@5.2.1: - resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} + bn.js@5.2.2: {} - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: true + boolbase@1.0.0: {} - /borsh@0.7.0: - resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} + borsh@0.7.0: dependencies: - bn.js: 5.2.1 + bn.js: 5.2.2 bs58: 4.0.1 text-encoding-utf-8: 1.0.2 - /bowser@2.11.0: - resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} - dev: false + bowser@2.11.0: {} - /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} + boxen@5.1.2: dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -15519,404 +22746,215 @@ packages: widest-line: 3.1.0 wrap-ansi: 7.0.0 - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - dependencies: - big-integer: 1.6.51 - - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - /breakword@1.0.5: - resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==} - dependencies: - wcwidth: 1.0.1 - dev: true - - /brorand@1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} - - /browser-level@1.0.1: - resolution: {integrity: sha512-XECYKJ+Dbzw0lbydyQuJzwNXtOpbMSq737qxJN11sIRTErOMShvDpbzTlgju7orJKvx4epULolZAuJGLzCmWRQ==} - dependencies: - abstract-level: 1.0.3 - catering: 2.1.1 - module-error: 1.0.2 - run-parallel-limit: 1.1.0 + brorand@1.1.0: {} - /browser-stdout@1.3.1: - resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} + browser-stdout@1.3.1: {} - /browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + browserify-aes@1.2.0: dependencies: buffer-xor: 1.0.3 - cipher-base: 1.0.4 + cipher-base: 1.0.6 create-hash: 1.2.0 evp_bytestokey: 1.0.3 inherits: 2.0.4 safe-buffer: 5.2.1 - /browserify-cipher@1.0.1: - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + browserify-cipher@1.0.1: dependencies: browserify-aes: 1.2.0 browserify-des: 1.0.2 evp_bytestokey: 1.0.3 - dev: false - /browserify-des@1.0.2: - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + browserify-des@1.0.2: dependencies: - cipher-base: 1.0.4 + cipher-base: 1.0.6 des.js: 1.1.0 inherits: 2.0.4 safe-buffer: 5.2.1 - dev: false - /browserify-rsa@4.1.0: - resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} + browserify-rsa@4.1.1: dependencies: - bn.js: 5.2.1 + bn.js: 5.2.2 randombytes: 2.1.0 - dev: false + safe-buffer: 5.2.1 - /browserify-sign@4.2.3: - resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} - engines: {node: '>= 0.12'} + browserify-sign@4.2.3: dependencies: - bn.js: 5.2.1 - browserify-rsa: 4.1.0 + bn.js: 5.2.2 + browserify-rsa: 4.1.1 create-hash: 1.2.0 create-hmac: 1.1.7 elliptic: 6.6.1 - hash-base: 3.0.4 + hash-base: 3.0.5 inherits: 2.0.4 parse-asn1: 5.1.7 readable-stream: 2.3.8 safe-buffer: 5.2.1 - dev: false - - /browserslist@4.22.3: - resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001700 - electron-to-chromium: 1.4.650 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.3) - dev: true - /browserslist@4.24.4: - resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.24.5: dependencies: - caniuse-lite: 1.0.30001700 - electron-to-chromium: 1.5.102 + caniuse-lite: 1.0.30001718 + electron-to-chromium: 1.5.160 node-releases: 2.0.19 - update-browserslist-db: 1.1.2(browserslist@4.24.4) + update-browserslist-db: 1.1.3(browserslist@4.24.5) - /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 - dev: true - /bs58@4.0.1: - resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} + bs58@4.0.1: dependencies: base-x: 3.0.11 - /bs58@5.0.0: - resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==} + bs58@5.0.0: dependencies: base-x: 4.0.1 - dev: false - /bs58@6.0.0: - resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==} + bs58@6.0.0: dependencies: base-x: 5.0.1 - /bs58check@2.1.2: - resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} + bs58check@2.1.2: dependencies: bs58: 4.0.1 create-hash: 1.2.0 safe-buffer: 5.2.1 - /bs58check@3.0.1: - resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==} + bs58check@3.0.1: dependencies: - '@noble/hashes': 1.8.0 + '@noble/hashes': 1.4.0 bs58: 5.0.0 - dev: false - /bs58check@4.0.0: - resolution: {integrity: sha512-FsGDOnFg9aVI9erdriULkd/JjEWONV/lQE5aYziB5PoBsXRind56lh8doIZIc9X4HoxT5x4bLjMWN1/NB8Zp5g==} + bs58check@4.0.0: dependencies: '@noble/hashes': 1.4.0 bs58: 6.0.0 - dev: false - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + bser@2.1.1: dependencies: node-int64: 0.4.0 - /buffer-alloc-unsafe@1.1.0: - resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} - dev: false - - /buffer-alloc@1.2.0: - resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} - dependencies: - buffer-alloc-unsafe: 1.1.0 - buffer-fill: 1.0.0 - dev: false - - /buffer-fill@1.0.0: - resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} - dev: false - - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + buffer-from@1.1.2: {} - /buffer-layout@1.2.2: - resolution: {integrity: sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==} - engines: {node: '>=4.5'} - dev: false + buffer-layout@1.2.2: {} - /buffer-reverse@1.0.1: - resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==} - dev: false + buffer-reverse@1.0.1: {} - /buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + buffer-xor@1.0.3: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: false - /buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + buffer@6.0.3: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - /bufferutil@4.0.7: - resolution: {integrity: sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==} - engines: {node: '>=6.14.2'} - requiresBuild: true - dependencies: - node-gyp-build: 4.6.0 - - /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} + bufferutil@4.0.9: dependencies: - run-applescript: 5.0.0 + node-gyp-build: 4.8.4 - /busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + busboy@1.6.0: dependencies: streamsearch: 1.1.0 - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - - /c32check@2.0.0: - resolution: {integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==} - engines: {node: '>=8'} - dependencies: - '@noble/hashes': 1.8.0 - base-x: 4.0.1 - dev: false + bytes@3.1.2: {} - /cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - dev: false + cacheable-lookup@5.0.4: {} - /cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} + cacheable-request@7.0.4: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 - http-cache-semantics: 4.1.1 + http-cache-semantics: 4.2.0 keyv: 4.5.4 lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 - dev: false - - /call-bind-apply-helpers@1.0.2: - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} - engines: {node: '>= 0.4'} - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - /call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + call-bind-apply-helpers@1.0.2: dependencies: - es-define-property: 1.0.1 es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.3.0 - set-function-length: 1.2.2 - /call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} - engines: {node: '>= 0.4'} + call-bind@1.0.8: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 get-intrinsic: 1.3.0 set-function-length: 1.2.2 - /call-bound@1.0.4: - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} - engines: {node: '>= 0.4'} + call-bound@1.0.4: dependencies: call-bind-apply-helpers: 1.0.2 get-intrinsic: 1.3.0 - /caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} + caller-callsite@2.0.0: dependencies: callsites: 2.0.0 - dev: false - - /caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} - dependencies: - caller-callsite: 2.0.0 - dev: false - /callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} - dev: false + caller-path@2.0.0: + dependencies: + caller-callsite: 2.0.0 - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + callsites@2.0.0: {} - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + callsites@3.1.0: {} - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - dev: true + camelcase-css@2.0.1: {} - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + camelcase@5.3.1: {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + camelcase@6.3.0: {} - /caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + caniuse-api@3.0.0: dependencies: - browserslist: 4.24.4 - caniuse-lite: 1.0.30001700 + browserslist: 4.24.5 + caniuse-lite: 1.0.30001718 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - dev: true - - /caniuse-lite@1.0.30001581: - resolution: {integrity: sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==} - dev: true - - /caniuse-lite@1.0.30001700: - resolution: {integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==} - /case@1.6.3: - resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==} - engines: {node: '>= 0.8.0'} - dev: true + caniuse-lite@1.0.30001718: {} - /cashaddrjs@0.4.4: - resolution: {integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==} + cashaddrjs@0.4.4: dependencies: big-integer: 1.6.36 - dev: false - - /catering@2.1.1: - resolution: {integrity: sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==} - engines: {node: '>=6'} - /cbor-sync@1.0.4: - resolution: {integrity: sha512-GWlXN4wiz0vdWWXBU71Dvc1q3aBo0HytqwAZnXF1wOwjqNnDWA1vZ1gDMFLlqohak31VQzmhiYfiCX5QSSfagA==} - dev: false + cbor-sync@1.0.4: {} - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - dev: false + chalk@5.4.1: {} - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - dev: true + char-regex@1.0.2: {} - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + chardet@0.7.0: {} - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -15928,25 +22966,11 @@ packages: optionalDependencies: fsevents: 2.3.3 - /chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@4.0.3: dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - dev: false + readdirp: 4.1.2 - /chrome-launcher@0.15.2: - resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} - engines: {node: '>=12.13.0'} - hasBin: true + chrome-launcher@0.15.2: dependencies: '@types/node': 20.3.1 escape-string-regexp: 4.0.0 @@ -15954,10 +22978,8 @@ packages: lighthouse-logger: 1.4.2 transitivePeerDependencies: - supports-color - dev: false - /chromium-edge-launcher@0.2.0: - resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==} + chromium-edge-launcher@0.2.0: dependencies: '@types/node': 20.3.1 escape-string-regexp: 4.0.0 @@ -15967,280 +22989,141 @@ packages: rimraf: 3.0.2 transitivePeerDependencies: - supports-color - dev: false - /ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + ci-info@2.0.0: {} - /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} - engines: {node: '>=8'} + ci-info@3.9.0: {} - /cipher-base@1.0.4: - resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} + cipher-base@1.0.6: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - /citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} - dependencies: - consola: 3.2.3 - dev: false - - /cjs-module-lexer@1.2.2: - resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} - dev: true + cjs-module-lexer@1.4.3: {} - /class-variance-authority@0.7.0: - resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} + class-variance-authority@0.7.1: dependencies: - clsx: 2.0.0 - dev: false - - /classic-level@1.2.0: - resolution: {integrity: sha512-qw5B31ANxSluWz9xBzklRWTUAJ1SXIdaVKTVS7HcTGKOAmExx65Wo5BUICW+YGORe2FOUaDghoI9ZDxj82QcFg==} - engines: {node: '>=12'} - requiresBuild: true - dependencies: - abstract-level: 1.0.3 - catering: 2.1.1 - module-error: 1.0.2 - napi-macros: 2.0.0 - node-gyp-build: 4.6.0 - - /classnames@2.3.2: - resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} - dev: false - - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + clsx: 2.1.1 - /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} + classnames@2.5.1: {} - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: false + clean-stack@2.2.0: {} - /cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: '>= 12'} - dev: false + cli-boxes@2.2.1: {} - /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - dev: false + cli-spinners@2.9.2: {} - /clipboardy@4.0.0: - resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} - engines: {node: '>=18'} - dependencies: - execa: 8.0.1 - is-wsl: 3.1.0 - is64bit: 2.0.0 - dev: false + cli-width@4.1.0: {} - /cliui@5.0.0: - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} - dependencies: - string-width: 3.1.0 - strip-ansi: 5.2.0 - wrap-ansi: 5.1.0 - dev: false + client-only@0.0.1: {} - /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@6.0.0: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@7.0.4: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: false - /clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + clone-response@1.0.3: dependencies: mimic-response: 1.0.1 - dev: false - - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - dev: true - /clsx@2.0.0: - resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} - engines: {node: '>=6'} - dev: false - - /clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} - engines: {node: '>=6'} - dev: false + clsx@1.2.1: {} - /clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - dev: false + clsx@2.1.1: {} - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: true + co@4.6.0: {} - /collect-v8-coverage@1.0.1: - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} - dev: true + collect-v8-coverage@1.0.2: {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} - requiresBuild: true + color-string@1.9.1: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 - dev: false - optional: true - /color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} - requiresBuild: true + color@4.2.3: dependencies: color-convert: 2.0.1 color-string: 1.9.1 - dev: false - optional: true - /colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - dev: true + colord@2.9.3: {} - /colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - dev: true + colorette@1.4.0: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - dev: true + colorette@2.0.20: {} - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - /command-exists@1.2.9: - resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + comlink@4.4.2: {} - /command-line-args@5.2.1: - resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} - engines: {node: '>=4.0.0'} + command-exists@1.2.9: {} + + command-line-args@5.2.1: dependencies: array-back: 3.1.0 find-replace: 3.0.0 lodash.camelcase: 4.3.0 typical: 4.0.0 - dev: true - /command-line-usage@6.1.3: - resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} - engines: {node: '>=8.0.0'} + command-line-usage@6.1.3: dependencies: array-back: 4.0.2 chalk: 2.4.2 table-layout: 1.0.2 typical: 5.2.0 - dev: true - /commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} - engines: {node: '>=18'} - dev: false + commander@12.1.0: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@13.1.0: {} - /commander@3.0.2: - resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==} + commander@2.20.3: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + commander@4.1.1: {} - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - dev: true + commander@7.2.0: {} - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - dev: false + commander@8.3.0: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - dev: false + commondir@1.0.1: {} - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + concat-map@0.0.1: {} - /concat-with-sourcemaps@1.1.0: - resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + concat-with-sourcemaps@1.1.0: dependencies: source-map: 0.6.1 - dev: true - /confbox@0.1.7: - resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} - dev: false - - /connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} + connect@3.7.0: dependencies: debug: 2.6.9 finalhandler: 1.1.2 @@ -16248,134 +23131,73 @@ packages: utils-merge: 1.0.1 transitivePeerDependencies: - supports-color - dev: false - - /consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} - dev: false - - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - /cookie-es@1.2.2: - resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} - dev: false - /cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} + convert-source-map@1.9.0: {} - /copy-to-clipboard@3.3.3: - resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} - dependencies: - toggle-selection: 1.0.6 - dev: false + convert-source-map@2.0.0: {} - /core-js-compat@3.28.0: - resolution: {integrity: sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==} - dependencies: - browserslist: 4.24.4 - dev: false + cookie-es@1.2.2: {} - /core-js-compat@3.35.1: - resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==} - dependencies: - browserslist: 4.24.4 - dev: false + cookie@0.4.2: {} - /core-js-compat@3.40.0: - resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==} + core-js-compat@3.42.0: dependencies: - browserslist: 4.24.4 - dev: false + browserslist: 4.24.5 - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - dev: false + core-util-is@1.0.3: {} - /cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} + cosmiconfig@5.2.1: dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 js-yaml: 3.14.1 parse-json: 4.0.0 - dev: false - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 + import-fresh: 3.3.1 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 - dev: false - /cosmjs-types@0.9.0: - resolution: {integrity: sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ==} + cosmjs-types@0.9.0: {} - /crc-32@1.2.2: - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} - engines: {node: '>=0.8'} - hasBin: true + crc-32@1.2.2: {} - /crc@3.8.0: - resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==} + crc@3.8.0: dependencies: buffer: 5.7.1 - dev: false - /create-ecdh@4.0.4: - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + create-ecdh@4.0.4: dependencies: - bn.js: 4.12.0 + bn.js: 4.12.2 elliptic: 6.6.1 - dev: false - - /create-hash@1.1.3: - resolution: {integrity: sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==} - dependencies: - cipher-base: 1.0.4 - inherits: 2.0.4 - ripemd160: 2.0.2 - sha.js: 2.4.11 - /create-hash@1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + create-hash@1.2.0: dependencies: - cipher-base: 1.0.4 + cipher-base: 1.0.6 inherits: 2.0.4 md5.js: 1.3.5 ripemd160: 2.0.2 sha.js: 2.4.11 - /create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + create-hmac@1.1.7: dependencies: - cipher-base: 1.0.4 + cipher-base: 1.0.6 create-hash: 1.2.0 inherits: 2.0.4 ripemd160: 2.0.2 safe-buffer: 5.2.1 sha.js: 2.4.11 - /create-jest@29.7.0(@types/node@18.18.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.18.2) + jest-config: 29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -16383,47 +23205,47 @@ packages: - babel-plugin-macros - supports-color - ts-node - dev: true - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true + create-jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /cross-fetch@3.1.5: - resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} + create-require@1.1.1: {} + + cross-fetch@3.2.0(encoding@0.1.13): dependencies: - node-fetch: 2.6.7 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - dev: false - /cross-fetch@4.0.0: - resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} + cross-fetch@4.1.0(encoding@0.1.13): dependencies: node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - dev: false - /cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - /crossws@0.2.4: - resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==} - peerDependencies: - uWebSockets.js: '*' - peerDependenciesMeta: - uWebSockets.js: - optional: true - dev: false + crossws@0.3.5: + dependencies: + uncrypto: 0.1.3 - /crypto-browserify@3.12.0: - resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} + crypto-browserify@3.12.1: dependencies: browserify-cipher: 1.0.1 browserify-sign: 4.2.3 @@ -16431,602 +23253,344 @@ packages: create-hash: 1.2.0 create-hmac: 1.1.7 diffie-hellman: 5.0.3 + hash-base: 3.0.5 inherits: 2.0.4 - pbkdf2: 3.1.3 + pbkdf2: 3.1.2 public-encrypt: 4.0.3 randombytes: 2.1.0 randomfill: 1.0.4 - dev: false - /crypto-hash@1.3.0: - resolution: {integrity: sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg==} - engines: {node: '>=8'} - dev: false + crypto-hash@1.3.0: {} - /crypto-js@4.2.0: - resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} - dev: false + crypto-js@4.2.0: {} - /css-box-model@1.2.1: - resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} + css-box-model@1.2.1: dependencies: - tiny-invariant: 1.3.1 - dev: false + tiny-invariant: 1.3.3 - /css-declaration-sorter@6.4.1(postcss@8.4.38): - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 + css-declaration-sorter@6.4.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + css-select@4.3.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 4.3.1 domutils: 2.8.0 nth-check: 2.1.1 - dev: true - - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 - dev: true - - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - dev: true - - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - /cssnano-preset-default@5.2.14(postcss@8.4.38): - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.38) - cssnano-utils: 3.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-calc: 8.2.4(postcss@8.4.38) - postcss-colormin: 5.3.1(postcss@8.4.38) - postcss-convert-values: 5.1.3(postcss@8.4.38) - postcss-discard-comments: 5.1.2(postcss@8.4.38) - postcss-discard-duplicates: 5.1.0(postcss@8.4.38) - postcss-discard-empty: 5.1.1(postcss@8.4.38) - postcss-discard-overridden: 5.1.0(postcss@8.4.38) - postcss-merge-longhand: 5.1.7(postcss@8.4.38) - postcss-merge-rules: 5.1.4(postcss@8.4.38) - postcss-minify-font-values: 5.1.0(postcss@8.4.38) - postcss-minify-gradients: 5.1.1(postcss@8.4.38) - postcss-minify-params: 5.1.4(postcss@8.4.38) - postcss-minify-selectors: 5.2.1(postcss@8.4.38) - postcss-normalize-charset: 5.1.0(postcss@8.4.38) - postcss-normalize-display-values: 5.1.0(postcss@8.4.38) - postcss-normalize-positions: 5.1.1(postcss@8.4.38) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38) - postcss-normalize-string: 5.1.0(postcss@8.4.38) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38) - postcss-normalize-unicode: 5.1.1(postcss@8.4.38) - postcss-normalize-url: 5.1.0(postcss@8.4.38) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.38) - postcss-ordered-values: 5.1.3(postcss@8.4.38) - postcss-reduce-initial: 5.1.2(postcss@8.4.38) - postcss-reduce-transforms: 5.1.0(postcss@8.4.38) - postcss-svgo: 5.1.0(postcss@8.4.38) - postcss-unique-selectors: 5.1.1(postcss@8.4.38) - dev: true - - /cssnano-utils@3.1.0(postcss@8.4.38): - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.38 - dev: true - - /cssnano@5.1.15(postcss@8.4.38): - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + + css-tree@1.1.3: dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.38) + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@6.1.0: {} + + cssesc@3.0.0: {} + + cssnano-preset-default@5.2.14(postcss@8.5.3): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.5.3) + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 + postcss-calc: 8.2.4(postcss@8.5.3) + postcss-colormin: 5.3.1(postcss@8.5.3) + postcss-convert-values: 5.1.3(postcss@8.5.3) + postcss-discard-comments: 5.1.2(postcss@8.5.3) + postcss-discard-duplicates: 5.1.0(postcss@8.5.3) + postcss-discard-empty: 5.1.1(postcss@8.5.3) + postcss-discard-overridden: 5.1.0(postcss@8.5.3) + postcss-merge-longhand: 5.1.7(postcss@8.5.3) + postcss-merge-rules: 5.1.4(postcss@8.5.3) + postcss-minify-font-values: 5.1.0(postcss@8.5.3) + postcss-minify-gradients: 5.1.1(postcss@8.5.3) + postcss-minify-params: 5.1.4(postcss@8.5.3) + postcss-minify-selectors: 5.2.1(postcss@8.5.3) + postcss-normalize-charset: 5.1.0(postcss@8.5.3) + postcss-normalize-display-values: 5.1.0(postcss@8.5.3) + postcss-normalize-positions: 5.1.1(postcss@8.5.3) + postcss-normalize-repeat-style: 5.1.1(postcss@8.5.3) + postcss-normalize-string: 5.1.0(postcss@8.5.3) + postcss-normalize-timing-functions: 5.1.0(postcss@8.5.3) + postcss-normalize-unicode: 5.1.1(postcss@8.5.3) + postcss-normalize-url: 5.1.0(postcss@8.5.3) + postcss-normalize-whitespace: 5.1.1(postcss@8.5.3) + postcss-ordered-values: 5.1.3(postcss@8.5.3) + postcss-reduce-initial: 5.1.2(postcss@8.5.3) + postcss-reduce-transforms: 5.1.0(postcss@8.5.3) + postcss-svgo: 5.1.0(postcss@8.5.3) + postcss-unique-selectors: 5.1.1(postcss@8.5.3) + + cssnano-utils@3.1.0(postcss@8.5.3): + dependencies: + postcss: 8.5.3 + + cssnano@5.1.15(postcss@8.5.3): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.5.3) lilconfig: 2.1.0 - postcss: 8.4.38 + postcss: 8.5.3 yaml: 1.10.2 - dev: true - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + csso@4.2.0: dependencies: css-tree: 1.1.3 - dev: true - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - dev: true + cssom@0.3.8: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true + cssom@0.5.0: {} - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + cssstyle@2.3.0: dependencies: cssom: 0.3.8 - dev: true - - /csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} - - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - - /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - dev: true - - /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - dev: true - - /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - dev: true - /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - dev: true + csstype@3.1.3: {} - /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + damerau-levenshtein@1.0.8: {} - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + data-urls@3.0.2: dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - dev: true - /data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + data-view-buffer@1.0.2: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 + is-data-view: 1.0.2 - /data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + data-view-byte-length@1.0.2: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 + is-data-view: 1.0.2 - /data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.1: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 + is-data-view: 1.0.2 - /dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - dev: true + dataloader@1.4.0: {} - /dataloader@2.2.3: - resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==} - dev: false + dataloader@2.2.3: {} - /dateformat@4.6.3: - resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} - dev: true + date-fns@2.30.0: + dependencies: + '@babel/runtime': 7.27.3 - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + dateformat@4.6.3: {} + + dayjs@1.11.13: {} + + debug@2.6.9: dependencies: ms: 2.0.0 - dev: false - /debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.2.7: dependencies: ms: 2.1.3 - /debug@4.3.4(supports-color@8.1.1): - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.7: dependencies: - ms: 2.1.2 - supports-color: 8.1.1 + ms: 2.1.3 - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + debug@4.4.1(supports-color@8.1.1): dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - dev: true + ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + decamelize@1.2.0: {} - /decamelize@4.0.0: - resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} - engines: {node: '>=10'} + decamelize@4.0.0: {} - /decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} - dev: false + decimal.js-light@2.5.1: {} - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + decimal.js@10.5.0: {} - /decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} - dev: false + decode-uri-component@0.2.2: {} - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 - dev: false - - /dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - dev: true - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: true - - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - /deepmerge@4.3.0: - resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} - engines: {node: '>=0.10.0'} - dev: true + dedent@1.6.0(babel-plugin-macros@3.1.0): + optionalDependencies: + babel-plugin-macros: 3.1.0 - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 + deep-extend@0.6.0: {} - /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} - dependencies: - bundle-name: 3.0.0 - default-browser-id: 3.0.0 - execa: 7.1.1 - titleize: 3.0.0 + deep-is@0.1.4: {} - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - dependencies: - clone: 1.0.4 - dev: true + deepmerge@4.3.1: {} - /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dev: false + defer-to-connect@2.0.1: {} - /define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + define-data-property@1.1.4: dependencies: es-define-property: 1.0.1 es-errors: 1.3.0 gopd: 1.2.0 - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - /defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - dev: false + defu@6.1.4: {} - /delay@5.0.0: - resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} - engines: {node: '>=10'} + delay@5.0.0: {} - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + delayed-stream@1.0.0: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + depd@2.0.0: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + derive-valtio@0.1.0(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0)): + dependencies: + valtio: 1.13.2(@types/react@18.2.14)(react@18.2.0) - /des.js@1.1.0: - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + derive-valtio@0.1.0(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1)): + dependencies: + valtio: 1.13.2(@types/react@18.3.23)(react@18.3.1) + + des.js@1.1.0: dependencies: inherits: 2.0.4 minimalistic-assert: 1.0.1 - dev: false - - /destr@2.0.3: - resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} - dev: false - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: false + destr@2.0.5: {} - /detect-browser@5.2.0: - resolution: {integrity: sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA==} - dev: false + destroy@1.2.0: {} - /detect-browser@5.3.0: - resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} - dev: false + detect-browser@5.3.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true + detect-europe-js@0.1.2: {} - /detect-libc@1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} - hasBin: true - dev: false + detect-indent@6.1.0: {} - /detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} - engines: {node: '>=8'} - requiresBuild: true - dev: false + detect-libc@2.0.4: optional: true - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - dev: true + detect-newline@3.1.0: {} - /detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - dev: false + detect-node-es@1.1.0: {} - /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + didyoumean@1.2.2: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + diff-sequences@29.6.3: {} - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true + diff@4.0.2: {} - /diff@5.0.0: - resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} - engines: {node: '>=0.3.1'} + diff@5.2.0: {} - /diffie-hellman@5.0.3: - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + diffie-hellman@5.0.3: dependencies: - bn.js: 4.12.0 + bn.js: 4.12.2 miller-rabin: 4.0.1 randombytes: 2.1.0 - dev: false - /dijkstrajs@1.0.3: - resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} - dev: false + dijkstrajs@1.0.3: {} - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dlv@1.1.3: {} - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + doctrine@2.1.0: dependencies: esutils: 2.0.3 - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + doctrine@3.0.0: dependencies: esutils: 2.0.3 - /dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dom-helpers@5.2.1: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 csstype: 3.1.3 - dev: false - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dev: true - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: true + domelementtype@2.3.0: {} - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead + domexception@4.0.0: dependencies: webidl-conversions: 7.0.0 - dev: true - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + domhandler@4.3.1: dependencies: domelementtype: 2.3.0 - dev: true - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - dev: true - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dot-case@3.0.4: dependencies: no-case: 3.0.4 tslib: 2.8.1 - dev: false - /dotenv@14.3.2: - resolution: {integrity: sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==} - engines: {node: '>=12'} - dev: false + dotenv@14.3.2: {} - /dotenv@16.0.3: - resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} - engines: {node: '>=12'} + dotenv@16.5.0: {} - /dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} - dev: true + dotenv@8.6.0: {} - /draggabilly@3.0.0: - resolution: {integrity: sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ==} + draggabilly@3.0.0: dependencies: get-size: 3.0.0 unidragger: 3.0.1 - dev: false - /dunder-proto@1.0.1: - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} - engines: {node: '>= 0.4'} + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 es-errors: 1.3.0 gopd: 1.2.0 - /duplexify@4.1.3: - resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} + duplexify@4.1.3: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 3.6.2 stream-shift: 1.0.3 - dev: false - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + eastasianwidth@0.2.0: {} - /ecpair@2.1.0: - resolution: {integrity: sha512-cL/mh3MtJutFOvFc27GPZE2pWL3a3k4YvzUWEOvilnfZVlH3Jwgx/7d6tlD7/75tNk8TG2m+7Kgtz0SI1tWcqw==} - engines: {node: '>=8.0.0'} + eciesjs@0.4.15: + dependencies: + '@ecies/ciphers': 0.2.3(@noble/ciphers@1.3.0) + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + + ecpair@2.1.0: dependencies: randombytes: 2.1.0 typeforce: 1.18.0 wif: 2.0.6 - dev: false - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - dev: false + ee-first@1.1.1: {} - /ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true + ejs@3.1.10: dependencies: jake: 10.9.2 - dev: true - /electron-to-chromium@1.4.650: - resolution: {integrity: sha512-sYSQhJCJa4aGA1wYol5cMQgekDBlbVfTRavlGZVr3WZpDdOPcp6a6xUnFfrt8TqZhsBYYbDxJZCjGfHuGupCRQ==} - dev: true + electron-to-chromium@1.5.160: {} - /electron-to-chromium@1.5.102: - resolution: {integrity: sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==} - - /elliptic@6.6.1: - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} + elliptic@6.6.1: dependencies: - bn.js: 4.12.0 + bn.js: 4.12.2 brorand: 1.1.0 hash.js: 1.1.7 hmac-drbg: 1.0.1 @@ -17034,741 +23598,439 @@ packages: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} - dev: true + emittery@0.13.1: {} - /emoji-regex@7.0.3: - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} - dev: false + emoji-regex@8.0.0: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + emoji-regex@9.2.2: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + encode-utf8@1.0.3: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - dev: false + encodeurl@1.0.2: {} - /encoding@0.1.12: - resolution: {integrity: sha512-bl1LAgiQc4ZWr++pNYUdRe/alecaHFeHxIJ/pNciqGdKXghaTCOwKkbKp6ye7pKZGu/GcaSXFk8PBVhgs+dJdA==} + encodeurl@2.0.0: {} + + encoding@0.1.12: dependencies: iconv-lite: 0.4.24 - dev: false - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - /engine.io-client@6.5.4: - resolution: {integrity: sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==} + engine.io-client@6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.7 engine.io-parser: 5.2.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - xmlhttprequest-ssl: 2.0.0 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + xmlhttprequest-ssl: 2.1.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: false - - /engine.io-parser@5.2.3: - resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} - engines: {node: '>=10.0.0'} - dev: false - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} - dependencies: - ansi-colors: 4.1.3 - dev: false + engine.io-parser@5.2.3: {} - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true + entities@2.2.0: {} - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - dev: true + entities@4.5.0: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} + entities@6.0.0: {} - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + env-paths@2.2.1: {} + + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + error-stack-parser@2.1.4: dependencies: stackframe: 1.3.4 - dev: false - /es-abstract@1.23.2: - resolution: {integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==} - engines: {node: '>= 0.4'} + es-abstract@1.23.10: dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.3 - gopd: 1.0.1 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 + has-proto: 1.2.0 + has-symbols: 1.1.0 hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.1 + is-data-view: 1.0.2 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.2 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 - - /es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - dependencies: - get-intrinsic: 1.3.0 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 - /es-define-property@1.0.1: - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} - engines: {node: '>= 0.4'} + es-define-property@1.0.1: {} - /es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + es-errors@1.3.0: {} - /es-iterator-helpers@1.0.18: - resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} - engines: {node: '>= 0.4'} + es-iterator-helpers@1.2.1: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 - es-set-tostringtag: 2.0.3 + es-set-tostringtag: 2.1.0 function-bind: 1.1.2 - get-intrinsic: 1.2.4 - globalthis: 1.0.3 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - internal-slot: 1.0.7 - iterator.prototype: 1.1.2 - safe-array-concat: 1.1.2 - - /es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - dependencies: - es-errors: 1.3.0 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + safe-array-concat: 1.1.3 - /es-object-atoms@1.1.1: - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} - engines: {node: '>= 0.4'} + es-object-atoms@1.1.1: dependencies: es-errors: 1.3.0 - /es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + es-set-tostringtag@2.1.0: dependencies: - get-intrinsic: 1.2.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 hasown: 2.0.2 - /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.1.0: dependencies: hasown: 2.0.2 - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + es-to-primitive@1.3.0: dependencies: is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 + is-date-object: 1.1.0 + is-symbol: 1.1.1 - /es6-promise@4.2.8: - resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + es-toolkit@1.33.0: {} - /es6-promisify@5.0.0: - resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} + es6-promise@4.2.8: {} + + es6-promisify@5.0.0: dependencies: es6-promise: 4.2.8 - /esbuild@0.17.18: - resolution: {integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.18.20: optionalDependencies: - '@esbuild/android-arm': 0.17.18 - '@esbuild/android-arm64': 0.17.18 - '@esbuild/android-x64': 0.17.18 - '@esbuild/darwin-arm64': 0.17.18 - '@esbuild/darwin-x64': 0.17.18 - '@esbuild/freebsd-arm64': 0.17.18 - '@esbuild/freebsd-x64': 0.17.18 - '@esbuild/linux-arm': 0.17.18 - '@esbuild/linux-arm64': 0.17.18 - '@esbuild/linux-ia32': 0.17.18 - '@esbuild/linux-loong64': 0.17.18 - '@esbuild/linux-mips64el': 0.17.18 - '@esbuild/linux-ppc64': 0.17.18 - '@esbuild/linux-riscv64': 0.17.18 - '@esbuild/linux-s390x': 0.17.18 - '@esbuild/linux-x64': 0.17.18 - '@esbuild/netbsd-x64': 0.17.18 - '@esbuild/openbsd-x64': 0.17.18 - '@esbuild/sunos-x64': 0.17.18 - '@esbuild/win32-arm64': 0.17.18 - '@esbuild/win32-ia32': 0.17.18 - '@esbuild/win32-x64': 0.17.18 - dev: true - - /escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} - - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - dev: false - - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} - - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + + escalade@3.2.0: {} + + escape-html@1.0.3: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@2.0.0: {} + + escape-string-regexp@4.0.0: {} + + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 esutils: 2.0.3 optionalDependencies: source-map: 0.6.1 - dev: true - - /eslint-config-next@14.2.25(eslint@8.43.0)(typescript@5.4.3): - resolution: {integrity: sha512-BwuRQJeqw4xP/fkul/WWjivwbaLs8AjvuMzQCC+nJI65ZVhnVolWs6tk5VSD92xPHu96gSTahfaSkQjIRtJ3ag==} - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@next/eslint-plugin-next': 14.2.25 - '@rushstack/eslint-patch': 1.9.0 - '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.43.0)(typescript@5.4.3) - '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.4.3) - eslint: 8.43.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.43.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.43.0) - eslint-plugin-react: 7.34.1(eslint@8.43.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.43.0) - typescript: 5.4.3 - transitivePeerDependencies: - - eslint-import-resolver-webpack - - supports-color - dev: true - /eslint-config-next@14.2.25(eslint@8.56.0)(typescript@5.1.3): - resolution: {integrity: sha512-BwuRQJeqw4xP/fkul/WWjivwbaLs8AjvuMzQCC+nJI65ZVhnVolWs6tk5VSD92xPHu96gSTahfaSkQjIRtJ3ag==} - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' - peerDependenciesMeta: - typescript: - optional: true + eslint-config-next@14.2.25(eslint@8.56.0)(typescript@5.1.3): dependencies: '@next/eslint-plugin-next': 14.2.25 - '@rushstack/eslint-patch': 1.9.0 - '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.1.3) - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.1.3) + '@rushstack/eslint-patch': 1.11.0 + '@typescript-eslint/eslint-plugin': 8.33.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint@8.56.0)(typescript@5.1.3) + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.1.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.56.0) - eslint-plugin-react: 7.34.1(eslint@8.56.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + eslint-plugin-jsx-a11y: 6.10.2(eslint@8.56.0) + eslint-plugin-react: 7.37.5(eslint@8.56.0) + eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.56.0) + optionalDependencies: typescript: 5.1.3 transitivePeerDependencies: - eslint-import-resolver-webpack + - eslint-plugin-import-x - supports-color - dev: false - /eslint-config-next@14.2.25(eslint@8.56.0)(typescript@5.4.3): - resolution: {integrity: sha512-BwuRQJeqw4xP/fkul/WWjivwbaLs8AjvuMzQCC+nJI65ZVhnVolWs6tk5VSD92xPHu96gSTahfaSkQjIRtJ3ag==} - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' - peerDependenciesMeta: - typescript: - optional: true + eslint-config-next@14.2.25(eslint@8.56.0)(typescript@5.4.3): dependencies: '@next/eslint-plugin-next': 14.2.25 - '@rushstack/eslint-patch': 1.9.0 - '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.4.3) - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.4.3) + '@rushstack/eslint-patch': 1.11.0 + '@typescript-eslint/eslint-plugin': 8.33.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.56.0) - eslint-plugin-react: 7.34.1(eslint@8.56.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + eslint-plugin-jsx-a11y: 6.10.2(eslint@8.56.0) + eslint-plugin-react: 7.37.5(eslint@8.56.0) + eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.56.0) + optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - eslint-import-resolver-webpack + - eslint-plugin-import-x - supports-color - dev: false - /eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 - is-core-module: 2.13.1 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.43.0): - resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - dependencies: - debug: 4.3.4(supports-color@8.1.1) - enhanced-resolve: 5.15.0 - eslint: 8.43.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - get-tsconfig: 4.8.1 - globby: 13.2.2 - is-core-module: 2.13.1 - is-glob: 4.0.3 - synckit: 0.8.5 + is-core-module: 2.16.1 + resolve: 1.22.10 transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - supports-color - /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): - resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@8.1.1) - enhanced-resolve: 5.15.0 + '@nolyfill/is-core-module': 1.0.39 + debug: 4.4.1(supports-color@8.1.1) eslint: 8.56.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.56.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) - get-tsconfig: 4.8.1 - globby: 13.2.2 - is-core-module: 2.13.1 - is-glob: 4.0.3 - synckit: 0.8.5 + get-tsconfig: 4.10.1 + is-bun-module: 2.0.0 + stable-hash: 0.0.5 + tinyglobby: 0.2.14 + unrs-resolver: 1.7.6 + optionalDependencies: + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - supports-color - dev: false - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0): - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.4.3) debug: 3.2.7 - eslint: 8.43.0 + optionalDependencies: + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.1.3) + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.43.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) transitivePeerDependencies: - supports-color - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.56.0): - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.4.3) debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) transitivePeerDependencies: - supports-color - dev: false - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0): - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.4.3) + '@rtsao/scc': 1.1.0 array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.43.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.43.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) hasown: 2.0.2 - is-core-module: 2.13.1 + is-core-module: 2.16.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.8 object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 7.5.4 + object.values: 1.2.1 + semver: 7.7.2 + string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.1.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.43.0): - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): dependencies: - '@babel/runtime': 7.26.10 - aria-query: 5.3.0 + '@rtsao/scc': 1.1.0 array-includes: 3.1.8 - array.prototype.flatmap: 1.3.2 - ast-types-flow: 0.0.7 - axe-core: 4.7.2 - axobject-query: 3.2.1 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 8.43.0 - has: 1.0.3 - jsx-ast-utils: 3.3.4 - language-tags: 1.0.5 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 minimatch: 3.1.2 - object.entries: 1.1.8 object.fromentries: 2.0.8 - semver: 7.5.4 - dev: true + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 7.7.2 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0): - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.10.2(eslint@8.56.0): dependencies: - '@babel/runtime': 7.26.10 - aria-query: 5.3.0 + aria-query: 5.3.2 array-includes: 3.1.8 - array.prototype.flatmap: 1.3.2 - ast-types-flow: 0.0.7 - axe-core: 4.7.2 - axobject-query: 3.2.1 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.10.3 + axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 eslint: 8.56.0 - has: 1.0.3 - jsx-ast-utils: 3.3.4 - language-tags: 1.0.5 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 minimatch: 3.1.2 - object.entries: 1.1.8 object.fromentries: 2.0.8 - semver: 7.5.4 - dev: false + safe-regex-test: 1.1.0 + string.prototype.includes: 2.0.1 - /eslint-plugin-react-hooks@4.6.0(eslint@8.43.0): - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dependencies: - eslint: 8.43.0 - dev: true - - /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.56.0): dependencies: eslint: 8.56.0 - dev: false - - /eslint-plugin-react@7.34.1(eslint@8.43.0): - resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.8 - array.prototype.findlast: 1.2.5 - array.prototype.flatmap: 1.3.2 - array.prototype.toreversed: 1.1.2 - array.prototype.tosorted: 1.1.3 - doctrine: 2.1.0 - es-iterator-helpers: 1.0.18 - eslint: 8.43.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.4 - minimatch: 3.1.2 - object.entries: 1.1.8 - object.fromentries: 2.0.8 - object.hasown: 1.1.4 - object.values: 1.2.0 - prop-types: 15.8.1 - resolve: 2.0.0-next.5 - semver: 7.5.4 - string.prototype.matchall: 4.0.11 - dev: true - /eslint-plugin-react@7.34.1(eslint@8.56.0): - resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.37.5(eslint@8.56.0): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 - array.prototype.flatmap: 1.3.2 - array.prototype.toreversed: 1.1.2 - array.prototype.tosorted: 1.1.3 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 - es-iterator-helpers: 1.0.18 + es-iterator-helpers: 1.2.1 eslint: 8.56.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.4 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.8 + object.entries: 1.1.9 object.fromentries: 2.0.8 - object.hasown: 1.1.4 - object.values: 1.2.0 + object.values: 1.2.1 prop-types: 15.8.1 resolve: 2.0.0-next.5 - semver: 7.5.4 - string.prototype.matchall: 4.0.11 - dev: false - - /eslint-scope@7.2.1: - resolution: {integrity: sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 + semver: 7.7.2 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@7.2.2: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - dev: false - /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@3.4.3: {} - /eslint@8.43.0: - resolution: {integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. - hasBin: true - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0) - '@eslint-community/regexpp': 4.5.1 - '@eslint/eslintrc': 2.1.0 - '@eslint/js': 8.43.0 - '@humanwhocodes/config-array': 0.11.10 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.3.4(supports-color@8.1.1) - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.1 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.20.0 - graphemer: 1.4.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color + eslint-visitor-keys@4.2.0: {} - /eslint@8.56.0: - resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. - hasBin: true + eslint@8.56.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) '@eslint-community/regexpp': 4.12.1 '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.56.0 '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.1 + '@ungap/structured-clone': 1.3.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - esquery: 1.5.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.20.0 + globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -17778,139 +24040,110 @@ packages: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: false - /esm@3.2.25: - resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} - engines: {node: '>=6'} - dev: false + esm@3.2.25: {} - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@9.6.1: dependencies: - acorn: 8.12.1 - acorn-jsx: 5.3.2(acorn@8.12.1) + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) eslint-visitor-keys: 3.4.3 - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + esprima@4.0.1: {} - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + esquery@1.6.0: dependencies: estraverse: 5.3.0 - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + estraverse@5.3.0: {} - /estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - dev: true + estree-walker@0.6.1: {} - /estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - dev: true + estree-walker@1.0.1: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true + estree-walker@2.0.2: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + esutils@2.0.3: {} - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - dev: false + etag@1.8.1: {} + + eth-block-tracker@7.1.0: + dependencies: + '@metamask/eth-json-rpc-provider': 1.0.1 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 5.0.2 + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + + eth-json-rpc-filters@6.0.1: + dependencies: + '@metamask/safe-event-emitter': 3.1.2 + async-mutex: 0.2.6 + eth-query: 2.1.2 + json-rpc-engine: 6.1.0 + pify: 5.0.0 + + eth-query@2.1.2: + dependencies: + json-rpc-random-id: 1.0.1 + xtend: 4.0.2 - /eth-rpc-errors@4.0.3: - resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==} + eth-rpc-errors@4.0.3: dependencies: fast-safe-stringify: 2.1.1 - dev: false - /ethereum-cryptography@0.1.3: - resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} + ethereum-cryptography@0.1.3: dependencies: - '@types/pbkdf2': 3.1.0 - '@types/secp256k1': 4.0.3 + '@types/pbkdf2': 3.1.2 + '@types/secp256k1': 4.0.6 blakejs: 1.2.1 browserify-aes: 1.2.0 bs58check: 2.1.2 create-hash: 1.2.0 create-hmac: 1.1.7 hash.js: 1.1.7 - keccak: 3.0.3 - pbkdf2: 3.1.3 + keccak: 3.0.4 + pbkdf2: 3.1.2 randombytes: 2.1.0 safe-buffer: 5.2.1 scrypt-js: 3.0.1 secp256k1: 5.0.1 setimmediate: 1.0.5 - /ethereum-cryptography@1.2.0: - resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==} + ethereum-cryptography@1.2.0: dependencies: '@noble/hashes': 1.2.0 '@noble/secp256k1': 1.7.1 '@scure/bip32': 1.1.5 '@scure/bip39': 1.1.1 - /ethereum-cryptography@2.2.1: - resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + ethereum-cryptography@2.2.1: dependencies: '@noble/curves': 1.4.2 '@noble/hashes': 1.4.0 '@scure/bip32': 1.4.0 '@scure/bip39': 1.3.0 - dev: false - - /ethereumjs-abi@0.6.8: - resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==} - dependencies: - bn.js: 4.12.0 - ethereumjs-util: 6.2.1 - - /ethereumjs-util@6.2.1: - resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==} - dependencies: - '@types/bn.js': 4.11.6 - bn.js: 4.12.0 - create-hash: 1.2.0 - elliptic: 6.6.1 - ethereum-cryptography: 0.1.3 - ethjs-util: 0.1.6 - rlp: 2.2.7 - /ethereumjs-util@7.1.5: - resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} - engines: {node: '>=10.0.0'} + ethereumjs-util@7.1.5: dependencies: - '@types/bn.js': 5.1.2 - bn.js: 5.2.1 + '@types/bn.js': 5.1.6 + bn.js: 5.2.2 create-hash: 1.2.0 ethereum-cryptography: 0.1.3 rlp: 2.2.7 - /ethers@5.7.2: - resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + ethers@5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/abstract-provider': 5.7.0 @@ -17930,7 +24163,7 @@ packages: '@ethersproject/networks': 5.7.1 '@ethersproject/pbkdf2': 5.7.0 '@ethersproject/properties': 5.7.0 - '@ethersproject/providers': 5.7.2 + '@ethersproject/providers': 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@ethersproject/random': 5.7.0 '@ethersproject/rlp': 5.7.0 '@ethersproject/sha2': 5.7.0 @@ -17946,24 +24179,20 @@ packages: - bufferutil - utf-8-validate - /ethers@6.10.0: - resolution: {integrity: sha512-nMNwYHzs6V1FR3Y4cdfxSQmNgZsRj1RiTU25JwvnJLmyzw9z3SKxNc2XKDuiXXo/v9ds5Mp9m6HBabgYQQ26tA==} - engines: {node: '>=14.0.0'} + ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@adraffy/ens-normalize': 1.10.0 + '@adraffy/ens-normalize': 1.10.1 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 - '@types/node': 18.15.13 + '@types/node': 22.7.5 aes-js: 4.0.0-beta.5 - tslib: 2.4.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + tslib: 2.7.0 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - /ethers@6.13.5: - resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==} - engines: {node: '>=14.0.0'} + ethers@6.14.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@adraffy/ens-normalize': 1.10.1 '@noble/curves': 1.2.0 @@ -17971,46 +24200,29 @@ packages: '@types/node': 22.7.5 aes-js: 4.0.0-beta.5 tslib: 2.7.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - dev: false - /ethjs-util@0.1.6: - resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==} - engines: {node: '>=6.5.0', npm: '>=3'} - dependencies: - is-hex-prefixed: 1.0.0 - strip-hex-prefix: 1.0.0 + ev-emitter@2.1.2: {} - /ev-emitter@2.1.2: - resolution: {integrity: sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q==} - dev: false + event-target-shim@5.0.1: {} - /event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} + eventemitter2@6.4.9: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + eventemitter3@4.0.7: {} - /eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + eventemitter3@5.0.1: {} - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + events@3.3.0: {} - /evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + evp_bytestokey@1.0.3: dependencies: md5.js: 1.3.5 safe-buffer: 5.2.1 - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@5.1.1: dependencies: cross-spawn: 7.0.6 get-stream: 6.0.1 @@ -18022,176 +24234,97 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa@7.1.1: - resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - dependencies: - cross-spawn: 7.0.6 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} - dependencies: - cross-spawn: 7.0.6 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - dev: false - - /exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} - dev: false + exenv@1.2.2: {} - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} - dev: true + exit@0.1.2: {} - /expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@29.7.0: dependencies: '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 jest-util: 29.7.0 - dev: true - /exponential-backoff@3.1.2: - resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==} - dev: false + exponential-backoff@3.1.2: {} - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: true + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + extension-port-stream@3.0.0: + dependencies: + readable-stream: 4.7.0 + webextension-polyfill: 0.10.0 + + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - /eyes@0.1.8: - resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} - engines: {node: '> 0.1.90'} - - /fast-copy@3.0.2: - resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} - dev: true + eyes@0.1.8: {} - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-copy@3.0.2: {} - /fast-glob@3.3.0: - resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 + fast-deep-equal@3.1.3: {} - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 + micromatch: 4.0.8 - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + fast-json-stable-stringify@2.1.0: {} - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + fast-levenshtein@2.0.6: {} - /fast-redact@3.5.0: - resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} - engines: {node: '>=6'} - dev: false + fast-redact@3.5.0: {} - /fast-safe-stringify@2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + fast-safe-stringify@2.1.1: {} - /fast-stable-stringify@1.0.0: - resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==} + fast-stable-stringify@1.0.0: {} - /fastestsmallesttextencoderdecoder@1.0.22: - resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} - dev: false + fastestsmallesttextencoderdecoder@1.0.22: {} - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + fastq@1.19.1: dependencies: - reusify: 1.0.4 + reusify: 1.1.0 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 - /fetch@1.1.0: - resolution: {integrity: sha512-5O8TwrGzoNblBG/jtK4NFuZwNCkZX6s5GfRNOaGtm+QGJEuNakSC/i2RW0R93KX6E0jVjNXm6O3CRN4Ql3K+yA==} + fdir@6.4.5(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fetch@1.1.0: dependencies: biskviit: 1.0.1 encoding: 0.1.12 - dev: false - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - dev: false - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@6.0.1: dependencies: - flat-cache: 3.0.4 + flat-cache: 3.2.0 - /file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + file-uri-to-path@1.0.0: {} - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: - minimatch: 5.0.1 - dev: true + minimatch: 5.1.6 - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - /filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - dev: false + filter-obj@1.1.0: {} - /finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} - engines: {node: '>= 0.8'} + finalhandler@1.1.2: dependencies: debug: 2.6.9 encodeurl: 1.0.2 @@ -18202,216 +24335,125 @@ packages: unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: false - /find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - dev: false - /find-replace@3.0.0: - resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} - engines: {node: '>=4.0.0'} + find-replace@3.0.0: dependencies: array-back: 3.1.0 - dev: true - - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - dev: false - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - dependencies: - locate-path: 2.0.0 + find-root@1.1.0: {} - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - dev: false - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - dependencies: - micromatch: 4.0.5 - pkg-dir: 4.2.0 - dev: true - - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@3.2.0: dependencies: - flatted: 3.2.7 + flatted: 3.3.3 + keyv: 4.5.4 rimraf: 3.0.2 - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true + flat@5.0.2: {} - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + flatted@3.3.3: {} - /flow-enums-runtime@0.0.6: - resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} - dev: false + flow-enums-runtime@0.0.6: {} - /flow-parser@0.206.0: - resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} - engines: {node: '>=0.4.0'} - dev: false + flow-parser@0.272.1: {} - /follow-redirects@1.15.4(debug@4.3.4): - resolution: {integrity: sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dependencies: - debug: 4.3.4(supports-color@8.1.1) + follow-redirects@1.15.9(debug@4.4.1): + optionalDependencies: + debug: 4.4.1(supports-color@8.1.1) - /for-each@0.3.5: - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} - engines: {node: '>= 0.4'} + for-each@0.3.5: dependencies: is-callable: 1.2.7 - /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + foreground-child@3.3.1: dependencies: cross-spawn: 7.0.6 signal-exit: 4.1.0 - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - /fp-ts@1.19.3: - resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==} + form-data@4.0.2: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + mime-types: 2.1.35 - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - dev: false + fp-ts@1.19.3: {} - /fs-extra@0.30.0: - resolution: {integrity: sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 2.4.0 - klaw: 1.3.1 - path-is-absolute: 1.0.1 - rimraf: 2.7.1 + fraction.js@4.3.7: {} - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + fresh@0.5.2: {} + + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + fs.realpath@1.0.0: {} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + function-bind@1.1.2: {} - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.8: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.2 functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 - /functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + functions-have-names@1.2.3: {} - /generic-names@4.0.0: - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + generic-names@4.0.0: dependencies: loader-utils: 3.3.1 - dev: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + gensync@1.0.0-beta.2: {} - /get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 + get-caller-file@2.0.5: {} - /get-intrinsic@1.3.0: - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} - engines: {node: '>= 0.4'} + get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 @@ -18424,107 +24466,59 @@ packages: hasown: 2.0.2 math-intrinsics: 1.1.0 - /get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} - dev: false - - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + get-nonce@1.0.1: {} - /get-port-please@3.1.2: - resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} - dev: false + get-package-type@0.1.0: {} - /get-proto@1.0.1: - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} - engines: {node: '>= 0.4'} + get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - /get-size@3.0.0: - resolution: {integrity: sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw==} - dev: false + get-size@3.0.0: {} - /get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + get-stream@5.2.0: dependencies: - pump: 3.0.0 - dev: false - - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + pump: 3.0.2 - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - dev: false + get-stream@6.0.1: {} - /get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + get-symbol-description@1.1.0: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 es-errors: 1.3.0 get-intrinsic: 1.3.0 - /get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + get-tsconfig@4.10.1: dependencies: resolve-pkg-maps: 1.0.0 - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + glob@10.3.10: dependencies: - foreground-child: 3.1.1 + foreground-child: 3.3.1 jackspeak: 2.3.6 minimatch: 9.0.5 - minipass: 7.0.4 - path-scurry: 1.10.2 + minipass: 7.1.2 + path-scurry: 1.11.1 - /glob@10.3.12: - resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + glob@10.4.5: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 + foreground-child: 3.3.1 + jackspeak: 3.4.3 minimatch: 9.0.5 - minipass: 7.0.4 - path-scurry: 1.10.2 - - /glob@7.1.7: - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} - deprecated: Glob versions prior to v9 are no longer supported - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 - /glob@7.2.0: - resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} + glob@7.1.7: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -18533,9 +24527,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -18544,84 +24536,50 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} + glob@8.1.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.0.1 + minimatch: 5.1.6 once: 1.4.0 - dev: true - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + globals@11.12.0: {} - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} - engines: {node: '>=8'} + globals@13.24.0: dependencies: type-fest: 0.20.2 - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 + gopd: 1.2.0 - /globby@10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} - engines: {node: '>=8'} + globby@10.0.1: dependencies: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.2 + fast-glob: 3.3.3 glob: 7.2.3 - ignore: 5.2.4 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - dev: true - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 + fast-glob: 3.3.3 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - /globby@13.2.2: - resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 - - /google-protobuf@3.21.4: - resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==} - dev: false - - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - dependencies: - get-intrinsic: 1.2.4 + google-protobuf@3.21.4: {} - /gopd@1.2.0: - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} - engines: {node: '>= 0.4'} + gopd@1.2.0: {} - /got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + got@11.8.6: dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -18634,406 +24592,173 @@ packages: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 - dev: false - /graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - dev: false + graceful-fs@4.2.11: {} - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graphemer@1.4.0: {} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - dev: true + graphql-request@6.1.0(encoding@0.1.13)(graphql@16.11.0): + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) + cross-fetch: 3.2.0(encoding@0.1.13) + graphql: 16.11.0 + transitivePeerDependencies: + - encoding - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + graphql@16.11.0: {} - /h3@1.12.0: - resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==} + h3@1.15.3: dependencies: cookie-es: 1.2.2 - crossws: 0.2.4 + crossws: 0.3.5 defu: 6.1.4 - destr: 2.0.3 + destr: 2.0.5 iron-webcrypto: 1.2.1 - ohash: 1.1.3 + node-mock-http: 1.0.0 radix3: 1.1.2 - ufo: 1.5.4 + ufo: 1.6.1 uncrypto: 0.1.3 - unenv: 1.10.0 - transitivePeerDependencies: - - uWebSockets.js - dev: false - - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true - - /hardhat-watcher@2.5.0(hardhat@2.12.7): - resolution: {integrity: sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==} - peerDependencies: - hardhat: ^2.0.0 - dependencies: - chokidar: 3.5.3 - hardhat: 2.12.7(typescript@5.4.3) - dev: false - - /hardhat-watcher@2.5.0(hardhat@2.22.2): - resolution: {integrity: sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==} - peerDependencies: - hardhat: ^2.0.0 - dependencies: - chokidar: 3.5.3 - hardhat: 2.22.2(typescript@5.4.3) - dev: false - - /hardhat@2.12.7(typescript@5.4.3): - resolution: {integrity: sha512-voWoN6zn5d8BOEaczSyK/1PyfdeOeI3SbGCFb36yCHTJUt6OIqLb+ZDX30VhA1UsYKzLqG7UnWl3fKJUuANc6A==} - engines: {node: ^14.0.0 || ^16.0.0 || ^18.0.0} - hasBin: true - peerDependencies: - ts-node: '*' - typescript: '*' - peerDependenciesMeta: - ts-node: - optional: true - typescript: - optional: true - dependencies: - '@ethersproject/abi': 5.7.0 - '@metamask/eth-sig-util': 4.0.1 - '@nomicfoundation/ethereumjs-block': 4.0.0 - '@nomicfoundation/ethereumjs-blockchain': 6.0.0 - '@nomicfoundation/ethereumjs-common': 3.0.0 - '@nomicfoundation/ethereumjs-evm': 1.0.0 - '@nomicfoundation/ethereumjs-rlp': 4.0.0 - '@nomicfoundation/ethereumjs-statemanager': 1.0.0 - '@nomicfoundation/ethereumjs-trie': 5.0.0 - '@nomicfoundation/ethereumjs-tx': 4.0.0 - '@nomicfoundation/ethereumjs-util': 8.0.0 - '@nomicfoundation/ethereumjs-vm': 6.0.0 - '@nomicfoundation/solidity-analyzer': 0.1.0 - '@sentry/node': 5.30.0 - '@types/bn.js': 5.1.1 - '@types/lru-cache': 5.1.1 - abort-controller: 3.0.0 - adm-zip: 0.4.16 - aggregate-error: 3.1.0 - ansi-escapes: 4.3.2 - chalk: 2.4.2 - chokidar: 3.5.3 - ci-info: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - enquirer: 2.3.6 - env-paths: 2.2.1 - ethereum-cryptography: 1.2.0 - ethereumjs-abi: 0.6.8 - find-up: 2.1.0 - fp-ts: 1.19.3 - fs-extra: 7.0.1 - glob: 7.2.0 - immutable: 4.2.4 - io-ts: 1.10.4 - keccak: 3.0.3 - lodash: 4.17.21 - mnemonist: 0.38.5 - mocha: 10.2.0 - p-map: 4.0.0 - qs: 6.11.0 - raw-body: 2.5.1 - resolve: 1.17.0 - semver: 7.5.4 - solc: 0.7.3(debug@4.3.4) - source-map-support: 0.5.21 - stacktrace-parser: 0.1.10 - tsort: 0.0.1 - typescript: 5.4.3 - undici: 5.19.1 - uuid: 8.3.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - /hardhat@2.19.4(typescript@5.4.3): - resolution: {integrity: sha512-fTQJpqSt3Xo9Mn/WrdblNGAfcANM6XC3tAEi6YogB4s02DmTf93A8QsGb8uR0KR8TFcpcS8lgiW4ugAIYpnbrQ==} - hasBin: true - peerDependencies: - ts-node: '*' - typescript: '*' - peerDependenciesMeta: - ts-node: - optional: true - typescript: - optional: true + hardhat-watcher@2.5.0(hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10)): dependencies: - '@ethersproject/abi': 5.7.0 - '@metamask/eth-sig-util': 4.0.1 - '@nomicfoundation/ethereumjs-block': 5.0.2 - '@nomicfoundation/ethereumjs-blockchain': 7.0.2 - '@nomicfoundation/ethereumjs-common': 4.0.2 - '@nomicfoundation/ethereumjs-evm': 2.0.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.2 - '@nomicfoundation/ethereumjs-statemanager': 2.0.2 - '@nomicfoundation/ethereumjs-trie': 6.0.2 - '@nomicfoundation/ethereumjs-tx': 5.0.2 - '@nomicfoundation/ethereumjs-util': 9.0.2 - '@nomicfoundation/ethereumjs-vm': 7.0.2 - '@nomicfoundation/solidity-analyzer': 0.1.1 - '@sentry/node': 5.30.0 - '@types/bn.js': 5.1.2 - '@types/lru-cache': 5.1.1 - adm-zip: 0.4.16 - aggregate-error: 3.1.0 - ansi-escapes: 4.3.2 - chalk: 2.4.2 - chokidar: 3.5.3 - ci-info: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - enquirer: 2.4.1 - env-paths: 2.2.1 - ethereum-cryptography: 1.2.0 - ethereumjs-abi: 0.6.8 - find-up: 2.1.0 - fp-ts: 1.19.3 - fs-extra: 7.0.1 - glob: 7.2.0 - immutable: 4.3.4 - io-ts: 1.10.4 - keccak: 3.0.3 - lodash: 4.17.21 - mnemonist: 0.38.5 - mocha: 10.2.0 - p-map: 4.0.0 - raw-body: 2.5.2 - resolve: 1.17.0 - semver: 6.3.1 - solc: 0.7.3(debug@4.3.4) - source-map-support: 0.5.21 - stacktrace-parser: 0.1.10 - tsort: 0.0.1 - typescript: 5.4.3 - undici: 5.24.0 - uuid: 8.3.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true + chokidar: 3.6.0 + hardhat: 2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10) - /hardhat@2.22.2(typescript@5.4.3): - resolution: {integrity: sha512-0xZ7MdCZ5sJem4MrvpQWLR3R3zGDoHw5lsR+pBFimqwagimIOn3bWuZv69KA+veXClwI1s/zpqgwPwiFrd4Dxw==} - hasBin: true - peerDependencies: - ts-node: '*' - typescript: '*' - peerDependenciesMeta: - ts-node: - optional: true - typescript: - optional: true + hardhat@2.24.1(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))(typescript@5.4.3)(utf-8-validate@5.0.10): dependencies: - '@ethersproject/abi': 5.7.0 - '@metamask/eth-sig-util': 4.0.1 - '@nomicfoundation/edr': 0.3.2 - '@nomicfoundation/ethereumjs-common': 4.0.4 - '@nomicfoundation/ethereumjs-tx': 5.0.4 - '@nomicfoundation/ethereumjs-util': 9.0.4 - '@nomicfoundation/solidity-analyzer': 0.1.1 + '@ethereumjs/util': 9.1.0 + '@ethersproject/abi': 5.8.0 + '@nomicfoundation/edr': 0.11.0 + '@nomicfoundation/solidity-analyzer': 0.1.2 '@sentry/node': 5.30.0 - '@types/bn.js': 5.1.2 + '@types/bn.js': 5.1.6 '@types/lru-cache': 5.1.1 adm-zip: 0.4.16 aggregate-error: 3.1.0 ansi-escapes: 4.3.2 boxen: 5.1.2 - chalk: 2.4.2 - chokidar: 3.5.3 + chokidar: 4.0.3 ci-info: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) enquirer: 2.4.1 env-paths: 2.2.1 ethereum-cryptography: 1.2.0 - ethereumjs-abi: 0.6.8 - find-up: 2.1.0 + find-up: 5.0.0 fp-ts: 1.19.3 fs-extra: 7.0.1 - glob: 7.2.0 - immutable: 4.3.4 + immutable: 4.3.7 io-ts: 1.10.4 - keccak: 3.0.3 + json-stream-stringify: 3.1.6 + keccak: 3.0.4 lodash: 4.17.21 + micro-eth-signer: 0.14.0 mnemonist: 0.38.5 - mocha: 10.2.0 + mocha: 10.8.2 p-map: 4.0.0 + picocolors: 1.1.1 raw-body: 2.5.2 resolve: 1.17.0 - semver: 6.3.1 - solc: 0.7.3(debug@4.3.4) + semver: 7.7.2 + solc: 0.8.26(debug@4.4.1) source-map-support: 0.5.21 - stacktrace-parser: 0.1.10 + stacktrace-parser: 0.1.11 + tinyglobby: 0.2.14 tsort: 0.0.1 - typescript: 5.4.3 - undici: 5.24.0 + undici: 5.29.0 uuid: 8.3.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + ts-node: 10.9.2(@types/node@22.15.24)(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - bufferutil - - c-kzg - supports-color - utf-8-validate - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + has-bigints@1.1.0: {} - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + has-flag@3.0.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + has-flag@4.0.0: {} - /has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + has-property-descriptors@1.0.2: dependencies: - es-define-property: 1.0.0 - - /has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - /has-symbols@1.1.0: - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} - engines: {node: '>= 0.4'} + es-define-property: 1.0.1 - /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + has-proto@1.2.0: dependencies: - has-symbols: 1.1.0 + dunder-proto: 1.0.1 - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: 1.1.2 + has-symbols@1.1.0: {} - /hash-base@2.0.2: - resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==} + has-tostringtag@1.0.2: dependencies: - inherits: 2.0.4 + has-symbols: 1.1.0 - /hash-base@3.0.4: - resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==} - engines: {node: '>=4'} + hash-base@3.0.5: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - dev: false - /hash-base@3.1.0: - resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} - engines: {node: '>=4'} + hash-base@3.1.0: dependencies: inherits: 2.0.4 readable-stream: 3.6.2 safe-buffer: 5.2.1 - /hash.js@1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + hash.js@1.1.7: dependencies: inherits: 2.0.4 minimalistic-assert: 1.0.1 - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + hasown@2.0.2: dependencies: function-bind: 1.1.2 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true + he@1.2.0: {} - /help-me@5.0.0: - resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} - dev: true + help-me@5.0.0: {} - /hermes-estree@0.23.1: - resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} - dev: false + hermes-estree@0.23.1: {} - /hermes-estree@0.25.1: - resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} - dev: false + hermes-estree@0.25.1: {} - /hermes-parser@0.23.1: - resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} + hermes-parser@0.23.1: dependencies: hermes-estree: 0.23.1 - dev: false - /hermes-parser@0.25.1: - resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + hermes-parser@0.25.1: dependencies: hermes-estree: 0.25.1 - dev: false - /hmac-drbg@1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + hmac-drbg@1.0.1: dependencies: hash.js: 1.1.7 minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + hoist-non-react-statics@3.3.2: dependencies: react-is: 16.13.1 - dev: false - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - dev: true - - /hpke-js@1.2.7: - resolution: {integrity: sha512-g6gW2QZki8PktguvoXzAN4jKDWUPkApkBFHAVlhnr/tZUHlvuvMLZb7ZpdDMU8UvCh4iUDFMOJJrjN18OqEpIQ==} - engines: {node: '>=16.0.0'} + hpke-js@1.6.2: dependencies: - '@noble/ciphers': 0.4.1 - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - dev: false + '@hpke/chacha20poly1305': 1.6.2 + '@hpke/common': 1.7.2 + '@hpke/core': 1.7.2 + '@hpke/dhkem-x25519': 1.6.2 + '@hpke/dhkem-x448': 1.6.2 + '@noble/hashes': 1.8.0 - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 - dev: true - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - dev: true + html-escaper@2.0.2: {} - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: false + http-cache-semantics@4.2.0: {} - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -19041,694 +24766,413 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + http-proxy-agent@5.0.0: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - - /http-shutdown@1.2.2: - resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: false - /http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + http2-wrapper@1.0.3: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: false - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: true - - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} + human-id@4.1.1: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - dev: false + human-signals@2.1.0: {} - /humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + humanize-ms@1.2.1: dependencies: ms: 2.1.3 - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - /icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - dev: true + icss-replace-symbols@1.1.0: {} - /icss-utils@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + icss-utils@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /idb-keyval@6.2.1: - resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==} - dev: false + idb-keyval@6.2.2: {} - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + ieee754@1.2.1: {} - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} + ignore@5.3.2: {} - /image-size@2.0.2: - resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==} - engines: {node: '>=16.x'} - hasBin: true - dev: false + ignore@7.0.4: {} - /immutable@4.2.4: - resolution: {integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==} - dev: false + image-size@2.0.2: {} - /immutable@4.3.4: - resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} + immutable@4.3.7: {} - /import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} + import-cwd@3.0.0: dependencies: import-from: 3.0.0 - dev: true - /import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} + import-fresh@2.0.0: dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - dev: false - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} + import-from@3.0.0: dependencies: resolve-from: 5.0.0 - dev: true - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + import-local@3.2.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - dev: true - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + imurmurhash@0.1.4: {} - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + indent-string@4.0.0: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - dev: false - - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + inherits@2.0.4: {} - /install@0.13.0: - resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==} - engines: {node: '>= 0.10'} - dev: false + install@0.13.0: {} - /int64-buffer@1.0.1: - resolution: {integrity: sha512-+3azY4pXrjAupJHU1V9uGERWlhoqNswJNji6aD/02xac7oxol508AsMC5lxKhEqyZeDFy3enq5OGWXF4u75hiw==} - engines: {node: '>= 4.5.0'} - dev: false + int64-buffer@1.1.0: {} - /internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + internal-slot@1.1.0: dependencies: es-errors: 1.3.0 hasown: 2.0.2 - side-channel: 1.0.6 + side-channel: 1.1.0 - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + invariant@2.2.4: dependencies: loose-envify: 1.4.0 - dev: false - /io-ts@1.10.4: - resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==} + io-ts@1.10.4: dependencies: fp-ts: 1.19.3 - /ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} + ip-address@9.0.5: dependencies: jsbn: 1.1.0 sprintf-js: 1.1.3 - dev: false - /iron-webcrypto@1.2.1: - resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} - dev: false + iron-webcrypto@1.2.1: {} - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + is-arguments@1.2.0: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: false - /is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + is-array-buffer@3.0.5: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 get-intrinsic: 1.3.0 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.2.1: {} - /is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - requiresBuild: true - dev: false - optional: true + is-arrayish@0.3.2: {} - /is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + is-async-function@2.1.1: dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-bigint@1.1.0: dependencies: - has-bigints: 1.0.2 + has-bigints: 1.1.0 - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: - binary-extensions: 2.2.0 + binary-extensions: 2.3.0 - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + is-boolean-object@1.2.2: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 has-tostringtag: 1.0.2 - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + is-bun-module@2.0.0: + dependencies: + semver: 7.7.2 - /is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + is-callable@1.2.7: {} + + is-core-module@2.16.1: dependencies: hasown: 2.0.2 - /is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + is-data-view@1.0.2: dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 is-typed-array: 1.1.15 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + is-date-object@1.1.0: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 - /is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} - dev: false - - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true + is-directory@0.3.1: {} - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true + is-docker@2.2.1: {} - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + is-extglob@2.1.1: {} - /is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + is-finalizationregistry@1.1.1: dependencies: - call-bind: 1.0.8 - - /is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - dev: false + call-bound: 1.0.4 - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + is-fullwidth-code-point@3.0.0: {} - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} - dev: true + is-generator-fn@2.1.0: {} - /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + is-generator-function@1.1.0: dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-hex-prefixed@1.0.0: - resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==} - engines: {node: '>=6.5.0', npm: '>=3'} - - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true - dependencies: - is-docker: 3.0.0 - - /is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} + is-map@2.0.3: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - dev: true + is-module@1.0.0: {} - /is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + is-nan@1.3.2: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - dev: false - - /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + is-number-object@1.1.1: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + is-number@7.0.0: {} - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: true + is-path-inside@3.0.3: {} - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + is-plain-obj@2.1.0: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - dev: false - /is-plain-object@3.0.1: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} - engines: {node: '>=0.10.0'} - dev: true + is-plain-object@3.0.1: {} - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - dev: true + is-potential-custom-element-name@1.0.1: {} - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + is-regex@1.2.1: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 + gopd: 1.2.0 has-tostringtag: 1.0.2 + hasown: 2.0.2 - /is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} + is-set@2.0.3: {} - /is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.4: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + is-standalone-pwa@0.1.1: {} - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-stream@2.0.1: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + is-string@1.1.1: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: true - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + is-symbol@1.1.1: dependencies: + call-bound: 1.0.4 has-symbols: 1.1.0 + safe-regex-test: 1.1.0 - /is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - dependencies: - which-typed-array: 1.1.19 - - /is-typed-array@1.1.15: - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.15: dependencies: which-typed-array: 1.1.19 - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} + is-unicode-supported@0.1.0: {} - /is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} + is-weakmap@2.0.2: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.1.1: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 - /is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} + is-weakset@2.0.4: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.4 get-intrinsic: 1.3.0 - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: true + is-windows@1.0.2: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - /is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} - engines: {node: '>=16'} - dependencies: - is-inside-container: 1.0.0 - dev: false - - /is64bit@2.0.0: - resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==} - engines: {node: '>=18'} - dependencies: - system-architecture: 0.1.0 - dev: false - - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - dev: false + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + isexe@2.0.0: {} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: false + isobject@3.0.1: {} - /isomorphic-fetch@3.0.0: - resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} + isomorphic-fetch@3.0.0(encoding@0.1.13): dependencies: node-fetch: 2.7.0(encoding@0.1.13) whatwg-fetch: 3.6.20 transitivePeerDependencies: - encoding - dev: false - - /isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} - dependencies: - node-fetch: 2.7.0(encoding@0.1.13) - unfetch: 4.2.0 - transitivePeerDependencies: - - encoding - dev: false - /isomorphic-ws@4.0.1(ws@8.17.1): - resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} - peerDependencies: - ws: '*' + isomorphic-ws@4.0.1(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /isomorphic-ws@5.0.0(ws@8.17.1): - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} - peerDependencies: - ws: '*' + isomorphic-ws@5.0.0(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - dev: false + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /isows@1.0.3(ws@8.17.1): - resolution: {integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==} - peerDependencies: - ws: '*' + isows@1.0.3(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - dev: false + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /isows@1.0.4(ws@8.17.1): - resolution: {integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==} - peerDependencies: - ws: '*' + isows@1.0.6(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - dev: false + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /isows@1.0.6(ws@8.17.1): - resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==} - peerDependencies: - ws: '*' + isows@1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - /istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} - engines: {node: '>=8'} + istanbul-lib-coverage@3.2.2: {} - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.26.9 - '@babel/parser': 7.26.9 + '@babel/parser': 7.27.3 '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 7.5.4 + istanbul-lib-coverage: 3.2.2 + semver: 7.7.2 transitivePeerDependencies: - supports-color - /istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} - engines: {node: '>=10'} + istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.26.9 - '@babel/parser': 7.26.9 + '@babel/parser': 7.27.3 '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 7.5.4 + istanbul-lib-coverage: 3.2.2 + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: true - /istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} - engines: {node: '>=8'} + istanbul-lib-report@3.0.1: dependencies: - istanbul-lib-coverage: 3.2.0 - make-dir: 3.1.0 + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 supports-color: 7.2.0 - dev: true - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.4(supports-color@8.1.1) - istanbul-lib-coverage: 3.2.0 + debug: 4.4.1(supports-color@8.1.1) + istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-reports@3.1.5: - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} - engines: {node: '>=8'} + istanbul-reports@3.1.7: dependencies: html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 - dev: true + istanbul-lib-report: 3.0.1 - /iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + iterator.prototype@1.1.5: dependencies: - define-properties: 1.2.1 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - reflect.getprototypeof: 1.0.6 + define-data-property: 1.1.4 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 set-function-name: 2.0.2 - /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + jackspeak@2.3.6: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - /jake@10.9.2: - resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} - engines: {node: '>=10'} - hasBin: true + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jake@10.9.2: dependencies: async: 3.2.6 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 - dev: true - /jayson@4.1.1: - resolution: {integrity: sha512-5ZWm4Q/0DHPyeMfAsrwViwUS2DMVsQgWh8bEEIVTkfb3DzHZ2L3G5WUnF+AKmGjjM9r1uAv73SaqC1/U4RL45w==} - engines: {node: '>=8'} - hasBin: true + jayson@4.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@types/connect': 3.4.35 + '@types/connect': 3.4.38 '@types/node': 12.20.55 '@types/ws': 7.4.7 - JSONStream: 1.3.5 commander: 2.20.3 delay: 5.0.0 es6-promisify: 5.0.0 eyes: 0.1.8 - isomorphic-ws: 4.0.1(ws@8.17.1) + isomorphic-ws: 4.0.1(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) json-stringify-safe: 5.0.1 + stream-json: 1.9.1 uuid: 8.3.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - /jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-changed-files@29.7.0: dependencies: execa: 5.1.1 jest-util: 29.7.0 p-limit: 3.1.0 - dev: true - /jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-circus@29.7.0(babel-plugin-macros@3.1.0): dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -19737,7 +25181,7 @@ packages: '@types/node': 20.3.1 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.3 + dedent: 1.6.0(babel-plugin-macros@3.1.0) is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -19753,88 +25197,57 @@ packages: transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true - /jest-cli@29.4.3(@types/node@18.18.2): - resolution: {integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 + create-jest: 29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) exit: 0.1.2 - graceful-fs: 4.2.11 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.18.2) + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) jest-util: 29.7.0 jest-validate: 29.7.0 - prompts: 2.4.2 - yargs: 17.6.2 + yargs: 17.7.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jest-cli@29.7.0(@types/node@18.18.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.18.2) + create-jest: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) exit: 0.1.2 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.18.2) + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) jest-util: 29.7.0 jest-validate: 29.7.0 - yargs: 17.6.2 + yargs: 17.7.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jest-config@29.7.0(@types/node@18.18.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: '@babel/core': 7.26.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.2 babel-jest: 29.7.0(@babel/core@7.26.9) chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.0 + ci-info: 3.9.0 + deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -19842,39 +25255,92 @@ packages: jest-runner: 29.7.0 jest-util: 29.7.0 jest-validate: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 parse-json: 5.2.0 pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 18.19.105 + ts-node: 10.9.2(@types/node@18.19.105)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true - /jest-config@29.7.0(@types/node@20.3.1): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): + dependencies: + '@babel/core': 7.26.9 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.9) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.3.1 + ts-node: 10.9.2(@types/node@18.19.105)(typescript@5.4.3) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: '@babel/core': 7.26.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.9) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: '@types/node': 20.3.1 + ts-node: 10.9.2(@types/node@22.15.24)(typescript@5.4.3) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): + dependencies: + '@babel/core': 7.26.9 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.26.9) chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.0 + ci-info: 3.9.0 + deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -19882,52 +25348,38 @@ packages: jest-runner: 29.7.0 jest-util: 29.7.0 jest-validate: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 parse-json: 5.2.0 pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 22.15.24 + ts-node: 10.9.2(@types/node@22.15.24)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true - /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-diff@29.7.0: dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true - /jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-docblock@29.7.0: dependencies: detect-newline: 3.1.0 - dev: true - /jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-each@29.7.0: dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 jest-util: 29.7.0 pretty-format: 29.7.0 - dev: true - /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jest-environment-jsdom@29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -19936,16 +25388,13 @@ packages: '@types/node': 20.3.1 jest-mock: 29.7.0 jest-util: 29.7.0 - jsdom: 20.0.3 + jsdom: 20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: true - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -19954,16 +25403,12 @@ packages: jest-mock: 29.7.0 jest-util: 29.7.0 - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-get-type@29.6.3: {} - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-haste-map@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.6 + '@types/graceful-fs': 4.1.9 '@types/node': 20.3.1 anymatch: 3.1.3 fb-watchman: 2.0.2 @@ -19971,94 +25416,57 @@ packages: jest-regex-util: 29.6.3 jest-util: 29.7.0 jest-worker: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - /jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-leak-detector@29.7.0: dependencies: jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true - /jest-localstorage-mock@2.4.26: - resolution: {integrity: sha512-owAJrYnjulVlMIXOYQIPRCCn3MmqI3GzgfZCXdD3/pmwrIvFMXcKVWZ+aMc44IzaASapg0Z4SEFxR+v5qxDA2w==} - engines: {node: '>=6.16.0'} - dev: true + jest-localstorage-mock@2.4.26: {} - /jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-matcher-utils@29.7.0: dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true - /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.1 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 - micromatch: 4.0.5 + micromatch: 4.0.8 pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 - /jest-mock@29.4.3: - resolution: {integrity: sha512-LjFgMg+xed9BdkPMyIJh+r3KeHt1klXPJYBULXVVAkbTaaKjPX1o1uVCAZADMEp/kOxGTwy/Ot8XbvgItOrHEg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.3.1 - jest-util: 29.7.0 - dev: true - - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 20.3.1 jest-util: 29.7.0 - /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: jest-resolve: 29.7.0 - dev: true - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@29.6.3: {} - /jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve-dependencies@29.7.0: dependencies: jest-regex-util: 29.6.3 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - dev: true - /jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve@29.7.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -20066,14 +25474,11 @@ packages: jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) jest-util: 29.7.0 jest-validate: 29.7.0 - resolve: 1.22.8 - resolve.exports: 2.0.0 + resolve: 1.22.10 + resolve.exports: 2.0.3 slash: 3.0.0 - dev: true - /jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runner@29.7.0: dependencies: '@jest/console': 29.7.0 '@jest/environment': 29.7.0 @@ -20098,11 +25503,8 @@ packages: source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - dev: true - /jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runtime@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -20113,8 +25515,8 @@ packages: '@jest/types': 29.6.3 '@types/node': 20.3.1 chalk: 4.1.2 - cjs-module-lexer: 1.2.2 - collect-v8-coverage: 1.0.1 + cjs-module-lexer: 1.4.3 + collect-v8-coverage: 1.0.2 glob: 7.2.3 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 @@ -20128,21 +25530,18 @@ packages: strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - dev: true - /jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-snapshot@29.7.0: dependencies: '@babel/core': 7.26.9 - '@babel/generator': 7.26.9 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9) - '@babel/types': 7.26.9 + '@babel/generator': 7.27.3 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9) + '@babel/types': 7.27.3 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.9) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -20153,25 +25552,20 @@ packages: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.5.4 + semver: 7.7.2 transitivePeerDependencies: - supports-color - dev: true - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 20.3.1 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 camelcase: 6.3.0 @@ -20180,9 +25574,7 @@ packages: leven: 3.1.0 pretty-format: 29.7.0 - /jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-watcher@29.7.0: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 @@ -20192,140 +25584,86 @@ packages: emittery: 0.13.1 jest-util: 29.7.0 string-length: 4.0.2 - dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.7.0: dependencies: '@types/node': 20.3.1 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@29.4.3(@types/node@18.18.2): - resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.4.3(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: - '@jest/core': 29.4.3 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) '@jest/types': 29.4.3 - import-local: 3.1.0 - jest-cli: 29.4.3(@types/node@18.18.2) + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@18.19.105)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jest@29.7.0(@types/node@18.18.2): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) '@jest/types': 29.6.3 - import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.18.2) + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - - /jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true - /jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - dev: true + jiti@1.21.7: {} - /joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} - dev: true + jju@1.4.0: {} - /js-base64@3.7.7: - resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} - dev: false + joycon@3.1.1: {} - /js-sdsl@4.4.2: - resolution: {integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==} - dev: true + js-base64@3.7.7: {} - /js-sha256@0.9.0: - resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==} - dev: false + js-sha256@0.9.0: {} - /js-sha3@0.8.0: - resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} + js-sha3@0.8.0: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - /jsbi@3.2.5: - resolution: {integrity: sha512-aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ==} - dev: false + jsbi@3.2.5: {} - /jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - dev: false + jsbn@1.1.0: {} - /jsc-android@250231.0.0: - resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} - dev: false + jsc-android@250231.0.0: {} - /jsc-safe-url@0.2.4: - resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} - dev: false + jsc-safe-url@0.2.4: {} - /jscodeshift@0.14.0(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 + jscodeshift@0.14.0(@babel/preset-env@7.20.2(@babel/core@7.26.9)): dependencies: '@babel/core': 7.26.9 - '@babel/parser': 7.26.9 + '@babel/parser': 7.27.3 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.9) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.9) - '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.26.9) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) '@babel/preset-env': 7.20.2(@babel/core@7.26.9) '@babel/preset-flow': 7.23.3(@babel/core@7.26.9) - '@babel/preset-typescript': 7.24.7(@babel/core@7.26.9) - '@babel/register': 7.23.7(@babel/core@7.26.9) + '@babel/preset-typescript': 7.18.6(@babel/core@7.26.9) + '@babel/register': 7.27.1(@babel/core@7.26.9) babel-core: 7.0.0-bridge.0(@babel/core@7.26.9) chalk: 4.1.2 - flow-parser: 0.206.0 + flow-parser: 0.272.1 graceful-fs: 4.2.11 - micromatch: 4.0.5 + micromatch: 4.0.8 neo-async: 2.6.2 node-dir: 0.1.17 recast: 0.21.5 @@ -20333,33 +25671,50 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: false - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jscodeshift@0.14.0(@babel/preset-env@7.20.2(@babel/core@7.27.3)): + dependencies: + '@babel/core': 7.26.9 + '@babel/parser': 7.27.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/preset-env': 7.20.2(@babel/core@7.27.3) + '@babel/preset-flow': 7.23.3(@babel/core@7.26.9) + '@babel/preset-typescript': 7.18.6(@babel/core@7.26.9) + '@babel/register': 7.27.1(@babel/core@7.26.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.26.9) + chalk: 4.1.2 + flow-parser: 0.272.1 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: abab: 2.0.6 - acorn: 8.12.1 + acorn: 8.14.1 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 data-urls: 3.0.2 - decimal.js: 10.4.3 + decimal.js: 10.5.0 domexception: 4.0.0 escodegen: 2.1.0 - form-data: 4.0.0 + form-data: 4.0.2 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.16 - parse5: 7.2.1 + nwsapi: 2.2.20 + parse5: 7.3.0 saxes: 6.0.0 symbol-tree: 3.2.4 tough-cookie: 4.1.4 @@ -20368,477 +25723,247 @@ packages: whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: true - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - dev: false + jsesc@3.0.2: {} - /jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - dev: false + jsesc@3.1.0: {} - /jsesc@3.1.0: - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} - engines: {node: '>=6'} - hasBin: true + json-buffer@3.0.1: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: false + json-parse-better-errors@1.0.2: {} - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - dev: false + json-parse-even-better-errors@2.3.1: {} - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + json-rpc-engine@6.1.0: + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + eth-rpc-errors: 4.0.3 - /json-rpc-random-id@1.0.1: - resolution: {integrity: sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA==} - dev: false + json-rpc-random-id@1.0.1: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + json-schema-traverse@0.4.1: {} - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: true + json-schema-traverse@1.0.0: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stable-stringify@1.1.1: - resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} - engines: {node: '>= 0.4'} + json-stable-stringify@1.3.0: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 isarray: 2.0.5 jsonify: 0.0.1 object-keys: 1.1.1 - dev: false - /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + json-stream-stringify@3.1.6: {} - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true + json-stringify-safe@5.0.1: {} + + json5@1.0.2: dependencies: minimist: 1.2.8 - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - /jsonfile@2.4.0: - resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==} - optionalDependencies: - graceful-fs: 4.2.11 + json5@2.2.3: {} - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - dev: true - - /jsonify@0.0.1: - resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} - dev: false - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - - /jsonschema@1.2.2: - resolution: {integrity: sha512-iX5OFQ6yx9NgbHCwse51ohhKgLuLL7Z5cNOeZOPIlDUtAMrxlruHLzVZxbltdHE5mEDXN+75oFOwq6Gn0MZwsA==} - dev: false + jsonify@0.0.1: {} - /jsqr@1.4.0: - resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==} - dev: false + jsqr@1.4.0: {} - /jssha@3.2.0: - resolution: {integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==} - dev: false + jssha@3.2.0: {} - /jsx-ast-utils@3.3.4: - resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==} - engines: {node: '>=4.0'} + jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.8 - array.prototype.flat: 1.3.2 - object.assign: 4.1.5 - object.values: 1.2.0 + array.prototype.flat: 1.3.3 + object.assign: 4.1.7 + object.values: 1.2.1 - /jwt-decode@4.0.0: - resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==} - engines: {node: '>=18'} - dev: false + jwt-decode@4.0.0: {} - /keccak@3.0.3: - resolution: {integrity: sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==} - engines: {node: '>=10.0.0'} - requiresBuild: true + keccak@3.0.4: dependencies: node-addon-api: 2.0.2 - node-gyp-build: 4.6.0 + node-gyp-build: 4.8.4 readable-stream: 3.6.2 - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - dev: false - - /keyvaluestorage-interface@1.0.0: - resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} - dev: false - - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - /klaw@1.3.1: - resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==} - optionalDependencies: - graceful-fs: 4.2.11 - - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true - /kzg-wasm@0.5.0: - resolution: {integrity: sha512-LK1M0dm62NKEyhaM6S0pMHKzyAB+KySUlbT+z/+N6fZvcg0jEqSAiz6YHPk8MWIadlT0vFx1uT6Pf9dLzhTn4g==} - dev: false + keyvaluestorage-interface@1.0.0: {} - /language-subtag-registry@0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + kind-of@6.0.3: {} - /language-tags@1.0.5: - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} - dependencies: - language-subtag-registry: 0.3.22 + kleur@3.0.3: {} - /level-supports@4.0.1: - resolution: {integrity: sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==} - engines: {node: '>=12'} + kzg-wasm@0.5.0: {} - /level-transcoder@1.0.1: - resolution: {integrity: sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==} - engines: {node: '>=12'} - dependencies: - buffer: 6.0.3 - module-error: 1.0.2 + language-subtag-registry@0.3.23: {} - /level@8.0.0: - resolution: {integrity: sha512-ypf0jjAk2BWI33yzEaaotpq7fkOPALKAgDBxggO6Q9HGX2MRXn0wbP1Jn/tJv1gtL867+YOjOB49WaUF3UoJNQ==} - engines: {node: '>=12'} + language-tags@1.0.9: dependencies: - browser-level: 1.0.1 - classic-level: 1.2.0 + language-subtag-registry: 0.3.23 - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + leven@3.1.0: {} - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /libphonenumber-js@1.11.14: - resolution: {integrity: sha512-sexvAfwcW1Lqws4zFp8heAtAEXbEDnvkYCEGzvOoMgZR7JhXo/IkE9MkkGACgBed5fWqh3ShBGnJBdDnU9N8EQ==} - dev: false + libphonenumber-js@1.12.8: {} - /libsodium-sumo@0.7.11: - resolution: {integrity: sha512-bY+7ph7xpk51Ez2GbE10lXAQ5sJma6NghcIDaSPbM/G9elfrjLa0COHl/7P6Wb/JizQzl5UQontOOP1z0VwbLA==} - dev: false + libsodium-sumo@0.7.15: {} - /libsodium-wrappers-sumo@0.7.11: - resolution: {integrity: sha512-DGypHOmJbB1nZn89KIfGOAkDgfv5N6SBGC3Qvmy/On0P0WD1JQvNRS/e3UL3aFF+xC0m+MYz5M+MnRnK2HMrKQ==} + libsodium-wrappers-sumo@0.7.15: dependencies: - libsodium-sumo: 0.7.11 - dev: false + libsodium-sumo: 0.7.15 - /lighthouse-logger@1.4.2: - resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + lighthouse-logger@1.4.2: dependencies: debug: 2.6.9 - marky: 1.2.5 + marky: 1.3.0 transitivePeerDependencies: - supports-color - dev: false - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + lilconfig@2.1.0: {} - /lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} + lilconfig@3.1.3: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@1.2.4: {} - /linkify-it@5.0.0: - resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + linkify-it@5.0.0: dependencies: uc.micro: 2.1.0 - dev: true - /listhen@1.7.2: - resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==} - hasBin: true + lit-element@4.2.0: dependencies: - '@parcel/watcher': 2.4.1 - '@parcel/watcher-wasm': 2.4.1 - citty: 0.1.6 - clipboardy: 4.0.0 - consola: 3.2.3 - crossws: 0.2.4 - defu: 6.1.4 - get-port-please: 3.1.2 - h3: 1.12.0 - http-shutdown: 1.2.2 - jiti: 1.21.0 - mlly: 1.7.1 - node-forge: 1.3.1 - pathe: 1.1.2 - std-env: 3.7.0 - ufo: 1.5.4 - untun: 0.1.3 - uqr: 0.1.2 - transitivePeerDependencies: - - uWebSockets.js - dev: false + '@lit-labs/ssr-dom-shim': 1.3.0 + '@lit/reactive-element': 2.1.0 + lit-html: 3.3.0 - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + lit-html@3.3.0: dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - dev: true - - /loader-utils@3.3.1: - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} - engines: {node: '>= 12.13.0'} - dev: true + '@types/trusted-types': 2.0.7 - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + lit@3.1.0: dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 + '@lit/reactive-element': 2.1.0 + lit-element: 4.2.0 + lit-html: 3.3.0 - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + loader-utils@3.3.1: {} + + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - dev: false - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - dev: false - - /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - dev: true - - /lodash.clonedeep@4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} - dev: false + lodash-es@4.17.21: {} - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: false + lodash.camelcase@4.3.0: {} - /lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + lodash.debounce@4.0.8: {} - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - dev: true + lodash.isequal@4.5.0: {} - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lodash.memoize@4.1.2: {} - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true + lodash.merge@4.6.2: {} - /lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} - dev: false + lodash.startcase@4.4.0: {} - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - dev: true + lodash.throttle@4.1.1: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lodash.uniq@4.5.0: {} - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + lodash@4.17.21: {} + + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - /loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} - dev: false - - /long@4.0.0: - resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} - dev: false + loglevel@1.9.2: {} - /long@5.2.3: - resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} - dev: false + long@5.2.5: {} - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lower-case@2.0.2: dependencies: tslib: 2.8.1 - dev: false - /lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - dev: false + lowercase-keys@2.0.0: {} - /lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} - engines: {node: 14 || >=16.14} + lru-cache@10.4.3: {} - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - dependencies: - yallist: 4.0.0 - - /lru_map@0.3.3: - resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} + lru_map@0.3.3: {} - /lucide-react@0.363.0(react@18.2.0): - resolution: {integrity: sha512-AlsfPCsXQyQx7wwsIgzcKOL9LwC498LIMAo+c0Es5PkHJa33xwmYAkkSoKoJWWWSYQEStqu58/jT4tL2gi32uQ==} - peerDependencies: - react: ^16.5.1 || ^17.0.0 || ^18.0.0 + lucide-react@0.363.0(react@18.3.1): dependencies: - react: 18.2.0 - dev: false + react: 18.3.1 - /lucide-react@0.426.0(react@18.3.1): - resolution: {integrity: sha512-aby5G+Zt+LIIEU0n9900XQNJFJUcs7/S+jOEgIhkV08NX3kGx1zxALKh1JvAKcYqutWLg07exbnYvh66szhrRA==} - peerDependencies: - react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc + lucide-react@0.426.0(react@18.3.1): dependencies: react: 18.3.1 - dev: false - /lunr@2.3.9: - resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} - dev: true + lunr@2.3.9: {} - /magic-string@0.30.14: - resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} + magic-string@0.30.17: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 - semver: 7.5.4 - dev: false + semver: 7.7.2 - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + make-dir@3.1.0: dependencies: - semver: 7.5.4 - dev: true - - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true + semver: 7.7.2 - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + make-dir@4.0.0: dependencies: - tmpl: 1.0.5 + semver: 7.7.2 - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - dev: true + make-error@1.3.6: {} - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: true + makeerror@1.0.12: + dependencies: + tmpl: 1.0.5 - /markdown-it@14.1.0: - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} - hasBin: true + markdown-it@14.1.0: dependencies: argparse: 2.0.1 entities: 4.5.0 @@ -20846,102 +25971,43 @@ packages: mdurl: 2.0.0 punycode.js: 2.3.1 uc.micro: 2.1.0 - dev: true - /marky@1.2.5: - resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} - dev: false - - /math-intrinsics@1.1.0: - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} - engines: {node: '>= 0.4'} + marky@1.3.0: {} - /mcl-wasm@0.7.9: - resolution: {integrity: sha512-iJIUcQWA88IJB/5L15GnJVnSQJmf/YaxxV6zRavv83HILHaJQb6y0iFyDMdDO0gN8X37tdxmAOrH/P8B6RB8sQ==} - engines: {node: '>=8.9.0'} + math-intrinsics@1.1.0: {} - /md5.js@1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + md5.js@1.3.5: dependencies: hash-base: 3.1.0 inherits: 2.0.4 safe-buffer: 5.2.1 - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - dev: true - - /mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} - dev: true - - /memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - dev: false + mdn-data@2.0.14: {} - /memoize-one@6.0.0: - resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} - dev: false + mdurl@2.0.0: {} - /memory-level@1.0.0: - resolution: {integrity: sha512-UXzwewuWeHBz5krr7EvehKcmLFNoXxGcvuYhC41tRnkrTbJohtS7kVn9akmgirtRygg+f7Yjsfi8Uu5SGSQ4Og==} - engines: {node: '>=12'} - dependencies: - abstract-level: 1.0.3 - functional-red-black-tree: 1.0.1 - module-error: 1.0.2 + memoize-one@5.2.1: {} - /memorystream@0.3.1: - resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} - engines: {node: '>= 0.10.0'} + memoize-one@6.0.0: {} - /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - dependencies: - '@types/minimist': 1.2.2 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 - dev: true + memorystream@0.3.1: {} - /merge-options@3.0.4: - resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} - engines: {node: '>=10'} - requiresBuild: true + merge-options@3.0.4: dependencies: is-plain-obj: 2.1.0 - dev: false optional: true - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge2@1.4.1: {} - /merkletreejs@0.4.0: - resolution: {integrity: sha512-a48Ta5kWiVNBgeEbZVMm6FB1hBlp6vEuou/XnZdlkmd2zq6NZR6Sh2j+kR1B0iOZIXrTMcigBYzZ39MLdYhm1g==} - engines: {node: '>= 7.6.0'} + merkletreejs@0.4.1: dependencies: - bignumber.js: 9.1.2 buffer-reverse: 1.0.1 crypto-js: 4.2.0 treeify: 1.1.0 - web3-utils: 4.2.1 - dev: false - /metro-babel-transformer@0.81.1: - resolution: {integrity: sha512-JECKDrQaUnDmj0x/Q/c8c5YwsatVx38Lu+BfCwX9fR8bWipAzkvJocBpq5rOAJRDXRgDcPv2VO4Q4nFYrpYNQg==} - engines: {node: '>=18.18'} + metro-babel-transformer@0.81.5: dependencies: '@babel/core': 7.26.9 flow-enums-runtime: 0.0.6 @@ -20949,54 +26015,39 @@ packages: nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - dev: false - /metro-cache-key@0.81.1: - resolution: {integrity: sha512-5fDaHR1yTvpaQuwMAeEoZGsVyvjrkw9IFAS7WixSPvaNY5YfleqoJICPc6hbXFJjvwCCpwmIYFkjqzR/qJ6yqA==} - engines: {node: '>=18.18'} + metro-cache-key@0.81.5: dependencies: flow-enums-runtime: 0.0.6 - dev: false - /metro-cache@0.81.1: - resolution: {integrity: sha512-Uqcmn6sZ+Y0VJHM88VrG5xCvSeU7RnuvmjPmSOpEcyJJBe02QkfHL05MX2ZyGDTyZdbKCzaX0IijrTe4hN3F0Q==} - engines: {node: '>=18.18'} + metro-cache@0.81.5: dependencies: exponential-backoff: 3.1.2 flow-enums-runtime: 0.0.6 - metro-core: 0.81.1 - dev: false + metro-core: 0.81.5 - /metro-config@0.81.1: - resolution: {integrity: sha512-VAAJmxsKIZ+Fz5/z1LVgxa32gE6+2TvrDSSx45g85WoX4EtLmdBGP3DSlpQW3DqFUfNHJCGwMLGXpJnxifd08g==} - engines: {node: '>=18.18'} + metro-config@0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: connect: 3.7.0 cosmiconfig: 5.2.1 flow-enums-runtime: 0.0.6 jest-validate: 29.7.0 - metro: 0.81.1 - metro-cache: 0.81.1 - metro-core: 0.81.1 - metro-runtime: 0.81.1 + metro: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-cache: 0.81.5 + metro-core: 0.81.5 + metro-runtime: 0.81.5 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: false - /metro-core@0.81.1: - resolution: {integrity: sha512-4d2/+02IYqOwJs4dmM0dC8hIZqTzgnx2nzN4GTCaXb3Dhtmi/SJ3v6744zZRnithhN4lxf8TTJSHnQV75M7SSA==} - engines: {node: '>=18.18'} + metro-core@0.81.5: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 - metro-resolver: 0.81.1 - dev: false + metro-resolver: 0.81.5 - /metro-file-map@0.81.1: - resolution: {integrity: sha512-aY72H2ujmRfFxcsbyh83JgqFF+uQ4HFN1VhV2FmcfQG4s1bGKf2Vbkk+vtZ1+EswcBwDZFbkpvAjN49oqwGzAA==} - engines: {node: '>=18.18'} + metro-file-map@0.81.5: dependencies: debug: 2.6.9 fb-watchman: 2.0.2 @@ -21004,118 +26055,92 @@ packages: graceful-fs: 4.2.11 invariant: 2.2.4 jest-worker: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 nullthrows: 1.1.1 walker: 1.0.8 transitivePeerDependencies: - supports-color - dev: false - /metro-minify-terser@0.81.1: - resolution: {integrity: sha512-p/Qz3NNh1nebSqMlxlUALAnESo6heQrnvgHtAuxufRPtKvghnVDq9hGGex8H7z7YYLsqe42PWdt4JxTA3mgkvg==} - engines: {node: '>=18.18'} + metro-minify-terser@0.81.5: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.27.0 - dev: false + terser: 5.40.0 - /metro-resolver@0.81.1: - resolution: {integrity: sha512-E61t6fxRoYRkl6Zo3iUfCKW4DYfum/bLjcejXBMt1y3I7LFkK84TCR/Rs9OAwsMCY/7GOPB4+CREYZOtCC7CNA==} - engines: {node: '>=18.18'} + metro-resolver@0.81.5: dependencies: flow-enums-runtime: 0.0.6 - dev: false - /metro-runtime@0.81.1: - resolution: {integrity: sha512-pqu5j5d01rjF85V/K8SDDJ0NR3dRp6bE3z5bKVVb5O2Rx0nbR9KreUxYALQCRCcQHaYySqCg5fYbGKBHC295YQ==} - engines: {node: '>=18.18'} + metro-runtime@0.81.5: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 flow-enums-runtime: 0.0.6 - dev: false - /metro-source-map@0.81.1: - resolution: {integrity: sha512-1i8ROpNNiga43F0ZixAXoFE/SS3RqcRDCCslpynb+ytym0VI7pkTH1woAN2HI9pczYtPrp3Nq0AjRpsuY35ieA==} - engines: {node: '>=18.18'} + metro-source-map@0.81.5: dependencies: - '@babel/traverse': 7.26.9 - '@babel/traverse--for-generate-function-map': /@babel/traverse@7.26.9 - '@babel/types': 7.26.9 + '@babel/traverse': 7.27.3 + '@babel/traverse--for-generate-function-map': '@babel/traverse@7.27.3' + '@babel/types': 7.27.3 flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-symbolicate: 0.81.1 + metro-symbolicate: 0.81.5 nullthrows: 1.1.1 - ob1: 0.81.1 + ob1: 0.81.5 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - dev: false - /metro-symbolicate@0.81.1: - resolution: {integrity: sha512-Lgk0qjEigtFtsM7C0miXITbcV47E1ZYIfB+m/hCraihiwRWkNUQEPCWvqZmwXKSwVE5mXA0EzQtghAvQSjZDxw==} - engines: {node: '>=18.18'} - hasBin: true + metro-symbolicate@0.81.5: dependencies: flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-source-map: 0.81.1 + metro-source-map: 0.81.5 nullthrows: 1.1.1 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - dev: false - /metro-transform-plugins@0.81.1: - resolution: {integrity: sha512-7L1lI44/CyjIoBaORhY9fVkoNe8hrzgxjSCQ/lQlcfrV31cZb7u0RGOQrKmUX7Bw4FpejrB70ArQ7Mse9mk7+Q==} - engines: {node: '>=18.18'} + metro-transform-plugins@0.81.5: dependencies: '@babel/core': 7.26.9 - '@babel/generator': 7.26.9 - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 + '@babel/generator': 7.27.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - dev: false - /metro-transform-worker@0.81.1: - resolution: {integrity: sha512-M+2hVT3rEy5K7PBmGDgQNq3Zx53TjScOcO/CieyLnCRFtBGWZiSJ2+bLAXXOKyKa/y3bI3i0owxtyxuPGDwbZg==} - engines: {node: '>=18.18'} + metro-transform-worker@0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.26.9 - '@babel/generator': 7.26.9 - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 + '@babel/generator': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/types': 7.27.3 flow-enums-runtime: 0.0.6 - metro: 0.81.1 - metro-babel-transformer: 0.81.1 - metro-cache: 0.81.1 - metro-cache-key: 0.81.1 - metro-minify-terser: 0.81.1 - metro-source-map: 0.81.1 - metro-transform-plugins: 0.81.1 + metro: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-babel-transformer: 0.81.5 + metro-cache: 0.81.5 + metro-cache-key: 0.81.5 + metro-minify-terser: 0.81.5 + metro-source-map: 0.81.5 + metro-transform-plugins: 0.81.5 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: false - /metro@0.81.1: - resolution: {integrity: sha512-fqRu4fg8ONW7VfqWFMGgKAcOuMzyoQah2azv9Y3VyFXAmG+AoTU6YIFWqAADESCGVWuWEIvxTJhMf3jxU6jwjA==} - engines: {node: '>=18.18'} - hasBin: true + metro@0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 '@babel/core': 7.26.9 - '@babel/generator': 7.26.9 - '@babel/parser': 7.26.9 - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 + '@babel/generator': 7.27.3 + '@babel/parser': 7.27.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.3 + '@babel/types': 7.27.3 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -21130,298 +26155,219 @@ packages: jest-worker: 29.7.0 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.81.1 - metro-cache: 0.81.1 - metro-cache-key: 0.81.1 - metro-config: 0.81.1 - metro-core: 0.81.1 - metro-file-map: 0.81.1 - metro-resolver: 0.81.1 - metro-runtime: 0.81.1 - metro-source-map: 0.81.1 - metro-symbolicate: 0.81.1 - metro-transform-plugins: 0.81.1 - metro-transform-worker: 0.81.1 + metro-babel-transformer: 0.81.5 + metro-cache: 0.81.5 + metro-cache-key: 0.81.5 + metro-config: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) + metro-core: 0.81.5 + metro-file-map: 0.81.5 + metro-resolver: 0.81.5 + metro-runtime: 0.81.5 + metro-source-map: 0.81.5 + metro-symbolicate: 0.81.5 + metro-transform-plugins: 0.81.5 + metro-transform-worker: 0.81.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) mime-types: 2.1.35 nullthrows: 1.1.1 serialize-error: 2.1.0 source-map: 0.5.7 throat: 5.0.0 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - yargs: 17.6.2 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + yargs: 17.7.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: false - /micro-ftch@0.3.1: - resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} - dev: false + micro-eth-signer@0.14.0: + dependencies: + '@noble/curves': 1.8.2 + '@noble/hashes': 1.7.2 + micro-packed: 0.7.3 - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + micro-ftch@0.3.1: {} + + micro-packed@0.7.3: + dependencies: + '@scure/base': 1.2.5 + + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - /miller-rabin@4.0.1: - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} - hasBin: true + miller-rabin@4.0.1: dependencies: - bn.js: 4.12.0 + bn.js: 4.12.2 brorand: 1.1.0 - dev: false - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + mime-db@1.52.0: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: false - - /mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true - - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mime@1.6.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + mime@3.0.0: {} - /mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - dev: false + mimic-fn@2.1.0: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: false + mimic-response@1.0.1: {} - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true + mimic-response@3.1.0: {} - /minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + minimalistic-assert@1.0.1: {} - /minimalistic-crypto-utils@1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + minimalistic-crypto-utils@1.0.1: {} - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - /minimatch@5.0.1: - resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - - /minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - dev: true - - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minimist@1.2.8: {} - /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.2: {} - /mixme@0.5.5: - resolution: {integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==} - engines: {node: '>= 8.0.0'} - dev: true + mipd@0.0.7(typescript@5.4.3): + optionalDependencies: + typescript: 5.4.3 - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mkdirp@0.5.6: dependencies: minimist: 1.2.8 - dev: false - - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - /mlly@1.7.1: - resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} - dependencies: - acorn: 8.12.1 - pathe: 1.1.2 - pkg-types: 1.1.3 - ufo: 1.5.4 - dev: false + mkdirp@1.0.4: {} - /mnemonist@0.38.5: - resolution: {integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==} + mnemonist@0.38.5: dependencies: - obliterator: 2.0.4 + obliterator: 2.0.5 - /mocha@10.2.0: - resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} - engines: {node: '>= 14.0.0'} - hasBin: true + mocha@10.8.2: dependencies: - ansi-colors: 4.1.1 + ansi-colors: 4.1.3 browser-stdout: 1.3.1 - chokidar: 3.5.3 - debug: 4.3.4(supports-color@8.1.1) - diff: 5.0.0 + chokidar: 3.6.0 + debug: 4.4.1(supports-color@8.1.1) + diff: 5.2.0 escape-string-regexp: 4.0.0 find-up: 5.0.0 - glob: 7.2.0 + glob: 8.1.0 he: 1.2.0 js-yaml: 4.1.0 log-symbols: 4.1.0 - minimatch: 5.0.1 + minimatch: 5.1.6 ms: 2.1.3 - nanoid: 3.3.3 - serialize-javascript: 6.0.0 + serialize-javascript: 6.0.2 strip-json-comments: 3.1.1 supports-color: 8.1.1 - workerpool: 6.2.1 + workerpool: 6.5.1 yargs: 16.2.0 - yargs-parser: 20.2.4 + yargs-parser: 20.2.9 yargs-unparser: 2.0.0 - /module-error@1.0.2: - resolution: {integrity: sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==} - engines: {node: '>=10'} - - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: false - - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - dev: false + mri@1.2.0: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.0.0: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + ms@2.1.3: {} - /multiformats@9.9.0: - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} - dev: false + multiformats@9.9.0: {} - /mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: false + mute-stream@1.0.0: {} - /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - /nanoid@3.3.3: - resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nan@2.22.2: {} - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.11: {} - /napi-macros@2.0.0: - resolution: {integrity: sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==} + napi-postinstall@0.2.4: {} - /napi-wasm@1.1.0: - resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==} - dev: false + natural-compare@1.4.0: {} - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + negotiator@0.6.3: {} - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - dev: false + neo-async@2.6.2: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - dev: false + next-themes@0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /next-themes@0.3.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==} - peerDependencies: - react: ^16.8 || ^17 || ^18 - react-dom: ^16.8 || ^17 || ^18 + next@14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: + '@next/env': 14.2.25 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001718 + graceful-fs: 4.2.11 + postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: false + styled-jsx: 5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.2.0) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.25 + '@next/swc-darwin-x64': 14.2.25 + '@next/swc-linux-arm64-gnu': 14.2.25 + '@next/swc-linux-arm64-musl': 14.2.25 + '@next/swc-linux-x64-gnu': 14.2.25 + '@next/swc-linux-x64-musl': 14.2.25 + '@next/swc-win32-arm64-msvc': 14.2.25 + '@next/swc-win32-ia32-msvc': 14.2.25 + '@next/swc-win32-x64-msvc': 14.2.25 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros - /next@14.2.25(@babel/core@7.26.9)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-N5M7xMc4wSb4IkPvEV5X2BRRXUmhVHNyaXwEM86+voXthSZz8ZiRyQW4p9mwAoAPIm6OzuVZtn7idgEJeAJN3Q==} - engines: {node: '>=18.17.0'} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - '@playwright/test': - optional: true - sass: - optional: true + next@14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 14.2.25 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001718 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.25 + '@next/swc-darwin-x64': 14.2.25 + '@next/swc-linux-arm64-gnu': 14.2.25 + '@next/swc-linux-arm64-musl': 14.2.25 + '@next/swc-linux-x64-gnu': 14.2.25 + '@next/swc-linux-x64-musl': 14.2.25 + '@next/swc-win32-arm64-msvc': 14.2.25 + '@next/swc-win32-ia32-msvc': 14.2.25 + '@next/swc-win32-x64-msvc': 14.2.25 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + next@14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@next/env': 14.2.25 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001700 + caniuse-lite: 1.0.30001718 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.26.9)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.2.0) optionalDependencies: '@next/swc-darwin-arm64': 14.2.25 '@next/swc-darwin-x64': 14.2.25 @@ -21435,35 +26381,18 @@ packages: transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - dev: false - /next@14.2.25(@babel/core@7.26.9)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-N5M7xMc4wSb4IkPvEV5X2BRRXUmhVHNyaXwEM86+voXthSZz8ZiRyQW4p9mwAoAPIm6OzuVZtn7idgEJeAJN3Q==} - engines: {node: '>=18.17.0'} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - '@playwright/test': - optional: true - sass: - optional: true + next@14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.2.25 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001700 + caniuse-lite: 1.0.30001718 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.26.9)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 14.2.25 '@next/swc-darwin-x64': 14.2.25 @@ -21477,705 +26406,411 @@ packages: transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - dev: false - /next@15.2.3(@babel/core@7.26.9)(react-dom@18.3.1)(react@18.2.0): - resolution: {integrity: sha512-x6eDkZxk2rPpu46E1ZVUWIBhYCLszmUY6fvHBFcbzJ9dD+qRX6vcHusaqqDlnY+VngKzKbAiG2iRCkPbmi8f7w==} - engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 - babel-plugin-react-compiler: '*' - react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 - react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - '@playwright/test': - optional: true - babel-plugin-react-compiler: - optional: true - sass: - optional: true + next@15.3.2(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@next/env': 15.2.3 + '@next/env': 15.3.2 '@swc/counter': 0.1.3 '@swc/helpers': 0.5.15 busboy: 1.6.0 - caniuse-lite: 1.0.30001700 + caniuse-lite: 1.0.30001718 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.3.1(react@18.2.0) - styled-jsx: 5.1.6(@babel/core@7.26.9)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 15.2.3 - '@next/swc-darwin-x64': 15.2.3 - '@next/swc-linux-arm64-gnu': 15.2.3 - '@next/swc-linux-arm64-musl': 15.2.3 - '@next/swc-linux-x64-gnu': 15.2.3 - '@next/swc-linux-x64-musl': 15.2.3 - '@next/swc-win32-arm64-msvc': 15.2.3 - '@next/swc-win32-x64-msvc': 15.2.3 - sharp: 0.33.5 + '@next/swc-darwin-arm64': 15.3.2 + '@next/swc-darwin-x64': 15.3.2 + '@next/swc-linux-arm64-gnu': 15.3.2 + '@next/swc-linux-arm64-musl': 15.3.2 + '@next/swc-linux-x64-gnu': 15.3.2 + '@next/swc-linux-x64-musl': 15.3.2 + '@next/swc-win32-arm64-msvc': 15.3.2 + '@next/swc-win32-x64-msvc': 15.3.2 + sharp: 0.34.2 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - dev: false - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.8.1 - dev: false - /node-addon-api@2.0.2: - resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} - - /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - dev: false + node-addon-api@2.0.2: {} - /node-addon-api@5.1.0: - resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + node-addon-api@3.2.1: {} - /node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} - dev: false + node-addon-api@5.1.0: {} - /node-addon-api@8.3.1: - resolution: {integrity: sha512-lytcDEdxKjGJPTLEfW4mYMigRezMlyJY8W4wxJK8zE533Jlb8L8dRuObJFWg2P+AuOIxoCgKF+2Oq4d4Zd0OUA==} - engines: {node: ^18 || ^20 || >= 21} - dev: false + node-addon-api@8.3.1: {} - /node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - dev: false - /node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} - dev: false + node-fetch-native@1.6.6: {} - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 - dev: false - - /node-fetch@2.7.0(encoding@0.1.13): - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: + optionalDependencies: encoding: 0.1.13 - whatwg-url: 5.0.0 - - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - dev: false - /node-gyp-build@4.6.0: - resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} - hasBin: true + node-forge@1.3.1: {} - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + node-gyp-build@4.8.4: {} - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - dev: true + node-int64@0.4.0: {} - /node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + node-mock-http@1.0.0: {} - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 7.5.4 - validate-npm-package-license: 3.0.4 - dev: true + node-releases@2.0.19: {} - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - dev: true + normalize-range@0.1.2: {} - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} + normalize-url@6.1.0: {} - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - path-key: 4.0.0 - - /npm@9.7.2: - resolution: {integrity: sha512-LLoOudiSURxzRxfGj+vsD+hKKv2EfxyshDOznxruIkZMouvbaF5sFm4yAwHqxS8aVaOdRl03pRmGpcrFMqMt3g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dev: false - bundledDependencies: - - '@isaacs/string-locale-compare' - - '@npmcli/arborist' - - '@npmcli/config' - - '@npmcli/map-workspaces' - - '@npmcli/package-json' - - '@npmcli/run-script' - - abbrev - - archy - - cacache - - chalk - - ci-info - - cli-columns - - cli-table3 - - columnify - - fastest-levenshtein - - fs-minipass - - glob - - graceful-fs - - hosted-git-info - - ini - - init-package-json - - is-cidr - - json-parse-even-better-errors - - libnpmaccess - - libnpmdiff - - libnpmexec - - libnpmfund - - libnpmhook - - libnpmorg - - libnpmpack - - libnpmpublish - - libnpmsearch - - libnpmteam - - libnpmversion - - make-fetch-happen - - minimatch - - minipass - - minipass-pipeline - - ms - - node-gyp - - nopt - - npm-audit-report - - npm-install-checks - - npm-package-arg - - npm-pick-manifest - - npm-profile - - npm-registry-fetch - - npm-user-validate - - npmlog - - p-map - - pacote - - parse-conflict-json - - proc-log - - qrcode-terminal - - read - - semver - - sigstore - - ssri - - supports-color - - tar - - text-table - - tiny-relative-date - - treeverse - - validate-npm-package-name - - which - - write-file-atomic + npm@9.9.4: {} - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - dev: true - /nullthrows@1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - dev: false + nullthrows@1.1.1: {} - /num2fraction@1.2.2: - resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} - dev: true + nwsapi@2.2.20: {} - /nwsapi@2.2.16: - resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==} - dev: true - - /ob1@0.81.1: - resolution: {integrity: sha512-1PEbvI+AFvOcgdNcO79FtDI1TUO8S3lhiKOyAiyWQF3sFDDKS+aw2/BZvGlArFnSmqckwOOB9chQuIX0/OahoQ==} - engines: {node: '>=18.18'} + ob1@0.81.5: dependencies: flow-enums-runtime: 0.0.6 - dev: false - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + obj-multiplex@1.0.0: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + readable-stream: 2.3.8 - /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + object-assign@4.1.1: {} - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + object-hash@3.0.0: {} - /object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + object-inspect@1.13.4: {} + + object-is@1.1.6: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - dev: false - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + object-keys@1.1.1: {} - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + object.assign@4.1.7: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 + es-object-atoms: 1.1.1 has-symbols: 1.1.0 object-keys: 1.1.1 - /object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - /object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} + object.entries@1.1.9: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.2 - es-object-atoms: 1.0.0 + es-object-atoms: 1.1.1 - /object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + object.fromentries@2.0.8: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 + es-object-atoms: 1.1.1 - /object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} + object.groupby@1.0.3: dependencies: + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 - es-object-atoms: 1.0.0 + es-abstract: 1.23.10 - /object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} + object.values@1.2.1: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-object-atoms: 1.1.1 - /obliterator@2.0.4: - resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==} + obliterator@2.0.5: {} - /oblivious-set@1.1.1: - resolution: {integrity: sha512-Oh+8fK09mgGmAshFdH6hSVco6KZmd1tTwNFWj35OvzdmJTMZtAkbn05zar2iG3v6sDs1JLEtOiBGNb6BHwkb2w==} - dev: false + oblivious-set@1.4.0: {} - /ofetch@1.3.4: - resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==} + ofetch@1.4.1: dependencies: - destr: 2.0.3 - node-fetch-native: 1.6.4 - ufo: 1.5.4 - dev: false + destr: 2.0.5 + node-fetch-native: 1.6.6 + ufo: 1.6.1 - /ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} - dev: false - - /on-exit-leak-free@0.2.0: - resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} - dev: false + on-exit-leak-free@0.2.0: {} - /on-exit-leak-free@2.1.2: - resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} - engines: {node: '>=14.0.0'} - dev: true + on-exit-leak-free@2.1.2: {} - /on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} + on-finished@2.3.0: dependencies: ee-first: 1.1.1 - dev: false - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - dev: false - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} - dependencies: - mimic-fn: 4.0.0 - - /open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} + open@7.4.2: dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 - dev: false - - /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} - dependencies: - default-browser: 4.0.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 2.2.0 - /opencollective-postinstall@2.0.3: - resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} - hasBin: true - dev: false + opencollective-postinstall@2.0.3: {} - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + os-tmpdir@1.0.2: {} - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: true + outdent@0.5.0: {} + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + ox@0.4.4(typescript@5.4.3)(zod@3.25.33): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/curves': 1.8.0 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - zod - /ox@0.6.9(typescript@5.4.3): - resolution: {integrity: sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==} - peerDependencies: - typescript: '>=5.4.0' - peerDependenciesMeta: - typescript: - optional: true + ox@0.6.7(typescript@5.4.3)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.9.0 + '@noble/curves': 1.8.0 '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - zod + + ox@0.6.9(typescript@5.4.3)(zod@3.25.33): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/curves': 1.8.0 + '@noble/hashes': 1.7.1 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 - abitype: 1.0.8(typescript@5.4.3) + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) eventemitter3: 5.0.1 + optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - zod - /p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - dev: false + ox@0.7.1(typescript@5.4.3)(zod@3.22.4): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.8.0 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.22.4) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - zod - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + ox@0.7.1(typescript@5.4.3)(zod@3.25.33): dependencies: - p-map: 2.1.0 - dev: true + '@adraffy/ens-normalize': 1.11.0 + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.8.0 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - zod - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: true + p-cancelable@2.1.1: {} - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} + p-filter@2.1.0: dependencies: - p-try: 1.0.0 + p-map: 2.1.0 - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-finally@1.0.0: {} + + p-limit@2.3.0: dependencies: p-try: 2.2.0 - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - dependencies: - p-limit: 1.3.0 - - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - dev: false - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - dev: true + p-map@2.1.0: {} - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - /p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} + p-queue@6.6.2: dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 - dev: true - /p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} + p-timeout@3.2.0: dependencies: p-finally: 1.0.0 - dev: true - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} + p-try@2.2.0: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + package-json-from-dist@1.0.1: {} - /pako@2.1.0: - resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} - dev: false + package-manager-detector@0.2.11: + dependencies: + quansync: 0.2.10 - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + pako@2.1.0: {} + + parent-module@1.0.1: dependencies: callsites: 3.1.0 - /parse-asn1@5.1.7: - resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} - engines: {node: '>= 0.10'} + parse-asn1@5.1.7: dependencies: asn1.js: 4.10.1 browserify-aes: 1.2.0 evp_bytestokey: 1.0.3 - hash-base: 3.0.4 - pbkdf2: 3.1.3 + hash-base: 3.0.5 + pbkdf2: 3.1.2 safe-buffer: 5.2.1 - dev: false - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + parse-json@4.0.0: dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - dev: false - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse5@7.2.1: - resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + parse5@7.3.0: dependencies: - entities: 4.5.0 - dev: true - - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - dev: false - - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + entities: 6.0.0 - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + parseurl@1.3.3: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-exists@3.0.0: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + path-exists@4.0.0: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-is-absolute@1.0.1: {} - /path-scurry@1.10.2: - resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - lru-cache: 10.2.0 - minipass: 7.0.4 + path-key@3.1.1: {} - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + path-parse@1.0.7: {} - /path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + path-scurry@1.11.1: dependencies: - process: 0.11.10 - util: 0.10.4 - dev: false + lru-cache: 10.4.3 + minipass: 7.1.2 - /pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - dev: false + path-type@4.0.0: {} - /pbkdf2@3.1.3: - resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} - engines: {node: '>=0.12'} + pbkdf2@3.1.2: dependencies: - create-hash: 1.1.3 + create-hash: 1.2.0 create-hmac: 1.1.7 - ripemd160: 2.0.1 + ripemd160: 2.0.2 safe-buffer: 5.2.1 sha.js: 2.4.11 - to-buffer: 1.2.1 - /permissionless@0.1.45(viem@2.26.2): - resolution: {integrity: sha512-YJJrNFeP3T7mmfXExZsGz0J8SfOPgYzT3fyRIJtImFcUI2UmnyBQLrFt+BaiIXNogzAQuBvOSi6KKtyBePJ2/Q==} - peerDependencies: - viem: '>=2.14.1 <2.18.0' + permissionless@0.1.49(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)): dependencies: - viem: 2.26.2(typescript@5.4.3) - dev: false + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.1.1: {} - /picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + picomatch@2.3.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picomatch@4.0.2: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + pify@2.3.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + pify@3.0.0: {} - /pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - dev: true + pify@4.0.1: {} - /pino-abstract-transport@0.5.0: - resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} + pify@5.0.0: {} + + pino-abstract-transport@0.5.0: dependencies: duplexify: 4.1.3 split2: 4.2.0 - dev: false - /pino-abstract-transport@1.2.0: - resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + pino-abstract-transport@2.0.0: dependencies: - readable-stream: 4.5.2 split2: 4.2.0 - dev: true - /pino-pretty@11.2.2: - resolution: {integrity: sha512-2FnyGir8nAJAqD3srROdrF1J5BIcMT4nwj7hHSc60El6Uxlym00UbCCd8pYIterstVBFlMyF1yFV8XdGIPbj4A==} - hasBin: true + pino-pretty@11.3.0: dependencies: colorette: 2.0.20 dateformat: 4.6.3 @@ -22185,21 +26820,16 @@ packages: joycon: 3.1.1 minimist: 1.2.8 on-exit-leak-free: 2.1.2 - pino-abstract-transport: 1.2.0 - pump: 3.0.0 - readable-stream: 4.5.2 + pino-abstract-transport: 2.0.0 + pump: 3.0.2 + readable-stream: 4.7.0 secure-json-parse: 2.7.0 - sonic-boom: 4.0.1 + sonic-boom: 4.2.0 strip-json-comments: 3.1.1 - dev: true - /pino-std-serializers@4.0.0: - resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} - dev: false + pino-std-serializers@4.0.0: {} - /pino@7.11.0: - resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} - hasBin: true + pino@7.11.0: dependencies: atomic-sleep: 1.0.0 fast-redact: 3.5.0 @@ -22209,590 +26839,309 @@ packages: process-warning: 1.0.0 quick-format-unescaped: 4.0.4 real-require: 0.1.0 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 sonic-boom: 2.8.0 thread-stream: 0.15.2 - dev: false - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + pirates@4.0.7: {} - /pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - dev: false - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - dev: true - /pkg-types@1.1.3: - resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} - dependencies: - confbox: 0.1.7 - mlly: 1.7.1 - pathe: 1.1.2 - dev: false + pngjs@5.0.0: {} - /pngjs@3.4.0: - resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} - engines: {node: '>=4.0.0'} - dev: false + pony-cause@2.1.11: {} - /possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + possible-typed-array-names@1.1.0: {} - /postcss-calc@8.2.4(postcss@8.4.38): - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 + postcss-calc@8.2.4(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - dev: true - /postcss-colormin@5.3.1(postcss@8.4.38): - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-colormin@5.3.1(postcss@8.5.3): dependencies: - browserslist: 4.24.4 + browserslist: 4.24.5 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-convert-values@5.1.3(postcss@8.4.38): - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-convert-values@5.1.3(postcss@8.5.3): dependencies: - browserslist: 4.24.4 - postcss: 8.4.38 + browserslist: 4.24.5 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - - /postcss-discard-comments@5.1.2(postcss@8.4.38): - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.38 - dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-comments@5.1.2(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-discard-empty@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-duplicates@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-discard-overridden@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-empty@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-import@14.1.0(postcss@8.4.38): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-discard-overridden@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 + postcss: 8.5.3 - /postcss-import@15.1.0(postcss@8.4.38): - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-import@15.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.8 + resolve: 1.22.10 - /postcss-import@16.1.0(postcss@8.4.38): - resolution: {integrity: sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==} - engines: {node: '>=18.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-import@16.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.8 - dev: true + resolve: 1.22.10 - /postcss-js@4.0.1(postcss@8.4.38): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 + postcss-js@4.0.1(postcss@8.5.3): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.38 + postcss: 8.5.3 - /postcss-load-config@3.1.4(postcss@8.4.38): - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@3.1.4(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.38 yaml: 1.10.2 + optionalDependencies: + postcss: 8.5.3 + ts-node: 10.9.2(@types/node@18.19.105)(typescript@5.4.3) - /postcss-load-config@4.0.2(postcss@8.4.38): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): dependencies: - lilconfig: 3.1.2 - postcss: 8.4.38 - yaml: 2.7.0 + lilconfig: 3.1.3 + yaml: 2.8.0 + optionalDependencies: + postcss: 8.5.3 + ts-node: 10.9.2(@types/node@20.3.1)(typescript@5.4.3) - /postcss-merge-longhand@5.1.7(postcss@8.4.38): - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-longhand@5.1.7(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.38) - dev: true + stylehacks: 5.1.1(postcss@8.5.3) - /postcss-merge-rules@5.1.4(postcss@8.4.38): - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-rules@5.1.4(postcss@8.5.3): dependencies: - browserslist: 4.24.4 + browserslist: 4.24.5 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 - dev: true + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 - /postcss-minify-font-values@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-font-values@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-gradients@5.1.1(postcss@8.5.3): dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.38) - postcss: 8.4.38 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-params@5.1.4(postcss@8.4.38): - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-params@5.1.4(postcss@8.5.3): dependencies: - browserslist: 4.24.4 - cssnano-utils: 3.1.0(postcss@8.4.38) - postcss: 8.4.38 + browserslist: 4.24.5 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.38): - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-selectors@5.2.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 - dev: true + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 - /postcss-modules-extract-imports@3.1.0(postcss@8.4.38): - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-extract-imports@3.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-modules-local-by-default@4.0.5(postcss@8.4.38): - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-local-by-default@4.2.0(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 + postcss-selector-parser: 7.1.0 postcss-value-parser: 4.2.0 - dev: true - /postcss-modules-scope@3.2.0(postcss@8.4.38): - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-scope@3.2.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 - dev: true + postcss: 8.5.3 + postcss-selector-parser: 7.1.0 - /postcss-modules-values@4.0.0(postcss@8.4.38): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-values@4.0.0(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - dev: true + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 - /postcss-modules@4.3.1(postcss@8.4.38): - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 + postcss-modules@4.3.1(postcss@8.5.3): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 - lodash.camelcase: 4.3.0 - postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) - string-hash: 1.1.3 - dev: true - - /postcss-nested@6.0.0(postcss@8.4.38): - resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 + lodash.camelcase: 4.3.0 + postcss: 8.5.3 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.3) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.3) + postcss-modules-scope: 3.2.1(postcss@8.5.3) + postcss-modules-values: 4.0.0(postcss@8.5.3) + string-hash: 1.1.3 - /postcss-nested@6.2.0(postcss@8.4.38): - resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 + postcss-nested@6.2.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 - /postcss-normalize-charset@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-charset@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-normalize-display-values@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-display-values@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-positions@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-repeat-style@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-string@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-timing-functions@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-unicode@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-unicode@5.1.1(postcss@8.5.3): dependencies: - browserslist: 4.24.4 - postcss: 8.4.38 + browserslist: 4.24.5 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-url@5.1.0(postcss@8.5.3): dependencies: normalize-url: 6.1.0 - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-whitespace@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.38): - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-ordered-values@5.1.3(postcss@8.5.3): dependencies: - cssnano-utils: 3.1.0(postcss@8.4.38) - postcss: 8.4.38 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-reduce-initial@5.1.2(postcss@8.4.38): - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-initial@5.1.2(postcss@8.5.3): dependencies: - browserslist: 4.24.4 + browserslist: 4.24.5 caniuse-api: 3.0.0 - postcss: 8.4.38 - dev: true + postcss: 8.5.3 - /postcss-reduce-transforms@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-transforms@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - dev: true - /postcss-selector-parser@6.0.16: - resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} - engines: {node: '>=4'} + postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-selector-parser@6.1.1: - resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} - engines: {node: '>=4'} + postcss-selector-parser@7.1.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-svgo@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.38 + postcss: 8.5.3 postcss-value-parser: 4.2.0 svgo: 2.8.0 - dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-unique-selectors@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 - dev: true + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss-value-parser@4.2.0: {} - /postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.31: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.2.0 + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.5.3: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.2.0 - - /preact@10.4.1: - resolution: {integrity: sha512-WKrRpCSwL2t3tpOOGhf2WfTpcmbpxaWtDbdJdKdjd0aEiTkvOmS4NBkG6kzlaAHI9AkQ3iVqbFWM3Ei7mZ4o1Q==} - dev: false + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /preferred-pm@3.0.3: - resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} - engines: {node: '>=10'} - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 - dev: true + preact@10.26.7: {} - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + prelude-ls@1.2.1: {} - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true + prettier@2.8.8: {} - /prettier@3.4.2: - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} - engines: {node: '>=14'} - hasBin: true - dev: true + prettier@3.5.3: {} - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - dev: false + process-nextick-args@2.0.1: {} - /process-warning@1.0.0: - resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} - dev: false + process-warning@1.0.0: {} - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + process@0.11.10: {} - /promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - dev: true + promise.series@0.2.0: {} - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + promise@8.3.0: dependencies: asap: 2.0.6 - dev: false - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - /protobufjs@7.2.6: - resolution: {integrity: sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==} - engines: {node: '>=12.0.0'} - requiresBuild: true + protobufjs@7.4.0: dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/base64': 1.1.2 @@ -22805,329 +27154,294 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/node': 20.3.1 - long: 5.2.3 - dev: false + long: 5.2.5 - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - dev: false + proxy-compare@2.6.0: {} - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + proxy-from-env@1.1.0: {} - /public-encrypt@4.0.3: - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + psl@1.15.0: + dependencies: + punycode: 2.3.1 + + public-encrypt@4.0.3: dependencies: - bn.js: 4.12.0 - browserify-rsa: 4.1.0 + bn.js: 4.12.2 + browserify-rsa: 4.1.1 create-hash: 1.2.0 parse-asn1: 5.1.7 randombytes: 2.1.0 safe-buffer: 5.2.1 - dev: false - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.2: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - /punycode.js@2.3.1: - resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} - engines: {node: '>=6'} - dev: true + punycode.js@2.3.1: {} - /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} + punycode@2.3.1: {} - /pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - dev: true + pure-rand@6.1.0: {} - /pushdata-bitcoin@1.0.1: - resolution: {integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==} + pushdata-bitcoin@1.0.1: dependencies: bitcoin-ops: 1.4.1 - dev: false - /pvtsutils@1.3.5: - resolution: {integrity: sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==} + pvtsutils@1.3.6: dependencies: tslib: 2.8.1 - dev: false - /pvutils@1.1.3: - resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} - engines: {node: '>=6.0.0'} - dev: false + pvutils@1.1.3: {} - /qr.js@0.0.0: - resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} - dev: false + qr.js@0.0.0: {} - /qrcode.react@1.0.1(react@16.13.1): - resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} - peerDependencies: - react: ^15.5.3 || ^16.0.0 || ^17.0.0 + qrcode.react@1.0.1(react@18.3.1): dependencies: loose-envify: 1.4.0 prop-types: 15.8.1 qr.js: 0.0.0 - react: 16.13.1 - dev: false + react: 18.3.1 - /qrcode@1.4.4: - resolution: {integrity: sha512-oLzEC5+NKFou9P0bMj5+v6Z40evexeE29Z9cummZXZ9QXyMr3lphkURzxjXgPJC5azpxcshoDWV1xE46z+/c3Q==} - engines: {node: '>=4'} - hasBin: true + qrcode@1.5.3: dependencies: - buffer: 5.7.1 - buffer-alloc: 1.2.0 - buffer-from: 1.1.2 dijkstrajs: 1.0.3 - isarray: 2.0.5 - pngjs: 3.4.0 - yargs: 13.3.2 - dev: false + encode-utf8: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + qrcode@1.5.4: dependencies: - side-channel: 1.0.6 - dev: false + dijkstrajs: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 - /query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} + quansync@0.2.10: {} + + query-string@7.1.3: dependencies: decode-uri-component: 0.2.2 filter-obj: 1.1.0 split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - dev: false - - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - dev: true - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + querystringify@2.2.0: {} - /quick-format-unescaped@4.0.4: - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} - dev: false + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: true + quick-format-unescaped@4.0.4: {} - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} + quick-lru@5.1.1: {} - /radix3@1.1.2: - resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} - dev: false + radix3@1.1.2: {} - /raf-schd@4.0.3: - resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==} - dev: false + raf-schd@4.0.3: {} - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - /randomfill@1.0.4: - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + randomfill@1.0.4: dependencies: randombytes: 2.1.0 safe-buffer: 5.2.1 - dev: false - - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - dev: false - /raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - dev: false + range-parser@1.2.1: {} - /raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} + raw-body@2.5.2: dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - /react-apple-login@1.1.6(prop-types@15.8.1)(react-dom@18.3.1)(react@18.2.0): - resolution: {integrity: sha512-ySV6ax0aB+ksA7lKzhr4MvsgjwSH068VtdHJXS+7rL380IJnNQNl14SszR31k3UqB8q8C1H1oyjJFGq4MyO6tw==} - engines: {node: '>=8', npm: '>=5'} - peerDependencies: - prop-types: ^15.5.4 - react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react-apple-login@1.1.6(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.3.1(react@18.2.0) - dev: false + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /react-devtools-core@5.3.2: - resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==} + react-devtools-core@5.3.2(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - shell-quote: 1.8.1 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + shell-quote: 1.8.2 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - dev: false - - /react-dom@16.13.1(react@16.13.1): - resolution: {integrity: sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==} - peerDependencies: - react: ^16.13.1 - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 16.13.1 - scheduler: 0.19.1 - dev: false - - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: ^18.2.0 - dependencies: - loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.2 - dev: false - /react-dom@18.3.1(react@18.2.0): - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 react: 18.2.0 scheduler: 0.23.2 - dev: false - /react-dom@18.3.1(react@18.3.1): - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 react: 18.3.1 scheduler: 0.23.2 - dev: false - /react-hook-form@7.45.1(react@18.2.0): - resolution: {integrity: sha512-6dWoFJwycbuFfw/iKMcl+RdAOAOHDiF11KWYhNDRN/OkUt+Di5qsZHwA0OwsVnu9y135gkHpTw9DJA+WzCeR9w==} - engines: {node: '>=12.22.0'} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 + react-hook-form@7.56.4(react@18.2.0): dependencies: react: 18.2.0 - dev: false - /react-international-phone@4.3.0(react@18.2.0): - resolution: {integrity: sha512-lIntIkwq2j0m3j4RsRiGJl/buHMLBd+mQ9S9RfiX3KbiUCUtbawoPCV2r8BvyeRMZI0cDtovoukBCuZ+70QzJA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-international-phone@4.5.0(react@18.2.0): dependencies: react: 18.2.0 - dev: false - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react-international-phone@4.5.0(react@18.3.1): + dependencies: + react: 18.3.1 - /react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-is@16.13.1: {} - /react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} - dev: false + react-is@18.3.1: {} - /react-modal@3.16.1(react-dom@16.13.1)(react@16.13.1): - resolution: {integrity: sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==} - engines: {node: '>=8'} - peerDependencies: - react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 - react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 + react-is@19.1.0: {} + + react-lifecycles-compat@3.0.4: {} + + react-modal@3.16.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: exenv: 1.2.2 prop-types: 15.8.1 - react: 16.13.1 - react-dom: 16.13.1(react@16.13.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-lifecycles-compat: 3.0.4 warning: 4.0.3 - dev: false - /react-native-inappbrowser-reborn@3.7.0(react-native@0.76.5): - resolution: {integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==} - requiresBuild: true - peerDependencies: - react-native: '>=0.56' + react-native-inappbrowser-reborn@3.7.0(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)): + dependencies: + invariant: 2.2.4 + opencollective-postinstall: 2.0.3 + react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + + react-native-keychain@8.1.0: {} + + react-native-passkey@3.0.0(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1): + dependencies: + react: 18.3.1 + react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + + react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native/assets-registry': 0.76.5 + '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.26.9)) + '@react-native/community-cli-plugin': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/gradle-plugin': 0.76.5 + '@react-native/js-polyfills': 0.76.5 + '@react-native/normalize-colors': 0.76.5 + '@react-native/virtualized-lists': 0.76.5(@types/react@18.3.23)(react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2(@babel/core@7.26.9))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + babel-jest: 29.7.0(@babel/core@7.26.9) + babel-plugin-syntax-hermes-parser: 0.23.1 + base64-js: 1.5.1 + chalk: 4.1.2 + commander: 12.1.0 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + glob: 7.2.3 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.81.5 + metro-source-map: 0.81.5 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 29.7.0 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.3.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + react-refresh: 0.14.2 + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: 7.7.2 + stacktrace-parser: 0.1.11 + whatwg-fetch: 3.6.20 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.23 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@react-native-community/cli-server-api' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10): dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native/assets-registry': 0.76.5 + '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + '@react-native/community-cli-plugin': 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/gradle-plugin': 0.76.5 + '@react-native/js-polyfills': 0.76.5 + '@react-native/normalize-colors': 0.76.5 + '@react-native/virtualized-lists': 0.76.5(@types/react@18.2.14)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + babel-jest: 29.7.0(@babel/core@7.27.3) + babel-plugin-syntax-hermes-parser: 0.23.1 + base64-js: 1.5.1 + chalk: 4.1.2 + commander: 12.1.0 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + glob: 7.2.3 invariant: 2.2.4 - opencollective-postinstall: 2.0.3 - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) - dev: false - - /react-native-keychain@8.1.0: - resolution: {integrity: sha512-MI5YKO8KKmaa2iBGFDiM/cdJ2E6MXaOIRLS1OyxAM9KP5tnpsLp6zowOAaeuc3nBLZ6D/J/EvZSBRggzSGnUGQ==} - dev: false - - /react-native-passkey@3.0.0(react-native@0.76.5)(react@18.3.1): - resolution: {integrity: sha512-U26Jaz8BeN+LxB9a5rwJiDHIYNBj7sobfnlQnkfyuqylKnSHxzThOnYcJq3WGCSzTYNI5DT0xUtArQkc482fkQ==} - peerDependencies: - react: '*' - react-native: '*' - dependencies: - react: 18.3.1 - react-native: 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1) - dev: false + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.81.5 + metro-source-map: 0.81.5 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 29.7.0 + promise: 8.3.0 + react: 18.2.0 + react-devtools-core: 5.3.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + react-refresh: 0.14.2 + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: 7.7.2 + stacktrace-parser: 0.1.11 + whatwg-fetch: 3.6.20 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.2.14 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@react-native-community/cli-server-api' + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true - /react-native@0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2)(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-op2p2kB+lqMF1D7AdX4+wvaR0OPFbvWYs+VBE7bwsb99Cn9xISrLRLAgFflZedQsa5HvnOGrULhtnmItbIKVVw==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - '@types/react': ^18.2.6 - react: ^18.2.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.76.5 - '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2) - '@react-native/community-cli-plugin': 0.76.5(@babel/core@7.26.9)(@babel/preset-env@7.20.2) + '@react-native/codegen': 0.76.5(@babel/preset-env@7.20.2(@babel/core@7.27.3)) + '@react-native/community-cli-plugin': 0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.76.5 '@react-native/js-polyfills': 0.76.5 '@react-native/normalize-colors': 0.76.5 - '@react-native/virtualized-lists': 0.76.5(@types/react@18.3.3)(react-native@0.76.5)(react@18.3.1) - '@types/react': 18.3.3 + '@react-native/virtualized-lists': 0.76.5(@types/react@18.3.23)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 - babel-jest: 29.7.0(@babel/core@7.26.9) + babel-jest: 29.7.0(@babel/core@7.27.3) babel-plugin-syntax-hermes-parser: 0.23.1 base64-js: 1.5.1 chalk: 4.1.2 @@ -23139,22 +27453,24 @@ packages: jest-environment-node: 29.7.0 jsc-android: 250231.0.0 memoize-one: 5.2.1 - metro-runtime: 0.81.1 - metro-source-map: 0.81.1 + metro-runtime: 0.81.5 + metro-source-map: 0.81.5 mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 react: 18.3.1 - react-devtools-core: 5.3.2 - react-refresh: 0.14.0 + react-devtools-core: 5.3.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + react-refresh: 0.14.2 regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 - semver: 7.5.4 - stacktrace-parser: 0.1.10 + semver: 7.7.2 + stacktrace-parser: 0.1.11 whatwg-fetch: 3.6.20 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - yargs: 17.6.2 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.23 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -23163,235 +27479,91 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - /react-qr-reader@2.2.1(react-dom@16.13.1)(react@16.13.1): - resolution: {integrity: sha512-EL5JEj53u2yAOgtpAKAVBzD/SiKWn0Bl7AZy6ZrSf1lub7xHwtaXe6XSx36Wbhl1VMGmvmrwYMRwO1aSCT2fwA==} - peerDependencies: - react: ~16 - react-dom: ~16 + react-qr-reader@2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: jsqr: 1.4.0 prop-types: 15.8.1 - react: 16.13.1 - react-dom: 16.13.1(react@16.13.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) webrtc-adapter: 7.7.1 - dev: false - /react-redux@9.1.2(@types/react@18.2.14)(react@18.2.0)(redux@5.0.1): - resolution: {integrity: sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==} - peerDependencies: - '@types/react': ^18.2.25 - react: ^18.0 - redux: ^5.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - redux: - optional: true + react-redux@9.2.0(@types/react@18.2.14)(react@18.2.0)(redux@5.0.1): dependencies: - '@types/react': 18.2.14 - '@types/use-sync-external-store': 0.0.3 + '@types/use-sync-external-store': 0.0.6 react: 18.2.0 + use-sync-external-store: 1.5.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.14 redux: 5.0.1 - use-sync-external-store: 1.2.2(react@18.2.0) - dev: false - - /react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} - dev: false - /react-remove-scroll-bar@2.3.6(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.14 - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0) - tslib: 2.8.1 - dev: false + react-refresh@0.14.2: {} - /react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-remove-scroll-bar@2.3.8(@types/react@18.3.23)(react@18.3.1): dependencies: - '@types/react': 18.3.3 react: 18.3.1 - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) - tslib: 2.8.1 - dev: false - - /react-remove-scroll@2.5.5(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.14 - react: 18.2.0 - react-remove-scroll-bar: 2.3.6(@types/react@18.2.14)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0) + react-style-singleton: 2.2.3(@types/react@18.3.23)(react@18.3.1) tslib: 2.8.1 - use-callback-ref: 1.3.2(@types/react@18.2.14)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0) - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-remove-scroll@2.7.0(@types/react@18.3.23)(react@18.3.1): dependencies: - '@types/react': 18.3.3 react: 18.3.1 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) - tslib: 2.8.1 - use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) - dev: false - - /react-style-singleton@2.2.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.14 - get-nonce: 1.0.1 - invariant: 2.2.4 - react: 18.2.0 + react-remove-scroll-bar: 2.3.8(@types/react@18.3.23)(react@18.3.1) + react-style-singleton: 2.2.3(@types/react@18.3.23)(react@18.3.1) tslib: 2.8.1 - dev: false + use-callback-ref: 1.3.3(@types/react@18.3.23)(react@18.3.1) + use-sidecar: 1.1.3(@types/react@18.3.23)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 - /react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-style-singleton@2.2.3(@types/react@18.3.23)(react@18.3.1): dependencies: - '@types/react': 18.3.3 get-nonce: 1.0.1 - invariant: 2.2.4 react: 18.3.1 tslib: 2.8.1 - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: false - /react-transition-group@4.4.5(react-dom@18.3.1)(react@18.2.0): - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.27.3 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.3.1(react@18.2.0) - dev: false - - /react@16.13.1: - resolution: {integrity: sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - dev: false + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + react@18.2.0: dependencies: loose-envify: 1.4.0 - /react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + react@18.3.1: dependencies: loose-envify: 1.4.0 - dev: false - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.0: dependencies: pify: 2.3.0 - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - dev: true - - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - dependencies: - '@types/normalize-package-data': 2.4.1 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - dev: true - - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -23400,19 +27572,14 @@ packages: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 - dev: false - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-stream@4.5.2: - resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + readable-stream@4.7.0: dependencies: abort-controller: 3.0.0 buffer: 6.0.3 @@ -23420,561 +27587,329 @@ packages: process: 0.11.10 string_decoder: 1.3.0 - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /readline@1.3.0: - resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} - dev: false + readdirp@4.1.2: {} - /readonly-date@1.0.0: - resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} - dev: false + readline@1.3.0: {} - /real-require@0.1.0: - resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} - engines: {node: '>= 12.13.0'} - dev: false + readonly-date@1.0.0: {} - /recast@0.21.5: - resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} - engines: {node: '>= 4'} + real-require@0.1.0: {} + + recast@0.21.5: dependencies: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.8.1 - dev: false - - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} - dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 - dev: true - /reduce-flatten@2.0.0: - resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} - engines: {node: '>=6'} - dev: true + reduce-flatten@2.0.0: {} - /redux@5.0.1: - resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} - dev: false + redux@5.0.1: {} - /reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} + reflect.getprototypeof@1.0.10: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 + es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 - globalthis: 1.0.3 - which-builtin-type: 1.1.3 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 - /regenerate-unicode-properties@10.2.0: - resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.2.0: dependencies: regenerate: 1.4.2 - dev: false - - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: false - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - dev: false + regenerate@1.4.2: {} - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-runtime@0.13.11: {} - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - dependencies: - '@babel/runtime': 7.26.10 - dev: false + regenerator-runtime@0.14.1: {} - /regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.4: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 set-function-name: 2.0.2 - /regexpu-core@6.2.0: - resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} - engines: {node: '>=4'} + regexpu-core@6.2.0: dependencies: regenerate: 1.4.2 regenerate-unicode-properties: 10.2.0 regjsgen: 0.8.0 regjsparser: 0.12.0 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 - dev: false + unicode-match-property-value-ecmascript: 2.2.0 - /regjsgen@0.8.0: - resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} - dev: false + regjsgen@0.8.0: {} - /regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} - hasBin: true + regjsparser@0.12.0: dependencies: jsesc: 3.0.2 - dev: false - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + require-directory@2.1.1: {} - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + require-from-string@2.0.2: {} - /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + require-main-filename@2.0.0: {} - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - dev: true + requires-port@1.0.0: {} - /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: false + resolve-alpn@1.2.1: {} - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 - dev: true - - /resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - dev: false - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolve-from@3.0.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolve-from@4.0.0: {} - /resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolve-from@5.0.0: {} - /resolve.exports@2.0.0: - resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} - engines: {node: '>=10'} - dev: true + resolve-pkg-maps@1.0.0: {} - /resolve@1.17.0: - resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} - dependencies: - path-parse: 1.0.7 + resolve.exports@2.0.3: {} - /resolve@1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} - hasBin: true + resolve@1.17.0: dependencies: - is-core-module: 2.13.1 path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.10: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true + resolve@2.0.0-next.5: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + responselike@2.0.1: dependencies: lowercase-keys: 2.0.0 - dev: false - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - dev: false - - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + retry@0.13.1: {} - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - dependencies: - glob: 7.2.3 - dev: false + reusify@1.1.0: {} - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.3 - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - /ripemd160@2.0.1: - resolution: {integrity: sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==} - dependencies: - hash-base: 2.0.2 - inherits: 2.0.4 - - /ripemd160@2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + ripemd160@2.0.2: dependencies: hash-base: 3.1.0 inherits: 2.0.4 - /ripple-address-codec@4.3.1: - resolution: {integrity: sha512-Qa3+9wKVvpL/xYtT6+wANsn0A1QcC5CT6IMZbRJZ/1lGt7gmwIfsrCuz1X0+LCEO7zgb+3UT1I1dc0k/5dwKQQ==} - engines: {node: '>= 10'} - dependencies: - base-x: 3.0.11 - create-hash: 1.2.0 - dev: false - - /ripple-binary-codec@1.11.0: - resolution: {integrity: sha512-g7+gs3T+NfoeW6vIq5dcN0CkIT4t/zwRzFxz8X2RzfbrWRnewPUKqQbmBgs05tXLX5NuWPaneiaAVpFpYBcdfw==} - engines: {node: '>= 10'} - dependencies: - assert: 2.1.0 - big-integer: 1.6.51 - buffer: 6.0.3 - create-hash: 1.2.0 - decimal.js: 10.4.3 - ripple-address-codec: 4.3.1 - dev: false - - /ripple-keypairs@1.3.1: - resolution: {integrity: sha512-dmPlraWKJciFJxHcoubDahGnoIalG5e/BtV6HNDUs7wLXmtnLMHt6w4ed9R8MTL2zNrVPiIdI/HCtMMo0Tm7JQ==} - engines: {node: '>= 10'} + ripple-address-codec@5.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - bn.js: 5.2.1 - brorand: 1.1.0 - elliptic: 6.6.1 - hash.js: 1.1.7 - ripple-address-codec: 4.3.1 - dev: false + '@scure/base': 1.2.5 + '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /ripple-lib-transactionparser@0.8.2: - resolution: {integrity: sha512-1teosQLjYHLyOQrKUQfYyMjDR3MAq/Ga+MJuLUfpBMypl4LZB4bEoMcmG99/+WVTEiZOezJmH9iCSvm/MyxD+g==} + ripple-binary-codec@2.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - bignumber.js: 9.1.2 - lodash: 4.17.21 - dev: false + '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + bignumber.js: 9.3.0 + ripple-address-codec: 5.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /ripple-lib@1.10.1: - resolution: {integrity: sha512-OQk+Syl2JfxKxV2KuF/kBMtnh012I5tNnziP3G4WDGCGSIAgeqkOgkR59IQ0YDNrs1YW8GbApxrdMSRi/QClcA==} - engines: {node: '>=10.13.0', yarn: ^1.15.2} - deprecated: 'ripple-lib is deprecated. Please migrate to xrpl.js using this migration guide: https://xrpl.org/xrpljs2-migration-guide.html' + ripple-keypairs@2.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@types/lodash': 4.17.7 - '@types/ws': 7.4.7 - bignumber.js: 9.1.2 - https-proxy-agent: 5.0.1 - jsonschema: 1.2.2 - lodash: 4.17.21 - ripple-address-codec: 4.3.1 - ripple-binary-codec: 1.11.0 - ripple-keypairs: 1.3.1 - ripple-lib-transactionparser: 0.8.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + '@noble/curves': 1.8.0 + '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ripple-address-codec: 5.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - - supports-color - utf-8-validate - dev: false - /rlp@2.2.7: - resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==} - hasBin: true + rlp@2.2.7: dependencies: - bn.js: 5.2.1 + bn.js: 5.2.2 - /rollup-plugin-copy@3.5.0: - resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} - engines: {node: '>=8.3'} + rollup-plugin-copy@3.5.0: dependencies: '@types/fs-extra': 8.1.5 colorette: 1.4.0 fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 - dev: true - /rollup-plugin-node-externals@6.1.2(rollup@4.22.4): - resolution: {integrity: sha512-2TWan0u0/zHcgPrKpIPgKSY8OMqwDAYD380I0hxx7iUQw8mrN34DWwG9sQUMEo5Yy4xd6/5QEAySYgiKN9fdBQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - rollup: ^3.0.0 || ^4.0.0 + rollup-plugin-node-externals@6.1.2(rollup@4.41.1): dependencies: - rollup: 4.22.4 - dev: true + rollup: 4.41.1 - /rollup-plugin-postcss@4.0.2(postcss@8.4.38): - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x + rollup-plugin-postcss@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.15(postcss@8.4.38) + cssnano: 5.1.15(postcss@8.5.3) import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 - postcss: 8.4.38 - postcss-load-config: 3.1.4(postcss@8.4.38) - postcss-modules: 4.3.1(postcss@8.4.38) + postcss: 8.5.3 + postcss-load-config: 3.1.4(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3)) + postcss-modules: 4.3.1(postcss@8.5.3) promise.series: 0.2.0 - resolve: 1.22.8 + resolve: 1.22.10 rollup-pluginutils: 2.8.2 safe-identifier: 0.4.2 style-inject: 0.3.0 transitivePeerDependencies: - ts-node - dev: true - /rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + rollup-pluginutils@2.8.2: dependencies: estree-walker: 0.6.1 - dev: true - /rollup-preserve-directives@1.1.2(rollup@4.22.4): - resolution: {integrity: sha512-OOaYh4zO0Dcd/eVWGB8H69CgTiohl+jJqc2TLtjLENVIQaV2rxO3OW6RILzCQOdDvPT+/rzwRp+97OXhem895Q==} - peerDependencies: - rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-preserve-directives@1.1.3(rollup@4.41.1): dependencies: - magic-string: 0.30.14 - rollup: 4.22.4 - dev: true + magic-string: 0.30.17 + rollup: 4.41.1 - /rollup@4.22.4: - resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.41.1: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.7 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.22.4 - '@rollup/rollup-android-arm64': 4.22.4 - '@rollup/rollup-darwin-arm64': 4.22.4 - '@rollup/rollup-darwin-x64': 4.22.4 - '@rollup/rollup-linux-arm-gnueabihf': 4.22.4 - '@rollup/rollup-linux-arm-musleabihf': 4.22.4 - '@rollup/rollup-linux-arm64-gnu': 4.22.4 - '@rollup/rollup-linux-arm64-musl': 4.22.4 - '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4 - '@rollup/rollup-linux-riscv64-gnu': 4.22.4 - '@rollup/rollup-linux-s390x-gnu': 4.22.4 - '@rollup/rollup-linux-x64-gnu': 4.22.4 - '@rollup/rollup-linux-x64-musl': 4.22.4 - '@rollup/rollup-win32-arm64-msvc': 4.22.4 - '@rollup/rollup-win32-ia32-msvc': 4.22.4 - '@rollup/rollup-win32-x64-msvc': 4.22.4 + '@rollup/rollup-android-arm-eabi': 4.41.1 + '@rollup/rollup-android-arm64': 4.41.1 + '@rollup/rollup-darwin-arm64': 4.41.1 + '@rollup/rollup-darwin-x64': 4.41.1 + '@rollup/rollup-freebsd-arm64': 4.41.1 + '@rollup/rollup-freebsd-x64': 4.41.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.41.1 + '@rollup/rollup-linux-arm-musleabihf': 4.41.1 + '@rollup/rollup-linux-arm64-gnu': 4.41.1 + '@rollup/rollup-linux-arm64-musl': 4.41.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.41.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.41.1 + '@rollup/rollup-linux-riscv64-gnu': 4.41.1 + '@rollup/rollup-linux-riscv64-musl': 4.41.1 + '@rollup/rollup-linux-s390x-gnu': 4.41.1 + '@rollup/rollup-linux-x64-gnu': 4.41.1 + '@rollup/rollup-linux-x64-musl': 4.41.1 + '@rollup/rollup-win32-arm64-msvc': 4.41.1 + '@rollup/rollup-win32-ia32-msvc': 4.41.1 + '@rollup/rollup-win32-x64-msvc': 4.41.1 fsevents: 2.3.3 - dev: true - /rpc-websockets@9.0.2: - resolution: {integrity: sha512-YzggvfItxMY3Lwuax5rC18inhbjJv9Py7JXRHxTIi94JOLrqBsSsUUc5bbl5W6c11tXhdfpDPK0KzBhoGe8jjw==} + rpc-websockets@9.1.1: dependencies: - '@swc/helpers': 0.5.15 + '@swc/helpers': 0.5.17 '@types/uuid': 8.3.4 - '@types/ws': 8.5.3 + '@types/ws': 8.18.1 buffer: 6.0.3 eventemitter3: 5.0.1 uuid: 8.3.2 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - bufferutil: 4.0.7 + bufferutil: 4.0.9 utf-8-validate: 5.0.10 - /rtcpeerconnection-shim@1.2.15: - resolution: {integrity: sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw==} - engines: {node: '>=6.0.0', npm: '>=3.10.0'} + rtcpeerconnection-shim@1.2.15: dependencies: sdp: 2.12.0 - dev: false - - /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} - dependencies: - execa: 5.1.1 - /run-async@3.0.0: - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} - engines: {node: '>=0.12.0'} - dev: false + run-async@3.0.0: {} - /run-parallel-limit@1.1.0: - resolution: {integrity: sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + rxjs@6.6.7: dependencies: - queue-microtask: 1.2.3 - - /rustbn.js@0.2.0: - resolution: {integrity: sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA==} + tslib: 1.14.1 - /rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} + rxjs@7.8.2: dependencies: - tslib: 1.14.1 - dev: false + tslib: 2.8.1 - /safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.3: dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 isarray: 2.0.5 - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safe-buffer@5.2.1: {} - /safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - dev: true + safe-identifier@0.4.2: {} - /safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + safe-push-apply@1.0.0: dependencies: - call-bind: 1.0.8 es-errors: 1.3.0 - is-regex: 1.1.4 + isarray: 2.0.5 - /safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: '>=10'} - dev: false + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + safe-stable-stringify@2.5.0: {} - /salmon-adapter-sdk@1.1.1(@solana/web3.js@1.95.8): - resolution: {integrity: sha512-28ysSzmDjx2AbotxSggqdclh9MCwlPJUldKkCph48oS5Xtwu0QOg8T9ZRHS2Mben4Y8sTq6VvxXznKssCYFBJA==} - peerDependencies: - '@solana/web3.js': ^1.44.3 + safer-buffer@2.1.2: {} + + salmon-adapter-sdk@1.1.1(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)): dependencies: - '@project-serum/sol-wallet-adapter': 0.2.6(@solana/web3.js@1.95.8) - '@solana/web3.js': 1.95.8(encoding@0.1.13) + '@project-serum/sol-wallet-adapter': 0.2.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) eventemitter3: 4.0.7 - dev: false - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - dev: true - - /scheduler@0.19.1: - resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - dev: false - /scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 - dev: false - /scheduler@0.24.0-canary-efb381bbf-20230505: - resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + scheduler@0.24.0-canary-efb381bbf-20230505: dependencies: loose-envify: 1.4.0 - dev: false - /scrypt-js@3.0.1: - resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} + scrypt-js@3.0.1: {} - /sdp@2.12.0: - resolution: {integrity: sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw==} - dev: false + sdp@2.12.0: {} - /secp256k1@5.0.1: - resolution: {integrity: sha512-lDFs9AAIaWP9UCdtWrotXWWF9t8PWgQDcxqgAnpM9rMqxb3Oaq2J0thzPVSxBwdJgyQtkU/sYtFtbM1RSt/iYA==} - engines: {node: '>=18.0.0'} - requiresBuild: true + secp256k1@5.0.1: dependencies: elliptic: 6.6.1 node-addon-api: 5.1.0 - node-gyp-build: 4.6.0 + node-gyp-build: 4.8.4 - /secure-json-parse@2.7.0: - resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} - dev: true + secure-json-parse@2.7.0: {} - /selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} + selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 - dev: false - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 + semver@7.7.2: {} - /send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@0.19.0: dependencies: debug: 2.6.9 depd: 2.0.0 @@ -23991,36 +27926,25 @@ packages: statuses: 2.0.1 transitivePeerDependencies: - supports-color - dev: false - /serialize-error@2.1.0: - resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} - engines: {node: '>=0.10.0'} - dev: false + serialize-error@2.1.0: {} - /serialize-javascript@6.0.0: - resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 - /serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + serve-static@1.16.2: dependencies: - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.18.0 + send: 0.19.0 transitivePeerDependencies: - supports-color - dev: false - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + set-blocking@2.0.0: {} - /set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -24029,652 +27953,435 @@ packages: gopd: 1.2.0 has-property-descriptors: 1.0.2 - /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + set-function-name@2.0.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - /setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + setimmediate@1.0.5: {} - /sha.js@2.4.11: - resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} - hasBin: true + setprototypeof@1.2.0: {} + + sha.js@2.4.11: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - /sha256-uint8array@0.10.7: - resolution: {integrity: sha512-1Q6JQU4tX9NqsDGodej6pkrUVQVNapLZnvkwIhddH/JqzBZF1fSaxSWNY6sziXBE8aEa2twtGkXUrwzGeZCMpQ==} - dev: false + sha256-uint8array@0.10.7: {} - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - dev: false - /sharp@0.33.5: - resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - requiresBuild: true + sharp@0.34.2: dependencies: color: 4.2.3 - detect-libc: 2.0.3 - semver: 7.5.4 + detect-libc: 2.0.4 + semver: 7.7.2 optionalDependencies: - '@img/sharp-darwin-arm64': 0.33.5 - '@img/sharp-darwin-x64': 0.33.5 - '@img/sharp-libvips-darwin-arm64': 1.0.4 - '@img/sharp-libvips-darwin-x64': 1.0.4 - '@img/sharp-libvips-linux-arm': 1.0.5 - '@img/sharp-libvips-linux-arm64': 1.0.4 - '@img/sharp-libvips-linux-s390x': 1.0.4 - '@img/sharp-libvips-linux-x64': 1.0.4 - '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 - '@img/sharp-libvips-linuxmusl-x64': 1.0.4 - '@img/sharp-linux-arm': 0.33.5 - '@img/sharp-linux-arm64': 0.33.5 - '@img/sharp-linux-s390x': 0.33.5 - '@img/sharp-linux-x64': 0.33.5 - '@img/sharp-linuxmusl-arm64': 0.33.5 - '@img/sharp-linuxmusl-x64': 0.33.5 - '@img/sharp-wasm32': 0.33.5 - '@img/sharp-win32-ia32': 0.33.5 - '@img/sharp-win32-x64': 0.33.5 - dev: false + '@img/sharp-darwin-arm64': 0.34.2 + '@img/sharp-darwin-x64': 0.34.2 + '@img/sharp-libvips-darwin-arm64': 1.1.0 + '@img/sharp-libvips-darwin-x64': 1.1.0 + '@img/sharp-libvips-linux-arm': 1.1.0 + '@img/sharp-libvips-linux-arm64': 1.1.0 + '@img/sharp-libvips-linux-ppc64': 1.1.0 + '@img/sharp-libvips-linux-s390x': 1.1.0 + '@img/sharp-libvips-linux-x64': 1.1.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 + '@img/sharp-libvips-linuxmusl-x64': 1.1.0 + '@img/sharp-linux-arm': 0.34.2 + '@img/sharp-linux-arm64': 0.34.2 + '@img/sharp-linux-s390x': 0.34.2 + '@img/sharp-linux-x64': 0.34.2 + '@img/sharp-linuxmusl-arm64': 0.34.2 + '@img/sharp-linuxmusl-x64': 0.34.2 + '@img/sharp-wasm32': 0.34.2 + '@img/sharp-win32-arm64': 0.34.2 + '@img/sharp-win32-ia32': 0.34.2 + '@img/sharp-win32-x64': 0.34.2 optional: true - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: false + shell-quote@1.8.2: {} - /side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + side-channel-list@1.0.0: dependencies: - call-bind: 1.0.7 es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.1 + object-inspect: 1.13.4 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 - /simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} - requiresBuild: true + side-channel@1.1.0: dependencies: - is-arrayish: 0.3.2 - dev: false - optional: true + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + signal-exit@3.0.7: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + signal-exit@4.1.0: {} - /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: false + sisteransi@1.0.5: {} - /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - array.prototype.flat: 1.3.2 - breakword: 1.0.5 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - dev: true + slash@3.0.0: {} - /snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + smart-buffer@4.2.0: {} + + snake-case@3.0.4: dependencies: dot-case: 3.0.4 tslib: 2.8.1 - dev: false - /socket.io-client@4.7.5: - resolution: {integrity: sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==} - engines: {node: '>=10.0.0'} + socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@8.1.1) - engine.io-client: 6.5.4 + debug: 4.3.7 + engine.io-client: 6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: false - /socket.io-parser@4.2.4: - resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} - engines: {node: '>=10.0.0'} + socket.io-parser@4.2.4: dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.7 transitivePeerDependencies: - supports-color - dev: false - /socks-proxy-agent@6.1.1: - resolution: {integrity: sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==} - engines: {node: '>= 10'} + socks-proxy-agent@8.0.5: dependencies: - agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) - socks: 2.8.3 + agent-base: 7.1.3 + debug: 4.4.1(supports-color@8.1.1) + socks: 2.8.4 transitivePeerDependencies: - supports-color - dev: false - /socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + socks@2.8.4: dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 - dev: false - /solady@0.0.235: - resolution: {integrity: sha512-JUEXLDG7ag3HmqUnrDG7ilhafH6R9bFPpwV63O2kH4UbnS2+gRGEOqqy4k01O7tHjo3MWkDD0cpG+UY9pjy/fQ==} - dev: false + solady@0.0.235: {} - /solc@0.7.3(debug@4.3.4): - resolution: {integrity: sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==} - engines: {node: '>=8.0.0'} - hasBin: true + solc@0.8.13: dependencies: command-exists: 1.2.9 - commander: 3.0.2 - follow-redirects: 1.15.4(debug@4.3.4) - fs-extra: 0.30.0 + commander: 8.3.0 + follow-redirects: 1.15.9(debug@4.4.1) js-sha3: 0.8.0 memorystream: 0.3.1 - require-from-string: 2.0.2 - semver: 7.5.4 + semver: 7.7.2 tmp: 0.0.33 transitivePeerDependencies: - debug - /solc@0.8.13: - resolution: {integrity: sha512-C0yTN+rjEOGO6uVOXI8+EKa75SFMuZpQ2tryex4QxWIg0HRWZvCHKfVPuLZ5wx06Sb6GBp6uQA5yqQyXZnXOJw==} - engines: {node: '>=10.0.0'} - hasBin: true + solc@0.8.26(debug@4.4.1): dependencies: command-exists: 1.2.9 commander: 8.3.0 - follow-redirects: 1.15.4(debug@4.3.4) + follow-redirects: 1.15.9(debug@4.4.1) js-sha3: 0.8.0 memorystream: 0.3.1 - semver: 7.5.4 + semver: 7.7.2 tmp: 0.0.33 transitivePeerDependencies: - debug - dev: false - /sonic-boom@2.8.0: - resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} + sonic-boom@2.8.0: dependencies: atomic-sleep: 1.0.0 - dev: false - /sonic-boom@4.0.1: - resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} + sonic-boom@4.2.0: dependencies: - atomic-sleep: 1.0.0 - dev: true - - /sonner@1.4.41(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-uG511ggnnsw6gcn/X+YKkWPo5ep9il9wYi3QJxHsYe7yTZ4+cOd1wuodOUmOpFuXL+/RE3R04LczdNCDygTDgQ==} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + atomic-sleep: 1.0.0 + + sonner@1.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: false - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} + sonner@1.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + source-map-js@1.2.1: {} + + source-map-support@0.5.13: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} - dev: false + source-map@0.5.7: {} - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + source-map@0.6.1: {} - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@3.0.1: dependencies: cross-spawn: 7.0.6 - signal-exit: 3.0.7 - dev: true - - /spdx-correct@3.1.1: - resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.12 - dev: true - - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - dev: true - - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.12 - dev: true + signal-exit: 4.1.0 - /spdx-license-ids@3.0.12: - resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} - dev: true + split-on-first@1.1.0: {} - /split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - dev: false + split2@4.2.0: {} - /split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} + sprintf-js@1.0.3: {} - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.1.3: {} - /sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - dev: false + stable-hash@0.0.5: {} - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - dev: true + stable@0.1.8: {} - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - dev: false + stackframe@1.3.4: {} - /stacktrace-parser@0.1.10: - resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} - engines: {node: '>=6'} + stacktrace-parser@0.1.11: dependencies: type-fest: 0.7.1 - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - dev: false - - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + statuses@1.5.0: {} - /std-env@3.7.0: - resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} - dev: false + statuses@2.0.1: {} - /stream-browserify@3.0.0: - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + stream-browserify@3.0.0: dependencies: inherits: 2.0.4 readable-stream: 3.6.2 - dev: false - /stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} - dev: false + stream-chain@2.2.5: {} - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + stream-json@1.9.1: dependencies: - mixme: 0.5.5 - dev: true + stream-chain: 2.2.5 - /streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + stream-shift@1.0.3: {} - /strict-event-emitter-types@2.0.0: - resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==} - dev: false + streamsearch@1.1.0: {} - /strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - dev: false + strict-event-emitter-types@2.0.0: {} - /string-format@2.0.0: - resolution: {integrity: sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==} - dev: true + strict-uri-encode@2.0.0: {} - /string-hash@1.1.3: - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} - dev: true + string-format@2.0.0: {} - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + string-hash@1.1.3: {} + + string-length@4.0.2: dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - dev: true - - /string-width@3.1.0: - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} - engines: {node: '>=6'} - dependencies: - emoji-regex: 7.0.3 - is-fullwidth-code-point: 2.0.0 - strip-ansi: 5.2.0 - dev: false - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - /string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} + string.prototype.includes@2.0.1: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.10 + + string.prototype.matchall@4.0.12: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.7 - regexp.prototype.flags: 1.5.2 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.4 set-function-name: 2.0.2 - side-channel: 1.0.6 + side-channel: 1.1.0 - /string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} + string.prototype.repeat@1.0.0: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.10 + + string.prototype.trim@1.2.10: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.10 es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 - /string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.9: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 es-object-atoms: 1.1.1 - /string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 es-object-atoms: 1.1.1 - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - dev: false - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - /strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} - dependencies: - ansi-regex: 4.1.1 - dev: false - - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + strip-bom@3.0.0: {} - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - dev: true + strip-bom@4.0.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + strip-json-comments@3.1.1: {} - /strip-hex-prefix@1.0.0: - resolution: {integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==} - engines: {node: '>=6.5.0', npm: '>=3'} - dependencies: - is-hex-prefixed: 1.0.0 + style-inject@0.3.0: {} - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + styled-jsx@5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.2.0): dependencies: - min-indent: 1.0.1 - dev: true - - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - /style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - dev: true + client-only: 0.0.1 + react: 18.2.0 + optionalDependencies: + '@babel/core': 7.26.9 + babel-plugin-macros: 3.1.0 - /styled-jsx@5.1.1(@babel/core@7.26.9)(react@18.2.0): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1): dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: '@babel/core': 7.26.9 + babel-plugin-macros: 3.1.0 + + styled-jsx@5.1.1(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.2.0): + dependencies: client-only: 0.0.1 react: 18.2.0 - dev: false + optionalDependencies: + '@babel/core': 7.27.3 + babel-plugin-macros: 3.1.0 - /styled-jsx@5.1.1(@babel/core@7.26.9)(react@18.3.1): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.3.1): dependencies: - '@babel/core': 7.26.9 client-only: 0.0.1 react: 18.3.1 - dev: false + optionalDependencies: + '@babel/core': 7.27.3 + babel-plugin-macros: 3.1.0 - /styled-jsx@5.1.6(@babel/core@7.26.9)(react@18.2.0): - resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.6(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1): dependencies: - '@babel/core': 7.26.9 client-only: 0.0.1 - react: 18.2.0 - dev: false + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.26.9 + babel-plugin-macros: 3.1.0 - /stylehacks@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + stylehacks@5.1.1(postcss@8.5.3): dependencies: - browserslist: 4.24.4 - postcss: 8.4.38 - postcss-selector-parser: 6.1.1 - dev: true + browserslist: 4.24.5 + postcss: 8.5.3 + postcss-selector-parser: 6.1.2 - /stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - dev: false + stylis@4.2.0: {} - /sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/gen-mapping': 0.3.8 commander: 4.1.1 - glob: 10.3.12 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 - pirates: 4.0.6 + pirates: 4.0.7 ts-interface-checker: 0.1.13 - /superstruct@0.15.5: - resolution: {integrity: sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ==} - dev: false + superstruct@0.15.5: {} - /superstruct@1.0.4: - resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==} - engines: {node: '>=14.0.0'} - dev: false + superstruct@1.0.4: {} - /superstruct@2.0.2: - resolution: {integrity: sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==} - engines: {node: '>=14.0.0'} + superstruct@2.0.2: {} - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true + svgo@2.8.0: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -24683,404 +28390,223 @@ packages: csso: 4.2.0 picocolors: 1.1.1 stable: 0.1.8 - dev: true - - /symbol-observable@2.0.3: - resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} - engines: {node: '>=0.10'} - dev: false - - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - dev: true - - /symbol.inspect@1.0.1: - resolution: {integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==} - dev: false - - /synckit@0.8.5: - resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} - engines: {node: ^14.18.0 || >=16.0.0} - dependencies: - '@pkgr/utils': 2.4.2 - tslib: 2.8.1 - - /system-architecture@0.1.0: - resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} - engines: {node: '>=18'} - dev: false - - /table-layout@1.0.2: - resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} - engines: {node: '>=8.0.0'} - dependencies: - array-back: 4.0.2 - deep-extend: 0.6.0 - typical: 5.2.0 - wordwrapjs: 4.0.1 - dev: true - - /tailwind-merge@2.2.2: - resolution: {integrity: sha512-tWANXsnmJzgw6mQ07nE3aCDkCK4QdT3ThPMCzawoYA2Pws7vSTCvz3Vrjg61jVUGfFZPJzxEP+NimbcW+EdaDw==} - dependencies: - '@babel/runtime': 7.24.1 - dev: false - - /tailwindcss-animate@1.0.7(tailwindcss@3.3.0): - resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} - peerDependencies: - tailwindcss: '>=3.0.0 || insiders' - dependencies: - tailwindcss: 3.3.0(postcss@8.4.38) - dev: false - /tailwindcss-animate@1.0.7(tailwindcss@3.4.1): - resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} - peerDependencies: - tailwindcss: '>=3.0.0 || insiders' - dependencies: - tailwindcss: 3.4.1 - dev: false + symbol-observable@2.0.3: {} - /tailwindcss@3.3.0(postcss@8.4.38): - resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} - engines: {node: '>=12.13.0'} - hasBin: true - peerDependencies: - postcss: ^8.0.9 - dependencies: - arg: 5.0.2 - chokidar: 3.5.3 - color-name: 1.1.4 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.0 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 14.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 3.1.4(postcss@8.4.38) - postcss-nested: 6.0.0(postcss@8.4.38) - postcss-selector-parser: 6.0.16 - postcss-value-parser: 4.2.0 - quick-lru: 5.1.1 - resolve: 1.22.8 - sucrase: 3.35.0 - transitivePeerDependencies: - - ts-node + symbol-tree@3.2.4: {} - /tailwindcss@3.4.1: - resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} - engines: {node: '>=14.0.0'} - hasBin: true + symbol.inspect@1.0.1: {} + + table-layout@1.0.2: + dependencies: + array-back: 4.0.2 + deep-extend: 0.6.0 + typical: 5.2.0 + wordwrapjs: 4.0.1 + + tailwind-merge@2.6.0: {} + + tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3))): + dependencies: + tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + + tailwindcss@3.4.17(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 - chokidar: 3.5.3 + chokidar: 3.6.0 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.3.2 + fast-glob: 3.3.3 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 + jiti: 1.21.7 + lilconfig: 3.1.3 + micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 15.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38) - postcss-nested: 6.2.0(postcss@8.4.38) - postcss-selector-parser: 6.0.16 - resolve: 1.22.8 + picocolors: 1.1.1 + postcss: 8.5.3 + postcss-import: 15.1.0(postcss@8.5.3) + postcss-js: 4.0.1(postcss@8.5.3) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + postcss-nested: 6.2.0(postcss@8.5.3) + postcss-selector-parser: 6.1.2 + resolve: 1.22.10 sucrase: 3.35.0 transitivePeerDependencies: - ts-node - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - /temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + temp@0.8.4: dependencies: rimraf: 2.6.3 - dev: false - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: true + term-size@2.2.1: {} - /terser@5.27.0: - resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==} - engines: {node: '>=10'} - hasBin: true + terser@5.40.0: dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.12.1 + '@jridgewell/source-map': 0.3.6 + acorn: 8.14.1 commander: 2.20.3 source-map-support: 0.5.21 - dev: false - /teslabot@1.5.0: - resolution: {integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==} - dev: false + teslabot@1.5.0: {} - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - /text-encoding-utf-8@1.0.2: - resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} + text-encoding-utf-8@1.0.2: {} - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + text-table@0.2.0: {} - /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 - /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + thenify@3.3.1: dependencies: any-promise: 1.3.0 - /thread-stream@0.15.2: - resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} + thread-stream@0.15.2: dependencies: real-require: 0.1.0 - dev: false - /throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - dev: false + throat@5.0.0: {} - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + tiny-invariant@1.3.3: {} - /tiny-invariant@1.3.1: - resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} - dev: false + tiny-secp256k1@1.1.7: + dependencies: + bindings: 1.5.0 + bn.js: 4.12.2 + create-hmac: 1.1.7 + elliptic: 6.6.1 + nan: 2.22.2 - /tiny-secp256k1@2.2.3: - resolution: {integrity: sha512-SGcL07SxcPN2nGKHTCvRMkQLYPSoeFcvArUSCYtjVARiFAWU44cCIqYS0mYAU6nY7XfvwURuTIGo2Omt3ZQr0Q==} - engines: {node: '>=14.0.0'} + tiny-secp256k1@2.2.3: dependencies: uint8array-tools: 0.0.7 - dev: false - - /tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - dev: false - /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} + tiny-warning@1.0.3: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tinyglobby@0.2.14: dependencies: - os-tmpdir: 1.0.2 - - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + fdir: 6.4.5(picomatch@4.0.2) + picomatch: 4.0.2 - /to-buffer@1.2.1: - resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==} - engines: {node: '>= 0.4'} + tmp@0.0.33: dependencies: - isarray: 2.0.5 - safe-buffer: 5.2.1 - typed-array-buffer: 1.0.3 + os-tmpdir: 1.0.2 - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - dev: false + tmpl@1.0.5: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /toformat@2.0.0: - resolution: {integrity: sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==} - dev: false - - /toggle-selection@1.0.6: - resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} - dev: false + toformat@2.0.0: {} - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + toidentifier@1.0.1: {} - /toml@3.0.0: - resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} - dev: false + toml@3.0.0: {} - /tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@4.1.4: dependencies: - psl: 1.9.0 - punycode: 2.3.0 + psl: 1.15.0 + punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 - dev: true - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + tr46@0.0.3: {} - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + tr46@3.0.0: dependencies: - punycode: 2.3.0 - dev: true - - /treeify@1.1.0: - resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==} - engines: {node: '>=0.6'} - dev: false + punycode: 2.3.1 - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: true + treeify@1.1.0: {} - /tronweb@6.0.3: - resolution: {integrity: sha512-5FKHuGiSqleQ2ASxio7h9URsJ5w8nCjfI0hZawTWefbgeVM1r0sZ7qfGMWl3xjKTLvILrnocwB97TQYBnL0Faw==} + tronweb@6.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@babel/runtime': 7.26.10 - axios: 1.8.3 + axios: 1.9.0 bignumber.js: 9.1.2 ethereum-cryptography: 2.2.1 - ethers: 6.13.5 + ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) eventemitter3: 5.0.1 google-protobuf: 3.21.4 - semver: 7.5.4 + semver: 7.7.2 validator: 13.12.0 transitivePeerDependencies: - bufferutil - debug - utf-8-validate - dev: false - /ts-api-utils@1.3.0(typescript@5.1.3): - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' + ts-api-utils@2.1.0(typescript@5.1.3): dependencies: typescript: 5.1.3 - dev: false - /ts-api-utils@1.3.0(typescript@5.4.3): - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' + ts-api-utils@2.1.0(typescript@5.4.3): dependencies: typescript: 5.4.3 - /ts-command-line-args@2.5.1: - resolution: {integrity: sha512-H69ZwTw3rFHb5WYpQya40YAX2/w7Ut75uUECbgBIsLmM+BNuYnxsltfyyLMxy6sEeKxgijLTnQtLd0nKd6+IYw==} - hasBin: true + ts-command-line-args@2.5.1: dependencies: chalk: 4.1.2 command-line-args: 5.2.1 command-line-usage: 6.1.3 string-format: 2.0.0 - dev: true - /ts-essentials@7.0.3(typescript@5.4.3): - resolution: {integrity: sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==} - peerDependencies: - typescript: '>=3.7.0' + ts-essentials@7.0.3(typescript@5.4.3): dependencies: typescript: 5.4.3 - dev: true - /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + ts-interface-checker@0.1.13: {} - /ts-jest@29.3.1(@babel/core@7.26.9)(@jest/types@29.4.3)(jest@29.7.0)(typescript@5.4.3): - resolution: {integrity: sha512-FT2PIRtZABwl6+ZCry8IY7JZ3xMuppsEV9qFVHOVe8jDzggwUZ9TsM4chyJxL9yi6LvkqcZYU3LmapEE454zBQ==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-jest@29.3.4(@babel/core@7.27.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.3))(jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)))(typescript@5.4.3): dependencies: - '@babel/core': 7.26.9 - '@jest/types': 29.4.3 bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.18.2) + jest: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.5.4 + semver: 7.7.2 type-fest: 4.41.0 typescript: 5.4.3 yargs-parser: 21.1.1 - dev: true + optionalDependencies: + '@babel/core': 7.27.3 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.27.3) - /ts-mixer@6.0.4: - resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} - dev: false + ts-mixer@6.0.4: {} - /ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3): - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + ts-node@10.9.2(@types/node@18.19.105)(typescript@5.4.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 18.19.105 + acorn: 8.14.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optional: true + + ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -25088,7 +28614,7 @@ packages: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 20.3.1 - acorn: 8.12.1 + acorn: 8.14.1 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -25097,196 +28623,98 @@ packages: typescript: 5.4.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true + optional: true - /tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 22.15.24 + acorn: 8.14.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - /tslib@2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - - /tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - dev: false - - /tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - dev: false - - /tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tslib@1.14.1: {} - /tsort@0.0.1: - resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==} + tslib@2.7.0: {} - /tsutils@3.21.0(typescript@5.1.3): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 5.1.3 - dev: false + tslib@2.8.1: {} - /tsutils@3.21.0(typescript@5.4.3): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 5.4.3 + tsort@0.0.1: {} - /tsx@3.12.7: - resolution: {integrity: sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==} - hasBin: true + tsx@3.14.0: dependencies: - '@esbuild-kit/cjs-loader': 2.4.2 - '@esbuild-kit/core-utils': 3.1.0 - '@esbuild-kit/esm-loader': 2.5.5 + esbuild: 0.18.20 + get-tsconfig: 4.10.1 + source-map-support: 0.5.21 optionalDependencies: fsevents: 2.3.3 - dev: true - - /tty-table@4.1.6: - resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} - engines: {node: '>=8.0.0'} - hasBin: true - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.6.2 - dev: true - /turbo-darwin-64@2.4.4: - resolution: {integrity: sha512-5kPvRkLAfmWI0MH96D+/THnDMGXlFNmjeqNRj5grLKiry+M9pKj3pRuScddAXPdlxjO5Ptz06UNaOQrrYGTx1g==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-64@2.5.3: optional: true - /turbo-darwin-arm64@2.4.4: - resolution: {integrity: sha512-/gtHPqbGQXDFhrmy+Q/MFW2HUTUlThJ97WLLSe4bxkDrKHecDYhAjbZ4rN3MM93RV9STQb3Tqy4pZBtsd4DfCw==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-arm64@2.5.3: optional: true - /turbo-linux-64@2.4.4: - resolution: {integrity: sha512-SR0gri4k0bda56hw5u9VgDXLKb1Q+jrw4lM7WAhnNdXvVoep4d6LmnzgMHQQR12Wxl3KyWPbkz9d1whL6NTm2Q==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-64@2.5.3: optional: true - /turbo-linux-arm64@2.4.4: - resolution: {integrity: sha512-COXXwzRd3vslQIfJhXUklgEqlwq35uFUZ7hnN+AUyXx7hUOLIiD5NblL+ETrHnhY4TzWszrbwUMfe2BYWtaPQg==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-arm64@2.5.3: optional: true - /turbo-windows-64@2.4.4: - resolution: {integrity: sha512-PV9rYNouGz4Ff3fd6sIfQy5L7HT9a4fcZoEv8PKRavU9O75G7PoDtm8scpHU10QnK0QQNLbE9qNxOAeRvF0fJg==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-64@2.5.3: optional: true - /turbo-windows-arm64@2.4.4: - resolution: {integrity: sha512-403sqp9t5sx6YGEC32IfZTVWkRAixOQomGYB8kEc6ZD+//LirSxzeCHCnM8EmSXw7l57U1G+Fb0kxgTcKPU/Lg==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-arm64@2.5.3: optional: true - /turbo@2.4.4: - resolution: {integrity: sha512-N9FDOVaY3yz0YCOhYIgOGYad7+m2ptvinXygw27WPLQvcZDl3+0Sa77KGVlLSiuPDChOUEnTKE9VJwLSi9BPGQ==} - hasBin: true + turbo@2.5.3: optionalDependencies: - turbo-darwin-64: 2.4.4 - turbo-darwin-arm64: 2.4.4 - turbo-linux-64: 2.4.4 - turbo-linux-arm64: 2.4.4 - turbo-windows-64: 2.4.4 - turbo-windows-arm64: 2.4.4 - dev: true - - /tweetnacl-util@0.15.1: - resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==} + turbo-darwin-64: 2.5.3 + turbo-darwin-arm64: 2.5.3 + turbo-linux-64: 2.5.3 + turbo-linux-arm64: 2.5.3 + turbo-windows-64: 2.5.3 + turbo-windows-arm64: 2.5.3 - /tweetnacl@1.0.3: - resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} + tweetnacl-util@0.15.1: {} - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + tweetnacl@1.0.3: {} + + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + type-detect@4.0.8: {} - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - dev: true + type-fest@0.20.2: {} - /type-fest@0.7.1: - resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} - engines: {node: '>=8'} + type-fest@0.21.3: {} - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - dev: true + type-fest@0.7.1: {} - /type-fest@4.41.0: - resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} - engines: {node: '>=16'} - dev: true + type-fest@4.41.0: {} - /typechain@8.3.2(typescript@5.4.3): - resolution: {integrity: sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q==} - hasBin: true - peerDependencies: - typescript: '>=4.3.0' + typechain@8.3.2(typescript@5.4.3): dependencies: - '@types/prettier': 2.7.2 - debug: 4.3.4(supports-color@8.1.1) + '@types/prettier': 2.7.3 + debug: 4.4.1(supports-color@8.1.1) fs-extra: 7.0.1 glob: 7.1.7 js-sha3: 0.8.0 @@ -25298,1098 +28726,746 @@ packages: typescript: 5.4.3 transitivePeerDependencies: - supports-color - dev: true - - /typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.8 - es-errors: 1.3.0 - is-typed-array: 1.1.15 - /typed-array-buffer@1.0.3: - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.3: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-typed-array: 1.1.15 - /typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.3: dependencies: call-bind: 1.0.8 for-each: 0.3.5 gopd: 1.2.0 - has-proto: 1.0.3 + has-proto: 1.2.0 is-typed-array: 1.1.15 - /typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 for-each: 0.3.5 gopd: 1.2.0 - has-proto: 1.0.3 + has-proto: 1.2.0 is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 - /typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} + typed-array-length@1.0.7: dependencies: call-bind: 1.0.8 for-each: 0.3.5 gopd: 1.2.0 - has-proto: 1.0.3 is-typed-array: 1.1.15 - possible-typed-array-names: 1.0.0 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 - /typedoc-plugin-markdown@4.6.0(typedoc@0.28.1): - resolution: {integrity: sha512-RG90uC1QqGN9kPBjzEckEf0v9yIYlLoNYKm4OqjwEGFJJGOLUDs5pIEQQDR2tAv1RD7D8GUSakRlcHMTipyaOA==} - engines: {node: '>= 18'} - peerDependencies: - typedoc: 0.28.x + typedoc-plugin-markdown@4.6.3(typedoc@0.28.5(typescript@5.4.3)): dependencies: - typedoc: 0.28.1(typescript@5.4.3) - dev: true + typedoc: 0.28.5(typescript@5.4.3) - /typedoc@0.28.1(typescript@5.4.3): - resolution: {integrity: sha512-Mn2VPNMaxoe/hlBiLriG4U55oyAa3Xo+8HbtEwV7F5WEOPXqtxzGuMZhJYHaqFJpajeQ6ZDUC2c990NAtTbdgw==} - engines: {node: '>= 18', pnpm: '>= 10'} - hasBin: true - peerDependencies: - typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x + typedoc@0.28.5(typescript@5.4.3): dependencies: - '@gerrit0/mini-shiki': 3.2.1 + '@gerrit0/mini-shiki': 3.4.2 lunr: 2.3.9 markdown-it: 14.1.0 minimatch: 9.0.5 typescript: 5.4.3 - yaml: 2.7.0 - dev: true + yaml: 2.8.0 - /typeforce@1.18.0: - resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} - dev: false + typeforce@1.18.0: {} + + typescript@5.1.3: {} - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: false + typescript@5.4.3: {} - /typescript@5.1.3: - resolution: {integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==} - engines: {node: '>=14.17'} - hasBin: true - dev: false + typical@4.0.0: {} - /typescript@5.4.3: - resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} - engines: {node: '>=14.17'} - hasBin: true + typical@5.2.0: {} - /typical@4.0.0: - resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} - engines: {node: '>=8'} - dev: true + ua-is-frozen@0.1.2: {} - /typical@5.2.0: - resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} - engines: {node: '>=8'} - dev: true + ua-parser-js@2.0.3(encoding@0.1.13): + dependencies: + '@types/node-fetch': 2.6.12 + detect-europe-js: 0.1.2 + is-standalone-pwa: 0.1.1 + node-fetch: 2.7.0(encoding@0.1.13) + ua-is-frozen: 0.1.2 + transitivePeerDependencies: + - encoding - /ua-parser-js@1.0.38: - resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==} - dev: false + uc.micro@2.1.0: {} - /uc.micro@2.1.0: - resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} - dev: true + ufo@1.6.1: {} - /ufo@1.5.4: - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} - dev: false + uint8array-tools@0.0.7: {} - /uint8array-tools@0.0.7: - resolution: {integrity: sha512-vrrNZJiusLWoFWBqz5Y5KMCgP9W9hnjZHzZiZRT8oNAkq3d5Z5Oe76jAvVVSRh4U8GGR90N2X1dWtrhvx6L8UQ==} - engines: {node: '>=14.0.0'} - dev: false + uint8array-tools@0.0.8: {} - /uint8arrays@3.1.0: - resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + uint8arrays@3.1.0: dependencies: multiformats: 9.9.0 - dev: false - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.1.0: dependencies: - call-bind: 1.0.8 - has-bigints: 1.0.2 + call-bound: 1.0.4 + has-bigints: 1.1.0 has-symbols: 1.1.0 - which-boxed-primitive: 1.0.2 + which-boxed-primitive: 1.1.1 - /uncrypto@0.1.3: - resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} - dev: false + uncrypto@0.1.3: {} - /undici-types@6.19.8: - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + undici-types@5.26.5: {} - /undici@5.19.1: - resolution: {integrity: sha512-YiZ61LPIgY73E7syxCDxxa3LV2yl3sN8spnIuTct60boiiRaE1J8mNWHO8Im2Zi/sFrPusjLlmRPrsyraSqX6A==} - engines: {node: '>=12.18'} - dependencies: - busboy: 1.6.0 - dev: false + undici-types@6.19.8: {} - /undici@5.24.0: - resolution: {integrity: sha512-OKlckxBjFl0oXxcj9FU6oB8fDAaiRUq+D8jrFWGmOfI/gIyjk/IeS75LMzgYKUaeHzLUcYvf9bbJGSrUwTfwwQ==} - engines: {node: '>=14.0'} - dependencies: - busboy: 1.6.0 + undici-types@6.21.0: {} - /unenv@1.10.0: - resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} - dependencies: - consola: 3.2.3 - defu: 6.1.4 - mime: 3.0.0 - node-fetch-native: 1.6.4 - pathe: 1.1.2 - dev: false + undici-types@7.10.0: {} - /unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} - dev: false + undici@5.29.0: + dependencies: + '@fastify/busboy': 2.1.1 - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - dev: false + unicode-canonical-property-names-ecmascript@2.0.1: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 - dev: false - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - dev: false + unicode-match-property-value-ecmascript@2.2.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - dev: false + unicode-property-aliases-ecmascript@2.1.0: {} - /unidragger@3.0.1: - resolution: {integrity: sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw==} + unidragger@3.0.1: dependencies: ev-emitter: 2.1.2 - dev: false - - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - dev: true + universalify@0.1.2: {} - /unload@2.4.1: - resolution: {integrity: sha512-IViSAm8Z3sRBYA+9wc0fLQmU9Nrxb16rcDmIiR6Y9LJSZzI7QY5QsDhqPpKOjAn0O9/kfK1TfNEMMAGPTIraPw==} - dev: false + universalify@0.2.0: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + universalify@2.0.1: {} - /unstorage@1.10.2(idb-keyval@6.2.1): - resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} - peerDependencies: - '@azure/app-configuration': ^1.5.0 - '@azure/cosmos': ^4.0.0 - '@azure/data-tables': ^13.2.2 - '@azure/identity': ^4.0.1 - '@azure/keyvault-secrets': ^4.8.0 - '@azure/storage-blob': ^12.17.0 - '@capacitor/preferences': ^5.0.7 - '@netlify/blobs': ^6.5.0 || ^7.0.0 - '@planetscale/database': ^1.16.0 - '@upstash/redis': ^1.28.4 - '@vercel/kv': ^1.0.1 - idb-keyval: ^6.2.1 - ioredis: ^5.3.2 - peerDependenciesMeta: - '@azure/app-configuration': - optional: true - '@azure/cosmos': - optional: true - '@azure/data-tables': - optional: true - '@azure/identity': - optional: true - '@azure/keyvault-secrets': - optional: true - '@azure/storage-blob': - optional: true - '@capacitor/preferences': - optional: true - '@netlify/blobs': - optional: true - '@planetscale/database': - optional: true - '@upstash/redis': - optional: true - '@vercel/kv': - optional: true - idb-keyval: - optional: true - ioredis: - optional: true - dependencies: - anymatch: 3.1.3 - chokidar: 3.6.0 - destr: 2.0.3 - h3: 1.12.0 - idb-keyval: 6.2.1 - listhen: 1.7.2 - lru-cache: 10.2.0 - mri: 1.2.0 - node-fetch-native: 1.6.4 - ofetch: 1.3.4 - ufo: 1.5.4 - transitivePeerDependencies: - - uWebSockets.js - dev: false + unload@2.4.1: {} - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + unpipe@1.0.0: {} - /untun@0.1.3: - resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} - hasBin: true + unrs-resolver@1.7.6: dependencies: - citty: 0.1.6 - consola: 3.2.3 - pathe: 1.1.2 - dev: false - - /update-browserslist-db@1.0.13(browserslist@4.22.3): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + napi-postinstall: 0.2.4 + optionalDependencies: + '@unrs/resolver-binding-darwin-arm64': 1.7.6 + '@unrs/resolver-binding-darwin-x64': 1.7.6 + '@unrs/resolver-binding-freebsd-x64': 1.7.6 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.6 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.6 + '@unrs/resolver-binding-linux-arm64-gnu': 1.7.6 + '@unrs/resolver-binding-linux-arm64-musl': 1.7.6 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.6 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.6 + '@unrs/resolver-binding-linux-riscv64-musl': 1.7.6 + '@unrs/resolver-binding-linux-s390x-gnu': 1.7.6 + '@unrs/resolver-binding-linux-x64-gnu': 1.7.6 + '@unrs/resolver-binding-linux-x64-musl': 1.7.6 + '@unrs/resolver-binding-wasm32-wasi': 1.7.6 + '@unrs/resolver-binding-win32-arm64-msvc': 1.7.6 + '@unrs/resolver-binding-win32-ia32-msvc': 1.7.6 + '@unrs/resolver-binding-win32-x64-msvc': 1.7.6 + + unstorage@1.16.0(idb-keyval@6.2.2): dependencies: - browserslist: 4.22.3 - escalade: 3.2.0 - picocolors: 1.1.1 - dev: true + anymatch: 3.1.3 + chokidar: 4.0.3 + destr: 2.0.5 + h3: 1.15.3 + lru-cache: 10.4.3 + node-fetch-native: 1.6.6 + ofetch: 1.4.1 + ufo: 1.6.1 + optionalDependencies: + idb-keyval: 6.2.2 - /update-browserslist-db@1.1.2(browserslist@4.24.4): - resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.1.3(browserslist@4.24.5): dependencies: - browserslist: 4.24.4 + browserslist: 4.24.5 escalade: 3.2.0 picocolors: 1.1.1 - /uqr@0.1.2: - resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} - dev: false - - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: - punycode: 2.3.0 + punycode: 2.3.1 - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - dev: true - /usb@2.13.0: - resolution: {integrity: sha512-pTNKyxD1DfC1DYu8kFcIdpE8f33e0c2Sbmmi0HEs28HTVC555uocvYR1g5DDv4CBibacCh4BqRyYZJylN4mBbw==} - engines: {node: '>=12.22.0 <13.0 || >=14.17.0'} - requiresBuild: true + usb@2.15.0: dependencies: '@types/w3c-web-usb': 1.0.10 node-addon-api: 8.3.1 - node-gyp-build: 4.6.0 - dev: false - - /use-callback-ref@1.3.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.14 - react: 18.2.0 - tslib: 2.8.1 - dev: false + node-gyp-build: 4.8.4 - /use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-callback-ref@1.3.3(@types/react@18.3.23)(react@18.3.1): dependencies: - '@types/react': 18.3.3 react: 18.3.1 tslib: 2.8.1 - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /use-memo-one@1.1.3(react@18.2.0): - resolution: {integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-memo-one@1.1.3(react@18.2.0): dependencies: react: 18.2.0 - dev: false - /use-sidecar@1.1.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-sidecar@1.1.3(@types/react@18.3.23)(react@18.3.1): dependencies: - '@types/react': 18.2.14 detect-node-es: 1.1.0 - react: 18.2.0 + react: 18.3.1 tslib: 2.8.1 - dev: false + optionalDependencies: + '@types/react': 18.3.23 - /use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-sync-external-store@1.2.0(react@18.2.0): + dependencies: + react: 18.2.0 + + use-sync-external-store@1.2.0(react@18.3.1): dependencies: - '@types/react': 18.3.3 - detect-node-es: 1.1.0 react: 18.3.1 - tslib: 2.8.1 - dev: false - /use-sync-external-store@1.2.2(react@18.2.0): - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.4.0(react@18.2.0): dependencies: react: 18.2.0 - dev: false - /usehooks-ts@3.1.1(react@18.2.0): - resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==} - engines: {node: '>=16.15.0'} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 || ^19 || ^19.0.0-rc + use-sync-external-store@1.5.0(react@18.2.0): dependencies: - lodash.debounce: 4.0.8 react: 18.2.0 - dev: false - /utf-8-validate@5.0.10: - resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} - engines: {node: '>=6.14.2'} - requiresBuild: true + usehooks-ts@3.1.1(react@18.3.1): dependencies: - node-gyp-build: 4.6.0 - - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + lodash.debounce: 4.0.8 + react: 18.3.1 - /util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + utf-8-validate@5.0.10: dependencies: - inherits: 2.0.3 - dev: false + node-gyp-build: 4.8.4 - /util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + util-deprecate@1.0.2: {} + + util@0.12.5: dependencies: inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.13 - which-typed-array: 1.1.15 - dev: false + is-arguments: 1.2.0 + is-generator-function: 1.1.0 + is-typed-array: 1.1.15 + which-typed-array: 1.1.19 - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - dev: false + utils-merge@1.0.1: {} - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true + uuid@8.3.2: {} - /uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true - dev: false + uuid@9.0.1: {} - /uuidv4@6.2.13: - resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==} + uuidv4@6.2.13: dependencies: '@types/uuid': 8.3.4 uuid: 8.3.2 - dev: false - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true + v8-compile-cache-lib@3.0.1: {} - /v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} - engines: {node: '>=10.12.0'} + v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.25 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.9.0 - dev: true + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validator@13.12.0: {} + + valtio@1.13.2(@types/react@18.2.14)(react@18.2.0): dependencies: - spdx-correct: 3.1.1 - spdx-expression-parse: 3.0.1 - dev: true + derive-valtio: 0.1.0(valtio@1.13.2(@types/react@18.2.14)(react@18.2.0)) + proxy-compare: 2.6.0 + use-sync-external-store: 1.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.14 + react: 18.2.0 - /validator@13.12.0: - resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} - engines: {node: '>= 0.10'} - dev: false + valtio@1.13.2(@types/react@18.3.23)(react@18.3.1): + dependencies: + derive-valtio: 0.1.0(valtio@1.13.2(@types/react@18.3.23)(react@18.3.1)) + proxy-compare: 2.6.0 + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + react: 18.3.1 - /varuint-bitcoin@1.1.2: - resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==} + varuint-bitcoin@1.1.2: dependencies: safe-buffer: 5.2.1 - dev: false - /viem@2.18.0(typescript@5.4.3)(zod@3.23.8): - resolution: {integrity: sha512-HA4Dj+PCNWvvZDThWcUPg0sjiS8uwGRaxs3CMBOASL/j0p2pD4nR9vY/y/pAiRr491hGCnrSCVCmb/qqA57wIw==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + varuint-bitcoin@2.0.0: dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 - abitype: 1.0.5(typescript@5.4.3)(zod@3.23.8) - isows: 1.0.4(ws@8.17.1) - typescript: 5.4.3 - webauthn-p256: 0.0.5 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - dev: false + uint8array-tools: 0.0.8 - /viem@2.21.32(typescript@5.4.3): - resolution: {integrity: sha512-2oXt5JNIb683oy7C8wuIJ/SeL3XtHVMEQpy1U2TA6WMnJQ4ScssRvyPwYLcaP6mKlrGXE/cR/V7ncWpvLUVPYQ==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.21.32(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/curves': 1.6.0 '@noble/hashes': 1.5.0 '@scure/bip32': 1.5.0 '@scure/bip39': 1.4.0 - abitype: 1.0.6(typescript@5.4.3) - isows: 1.0.6(ws@8.17.1) - typescript: 5.4.3 + abitype: 1.0.6(typescript@5.4.3)(zod@3.25.33) + isows: 1.0.6(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) webauthn-p256: 0.0.10 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - dev: false - /viem@2.23.13(typescript@5.4.3): - resolution: {integrity: sha512-f3RkcrzGhU79GfBb9GHUL0m3e3LUsNudXIQTFp4fit5hUGb0ew9KOYZ6cCY5d4Melj3noBy2zq0K2fV+mp+Cpg==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.23.13(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: '@noble/curves': 1.8.1 '@noble/hashes': 1.7.1 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 - abitype: 1.0.8(typescript@5.4.3) - isows: 1.0.6(ws@8.17.1) - ox: 0.6.9(typescript@5.4.3) + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + isows: 1.0.6(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.9(typescript@5.4.3)(zod@3.25.33) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: typescript: 5.4.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - zod - dev: false - /viem@2.26.2(typescript@5.4.3): - resolution: {integrity: sha512-+yXSl1n+jV/Kn/zpETiNq0WOcINXti29nxdPIONvvNh+Es0VfeusW8bb2okVfa55pmuc8kOCOpB5wq3ZIUCTSA==} - requiresBuild: true - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: '@noble/curves': 1.8.1 '@noble/hashes': 1.7.1 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 - abitype: 1.0.8(typescript@5.4.3) - isows: 1.0.6(ws@8.17.1) - ox: 0.6.9(typescript@5.4.3) + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + isows: 1.0.6(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.7(typescript@5.4.3)(zod@3.25.33) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: typescript: 5.4.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - zod - /viem@2.28.0(typescript@5.4.3): - resolution: {integrity: sha512-Z4W5O1pe+6pirYTFm451FcZmfGAUxUWt2L/eWC+YfTF28j/8rd7q6MBAi05lMN4KhLJjhN0s5YGIPB+kf1L20g==} - requiresBuild: true - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: - '@noble/curves': 1.8.2 - '@noble/hashes': 1.7.2 - '@scure/bip32': 1.6.2 - '@scure/bip39': 1.5.4 - abitype: 1.0.8(typescript@5.4.3) - isows: 1.0.6(ws@8.17.1) - ox: 0.6.9(typescript@5.4.3) + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.22.4) + isows: 1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.7.1(typescript@5.4.3)(zod@3.22.4) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: typescript: 5.4.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - zod - dev: false - /viem@2.7.19(typescript@5.4.3): - resolution: {integrity: sha512-UOMeqy+8p2709ra2j9HEOL1NfjsXZzlJ8gwR6YO/zXH8KIZvyzW07t4iQARF5+ShVZ/7+/1ec8oPjVi1M//33A==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/bip32': 1.3.2 - '@scure/bip39': 1.2.1 - abitype: 1.0.0(typescript@5.4.3) - isows: 1.0.3(ws@8.17.1) + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) + isows: 1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.7.1(typescript@5.4.3)(zod@3.25.33) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: typescript: 5.4.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - zod - dev: false - /viem@2.9.5(typescript@5.4.3): - resolution: {integrity: sha512-IKLmGZJEQkdt9fqvryjR+W1FsPZM+dhALT0pwR8xhBOLvVHM0/lEViGRWDpm2ArNsFszipFhc2EpKp80/PnXkw==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true + viem@2.7.19(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 - abitype: 1.0.0(typescript@5.4.3) - isows: 1.0.3(ws@8.17.1) + abitype: 1.0.0(typescript@5.4.3)(zod@3.25.33) + isows: 1.0.3(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: typescript: 5.4.3 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - zod - dev: false - /vlq@1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} - dev: false + vlq@1.0.1: {} - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + w3c-xmlserializer@4.0.0: dependencies: xml-name-validator: 4.0.0 - dev: true - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + wagmi@2.15.4(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.77.2)(@tanstack/react-query@5.77.2(react@18.2.0))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33): dependencies: - makeerror: 1.0.12 + '@tanstack/react-query': 5.77.2(react@18.2.0) + '@wagmi/connectors': 5.8.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.2.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.14)(@wagmi/core@2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.5.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)))(bufferutil@4.0.9)(encoding@0.1.13)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33))(zod@3.25.33) + '@wagmi/core': 2.17.2(@tanstack/query-core@5.77.2)(@types/react@18.2.14)(react@18.2.0)(typescript@5.4.3)(use-sync-external-store@1.4.0(react@18.2.0))(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)) + react: 18.2.0 + use-sync-external-store: 1.4.0(react@18.2.0) + viem: 2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - immer + - ioredis + - supports-color + - uploadthing + - utf-8-validate + - zod - /warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + walker@1.0.8: dependencies: - loose-envify: 1.4.0 - dev: false + makeerror: 1.0.12 - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + warning@4.0.3: dependencies: - defaults: 1.0.4 - dev: true + loose-envify: 1.4.0 - /web3-core@4.3.2: - resolution: {integrity: sha512-uIMVd/j4BgOnwfpY8ZT+QKubOyM4xohEhFZXz9xB8wimXWMMlYVlIK/TbfHqFolS9uOerdSGhsMbcK9lETae8g==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-core@4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-errors: 1.1.4 - web3-eth-accounts: 4.1.1 + web3-errors: 1.3.1 + web3-eth-accounts: 4.3.1 web3-eth-iban: 4.0.7 - web3-providers-http: 4.1.0 - web3-providers-ws: 4.0.7 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + web3-providers-http: 4.2.0(encoding@0.1.13) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 optionalDependencies: web3-providers-ipc: 4.0.7 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /web3-errors@1.1.4: - resolution: {integrity: sha512-WahtszSqILez+83AxGecVroyZsMuuRT+KmQp4Si5P4Rnqbczno1k748PCrZTS1J4UCPmXMG2/Vt+0Bz2zwXkwQ==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-errors@1.3.1: dependencies: - web3-types: 1.5.0 - dev: false + web3-types: 1.10.0 - /web3-eth-abi@4.2.0(typescript@5.4.3): - resolution: {integrity: sha512-x7dUCmk6th+5N63s5kUusoNtsDJKUUQgl9+jECvGTBOTiyHe/V6aOY0120FUjaAGaapOnR7BImQdhqHv6yT2YQ==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-abi@4.4.1(typescript@5.4.3)(zod@3.25.33): dependencies: - abitype: 0.7.1(typescript@5.4.3) - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + abitype: 0.7.1(typescript@5.4.3)(zod@3.25.33) + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - typescript - zod - dev: false - /web3-eth-accounts@4.1.1: - resolution: {integrity: sha512-9JqhRi1YhO1hQOEmmBHgEGsME/B1FHMxpA/AK3vhpvQ8QeP6KbJW+cForTLfPpUbkmPxnRunG4PNNaETNlZfrA==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-accounts@4.3.1: dependencies: '@ethereumjs/rlp': 4.0.1 crc-32: 1.2.2 ethereum-cryptography: 2.2.1 - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 - dev: false + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 - /web3-eth-contract@4.3.0(typescript@5.4.3): - resolution: {integrity: sha512-4fzSklA65zUn6SthU3T3tbVJacfP8/wkJmCuvmPaf2ZTFdnhsF96G5IQtCRf0+wASb4yk0A6IBvXZfk1B4R4HA==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-contract@4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: - web3-core: 4.3.2 - web3-errors: 1.1.4 - web3-eth: 4.5.0(typescript@5.4.3) - web3-eth-abi: 4.2.0(typescript@5.4.3) - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + '@ethereumjs/rlp': 5.0.2 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-errors: 1.3.1 + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-eth-abi: 4.4.1(typescript@5.4.3)(zod@3.25.33) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /web3-eth-ens@4.2.0(typescript@5.4.3): - resolution: {integrity: sha512-qYj34te2UctoObt8rlEIY/t2MuTMiMiiHhO2JAHRGqSLCQ7b8DM3RpvkiiSB0N0ZyEn+CetZqJCTYb8DNKBS/g==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-ens@4.4.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 - web3-core: 4.3.2 - web3-errors: 1.1.4 - web3-eth: 4.5.0(typescript@5.4.3) - web3-eth-contract: 4.3.0(typescript@5.4.3) - web3-net: 4.0.7 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-errors: 1.3.1 + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-eth-contract: 4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-net: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /web3-eth-iban@4.0.7: - resolution: {integrity: sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-iban@4.0.7: dependencies: - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 - dev: false + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 - /web3-eth-personal@4.0.8(typescript@5.4.3): - resolution: {integrity: sha512-sXeyLKJ7ddQdMxz1BZkAwImjqh7OmKxhXoBNF3isDmD4QDpMIwv/t237S3q4Z0sZQamPa/pHebJRWVuvP8jZdw==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth-personal@4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: - web3-core: 4.3.2 - web3-eth: 4.5.0(typescript@5.4.3) - web3-rpc-methods: 1.2.0 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /web3-eth@4.5.0(typescript@5.4.3): - resolution: {integrity: sha512-crisE46o/SHMVm+XHAXEaR8k76NCImq+hi0QQEJ+VaLZbDobI/Gvog1HwTukDUDRgnYSAFGqD0cTRyAwDurwpA==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-eth@4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): dependencies: setimmediate: 1.0.5 - web3-core: 4.3.2 - web3-errors: 1.1.4 - web3-eth-abi: 4.2.0(typescript@5.4.3) - web3-eth-accounts: 4.1.1 - web3-net: 4.0.7 - web3-providers-ws: 4.0.7 - web3-rpc-methods: 1.2.0 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-errors: 1.3.1 + web3-eth-abi: 4.4.1(typescript@5.4.3)(zod@3.25.33) + web3-eth-accounts: 4.3.1 + web3-net: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /web3-net@4.0.7: - resolution: {integrity: sha512-SzEaXFrBjY25iQGk5myaOfO9ZyfTwQEa4l4Ps4HDNVMibgZji3WPzpjq8zomVHMwi8bRp6VV7YS71eEsX7zLow==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-net@4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-core: 4.3.2 - web3-rpc-methods: 1.2.0 - web3-types: 1.5.0 - web3-utils: 4.2.1 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /web3-providers-http@4.1.0: - resolution: {integrity: sha512-6qRUGAhJfVQM41E5t+re5IHYmb5hSaLc02BE2MaRQsz2xKA6RjmHpOA5h/+ojJxEpI9NI2CrfDKOAgtJfoUJQg==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-providers-http@4.2.0(encoding@0.1.13): dependencies: - cross-fetch: 4.0.0 - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 + cross-fetch: 4.1.0(encoding@0.1.13) + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 transitivePeerDependencies: - encoding - dev: false - /web3-providers-ipc@4.0.7: - resolution: {integrity: sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==} - engines: {node: '>=14', npm: '>=6.12.0'} - requiresBuild: true + web3-providers-ipc@4.0.7: dependencies: - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 - dev: false + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 optional: true - /web3-providers-ws@4.0.7: - resolution: {integrity: sha512-n4Dal9/rQWjS7d6LjyEPM2R458V8blRm0eLJupDEJOOIBhGYlxw5/4FthZZ/cqB7y/sLVi7K09DdYx2MeRtU5w==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-providers-ws@4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@types/ws': 8.5.3 - isomorphic-ws: 5.0.0(ws@8.17.1) - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-utils: 4.2.1 - ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) + isomorphic-ws: 5.0.0(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - dev: false - /web3-rpc-methods@1.2.0: - resolution: {integrity: sha512-CWJ/g4I4WyYvLkf21wCZAehdhU/VjX/OAPHnqF5/FPDJlogOsOnGXHqi1Z5AP+ocdt395PNubd8jyMMJoYGSBA==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-rpc-methods@1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-core: 4.3.2 - web3-types: 1.5.0 - web3-validator: 2.0.5 + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - dev: false - /web3-types@1.5.0: - resolution: {integrity: sha512-geWuMIeegQ8AedKAO6wO4G4j1gyQ1F/AyKLMw2vud4bsfZayyzWJgCMDZtjYMm5uo2a7i8j1W3/4QFmzlSy5cw==} - engines: {node: '>=14', npm: '>=6.12.0'} - dev: false + web3-rpc-providers@1.0.0-rc.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): + dependencies: + web3-errors: 1.3.1 + web3-providers-http: 4.2.0(encoding@0.1.13) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 + transitivePeerDependencies: + - bufferutil + - encoding + - utf-8-validate - /web3-utils@4.2.1: - resolution: {integrity: sha512-Fk29BlEqD9Q9Cnw4pBkKw7czcXiRpsSco/BzEUl4ye0ZTSHANQFfjsfQmNm4t7uY11u6Ah+8F3tNjBeU4CA80A==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-types@1.10.0: {} + + web3-utils@4.3.3: dependencies: ethereum-cryptography: 2.2.1 eventemitter3: 5.0.1 - web3-errors: 1.1.4 - web3-types: 1.5.0 - web3-validator: 2.0.5 - dev: false + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-validator: 2.0.6 - /web3-validator@2.0.5: - resolution: {integrity: sha512-2gLOSW8XqEN5pw5jVUm20EB7A8SbQiekpAtiI0JBmCIV0a2rp97v8FgWY5E3UEqnw5WFfEqvcDVW92EyynDTyQ==} - engines: {node: '>=14', npm: '>=6.12.0'} + web3-validator@2.0.6: dependencies: ethereum-cryptography: 2.2.1 util: 0.12.5 - web3-errors: 1.1.4 - web3-types: 1.5.0 - zod: 3.23.8 - dev: false - - /web3@4.7.0(typescript@5.4.3): - resolution: {integrity: sha512-3g+1e7B/IW0Nw9WP1dotrZKWD9o5IBfl27dxEnE1LxBZBax6ZkviiAwf18utIhlNBD07RgI+PPfKDXxfDBlHWA==} - engines: {node: '>=14.0.0', npm: '>=6.12.0'} - dependencies: - web3-core: 4.3.2 - web3-errors: 1.1.4 - web3-eth: 4.5.0(typescript@5.4.3) - web3-eth-abi: 4.2.0(typescript@5.4.3) - web3-eth-accounts: 4.1.1 - web3-eth-contract: 4.3.0(typescript@5.4.3) - web3-eth-ens: 4.2.0(typescript@5.4.3) + web3-errors: 1.3.1 + web3-types: 1.10.0 + zod: 3.25.33 + + web3@4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33): + dependencies: + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-errors: 1.3.1 + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-eth-abi: 4.4.1(typescript@5.4.3)(zod@3.25.33) + web3-eth-accounts: 4.3.1 + web3-eth-contract: 4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-eth-ens: 4.4.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) web3-eth-iban: 4.0.7 - web3-eth-personal: 4.0.8(typescript@5.4.3) - web3-net: 4.0.7 - web3-providers-http: 4.1.0 - web3-providers-ws: 4.0.7 - web3-rpc-methods: 1.2.0 - web3-types: 1.5.0 - web3-utils: 4.2.1 - web3-validator: 2.0.5 + web3-eth-personal: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) + web3-net: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-providers-http: 4.2.0(encoding@0.1.13) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-rpc-providers: 1.0.0-rc.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-types: 1.10.0 + web3-utils: 4.3.3 + web3-validator: 2.0.6 transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - - /webauthn-p256@0.0.10: - resolution: {integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==} - dependencies: - '@noble/curves': 1.9.0 - '@noble/hashes': 1.8.0 - dev: false - /webauthn-p256@0.0.5: - resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==} + webauthn-p256@0.0.10: dependencies: - '@noble/curves': 1.9.0 - '@noble/hashes': 1.8.0 - dev: false + '@noble/curves': 1.8.0 + '@noble/hashes': 1.4.0 - /webcrypto-core@1.8.0: - resolution: {integrity: sha512-kR1UQNH8MD42CYuLzvibfakG5Ew5seG85dMMoAM/1LqvckxaF6pUiidLuraIu4V+YCIFabYecUZAW0TuxAoaqw==} + webcrypto-core@1.8.1: dependencies: - '@peculiar/asn1-schema': 2.3.13 + '@peculiar/asn1-schema': 2.3.15 '@peculiar/json-schema': 1.1.12 - asn1js: 3.0.5 - pvtsutils: 1.3.5 + asn1js: 3.0.6 + pvtsutils: 1.3.6 tslib: 2.8.1 - dev: false - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + webextension-polyfill@0.10.0: {} - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true + webidl-conversions@3.0.1: {} - /webrtc-adapter@7.7.1: - resolution: {integrity: sha512-TbrbBmiQBL9n0/5bvDdORc6ZfRY/Z7JnEj+EYOD1ghseZdpJ+nF2yx14k3LgQKc7JZnG7HAcL+zHnY25So9d7A==} - engines: {node: '>=6.0.0', npm: '>=3.10.0'} + webidl-conversions@7.0.0: {} + + webrtc-adapter@7.7.1: dependencies: rtcpeerconnection-shim: 1.2.15 sdp: 2.12.0 - dev: false - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@2.0.0: dependencies: iconv-lite: 0.6.3 - dev: true - /whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - dev: false + whatwg-fetch@3.6.20: {} - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true + whatwg-mimetype@3.0.0: {} - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-url@11.0.0: dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 - dev: true - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.1.1: dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 - /which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} + which-builtin-type@1.2.1: dependencies: - function.prototype.name: 1.1.6 + call-bound: 1.0.4 + function.prototype.name: 1.1.8 has-tostringtag: 1.0.2 - is-async-function: 2.0.0 - is-date-object: 1.0.5 - is-finalizationregistry: 1.0.2 - is-generator-function: 1.0.10 - is-regex: 1.1.4 - is-weakref: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 isarray: 2.0.5 - which-boxed-primitive: 1.0.2 + which-boxed-primitive: 1.1.1 which-collection: 1.0.2 which-typed-array: 1.1.19 - /which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + which-collection@1.0.2: dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 - is-weakset: 2.0.3 - - /which-module@2.0.0: - resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + is-weakset: 2.0.4 - /which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - dev: true - - /which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.8 - for-each: 0.3.5 - gopd: 1.2.0 - has-tostringtag: 1.0.2 + which-module@2.0.1: {} - /which-typed-array@1.1.19: - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} - engines: {node: '>= 0.4'} + which-typed-array@1.1.19: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 @@ -26399,202 +29475,122 @@ packages: gopd: 1.2.0 has-tostringtag: 1.0.2 - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} + widest-line@3.1.0: dependencies: string-width: 4.2.3 - /wif@2.0.6: - resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==} + wif@2.0.6: dependencies: bs58check: 2.1.2 - dev: false - /wif@4.0.0: - resolution: {integrity: sha512-kADznC+4AFJNXpT8rLhbsfI7EmAcorc5nWvAdKUchGmwXEBD3n55q0/GZ3DBmc6auAvuTSsr/utiKizuXdNYOQ==} + wif@5.0.0: dependencies: - bs58check: 3.0.1 - dev: false + bs58check: 4.0.0 - /wordwrapjs@4.0.1: - resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} - engines: {node: '>=8.0.0'} + word-wrap@1.2.5: {} + + wordwrapjs@4.0.1: dependencies: reduce-flatten: 2.0.0 typical: 5.2.0 - dev: true - /workerpool@6.2.1: - resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} + workerpool@6.5.1: {} - /wrap-ansi@5.1.0: - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} - engines: {node: '>=6'} - dependencies: - ansi-styles: 3.2.1 - string-width: 3.1.0 - strip-ansi: 5.2.0 - dev: false - - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: false - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /ws@8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10): - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dependencies: - bufferutil: 4.0.7 + ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 utf-8-validate: 5.0.10 - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true + xml-name-validator@4.0.0: {} - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - dev: true + xmlchars@2.2.0: {} - /xmlhttprequest-ssl@2.0.0: - resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} - engines: {node: '>=0.4.0'} - dev: false + xmlhttprequest-ssl@2.1.2: {} - /xstream@11.14.0: - resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} + xrpl@4.2.5(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - globalthis: 1.0.3 - symbol-observable: 2.0.3 - dev: false + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@xrplf/secret-numbers': 1.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + bignumber.js: 9.3.0 + eventemitter3: 5.0.1 + ripple-address-codec: 5.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ripple-binary-codec: 2.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ripple-keypairs: 2.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + xstream@11.14.0: + dependencies: + globalthis: 1.0.4 + symbol-observable: 2.0.3 - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + xtend@4.0.2: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + y18n@4.0.3: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - requiresBuild: true + y18n@5.0.8: {} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + yallist@3.1.1: {} - /yaml@2.7.0: - resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} - engines: {node: '>= 14'} - hasBin: true + yaml@1.10.2: {} - /yargs-parser@13.1.2: - resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - dev: false + yaml@2.8.0: {} - /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} + yargs-parser@20.2.9: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + yargs-parser@21.1.1: {} - /yargs-unparser@2.0.0: - resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} - engines: {node: '>=10'} + yargs-unparser@2.0.0: dependencies: camelcase: 6.3.0 decamelize: 4.0.0 flat: 5.0.2 is-plain-obj: 2.1.0 - /yargs@13.3.2: - resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} - dependencies: - cliui: 5.0.0 - find-up: 3.0.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 3.1.0 - which-module: 2.0.0 - y18n: 4.0.3 - yargs-parser: 13.1.2 - dev: false - - /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -26604,14 +29600,11 @@ packages: require-main-filename: 2.0.0 set-blocking: 2.0.0 string-width: 4.2.3 - which-module: 2.0.0 + which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: true - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + yargs@16.2.0: dependencies: cliui: 7.0.4 escalade: 3.2.0 @@ -26619,11 +29612,9 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.4 + yargs-parser: 20.2.9 - /yargs@17.6.2: - resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.2.0 @@ -26633,15 +29624,22 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true + yn@3.1.1: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + yocto-queue@0.1.0: {} - /zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} - dev: false + zod@3.22.4: {} + + zod@3.25.33: {} + + zustand@5.0.0(@types/react@18.2.14)(react@18.2.0)(use-sync-external-store@1.4.0(react@18.2.0)): + optionalDependencies: + '@types/react': 18.2.14 + react: 18.2.0 + use-sync-external-store: 1.4.0(react@18.2.0) + + zustand@5.0.0(@types/react@18.2.14)(react@18.2.0)(use-sync-external-store@1.5.0(react@18.2.0)): + optionalDependencies: + '@types/react': 18.2.14 + react: 18.2.0 + use-sync-external-store: 1.5.0(react@18.2.0) From 4e06e94d0f820d4c096af7f74b040e5a23762f99 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 30 May 2025 11:52:36 -0400 Subject: [PATCH 02/42] chore: update uniswap/core imports --- examples/sweeper/src/utils.ts | 14 +++++++------- examples/trading-runner/src/uniswap/constants.ts | 14 +++++++------- examples/with-uniswap/src/constants.ts | 14 +++++++------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/examples/sweeper/src/utils.ts b/examples/sweeper/src/utils.ts index d2ced7251..47502c676 100644 --- a/examples/sweeper/src/utils.ts +++ b/examples/sweeper/src/utils.ts @@ -1,5 +1,5 @@ import { ethers } from "ethers"; -import { SupportedChainId, Token } from "@uniswap/sdk-core"; +import { ChainId, Token } from "@uniswap/sdk-core"; // Environment @@ -11,7 +11,7 @@ export enum Environment { // Currencies and Tokens export const WETH_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", 18, "WETH", @@ -19,7 +19,7 @@ export const WETH_TOKEN_MAINNET = new Token( ); export const WETH_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", 18, "WETH", @@ -27,7 +27,7 @@ export const WETH_TOKEN_GOERLI = new Token( ); export const USDC_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", 6, "USDC", @@ -35,7 +35,7 @@ export const USDC_TOKEN_MAINNET = new Token( ); export const USDC_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x07865c6E87B9F70255377e024ace6630C1Eaa37F", 6, "USDC", @@ -43,7 +43,7 @@ export const USDC_TOKEN_GOERLI = new Token( ); export const UNI_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", @@ -51,7 +51,7 @@ export const UNI_TOKEN_MAINNET = new Token( ); export const UNI_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", diff --git a/examples/trading-runner/src/uniswap/constants.ts b/examples/trading-runner/src/uniswap/constants.ts index c8d0aa221..a5ecc893a 100644 --- a/examples/trading-runner/src/uniswap/constants.ts +++ b/examples/trading-runner/src/uniswap/constants.ts @@ -1,7 +1,7 @@ // This file stores web3 related constants such as addresses, token definitions, ETH currency references and ABIs import { FeeAmount } from "@uniswap/v3-sdk"; -import { SupportedChainId, Token, Percent } from "@uniswap/sdk-core"; +import { ChainId, Token, Percent } from "@uniswap/sdk-core"; import uniV3UniversalRouterContractABI from "./abi/univ3-universal-router-contract-abi.json"; import wethContractABI from "./abi/weth-contract-abi.json"; @@ -65,7 +65,7 @@ export const UNI_V3_UNIVERSAL_ROUTER_CONTRACT_ABI = // Currencies and Tokens export const WETH_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", 18, "WETH", @@ -73,7 +73,7 @@ export const WETH_TOKEN_MAINNET = new Token( ); export const WETH_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", 18, "WETH", @@ -81,7 +81,7 @@ export const WETH_TOKEN_GOERLI = new Token( ); export const USDC_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", 6, "USDC", @@ -89,7 +89,7 @@ export const USDC_TOKEN_MAINNET = new Token( ); export const USDC_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x07865c6E87B9F70255377e024ace6630C1Eaa37F", 6, "USDC", @@ -97,7 +97,7 @@ export const USDC_TOKEN_GOERLI = new Token( ); export const UNI_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", @@ -105,7 +105,7 @@ export const UNI_TOKEN_MAINNET = new Token( ); export const UNI_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", diff --git a/examples/with-uniswap/src/constants.ts b/examples/with-uniswap/src/constants.ts index bd9cd1625..5c900019c 100644 --- a/examples/with-uniswap/src/constants.ts +++ b/examples/with-uniswap/src/constants.ts @@ -1,6 +1,6 @@ // This file stores web3 related constants such as addresses, token definitions, ETH currency references and ABIs -import { SupportedChainId, Token } from "@uniswap/sdk-core"; +import { ChainId, Token } from "@uniswap/sdk-core"; import uniV3UniversalRouterContractABI from "./abi/univ3-universal-router-contract-abi.json"; import wethContractABI from "./abi/weth-contract-abi.json"; @@ -30,7 +30,7 @@ export const UNI_V3_UNIVERSAL_ROUTER_CONTRACT_ADDRESS_GOERLI = // Currencies and Tokens export const WETH_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", 18, "WETH", @@ -38,7 +38,7 @@ export const WETH_TOKEN_MAINNET = new Token( ); export const WETH_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", 18, "WETH", @@ -46,7 +46,7 @@ export const WETH_TOKEN_GOERLI = new Token( ); export const USDC_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", 6, "USDC", @@ -54,7 +54,7 @@ export const USDC_TOKEN_MAINNET = new Token( ); export const USDC_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x07865c6E87B9F70255377e024ace6630C1Eaa37F", 6, "USDC", @@ -62,7 +62,7 @@ export const USDC_TOKEN_GOERLI = new Token( ); export const UNI_TOKEN_MAINNET = new Token( - SupportedChainId.MAINNET, + ChainId.MAINNET, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", @@ -70,7 +70,7 @@ export const UNI_TOKEN_MAINNET = new Token( ); export const UNI_TOKEN_GOERLI = new Token( - SupportedChainId.GOERLI, + ChainId.GOERLI, "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", 18, "UNI", From 8dc773bab88c56e65dd5f52301b53b0795833d32 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 30 May 2025 18:19:39 -0400 Subject: [PATCH 03/42] chore: add debug --- .../app/components/CoinbaseCryptoProvider.tsx | 2 +- .../app/components/MoonPayCryptoProvider.tsx | 5 +- .../src/app/dashboard/page.tsx | 86 +++++++++++++++++-- 3 files changed, 85 insertions(+), 8 deletions(-) diff --git a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx index 28bc08a71..b6e8a86ff 100644 --- a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx +++ b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx @@ -11,7 +11,7 @@ interface CoinbaseCryptoProviderProps { const CoinbaseCryptoProvider = ({ children }: CoinbaseCryptoProviderProps) => { return ( {children} diff --git a/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx b/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx index 26056affb..24796ed76 100644 --- a/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx +++ b/examples/react-components/src/app/components/MoonPayCryptoProvider.tsx @@ -12,7 +12,10 @@ interface MoonPayCryptoProviderProps { const MoonPayCryptoProvider = ({ children }: MoonPayCryptoProviderProps) => { return ( - + {children} ); diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 80b3441fe..a49794330 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -9,7 +9,7 @@ import { } from "@turnkey/sdk-react"; import { server } from "@turnkey/sdk-server"; -import { useEffect, useState } from "react"; +import { use, useEffect, useState } from "react"; import "./dashboard.css"; import { Typography, @@ -46,6 +46,10 @@ import { Toaster, toast } from "sonner"; import { jwtDecode } from "jwt-decode"; import { useSessionExpiry } from "../providers/SessionExpiryProvider"; import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; +import { loadMoonPay } from "@moonpay/moonpay-js"; +import crypto from "crypto"; + +const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; export default function Dashboard() { const router = useRouter(); @@ -79,6 +83,61 @@ export default function Dashboard() { const [emailInput, setEmailInput] = useState(""); const [phoneInput, setPhoneInput] = useState(""); const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); + const [moonPaySDK, setMoonPaySDK] = useState(); + + // useEffect(() => { + // const loadMoonPaySdk = async () => { + // try { + // const moonPay = await loadMoonPay(); + // const moonPaySdk = moonPay!({ + // flow: 'buy', + // environment: 'sandbox', + // variant: 'overlay', + // params: { + // apiKey: process.env.NEXT_PUBLIC_MOONPAY_API_KEY!, + // }, + // debug: true + // }); + // setMoonPaySDK(moonPaySdk); + // } catch (error) { + // console.error("Failed to load MoonPay SDK:", error); + // } + // }; + // loadMoonPaySdk(); + // }, []); + + useEffect(() => { + const initOnRampProvider = async () => { + try { + // get session + const session = await turnkey?.getSession(); + console.log("session response:", session); + + const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "COINBASE", + transactionType: "BUY", + }) + + console.log("initFiatOnRampResponse:", initFiatOnRampResponse); + + } catch (error) { + console.error("Failed to init fiat on ramp:", error); + } + }; + initOnRampProvider(); + }, []); + + const handleGetSignature = async (url: string): Promise => { + console.log("Generating signature for URL:", url); + const signature = crypto + .createHmac("sha256", secretKey) + .update(new URL(url).search) // Use the query string part of the URL + .digest("base64"); // Convert the result to a base64 string + + console.log(signature); // Print the signature + return signature; // Return the signature + }; const handleExportSuccess = async () => { toast.success("Wallet successfully exported"); @@ -448,6 +507,12 @@ export default function Dashboard() { } }; + // const handleGetSignature = async (url: string): Promise => { + // const signature = await fetch(`https://http://localhost:3001//sign-url?url=${url}`) + // console.log("Signature received:", signature); + // return signature as unknown as string; + // } + const handleVerify = () => { if (!signature) return; const addressType = selectedAccount?.startsWith("0x") ? "ETH" : "SOL"; @@ -713,15 +778,24 @@ export default function Dashboard() { Sign a message - + {/* */} From b2e6a922351339288be95facd965945cc007dd5e Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 1 Jun 2025 13:26:21 -0400 Subject: [PATCH 04/42] chore: fiat on ramp --- examples/react-components/src/app/dashboard/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index a49794330..719139d61 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -117,10 +117,9 @@ export default function Dashboard() { organizationId: session?.organizationId!, onrampProvider: "COINBASE", transactionType: "BUY", - }) + }); console.log("initFiatOnRampResponse:", initFiatOnRampResponse); - } catch (error) { console.error("Failed to init fiat on ramp:", error); } From 2700cd6202f12c67fecc71115636b4a8efae2074 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Mon, 2 Jun 2025 09:40:01 -0400 Subject: [PATCH 05/42] chore: create onramp component --- .../app/components/CoinbaseCryptoProvider.tsx | 4 +- .../src/app/dashboard/OnRamp.tsx | 216 ++++++++++++++++++ .../src/app/dashboard/page.tsx | 85 +------ examples/react-components/tsconfig.json | 2 +- 4 files changed, 222 insertions(+), 85 deletions(-) create mode 100644 examples/react-components/src/app/dashboard/OnRamp.tsx diff --git a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx index b6e8a86ff..3cba5c511 100644 --- a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx +++ b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx @@ -2,7 +2,7 @@ import React from "react"; import { OnchainKitProvider } from "@coinbase/onchainkit"; -import { base } from "viem/chains"; +import { baseSepolia } from "viem/chains"; interface CoinbaseCryptoProviderProps { children: React.ReactNode; @@ -12,7 +12,7 @@ const CoinbaseCryptoProvider = ({ children }: CoinbaseCryptoProviderProps) => { return ( {children} diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx new file mode 100644 index 000000000..41c4fab43 --- /dev/null +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -0,0 +1,216 @@ +import crypto from "crypto"; +import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; +import { FundButton } from "@coinbase/onchainkit/fund"; +import { useEffect, useState } from "react"; +import { useTurnkey } from "@turnkey/sdk-react"; + +const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; + +export const OnRamp = () => { + const { turnkey, indexedDbClient } = useTurnkey(); + const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); + const [coinbaseOnRampBuyUrl, setCoinbaseOnRampBuyUrl] = useState(""); + const [moonPayOnRampBuyUrl, setMoonPayOnRampBuyUrl] = useState(""); + const [isCoinbaseToggled, setIsCoinbaseToggled] = useState(false); + const [isMoonPayToggled, setIsMoonPayToggled] = useState(false); + + // useEffect(() => { + // const loadMoonPaySdk = async () => { + // try { + // const moonPay = await loadMoonPay(); + // const moonPaySdk = moonPay!({ + // flow: 'buy', + // environment: 'sandbox', + // variant: 'overlay', + // params: { + // apiKey: process.env.NEXT_PUBLIC_MOONPAY_API_KEY!, + // }, + // debug: true + // }); + // setMoonPaySDK(moonPaySdk); + // } catch (error) { + // console.error("Failed to load MoonPay SDK:", error); + // } + // }; + // loadMoonPaySdk(); + // }, []); + + useEffect(() => { + const generateCoinbaseUrl = async () => { + try { + // get session + const session = await turnkey?.getSession(); + console.log("session response:", session); + + const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "COINBASE", + transactionType: "BUY", + }); + + console.log("initFiatOnRampResponse:", initFiatOnRampResponse); + if (initFiatOnRampResponse?.onRampUrl) { + setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); + } + } catch (error) { + console.error("Failed to init fiat on ramp:", error); + } + }; + + if (isCoinbaseToggled) { + generateCoinbaseUrl(); + } else { + setCoinbaseOnRampBuyUrl(""); + } + }, [isCoinbaseToggled]); + + const openMoonPay = () => { + window.open(moonPayOnRampBuyUrl, "_blank"); + }; + + useEffect(() => { + const generateMoonPayUrl = async () => { + try { + // get session + const session = await turnkey?.getSession(); + console.log("session response:", session); + const originalUrl = + "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=eth&walletAddress=0xc7c10b3f98Be080DC2d6052BFd6d70F32B6b9e53"; + const signature = crypto + .createHmac("sha256", secretKey) // Use your secret key + .update(new URL(originalUrl).search) // Use the query string part of the URL + .digest("base64"); // Convert the result to a base64 string + + const urlWithSignature = `${originalUrl}&signature=${encodeURIComponent(signature)}`; // Add the signature to the URL + + console.log("urlWithSignature", urlWithSignature); + // const initMoonPayFiatOnRampResponse = + // await indexedDbClient?.initFiatOnRamp({ + // organizationId: session?.organizationId!, + // onrampProvider: "MOONPAY", + // transactionType: "BUY", + // }); + + // console.log( + // "initMoonPayFiatOnRampResponse:", + // initMoonPayFiatOnRampResponse + // ); + // if (initMoonPayFiatOnRampResponse?.onRampUrl) { + // setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); + // } + setMoonPayOnRampBuyUrl(urlWithSignature); + } catch (error) { + console.error("Failed to init fiat on ramp:", error); + } + }; + + if (isMoonPayToggled) { + generateMoonPayUrl(); + } else { + setMoonPayOnRampBuyUrl(""); + } + }, [isMoonPayToggled]); + + // const handleGetMoonPayUrlSignature = async (url: string): Promise => { + // try { + // // get session + // const session = await turnkey?.getSession(); + // console.log("session response:", session); + + // const initMoonPayFiatOnRampResponse = + // await indexedDbClient?.initFiatOnRamp({ + // organizationId: session?.organizationId!, + // onrampProvider: "MOONPAY", + // transactionType: "BUY", + // }); + + // console.log( + // "initMoonPayFiatOnRampResponse:", + // initMoonPayFiatOnRampResponse + // ); + // } catch (error) { + // console.error("Failed to init fiat on ramp:", error); + // } + // // console.log("Generating signature for URL:", url); + // // const signature = crypto + // // .createHmac("sha256", secretKey) + // // .update(new URL(url).search) // Use the query string part of the URL + // // .digest("base64"); // Convert the result to a base64 string + + // // console.log(signature); // Print the signature + // // return signature; // Return the signature + // }; + + // const handleGetSignature = async (url: string): Promise => { + // const signature = await fetch(`https://http://localhost:3001//sign-url?url=${url}`) + // console.log("Signature received:", signature); + // return signature as unknown as string; + // } + + return ( +
+

Fiat On Ramps

+ + + {isCoinbaseToggled ? ( + <> + {coinbaseOnRampBuyUrl && ( + <> + + + )} + + ) : ( + <> + )} + {/* */} + {moonPayOnRampBuyUrl && ( + <> + + + )} + {/* */} + + {/* */} +
+ ); +}; diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 719139d61..1ab68f4cf 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -9,7 +9,7 @@ import { } from "@turnkey/sdk-react"; import { server } from "@turnkey/sdk-server"; -import { use, useEffect, useState } from "react"; +import { useEffect, useState } from "react"; import "./dashboard.css"; import { Typography, @@ -49,7 +49,7 @@ import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; import { loadMoonPay } from "@moonpay/moonpay-js"; import crypto from "crypto"; -const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; +import { OnRamp } from "./OnRamp"; export default function Dashboard() { const router = useRouter(); @@ -82,61 +82,6 @@ export default function Dashboard() { const [isOtpModalOpen, setIsOtpModalOpen] = useState(false); const [emailInput, setEmailInput] = useState(""); const [phoneInput, setPhoneInput] = useState(""); - const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); - const [moonPaySDK, setMoonPaySDK] = useState(); - - // useEffect(() => { - // const loadMoonPaySdk = async () => { - // try { - // const moonPay = await loadMoonPay(); - // const moonPaySdk = moonPay!({ - // flow: 'buy', - // environment: 'sandbox', - // variant: 'overlay', - // params: { - // apiKey: process.env.NEXT_PUBLIC_MOONPAY_API_KEY!, - // }, - // debug: true - // }); - // setMoonPaySDK(moonPaySdk); - // } catch (error) { - // console.error("Failed to load MoonPay SDK:", error); - // } - // }; - // loadMoonPaySdk(); - // }, []); - - useEffect(() => { - const initOnRampProvider = async () => { - try { - // get session - const session = await turnkey?.getSession(); - console.log("session response:", session); - - const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ - organizationId: session?.organizationId!, - onrampProvider: "COINBASE", - transactionType: "BUY", - }); - - console.log("initFiatOnRampResponse:", initFiatOnRampResponse); - } catch (error) { - console.error("Failed to init fiat on ramp:", error); - } - }; - initOnRampProvider(); - }, []); - - const handleGetSignature = async (url: string): Promise => { - console.log("Generating signature for URL:", url); - const signature = crypto - .createHmac("sha256", secretKey) - .update(new URL(url).search) // Use the query string part of the URL - .digest("base64"); // Convert the result to a base64 string - - console.log(signature); // Print the signature - return signature; // Return the signature - }; const handleExportSuccess = async () => { toast.success("Wallet successfully exported"); @@ -506,12 +451,6 @@ export default function Dashboard() { } }; - // const handleGetSignature = async (url: string): Promise => { - // const signature = await fetch(`https://http://localhost:3001//sign-url?url=${url}`) - // console.log("Signature received:", signature); - // return signature as unknown as string; - // } - const handleVerify = () => { if (!signature) return; const addressType = selectedAccount?.startsWith("0x") ? "ETH" : "SOL"; @@ -776,25 +715,7 @@ export default function Dashboard() { - - - {/* */} + diff --git a/examples/react-components/tsconfig.json b/examples/react-components/tsconfig.json index 06f3d9aad..451087eeb 100644 --- a/examples/react-components/tsconfig.json +++ b/examples/react-components/tsconfig.json @@ -9,7 +9,7 @@ "noEmit": true, "esModuleInterop": true, "module": "esnext", - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", From d9097734b47fe11e22f67687201522070fc352c3 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Mon, 2 Jun 2025 17:01:03 -0400 Subject: [PATCH 06/42] chore: update signature --- .../src/app/dashboard/OnRamp.tsx | 32 ++++++++++--------- .../src/app/dashboard/page.tsx | 20 ++++++------ 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 41c4fab43..c83785645 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -4,8 +4,6 @@ import { FundButton } from "@coinbase/onchainkit/fund"; import { useEffect, useState } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; -const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; - export const OnRamp = () => { const { turnkey, indexedDbClient } = useTurnkey(); const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); @@ -74,6 +72,7 @@ export const OnRamp = () => { // get session const session = await turnkey?.getSession(); console.log("session response:", session); + const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; const originalUrl = "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=eth&walletAddress=0xc7c10b3f98Be080DC2d6052BFd6d70F32B6b9e53"; const signature = crypto @@ -84,21 +83,24 @@ export const OnRamp = () => { const urlWithSignature = `${originalUrl}&signature=${encodeURIComponent(signature)}`; // Add the signature to the URL console.log("urlWithSignature", urlWithSignature); - // const initMoonPayFiatOnRampResponse = - // await indexedDbClient?.initFiatOnRamp({ - // organizationId: session?.organizationId!, - // onrampProvider: "MOONPAY", - // transactionType: "BUY", - // }); - + const initMoonPayFiatOnRampResponse = + await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "MOONPAY", + transactionType: "BUY", + }); + + console.log( + "initMoonPayFiatOnRampResponse:", + initMoonPayFiatOnRampResponse + ); // console.log( - // "initMoonPayFiatOnRampResponse:", - // initMoonPayFiatOnRampResponse + // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" // ); - // if (initMoonPayFiatOnRampResponse?.onRampUrl) { - // setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); - // } - setMoonPayOnRampBuyUrl(urlWithSignature); + if (initMoonPayFiatOnRampResponse?.onRampUrl) { + setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); + } + // setMoonPayOnRampBuyUrl(urlWithSignature); } catch (error) { console.error("Failed to init fiat on ramp:", error); } diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 1ab68f4cf..c615148fb 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -65,7 +65,7 @@ export default function Dashboard() { const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false); const [isPasskeyModalOpen, setIsPasskeyModalOpen] = useState(false); const [messageToSign, setMessageToSign] = useState( - "Signing within Turnkey Demo." + "Signing within Turnkey Demo.", ); const [signature, setSignature] = useState(null); const [isVerifiedEmail, setIsVerifiedEmail] = useState(false); @@ -461,19 +461,19 @@ export default function Dashboard() { signature.r, signature.s, signature.v, - selectedAccount! + selectedAccount!, ) : verifySolSignatureWithAddress( messageToSign, signature.r, signature.s, - selectedAccount! + selectedAccount!, ); setMessageSigningResult( verificationPassed ? "Verified! The address used to sign the message matches your wallet address." - : "Verification failed." + : "Verification failed.", ); }; if (loading) { @@ -557,13 +557,13 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("google") + provider.issuer.toLowerCase().includes("google"), ) && {}} {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("google") + provider.issuer.toLowerCase().includes("google"), ) ? ( ) : ( @@ -580,7 +580,7 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("apple") + provider.issuer.toLowerCase().includes("apple"), ) ? ( ) : ( @@ -597,7 +597,7 @@ export default function Dashboard() { {user && user.oauthProviders && user.oauthProviders.some((provider: { issuer: string }) => - provider.issuer.toLowerCase().includes("facebook") + provider.issuer.toLowerCase().includes("facebook"), ) ? ( ) : ( @@ -673,7 +673,7 @@ export default function Dashboard() { account.addressFormat === "ADDRESS_FORMAT_ETHEREUM" ? `https://etherscan.io/address/${account.address}` : `https://solscan.io/account/${account.address}`, - "_blank" + "_blank", ) } style={{ @@ -690,7 +690,7 @@ export default function Dashboard() { )} {`${account.address.slice( 0, - 5 + 5, )}...${account.address.slice(-5)}`} From 25a66ed343bd5f502cbf37e9f331550577b13e6b Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Mon, 2 Jun 2025 17:32:48 -0400 Subject: [PATCH 07/42] chore: gen code --- .../src/app/dashboard/OnRamp.tsx | 8 +- .../public/v1/public_api.swagger.json | 14 + .../coordinator/public/v1/public_api.types.ts | 8 + .../src/__generated__/sdk-client-base.ts | 484 +++++++++--------- .../src/__inputs__/public_api.swagger.json | 14 + .../src/__inputs__/public_api.types.ts | 8 + .../src/__generated__/sdk-client-base.ts | 484 +++++++++--------- .../src/__inputs__/public_api.swagger.json | 14 + .../src/__inputs__/public_api.types.ts | 8 + 9 files changed, 554 insertions(+), 488 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index c83785645..8a2d2018c 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -42,8 +42,8 @@ export const OnRamp = () => { const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, - onrampProvider: "COINBASE", - transactionType: "BUY", + onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", + transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", }); console.log("initFiatOnRampResponse:", initFiatOnRampResponse); @@ -86,8 +86,8 @@ export const OnRamp = () => { const initMoonPayFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, - onrampProvider: "MOONPAY", - transactionType: "BUY", + onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", + transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", }); console.log( diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 7f1b064a3..339651579 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -3125,6 +3125,20 @@ } } }, + "immutablecommonv1FiatOnRampProvider": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_PROVIDER_COINBASE", + "FIAT_ON_RAMP_PROVIDER_MOONPAY" + ] + }, + "immutablecommonv1FiatOnRampTransactionType": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" + ] + }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index f83e9d833..100cfc54f 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -451,6 +451,14 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + /** @enum {string} */ + immutablecommonv1FiatOnRampProvider: + | "FIAT_ON_RAMP_PROVIDER_COINBASE" + | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; + /** @enum {string} */ + immutablecommonv1FiatOnRampTransactionType: + | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" + | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 787da3b70..4ddb48da1 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -38,7 +38,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -79,7 +79,7 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; @@ -114,7 +114,7 @@ export class TurnkeySDKClientBase { if ( !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, + pollData.activity.status as TActivityStatus ) ) { await sleep(pollingDuration); @@ -126,12 +126,12 @@ export class TurnkeySDKClientBase { const responseData = (await this.request( url, - body, + body )) as TActivityResponse; if ( !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, + responseData.activity.status as TActivityStatus ) ) { return pollStatus(responseData.activity.id); @@ -142,7 +142,7 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { const activityData = (await this.request(url, body)) as TActivityResponse; @@ -153,7 +153,7 @@ export class TurnkeySDKClientBase { } getActivity = async ( - input: SdkApiTypes.TGetActivityBody, + input: SdkApiTypes.TGetActivityBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -167,7 +167,7 @@ export class TurnkeySDKClientBase { }; stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, + input: SdkApiTypes.TGetActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -183,7 +183,7 @@ export class TurnkeySDKClientBase { }; getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, + input: SdkApiTypes.TGetApiKeyBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -197,7 +197,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, + input: SdkApiTypes.TGetApiKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -213,7 +213,7 @@ export class TurnkeySDKClientBase { }; getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, + input: SdkApiTypes.TGetApiKeysBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -227,7 +227,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, + input: SdkApiTypes.TGetApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -243,7 +243,7 @@ export class TurnkeySDKClientBase { }; getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, + input: SdkApiTypes.TGetAttestationDocumentBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -257,7 +257,7 @@ export class TurnkeySDKClientBase { }; stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, + input: SdkApiTypes.TGetAttestationDocumentBody ): Promise => { if (!this.stamper) { return undefined; @@ -273,7 +273,7 @@ export class TurnkeySDKClientBase { }; getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, + input: SdkApiTypes.TGetAuthenticatorBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -287,7 +287,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, + input: SdkApiTypes.TGetAuthenticatorBody ): Promise => { if (!this.stamper) { return undefined; @@ -304,7 +304,7 @@ export class TurnkeySDKClientBase { }; getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, + input: SdkApiTypes.TGetAuthenticatorsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -318,7 +318,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, + input: SdkApiTypes.TGetAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -335,7 +335,7 @@ export class TurnkeySDKClientBase { }; getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, + input: SdkApiTypes.TGetOauthProvidersBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -349,7 +349,7 @@ export class TurnkeySDKClientBase { }; stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, + input: SdkApiTypes.TGetOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -366,7 +366,7 @@ export class TurnkeySDKClientBase { }; getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, + input: SdkApiTypes.TGetOrganizationBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -380,7 +380,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, + input: SdkApiTypes.TGetOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -397,7 +397,7 @@ export class TurnkeySDKClientBase { }; getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, + input: SdkApiTypes.TGetOrganizationConfigsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -411,7 +411,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, + input: SdkApiTypes.TGetOrganizationConfigsBody ): Promise => { if (!this.stamper) { return undefined; @@ -428,7 +428,7 @@ export class TurnkeySDKClientBase { }; getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, + input: SdkApiTypes.TGetPolicyBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -442,7 +442,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, + input: SdkApiTypes.TGetPolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -458,7 +458,7 @@ export class TurnkeySDKClientBase { }; getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, + input: SdkApiTypes.TGetPrivateKeyBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -472,7 +472,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, + input: SdkApiTypes.TGetPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -488,7 +488,7 @@ export class TurnkeySDKClientBase { }; getUser = async ( - input: SdkApiTypes.TGetUserBody, + input: SdkApiTypes.TGetUserBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -502,7 +502,7 @@ export class TurnkeySDKClientBase { }; stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, + input: SdkApiTypes.TGetUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -518,7 +518,7 @@ export class TurnkeySDKClientBase { }; getWallet = async ( - input: SdkApiTypes.TGetWalletBody, + input: SdkApiTypes.TGetWalletBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -532,7 +532,7 @@ export class TurnkeySDKClientBase { }; stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, + input: SdkApiTypes.TGetWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -548,7 +548,7 @@ export class TurnkeySDKClientBase { }; getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, + input: SdkApiTypes.TGetWalletAccountBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -562,7 +562,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, + input: SdkApiTypes.TGetWalletAccountBody ): Promise => { if (!this.stamper) { return undefined; @@ -579,7 +579,7 @@ export class TurnkeySDKClientBase { }; getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, + input: SdkApiTypes.TGetActivitiesBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -593,7 +593,7 @@ export class TurnkeySDKClientBase { }; stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, + input: SdkApiTypes.TGetActivitiesBody ): Promise => { if (!this.stamper) { return undefined; @@ -609,7 +609,7 @@ export class TurnkeySDKClientBase { }; getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, + input: SdkApiTypes.TGetPoliciesBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -623,7 +623,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, + input: SdkApiTypes.TGetPoliciesBody ): Promise => { if (!this.stamper) { return undefined; @@ -639,7 +639,7 @@ export class TurnkeySDKClientBase { }; listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, + input: SdkApiTypes.TListPrivateKeyTagsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -653,7 +653,7 @@ export class TurnkeySDKClientBase { }; stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, + input: SdkApiTypes.TListPrivateKeyTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -670,7 +670,7 @@ export class TurnkeySDKClientBase { }; getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, + input: SdkApiTypes.TGetPrivateKeysBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -684,7 +684,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, + input: SdkApiTypes.TGetPrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -701,7 +701,7 @@ export class TurnkeySDKClientBase { }; getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, + input: SdkApiTypes.TGetSubOrgIdsBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -715,7 +715,7 @@ export class TurnkeySDKClientBase { }; stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, + input: SdkApiTypes.TGetSubOrgIdsBody ): Promise => { if (!this.stamper) { return undefined; @@ -731,7 +731,7 @@ export class TurnkeySDKClientBase { }; listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, + input: SdkApiTypes.TListUserTagsBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -745,7 +745,7 @@ export class TurnkeySDKClientBase { }; stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, + input: SdkApiTypes.TListUserTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -761,7 +761,7 @@ export class TurnkeySDKClientBase { }; getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, + input: SdkApiTypes.TGetUsersBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -775,7 +775,7 @@ export class TurnkeySDKClientBase { }; stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, + input: SdkApiTypes.TGetUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -791,7 +791,7 @@ export class TurnkeySDKClientBase { }; getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -805,7 +805,7 @@ export class TurnkeySDKClientBase { }; stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody ): Promise => { if (!this.stamper) { return undefined; @@ -822,7 +822,7 @@ export class TurnkeySDKClientBase { }; getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, + input: SdkApiTypes.TGetWalletAccountsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -836,7 +836,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, + input: SdkApiTypes.TGetWalletAccountsBody ): Promise => { if (!this.stamper) { return undefined; @@ -853,7 +853,7 @@ export class TurnkeySDKClientBase { }; getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, + input: SdkApiTypes.TGetWalletsBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -867,7 +867,7 @@ export class TurnkeySDKClientBase { }; stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, + input: SdkApiTypes.TGetWalletsBody ): Promise => { if (!this.stamper) { return undefined; @@ -883,7 +883,7 @@ export class TurnkeySDKClientBase { }; getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, + input: SdkApiTypes.TGetWhoamiBody = {} ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -897,7 +897,7 @@ export class TurnkeySDKClientBase { }; stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, + input: SdkApiTypes.TGetWhoamiBody ): Promise => { if (!this.stamper) { return undefined; @@ -913,7 +913,7 @@ export class TurnkeySDKClientBase { }; approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, + input: SdkApiTypes.TApproveActivityBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -928,7 +928,7 @@ export class TurnkeySDKClientBase { }; stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, + input: SdkApiTypes.TApproveActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -945,7 +945,7 @@ export class TurnkeySDKClientBase { }; createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, + input: SdkApiTypes.TCreateApiKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -962,12 +962,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", }, - "createApiKeysResult", + "createApiKeysResult" ); }; stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, + input: SdkApiTypes.TCreateApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -984,7 +984,7 @@ export class TurnkeySDKClientBase { }; createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, + input: SdkApiTypes.TCreateApiOnlyUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1001,12 +1001,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", }, - "createApiOnlyUsersResult", + "createApiOnlyUsersResult" ); }; stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, + input: SdkApiTypes.TCreateApiOnlyUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1023,7 +1023,7 @@ export class TurnkeySDKClientBase { }; createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, + input: SdkApiTypes.TCreateAuthenticatorsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1040,12 +1040,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", }, - "createAuthenticatorsResult", + "createAuthenticatorsResult" ); }; stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, + input: SdkApiTypes.TCreateAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1062,7 +1062,7 @@ export class TurnkeySDKClientBase { }; createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, + input: SdkApiTypes.TCreateInvitationsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1079,12 +1079,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_INVITATIONS", }, - "createInvitationsResult", + "createInvitationsResult" ); }; stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, + input: SdkApiTypes.TCreateInvitationsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1101,7 +1101,7 @@ export class TurnkeySDKClientBase { }; createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, + input: SdkApiTypes.TCreateOauthProvidersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1118,12 +1118,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", }, - "createOauthProvidersResult", + "createOauthProvidersResult" ); }; stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, + input: SdkApiTypes.TCreateOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1140,7 +1140,7 @@ export class TurnkeySDKClientBase { }; createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, + input: SdkApiTypes.TCreatePoliciesBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1157,12 +1157,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICIES", }, - "createPoliciesResult", + "createPoliciesResult" ); }; stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, + input: SdkApiTypes.TCreatePoliciesBody ): Promise => { if (!this.stamper) { return undefined; @@ -1179,7 +1179,7 @@ export class TurnkeySDKClientBase { }; createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, + input: SdkApiTypes.TCreatePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1196,12 +1196,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICY_V3", }, - "createPolicyResult", + "createPolicyResult" ); }; stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, + input: SdkApiTypes.TCreatePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1217,7 +1217,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, + input: SdkApiTypes.TCreatePrivateKeyTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1234,12 +1234,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", }, - "createPrivateKeyTagResult", + "createPrivateKeyTagResult" ); }; stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, + input: SdkApiTypes.TCreatePrivateKeyTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -1256,7 +1256,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, + input: SdkApiTypes.TCreatePrivateKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1273,12 +1273,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", }, - "createPrivateKeysResultV2", + "createPrivateKeysResultV2" ); }; stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, + input: SdkApiTypes.TCreatePrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1295,7 +1295,7 @@ export class TurnkeySDKClientBase { }; createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, + input: SdkApiTypes.TCreateReadOnlySessionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1312,12 +1312,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", }, - "createReadOnlySessionResult", + "createReadOnlySessionResult" ); }; stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, + input: SdkApiTypes.TCreateReadOnlySessionBody ): Promise => { if (!this.stamper) { return undefined; @@ -1334,7 +1334,7 @@ export class TurnkeySDKClientBase { }; createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, + input: SdkApiTypes.TCreateReadWriteSessionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1351,12 +1351,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", }, - "createReadWriteSessionResultV2", + "createReadWriteSessionResultV2" ); }; stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, + input: SdkApiTypes.TCreateReadWriteSessionBody ): Promise => { if (!this.stamper) { return undefined; @@ -1373,7 +1373,7 @@ export class TurnkeySDKClientBase { }; createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, + input: SdkApiTypes.TCreateSubOrganizationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1390,12 +1390,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", }, - "createSubOrganizationResultV7", + "createSubOrganizationResultV7" ); }; stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, + input: SdkApiTypes.TCreateSubOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1412,7 +1412,7 @@ export class TurnkeySDKClientBase { }; createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, + input: SdkApiTypes.TCreateUserTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1429,12 +1429,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USER_TAG", }, - "createUserTagResult", + "createUserTagResult" ); }; stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, + input: SdkApiTypes.TCreateUserTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -1451,7 +1451,7 @@ export class TurnkeySDKClientBase { }; createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, + input: SdkApiTypes.TCreateUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1468,12 +1468,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USERS_V3", }, - "createUsersResult", + "createUsersResult" ); }; stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, + input: SdkApiTypes.TCreateUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1489,7 +1489,7 @@ export class TurnkeySDKClientBase { }; createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, + input: SdkApiTypes.TCreateWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1506,12 +1506,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET", }, - "createWalletResult", + "createWalletResult" ); }; stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, + input: SdkApiTypes.TCreateWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -1527,7 +1527,7 @@ export class TurnkeySDKClientBase { }; createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, + input: SdkApiTypes.TCreateWalletAccountsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1544,12 +1544,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", }, - "createWalletAccountsResult", + "createWalletAccountsResult" ); }; stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, + input: SdkApiTypes.TCreateWalletAccountsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1566,7 +1566,7 @@ export class TurnkeySDKClientBase { }; deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, + input: SdkApiTypes.TDeleteApiKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1583,12 +1583,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_API_KEYS", }, - "deleteApiKeysResult", + "deleteApiKeysResult" ); }; stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, + input: SdkApiTypes.TDeleteApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1605,7 +1605,7 @@ export class TurnkeySDKClientBase { }; deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, + input: SdkApiTypes.TDeleteAuthenticatorsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1622,12 +1622,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", }, - "deleteAuthenticatorsResult", + "deleteAuthenticatorsResult" ); }; stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, + input: SdkApiTypes.TDeleteAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1644,7 +1644,7 @@ export class TurnkeySDKClientBase { }; deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, + input: SdkApiTypes.TDeleteInvitationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1661,12 +1661,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_INVITATION", }, - "deleteInvitationResult", + "deleteInvitationResult" ); }; stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, + input: SdkApiTypes.TDeleteInvitationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1683,7 +1683,7 @@ export class TurnkeySDKClientBase { }; deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, + input: SdkApiTypes.TDeleteOauthProvidersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1700,12 +1700,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", }, - "deleteOauthProvidersResult", + "deleteOauthProvidersResult" ); }; stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, + input: SdkApiTypes.TDeleteOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1722,7 +1722,7 @@ export class TurnkeySDKClientBase { }; deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, + input: SdkApiTypes.TDeletePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1739,12 +1739,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_POLICY", }, - "deletePolicyResult", + "deletePolicyResult" ); }; stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, + input: SdkApiTypes.TDeletePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1760,7 +1760,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, + input: SdkApiTypes.TDeletePrivateKeyTagsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1777,12 +1777,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", }, - "deletePrivateKeyTagsResult", + "deletePrivateKeyTagsResult" ); }; stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, + input: SdkApiTypes.TDeletePrivateKeyTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1799,7 +1799,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, + input: SdkApiTypes.TDeletePrivateKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1816,12 +1816,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", }, - "deletePrivateKeysResult", + "deletePrivateKeysResult" ); }; stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, + input: SdkApiTypes.TDeletePrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1838,7 +1838,7 @@ export class TurnkeySDKClientBase { }; deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, + input: SdkApiTypes.TDeleteSubOrganizationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1855,12 +1855,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", }, - "deleteSubOrganizationResult", + "deleteSubOrganizationResult" ); }; stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, + input: SdkApiTypes.TDeleteSubOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1877,7 +1877,7 @@ export class TurnkeySDKClientBase { }; deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, + input: SdkApiTypes.TDeleteUserTagsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1894,12 +1894,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USER_TAGS", }, - "deleteUserTagsResult", + "deleteUserTagsResult" ); }; stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, + input: SdkApiTypes.TDeleteUserTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1916,7 +1916,7 @@ export class TurnkeySDKClientBase { }; deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, + input: SdkApiTypes.TDeleteUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1933,12 +1933,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USERS", }, - "deleteUsersResult", + "deleteUsersResult" ); }; stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, + input: SdkApiTypes.TDeleteUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1954,7 +1954,7 @@ export class TurnkeySDKClientBase { }; deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, + input: SdkApiTypes.TDeleteWalletsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1971,12 +1971,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_WALLETS", }, - "deleteWalletsResult", + "deleteWalletsResult" ); }; stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, + input: SdkApiTypes.TDeleteWalletsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1992,7 +1992,7 @@ export class TurnkeySDKClientBase { }; emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, + input: SdkApiTypes.TEmailAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2009,12 +2009,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", }, - "emailAuthResult", + "emailAuthResult" ); }; stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, + input: SdkApiTypes.TEmailAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2030,7 +2030,7 @@ export class TurnkeySDKClientBase { }; exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, + input: SdkApiTypes.TExportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2047,12 +2047,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", }, - "exportPrivateKeyResult", + "exportPrivateKeyResult" ); }; stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, + input: SdkApiTypes.TExportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -2069,7 +2069,7 @@ export class TurnkeySDKClientBase { }; exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, + input: SdkApiTypes.TExportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2086,12 +2086,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET", }, - "exportWalletResult", + "exportWalletResult" ); }; stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, + input: SdkApiTypes.TExportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -2107,7 +2107,7 @@ export class TurnkeySDKClientBase { }; exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, + input: SdkApiTypes.TExportWalletAccountBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2124,12 +2124,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", }, - "exportWalletAccountResult", + "exportWalletAccountResult" ); }; stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, + input: SdkApiTypes.TExportWalletAccountBody ): Promise => { if (!this.stamper) { return undefined; @@ -2146,7 +2146,7 @@ export class TurnkeySDKClientBase { }; importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, + input: SdkApiTypes.TImportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2163,12 +2163,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", }, - "importPrivateKeyResult", + "importPrivateKeyResult" ); }; stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, + input: SdkApiTypes.TImportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -2185,7 +2185,7 @@ export class TurnkeySDKClientBase { }; importWallet = async ( - input: SdkApiTypes.TImportWalletBody, + input: SdkApiTypes.TImportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2202,12 +2202,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_WALLET", }, - "importWalletResult", + "importWalletResult" ); }; stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, + input: SdkApiTypes.TImportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -2223,7 +2223,7 @@ export class TurnkeySDKClientBase { }; initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, + input: SdkApiTypes.TInitFiatOnRampBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2240,12 +2240,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", }, - "initFiatOnRampResult", + "initFiatOnRampResult" ); }; stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, + input: SdkApiTypes.TInitFiatOnRampBody ): Promise => { if (!this.stamper) { return undefined; @@ -2262,7 +2262,7 @@ export class TurnkeySDKClientBase { }; initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, + input: SdkApiTypes.TInitImportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2279,12 +2279,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", }, - "initImportPrivateKeyResult", + "initImportPrivateKeyResult" ); }; stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, + input: SdkApiTypes.TInitImportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -2301,7 +2301,7 @@ export class TurnkeySDKClientBase { }; initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, + input: SdkApiTypes.TInitImportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2318,12 +2318,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", }, - "initImportWalletResult", + "initImportWalletResult" ); }; stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, + input: SdkApiTypes.TInitImportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -2340,7 +2340,7 @@ export class TurnkeySDKClientBase { }; initOtp = async ( - input: SdkApiTypes.TInitOtpBody, + input: SdkApiTypes.TInitOtpBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2357,12 +2357,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP", }, - "initOtpResult", + "initOtpResult" ); }; stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, + input: SdkApiTypes.TInitOtpBody ): Promise => { if (!this.stamper) { return undefined; @@ -2378,7 +2378,7 @@ export class TurnkeySDKClientBase { }; initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, + input: SdkApiTypes.TInitOtpAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2395,12 +2395,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", }, - "initOtpAuthResultV2", + "initOtpAuthResultV2" ); }; stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, + input: SdkApiTypes.TInitOtpAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2416,7 +2416,7 @@ export class TurnkeySDKClientBase { }; initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, + input: SdkApiTypes.TInitUserEmailRecoveryBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2433,12 +2433,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", }, - "initUserEmailRecoveryResult", + "initUserEmailRecoveryResult" ); }; stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, + input: SdkApiTypes.TInitUserEmailRecoveryBody ): Promise => { if (!this.stamper) { return undefined; @@ -2455,7 +2455,7 @@ export class TurnkeySDKClientBase { }; oauth = async ( - input: SdkApiTypes.TOauthBody, + input: SdkApiTypes.TOauthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2472,12 +2472,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH", }, - "oauthResult", + "oauthResult" ); }; stampOauth = async ( - input: SdkApiTypes.TOauthBody, + input: SdkApiTypes.TOauthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2493,7 +2493,7 @@ export class TurnkeySDKClientBase { }; oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, + input: SdkApiTypes.TOauthLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2510,12 +2510,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH_LOGIN", }, - "oauthLoginResult", + "oauthLoginResult" ); }; stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, + input: SdkApiTypes.TOauthLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2531,7 +2531,7 @@ export class TurnkeySDKClientBase { }; otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, + input: SdkApiTypes.TOtpAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2548,12 +2548,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_AUTH", }, - "otpAuthResult", + "otpAuthResult" ); }; stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, + input: SdkApiTypes.TOtpAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2569,7 +2569,7 @@ export class TurnkeySDKClientBase { }; otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, + input: SdkApiTypes.TOtpLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2586,12 +2586,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_LOGIN", }, - "otpLoginResult", + "otpLoginResult" ); }; stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, + input: SdkApiTypes.TOtpLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2607,7 +2607,7 @@ export class TurnkeySDKClientBase { }; recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, + input: SdkApiTypes.TRecoverUserBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2624,12 +2624,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_RECOVER_USER", }, - "recoverUserResult", + "recoverUserResult" ); }; stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, + input: SdkApiTypes.TRecoverUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -2645,7 +2645,7 @@ export class TurnkeySDKClientBase { }; rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, + input: SdkApiTypes.TRejectActivityBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2660,7 +2660,7 @@ export class TurnkeySDKClientBase { }; stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, + input: SdkApiTypes.TRejectActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -2677,7 +2677,7 @@ export class TurnkeySDKClientBase { }; removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, + input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2694,12 +2694,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", }, - "removeOrganizationFeatureResult", + "removeOrganizationFeatureResult" ); }; stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, + input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { if (!this.stamper) { return undefined; @@ -2716,7 +2716,7 @@ export class TurnkeySDKClientBase { }; setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, + input: SdkApiTypes.TSetOrganizationFeatureBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2733,12 +2733,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", }, - "setOrganizationFeatureResult", + "setOrganizationFeatureResult" ); }; stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, + input: SdkApiTypes.TSetOrganizationFeatureBody ): Promise => { if (!this.stamper) { return undefined; @@ -2755,7 +2755,7 @@ export class TurnkeySDKClientBase { }; signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, + input: SdkApiTypes.TSignRawPayloadBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2772,12 +2772,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", }, - "signRawPayloadResult", + "signRawPayloadResult" ); }; stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, + input: SdkApiTypes.TSignRawPayloadBody ): Promise => { if (!this.stamper) { return undefined; @@ -2794,7 +2794,7 @@ export class TurnkeySDKClientBase { }; signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, + input: SdkApiTypes.TSignRawPayloadsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2811,12 +2811,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", }, - "signRawPayloadsResult", + "signRawPayloadsResult" ); }; stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, + input: SdkApiTypes.TSignRawPayloadsBody ): Promise => { if (!this.stamper) { return undefined; @@ -2833,7 +2833,7 @@ export class TurnkeySDKClientBase { }; signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, + input: SdkApiTypes.TSignTransactionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2850,12 +2850,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", }, - "signTransactionResult", + "signTransactionResult" ); }; stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, + input: SdkApiTypes.TSignTransactionBody ): Promise => { if (!this.stamper) { return undefined; @@ -2872,7 +2872,7 @@ export class TurnkeySDKClientBase { }; stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, + input: SdkApiTypes.TStampLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2889,12 +2889,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_STAMP_LOGIN", }, - "stampLoginResult", + "stampLoginResult" ); }; stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, + input: SdkApiTypes.TStampLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2910,7 +2910,7 @@ export class TurnkeySDKClientBase { }; updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, + input: SdkApiTypes.TUpdatePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2927,12 +2927,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", }, - "updatePolicyResultV2", + "updatePolicyResultV2" ); }; stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, + input: SdkApiTypes.TUpdatePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -2948,7 +2948,7 @@ export class TurnkeySDKClientBase { }; updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, + input: SdkApiTypes.TUpdatePrivateKeyTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2965,12 +2965,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", }, - "updatePrivateKeyTagResult", + "updatePrivateKeyTagResult" ); }; stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, + input: SdkApiTypes.TUpdatePrivateKeyTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -2987,7 +2987,7 @@ export class TurnkeySDKClientBase { }; updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, + input: SdkApiTypes.TUpdateRootQuorumBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3004,12 +3004,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", }, - "updateRootQuorumResult", + "updateRootQuorumResult" ); }; stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, + input: SdkApiTypes.TUpdateRootQuorumBody ): Promise => { if (!this.stamper) { return undefined; @@ -3026,7 +3026,7 @@ export class TurnkeySDKClientBase { }; updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, + input: SdkApiTypes.TUpdateUserBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3043,12 +3043,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER", }, - "updateUserResult", + "updateUserResult" ); }; stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, + input: SdkApiTypes.TUpdateUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -3064,7 +3064,7 @@ export class TurnkeySDKClientBase { }; updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, + input: SdkApiTypes.TUpdateUserEmailBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3081,12 +3081,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", }, - "updateUserEmailResult", + "updateUserEmailResult" ); }; stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, + input: SdkApiTypes.TUpdateUserEmailBody ): Promise => { if (!this.stamper) { return undefined; @@ -3103,7 +3103,7 @@ export class TurnkeySDKClientBase { }; updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, + input: SdkApiTypes.TUpdateUserNameBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3120,12 +3120,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_NAME", }, - "updateUserNameResult", + "updateUserNameResult" ); }; stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, + input: SdkApiTypes.TUpdateUserNameBody ): Promise => { if (!this.stamper) { return undefined; @@ -3142,7 +3142,7 @@ export class TurnkeySDKClientBase { }; updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, + input: SdkApiTypes.TUpdateUserPhoneNumberBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3159,12 +3159,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", }, - "updateUserPhoneNumberResult", + "updateUserPhoneNumberResult" ); }; stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, + input: SdkApiTypes.TUpdateUserPhoneNumberBody ): Promise => { if (!this.stamper) { return undefined; @@ -3181,7 +3181,7 @@ export class TurnkeySDKClientBase { }; updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, + input: SdkApiTypes.TUpdateUserTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3198,12 +3198,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_TAG", }, - "updateUserTagResult", + "updateUserTagResult" ); }; stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, + input: SdkApiTypes.TUpdateUserTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -3220,7 +3220,7 @@ export class TurnkeySDKClientBase { }; updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, + input: SdkApiTypes.TUpdateWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3237,12 +3237,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_WALLET", }, - "updateWalletResult", + "updateWalletResult" ); }; stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, + input: SdkApiTypes.TUpdateWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -3258,7 +3258,7 @@ export class TurnkeySDKClientBase { }; verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, + input: SdkApiTypes.TVerifyOtpBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3275,12 +3275,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_VERIFY_OTP", }, - "verifyOtpResult", + "verifyOtpResult" ); }; stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, + input: SdkApiTypes.TVerifyOtpBody ): Promise => { if (!this.stamper) { return undefined; @@ -3296,7 +3296,7 @@ export class TurnkeySDKClientBase { }; testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, + input: SdkApiTypes.TTestRateLimitsBody ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -3310,7 +3310,7 @@ export class TurnkeySDKClientBase { }; stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, + input: SdkApiTypes.TTestRateLimitsBody ): Promise => { if (!this.stamper) { return undefined; diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 7f1b064a3..339651579 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -3125,6 +3125,20 @@ } } }, + "immutablecommonv1FiatOnRampProvider": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_PROVIDER_COINBASE", + "FIAT_ON_RAMP_PROVIDER_MOONPAY" + ] + }, + "immutablecommonv1FiatOnRampTransactionType": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" + ] + }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index f83e9d833..100cfc54f 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -451,6 +451,14 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + /** @enum {string} */ + immutablecommonv1FiatOnRampProvider: + | "FIAT_ON_RAMP_PROVIDER_COINBASE" + | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; + /** @enum {string} */ + immutablecommonv1FiatOnRampTransactionType: + | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" + | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 7ecf34888..a378cc4f5 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -32,7 +32,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -66,7 +66,7 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; @@ -101,7 +101,7 @@ export class TurnkeySDKClientBase { if ( !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, + pollData.activity.status as TActivityStatus ) ) { await sleep(pollingDuration); @@ -113,12 +113,12 @@ export class TurnkeySDKClientBase { const responseData = (await this.request( url, - body, + body )) as TActivityResponse; if ( !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, + responseData.activity.status as TActivityStatus ) ) { return pollStatus(responseData.activity.id); @@ -129,7 +129,7 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { const activityData = (await this.request(url, body)) as TActivityResponse; @@ -140,7 +140,7 @@ export class TurnkeySDKClientBase { } getActivity = async ( - input: SdkApiTypes.TGetActivityBody, + input: SdkApiTypes.TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", { ...input, @@ -149,7 +149,7 @@ export class TurnkeySDKClientBase { }; stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, + input: SdkApiTypes.TGetActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -165,7 +165,7 @@ export class TurnkeySDKClientBase { }; getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, + input: SdkApiTypes.TGetApiKeyBody ): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, @@ -174,7 +174,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, + input: SdkApiTypes.TGetApiKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -190,7 +190,7 @@ export class TurnkeySDKClientBase { }; getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, + input: SdkApiTypes.TGetApiKeysBody = {} ): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, @@ -199,7 +199,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, + input: SdkApiTypes.TGetApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -215,7 +215,7 @@ export class TurnkeySDKClientBase { }; getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, + input: SdkApiTypes.TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, @@ -224,7 +224,7 @@ export class TurnkeySDKClientBase { }; stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, + input: SdkApiTypes.TGetAttestationDocumentBody ): Promise => { if (!this.stamper) { return undefined; @@ -240,7 +240,7 @@ export class TurnkeySDKClientBase { }; getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, + input: SdkApiTypes.TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, @@ -249,7 +249,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, + input: SdkApiTypes.TGetAuthenticatorBody ): Promise => { if (!this.stamper) { return undefined; @@ -266,7 +266,7 @@ export class TurnkeySDKClientBase { }; getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, + input: SdkApiTypes.TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, @@ -275,7 +275,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, + input: SdkApiTypes.TGetAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -292,7 +292,7 @@ export class TurnkeySDKClientBase { }; getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, + input: SdkApiTypes.TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, @@ -301,7 +301,7 @@ export class TurnkeySDKClientBase { }; stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, + input: SdkApiTypes.TGetOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -318,7 +318,7 @@ export class TurnkeySDKClientBase { }; getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, + input: SdkApiTypes.TGetOrganizationBody = {} ): Promise => { return this.request("/public/v1/query/get_organization", { ...input, @@ -327,7 +327,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, + input: SdkApiTypes.TGetOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -344,7 +344,7 @@ export class TurnkeySDKClientBase { }; getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, + input: SdkApiTypes.TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, @@ -353,7 +353,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, + input: SdkApiTypes.TGetOrganizationConfigsBody ): Promise => { if (!this.stamper) { return undefined; @@ -370,7 +370,7 @@ export class TurnkeySDKClientBase { }; getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, + input: SdkApiTypes.TGetPolicyBody ): Promise => { return this.request("/public/v1/query/get_policy", { ...input, @@ -379,7 +379,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, + input: SdkApiTypes.TGetPolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -395,7 +395,7 @@ export class TurnkeySDKClientBase { }; getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, + input: SdkApiTypes.TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, @@ -404,7 +404,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, + input: SdkApiTypes.TGetPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -420,7 +420,7 @@ export class TurnkeySDKClientBase { }; getUser = async ( - input: SdkApiTypes.TGetUserBody, + input: SdkApiTypes.TGetUserBody ): Promise => { return this.request("/public/v1/query/get_user", { ...input, @@ -429,7 +429,7 @@ export class TurnkeySDKClientBase { }; stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, + input: SdkApiTypes.TGetUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -445,7 +445,7 @@ export class TurnkeySDKClientBase { }; getWallet = async ( - input: SdkApiTypes.TGetWalletBody, + input: SdkApiTypes.TGetWalletBody ): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, @@ -454,7 +454,7 @@ export class TurnkeySDKClientBase { }; stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, + input: SdkApiTypes.TGetWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -470,7 +470,7 @@ export class TurnkeySDKClientBase { }; getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, + input: SdkApiTypes.TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, @@ -479,7 +479,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, + input: SdkApiTypes.TGetWalletAccountBody ): Promise => { if (!this.stamper) { return undefined; @@ -496,7 +496,7 @@ export class TurnkeySDKClientBase { }; getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, + input: SdkApiTypes.TGetActivitiesBody = {} ): Promise => { return this.request("/public/v1/query/list_activities", { ...input, @@ -505,7 +505,7 @@ export class TurnkeySDKClientBase { }; stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, + input: SdkApiTypes.TGetActivitiesBody ): Promise => { if (!this.stamper) { return undefined; @@ -521,7 +521,7 @@ export class TurnkeySDKClientBase { }; getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, + input: SdkApiTypes.TGetPoliciesBody = {} ): Promise => { return this.request("/public/v1/query/list_policies", { ...input, @@ -530,7 +530,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, + input: SdkApiTypes.TGetPoliciesBody ): Promise => { if (!this.stamper) { return undefined; @@ -546,7 +546,7 @@ export class TurnkeySDKClientBase { }; listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, + input: SdkApiTypes.TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, @@ -555,7 +555,7 @@ export class TurnkeySDKClientBase { }; stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, + input: SdkApiTypes.TListPrivateKeyTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -572,7 +572,7 @@ export class TurnkeySDKClientBase { }; getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, + input: SdkApiTypes.TGetPrivateKeysBody = {} ): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, @@ -581,7 +581,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, + input: SdkApiTypes.TGetPrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -598,7 +598,7 @@ export class TurnkeySDKClientBase { }; getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, + input: SdkApiTypes.TGetSubOrgIdsBody = {} ): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, @@ -607,7 +607,7 @@ export class TurnkeySDKClientBase { }; stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, + input: SdkApiTypes.TGetSubOrgIdsBody ): Promise => { if (!this.stamper) { return undefined; @@ -623,7 +623,7 @@ export class TurnkeySDKClientBase { }; listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, + input: SdkApiTypes.TListUserTagsBody = {} ): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, @@ -632,7 +632,7 @@ export class TurnkeySDKClientBase { }; stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, + input: SdkApiTypes.TListUserTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -648,7 +648,7 @@ export class TurnkeySDKClientBase { }; getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, + input: SdkApiTypes.TGetUsersBody = {} ): Promise => { return this.request("/public/v1/query/list_users", { ...input, @@ -657,7 +657,7 @@ export class TurnkeySDKClientBase { }; stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, + input: SdkApiTypes.TGetUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -673,7 +673,7 @@ export class TurnkeySDKClientBase { }; getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, @@ -682,7 +682,7 @@ export class TurnkeySDKClientBase { }; stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody ): Promise => { if (!this.stamper) { return undefined; @@ -699,7 +699,7 @@ export class TurnkeySDKClientBase { }; getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, + input: SdkApiTypes.TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, @@ -708,7 +708,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, + input: SdkApiTypes.TGetWalletAccountsBody ): Promise => { if (!this.stamper) { return undefined; @@ -725,7 +725,7 @@ export class TurnkeySDKClientBase { }; getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, + input: SdkApiTypes.TGetWalletsBody = {} ): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, @@ -734,7 +734,7 @@ export class TurnkeySDKClientBase { }; stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, + input: SdkApiTypes.TGetWalletsBody ): Promise => { if (!this.stamper) { return undefined; @@ -750,7 +750,7 @@ export class TurnkeySDKClientBase { }; getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, + input: SdkApiTypes.TGetWhoamiBody = {} ): Promise => { return this.request("/public/v1/query/whoami", { ...input, @@ -759,7 +759,7 @@ export class TurnkeySDKClientBase { }; stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, + input: SdkApiTypes.TGetWhoamiBody ): Promise => { if (!this.stamper) { return undefined; @@ -775,7 +775,7 @@ export class TurnkeySDKClientBase { }; approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, + input: SdkApiTypes.TApproveActivityBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.activityDecision("/public/v1/submit/approve_activity", { @@ -787,7 +787,7 @@ export class TurnkeySDKClientBase { }; stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, + input: SdkApiTypes.TApproveActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -804,7 +804,7 @@ export class TurnkeySDKClientBase { }; createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, + input: SdkApiTypes.TCreateApiKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -815,12 +815,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", }, - "createApiKeysResult", + "createApiKeysResult" ); }; stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, + input: SdkApiTypes.TCreateApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -837,7 +837,7 @@ export class TurnkeySDKClientBase { }; createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, + input: SdkApiTypes.TCreateApiOnlyUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -848,12 +848,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", }, - "createApiOnlyUsersResult", + "createApiOnlyUsersResult" ); }; stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, + input: SdkApiTypes.TCreateApiOnlyUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -870,7 +870,7 @@ export class TurnkeySDKClientBase { }; createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, + input: SdkApiTypes.TCreateAuthenticatorsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -881,12 +881,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", }, - "createAuthenticatorsResult", + "createAuthenticatorsResult" ); }; stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, + input: SdkApiTypes.TCreateAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -903,7 +903,7 @@ export class TurnkeySDKClientBase { }; createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, + input: SdkApiTypes.TCreateInvitationsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -914,12 +914,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_INVITATIONS", }, - "createInvitationsResult", + "createInvitationsResult" ); }; stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, + input: SdkApiTypes.TCreateInvitationsBody ): Promise => { if (!this.stamper) { return undefined; @@ -936,7 +936,7 @@ export class TurnkeySDKClientBase { }; createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, + input: SdkApiTypes.TCreateOauthProvidersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -947,12 +947,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", }, - "createOauthProvidersResult", + "createOauthProvidersResult" ); }; stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, + input: SdkApiTypes.TCreateOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -969,7 +969,7 @@ export class TurnkeySDKClientBase { }; createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, + input: SdkApiTypes.TCreatePoliciesBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -980,12 +980,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICIES", }, - "createPoliciesResult", + "createPoliciesResult" ); }; stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, + input: SdkApiTypes.TCreatePoliciesBody ): Promise => { if (!this.stamper) { return undefined; @@ -1002,7 +1002,7 @@ export class TurnkeySDKClientBase { }; createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, + input: SdkApiTypes.TCreatePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1013,12 +1013,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICY_V3", }, - "createPolicyResult", + "createPolicyResult" ); }; stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, + input: SdkApiTypes.TCreatePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1034,7 +1034,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, + input: SdkApiTypes.TCreatePrivateKeyTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1045,12 +1045,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", }, - "createPrivateKeyTagResult", + "createPrivateKeyTagResult" ); }; stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, + input: SdkApiTypes.TCreatePrivateKeyTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -1067,7 +1067,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, + input: SdkApiTypes.TCreatePrivateKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1078,12 +1078,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", }, - "createPrivateKeysResultV2", + "createPrivateKeysResultV2" ); }; stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, + input: SdkApiTypes.TCreatePrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1100,7 +1100,7 @@ export class TurnkeySDKClientBase { }; createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, + input: SdkApiTypes.TCreateReadOnlySessionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1111,12 +1111,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", }, - "createReadOnlySessionResult", + "createReadOnlySessionResult" ); }; stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, + input: SdkApiTypes.TCreateReadOnlySessionBody ): Promise => { if (!this.stamper) { return undefined; @@ -1133,7 +1133,7 @@ export class TurnkeySDKClientBase { }; createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, + input: SdkApiTypes.TCreateReadWriteSessionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1144,12 +1144,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", }, - "createReadWriteSessionResultV2", + "createReadWriteSessionResultV2" ); }; stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, + input: SdkApiTypes.TCreateReadWriteSessionBody ): Promise => { if (!this.stamper) { return undefined; @@ -1166,7 +1166,7 @@ export class TurnkeySDKClientBase { }; createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, + input: SdkApiTypes.TCreateSubOrganizationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1177,12 +1177,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", }, - "createSubOrganizationResultV7", + "createSubOrganizationResultV7" ); }; stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, + input: SdkApiTypes.TCreateSubOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1199,7 +1199,7 @@ export class TurnkeySDKClientBase { }; createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, + input: SdkApiTypes.TCreateUserTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1210,12 +1210,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USER_TAG", }, - "createUserTagResult", + "createUserTagResult" ); }; stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, + input: SdkApiTypes.TCreateUserTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -1232,7 +1232,7 @@ export class TurnkeySDKClientBase { }; createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, + input: SdkApiTypes.TCreateUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1243,12 +1243,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USERS_V3", }, - "createUsersResult", + "createUsersResult" ); }; stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, + input: SdkApiTypes.TCreateUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1264,7 +1264,7 @@ export class TurnkeySDKClientBase { }; createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, + input: SdkApiTypes.TCreateWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1275,12 +1275,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET", }, - "createWalletResult", + "createWalletResult" ); }; stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, + input: SdkApiTypes.TCreateWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -1296,7 +1296,7 @@ export class TurnkeySDKClientBase { }; createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, + input: SdkApiTypes.TCreateWalletAccountsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1307,12 +1307,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", }, - "createWalletAccountsResult", + "createWalletAccountsResult" ); }; stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, + input: SdkApiTypes.TCreateWalletAccountsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1329,7 +1329,7 @@ export class TurnkeySDKClientBase { }; deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, + input: SdkApiTypes.TDeleteApiKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1340,12 +1340,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_API_KEYS", }, - "deleteApiKeysResult", + "deleteApiKeysResult" ); }; stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, + input: SdkApiTypes.TDeleteApiKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1362,7 +1362,7 @@ export class TurnkeySDKClientBase { }; deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, + input: SdkApiTypes.TDeleteAuthenticatorsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1373,12 +1373,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", }, - "deleteAuthenticatorsResult", + "deleteAuthenticatorsResult" ); }; stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, + input: SdkApiTypes.TDeleteAuthenticatorsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1395,7 +1395,7 @@ export class TurnkeySDKClientBase { }; deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, + input: SdkApiTypes.TDeleteInvitationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1406,12 +1406,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_INVITATION", }, - "deleteInvitationResult", + "deleteInvitationResult" ); }; stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, + input: SdkApiTypes.TDeleteInvitationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1428,7 +1428,7 @@ export class TurnkeySDKClientBase { }; deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, + input: SdkApiTypes.TDeleteOauthProvidersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1439,12 +1439,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", }, - "deleteOauthProvidersResult", + "deleteOauthProvidersResult" ); }; stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, + input: SdkApiTypes.TDeleteOauthProvidersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1461,7 +1461,7 @@ export class TurnkeySDKClientBase { }; deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, + input: SdkApiTypes.TDeletePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1472,12 +1472,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_POLICY", }, - "deletePolicyResult", + "deletePolicyResult" ); }; stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, + input: SdkApiTypes.TDeletePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1493,7 +1493,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, + input: SdkApiTypes.TDeletePrivateKeyTagsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1504,12 +1504,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", }, - "deletePrivateKeyTagsResult", + "deletePrivateKeyTagsResult" ); }; stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, + input: SdkApiTypes.TDeletePrivateKeyTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1526,7 +1526,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, + input: SdkApiTypes.TDeletePrivateKeysBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1537,12 +1537,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", }, - "deletePrivateKeysResult", + "deletePrivateKeysResult" ); }; stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, + input: SdkApiTypes.TDeletePrivateKeysBody ): Promise => { if (!this.stamper) { return undefined; @@ -1559,7 +1559,7 @@ export class TurnkeySDKClientBase { }; deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, + input: SdkApiTypes.TDeleteSubOrganizationBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1570,12 +1570,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", }, - "deleteSubOrganizationResult", + "deleteSubOrganizationResult" ); }; stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, + input: SdkApiTypes.TDeleteSubOrganizationBody ): Promise => { if (!this.stamper) { return undefined; @@ -1592,7 +1592,7 @@ export class TurnkeySDKClientBase { }; deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, + input: SdkApiTypes.TDeleteUserTagsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1603,12 +1603,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USER_TAGS", }, - "deleteUserTagsResult", + "deleteUserTagsResult" ); }; stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, + input: SdkApiTypes.TDeleteUserTagsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1625,7 +1625,7 @@ export class TurnkeySDKClientBase { }; deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, + input: SdkApiTypes.TDeleteUsersBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1636,12 +1636,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USERS", }, - "deleteUsersResult", + "deleteUsersResult" ); }; stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, + input: SdkApiTypes.TDeleteUsersBody ): Promise => { if (!this.stamper) { return undefined; @@ -1657,7 +1657,7 @@ export class TurnkeySDKClientBase { }; deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, + input: SdkApiTypes.TDeleteWalletsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1668,12 +1668,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_WALLETS", }, - "deleteWalletsResult", + "deleteWalletsResult" ); }; stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, + input: SdkApiTypes.TDeleteWalletsBody ): Promise => { if (!this.stamper) { return undefined; @@ -1689,7 +1689,7 @@ export class TurnkeySDKClientBase { }; emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, + input: SdkApiTypes.TEmailAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1700,12 +1700,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", }, - "emailAuthResult", + "emailAuthResult" ); }; stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, + input: SdkApiTypes.TEmailAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -1721,7 +1721,7 @@ export class TurnkeySDKClientBase { }; exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, + input: SdkApiTypes.TExportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1732,12 +1732,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", }, - "exportPrivateKeyResult", + "exportPrivateKeyResult" ); }; stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, + input: SdkApiTypes.TExportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1754,7 +1754,7 @@ export class TurnkeySDKClientBase { }; exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, + input: SdkApiTypes.TExportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1765,12 +1765,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET", }, - "exportWalletResult", + "exportWalletResult" ); }; stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, + input: SdkApiTypes.TExportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -1786,7 +1786,7 @@ export class TurnkeySDKClientBase { }; exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, + input: SdkApiTypes.TExportWalletAccountBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1797,12 +1797,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", }, - "exportWalletAccountResult", + "exportWalletAccountResult" ); }; stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, + input: SdkApiTypes.TExportWalletAccountBody ): Promise => { if (!this.stamper) { return undefined; @@ -1819,7 +1819,7 @@ export class TurnkeySDKClientBase { }; importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, + input: SdkApiTypes.TImportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1830,12 +1830,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", }, - "importPrivateKeyResult", + "importPrivateKeyResult" ); }; stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, + input: SdkApiTypes.TImportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1852,7 +1852,7 @@ export class TurnkeySDKClientBase { }; importWallet = async ( - input: SdkApiTypes.TImportWalletBody, + input: SdkApiTypes.TImportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1863,12 +1863,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_WALLET", }, - "importWalletResult", + "importWalletResult" ); }; stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, + input: SdkApiTypes.TImportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -1884,7 +1884,7 @@ export class TurnkeySDKClientBase { }; initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, + input: SdkApiTypes.TInitFiatOnRampBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1895,12 +1895,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", }, - "initFiatOnRampResult", + "initFiatOnRampResult" ); }; stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, + input: SdkApiTypes.TInitFiatOnRampBody ): Promise => { if (!this.stamper) { return undefined; @@ -1917,7 +1917,7 @@ export class TurnkeySDKClientBase { }; initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, + input: SdkApiTypes.TInitImportPrivateKeyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1928,12 +1928,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", }, - "initImportPrivateKeyResult", + "initImportPrivateKeyResult" ); }; stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, + input: SdkApiTypes.TInitImportPrivateKeyBody ): Promise => { if (!this.stamper) { return undefined; @@ -1950,7 +1950,7 @@ export class TurnkeySDKClientBase { }; initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, + input: SdkApiTypes.TInitImportWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1961,12 +1961,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", }, - "initImportWalletResult", + "initImportWalletResult" ); }; stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, + input: SdkApiTypes.TInitImportWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -1983,7 +1983,7 @@ export class TurnkeySDKClientBase { }; initOtp = async ( - input: SdkApiTypes.TInitOtpBody, + input: SdkApiTypes.TInitOtpBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1994,12 +1994,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP", }, - "initOtpResult", + "initOtpResult" ); }; stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, + input: SdkApiTypes.TInitOtpBody ): Promise => { if (!this.stamper) { return undefined; @@ -2015,7 +2015,7 @@ export class TurnkeySDKClientBase { }; initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, + input: SdkApiTypes.TInitOtpAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2026,12 +2026,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", }, - "initOtpAuthResultV2", + "initOtpAuthResultV2" ); }; stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, + input: SdkApiTypes.TInitOtpAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2047,7 +2047,7 @@ export class TurnkeySDKClientBase { }; initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, + input: SdkApiTypes.TInitUserEmailRecoveryBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2058,12 +2058,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", }, - "initUserEmailRecoveryResult", + "initUserEmailRecoveryResult" ); }; stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, + input: SdkApiTypes.TInitUserEmailRecoveryBody ): Promise => { if (!this.stamper) { return undefined; @@ -2080,7 +2080,7 @@ export class TurnkeySDKClientBase { }; oauth = async ( - input: SdkApiTypes.TOauthBody, + input: SdkApiTypes.TOauthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2091,12 +2091,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH", }, - "oauthResult", + "oauthResult" ); }; stampOauth = async ( - input: SdkApiTypes.TOauthBody, + input: SdkApiTypes.TOauthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2112,7 +2112,7 @@ export class TurnkeySDKClientBase { }; oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, + input: SdkApiTypes.TOauthLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2123,12 +2123,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH_LOGIN", }, - "oauthLoginResult", + "oauthLoginResult" ); }; stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, + input: SdkApiTypes.TOauthLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2144,7 +2144,7 @@ export class TurnkeySDKClientBase { }; otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, + input: SdkApiTypes.TOtpAuthBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2155,12 +2155,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_AUTH", }, - "otpAuthResult", + "otpAuthResult" ); }; stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, + input: SdkApiTypes.TOtpAuthBody ): Promise => { if (!this.stamper) { return undefined; @@ -2176,7 +2176,7 @@ export class TurnkeySDKClientBase { }; otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, + input: SdkApiTypes.TOtpLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2187,12 +2187,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_LOGIN", }, - "otpLoginResult", + "otpLoginResult" ); }; stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, + input: SdkApiTypes.TOtpLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2208,7 +2208,7 @@ export class TurnkeySDKClientBase { }; recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, + input: SdkApiTypes.TRecoverUserBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2219,12 +2219,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_RECOVER_USER", }, - "recoverUserResult", + "recoverUserResult" ); }; stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, + input: SdkApiTypes.TRecoverUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -2240,7 +2240,7 @@ export class TurnkeySDKClientBase { }; rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, + input: SdkApiTypes.TRejectActivityBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.activityDecision("/public/v1/submit/reject_activity", { @@ -2252,7 +2252,7 @@ export class TurnkeySDKClientBase { }; stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, + input: SdkApiTypes.TRejectActivityBody ): Promise => { if (!this.stamper) { return undefined; @@ -2269,7 +2269,7 @@ export class TurnkeySDKClientBase { }; removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, + input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2280,12 +2280,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", }, - "removeOrganizationFeatureResult", + "removeOrganizationFeatureResult" ); }; stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, + input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { if (!this.stamper) { return undefined; @@ -2302,7 +2302,7 @@ export class TurnkeySDKClientBase { }; setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, + input: SdkApiTypes.TSetOrganizationFeatureBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2313,12 +2313,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", }, - "setOrganizationFeatureResult", + "setOrganizationFeatureResult" ); }; stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, + input: SdkApiTypes.TSetOrganizationFeatureBody ): Promise => { if (!this.stamper) { return undefined; @@ -2335,7 +2335,7 @@ export class TurnkeySDKClientBase { }; signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, + input: SdkApiTypes.TSignRawPayloadBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2346,12 +2346,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", }, - "signRawPayloadResult", + "signRawPayloadResult" ); }; stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, + input: SdkApiTypes.TSignRawPayloadBody ): Promise => { if (!this.stamper) { return undefined; @@ -2368,7 +2368,7 @@ export class TurnkeySDKClientBase { }; signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, + input: SdkApiTypes.TSignRawPayloadsBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2379,12 +2379,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", }, - "signRawPayloadsResult", + "signRawPayloadsResult" ); }; stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, + input: SdkApiTypes.TSignRawPayloadsBody ): Promise => { if (!this.stamper) { return undefined; @@ -2401,7 +2401,7 @@ export class TurnkeySDKClientBase { }; signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, + input: SdkApiTypes.TSignTransactionBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2412,12 +2412,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", }, - "signTransactionResult", + "signTransactionResult" ); }; stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, + input: SdkApiTypes.TSignTransactionBody ): Promise => { if (!this.stamper) { return undefined; @@ -2434,7 +2434,7 @@ export class TurnkeySDKClientBase { }; stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, + input: SdkApiTypes.TStampLoginBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2445,12 +2445,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_STAMP_LOGIN", }, - "stampLoginResult", + "stampLoginResult" ); }; stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, + input: SdkApiTypes.TStampLoginBody ): Promise => { if (!this.stamper) { return undefined; @@ -2466,7 +2466,7 @@ export class TurnkeySDKClientBase { }; updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, + input: SdkApiTypes.TUpdatePolicyBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2477,12 +2477,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", }, - "updatePolicyResultV2", + "updatePolicyResultV2" ); }; stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, + input: SdkApiTypes.TUpdatePolicyBody ): Promise => { if (!this.stamper) { return undefined; @@ -2498,7 +2498,7 @@ export class TurnkeySDKClientBase { }; updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, + input: SdkApiTypes.TUpdatePrivateKeyTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2509,12 +2509,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", }, - "updatePrivateKeyTagResult", + "updatePrivateKeyTagResult" ); }; stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, + input: SdkApiTypes.TUpdatePrivateKeyTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -2531,7 +2531,7 @@ export class TurnkeySDKClientBase { }; updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, + input: SdkApiTypes.TUpdateRootQuorumBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2542,12 +2542,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", }, - "updateRootQuorumResult", + "updateRootQuorumResult" ); }; stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, + input: SdkApiTypes.TUpdateRootQuorumBody ): Promise => { if (!this.stamper) { return undefined; @@ -2564,7 +2564,7 @@ export class TurnkeySDKClientBase { }; updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, + input: SdkApiTypes.TUpdateUserBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2575,12 +2575,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER", }, - "updateUserResult", + "updateUserResult" ); }; stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, + input: SdkApiTypes.TUpdateUserBody ): Promise => { if (!this.stamper) { return undefined; @@ -2596,7 +2596,7 @@ export class TurnkeySDKClientBase { }; updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, + input: SdkApiTypes.TUpdateUserEmailBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2607,12 +2607,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", }, - "updateUserEmailResult", + "updateUserEmailResult" ); }; stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, + input: SdkApiTypes.TUpdateUserEmailBody ): Promise => { if (!this.stamper) { return undefined; @@ -2629,7 +2629,7 @@ export class TurnkeySDKClientBase { }; updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, + input: SdkApiTypes.TUpdateUserNameBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2640,12 +2640,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_NAME", }, - "updateUserNameResult", + "updateUserNameResult" ); }; stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, + input: SdkApiTypes.TUpdateUserNameBody ): Promise => { if (!this.stamper) { return undefined; @@ -2662,7 +2662,7 @@ export class TurnkeySDKClientBase { }; updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, + input: SdkApiTypes.TUpdateUserPhoneNumberBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2673,12 +2673,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", }, - "updateUserPhoneNumberResult", + "updateUserPhoneNumberResult" ); }; stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, + input: SdkApiTypes.TUpdateUserPhoneNumberBody ): Promise => { if (!this.stamper) { return undefined; @@ -2695,7 +2695,7 @@ export class TurnkeySDKClientBase { }; updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, + input: SdkApiTypes.TUpdateUserTagBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2706,12 +2706,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_TAG", }, - "updateUserTagResult", + "updateUserTagResult" ); }; stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, + input: SdkApiTypes.TUpdateUserTagBody ): Promise => { if (!this.stamper) { return undefined; @@ -2728,7 +2728,7 @@ export class TurnkeySDKClientBase { }; updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, + input: SdkApiTypes.TUpdateWalletBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2739,12 +2739,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_WALLET", }, - "updateWalletResult", + "updateWalletResult" ); }; stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, + input: SdkApiTypes.TUpdateWalletBody ): Promise => { if (!this.stamper) { return undefined; @@ -2760,7 +2760,7 @@ export class TurnkeySDKClientBase { }; verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, + input: SdkApiTypes.TVerifyOtpBody ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2771,12 +2771,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_VERIFY_OTP", }, - "verifyOtpResult", + "verifyOtpResult" ); }; stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, + input: SdkApiTypes.TVerifyOtpBody ): Promise => { if (!this.stamper) { return undefined; @@ -2792,7 +2792,7 @@ export class TurnkeySDKClientBase { }; testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, + input: SdkApiTypes.TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, @@ -2801,7 +2801,7 @@ export class TurnkeySDKClientBase { }; stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, + input: SdkApiTypes.TTestRateLimitsBody ): Promise => { if (!this.stamper) { return undefined; diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 7f1b064a3..339651579 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -3125,6 +3125,20 @@ } } }, + "immutablecommonv1FiatOnRampProvider": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_PROVIDER_COINBASE", + "FIAT_ON_RAMP_PROVIDER_MOONPAY" + ] + }, + "immutablecommonv1FiatOnRampTransactionType": { + "type": "string", + "enum": [ + "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" + ] + }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index f83e9d833..100cfc54f 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -451,6 +451,14 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + /** @enum {string} */ + immutablecommonv1FiatOnRampProvider: + | "FIAT_ON_RAMP_PROVIDER_COINBASE" + | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; + /** @enum {string} */ + immutablecommonv1FiatOnRampTransactionType: + | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" + | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; From e5efa63c6f5749ad00470d7669fedeea34a5d1b8 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 6 Jun 2025 13:00:06 -0400 Subject: [PATCH 08/42] chore: integrate with OnchainKit hooks and MoonPay widget --- .../app/components/CoinbaseCryptoProvider.tsx | 3 +- .../src/app/dashboard/OnRamp.tsx | 74 +++++- pnpm-lock.yaml | 226 +++++++++++------- 3 files changed, 211 insertions(+), 92 deletions(-) diff --git a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx index 3cba5c511..fac1900b5 100644 --- a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx +++ b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx @@ -11,7 +11,8 @@ interface CoinbaseCryptoProviderProps { const CoinbaseCryptoProvider = ({ children }: CoinbaseCryptoProviderProps) => { return ( {children} diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 8a2d2018c..dfa8ff443 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -1,8 +1,15 @@ import crypto from "crypto"; import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; -import { FundButton } from "@coinbase/onchainkit/fund"; +import { + FundButton, + getOnrampBuyUrl, + fetchOnrampConfig, + fetchOnrampOptions, +} from "@coinbase/onchainkit/fund"; import { useEffect, useState } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; +import { Buy } from "@coinbase/onchainkit/buy"; +import { Token } from "@coinbase/onchainkit/token"; export const OnRamp = () => { const { turnkey, indexedDbClient } = useTurnkey(); @@ -12,6 +19,14 @@ export const OnRamp = () => { const [isCoinbaseToggled, setIsCoinbaseToggled] = useState(false); const [isMoonPayToggled, setIsMoonPayToggled] = useState(false); + const ethToken: Token = { + name: "ETH", + address: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + symbol: "ETH", + decimals: 6, + chainId: 8453, + image: "", + }; // useEffect(() => { // const loadMoonPaySdk = async () => { // try { @@ -44,17 +59,60 @@ export const OnRamp = () => { organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + fiatCurrencyCode: "USD", + }); + + const onrampConfig = await fetchOnrampConfig(); + console.log("onrampConfig:", onrampConfig); + + const onrampOptions = await fetchOnrampOptions({ + country: "US", + subdivision: "ME", + }); + console.log("onrampOptions:", onrampOptions); + + const onrampBuyUrl = getOnrampBuyUrl({ + projectId: "aefedf19-488c-426c-b7be-133fab72807c", + addresses: { + ["0x652bd17D489F283A03bb52DAFa138764Be04Bc66"]: ["base"], + }, + assets: ["ETH"], + presetFiatAmount: 20, + fiatCurrency: "USD", }); + // ; + + console.log("Coinbase onrampBuyUrl:", onrampBuyUrl); + setCoinbaseOnRampBuyUrl(onrampBuyUrl); console.log("initFiatOnRampResponse:", initFiatOnRampResponse); - if (initFiatOnRampResponse?.onRampUrl) { - setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); - } + // if (initFiatOnRampResponse?.onRampUrl) { + // setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); + // } } catch (error) { console.error("Failed to init fiat on ramp:", error); } }; + // https://pay.coinbase.com/buy?sessionToken=MWYwNDE2YTItYWMwZC02OTA0LThjMDAtMTY3NzNhNGRkNGRk&appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + // https://pay.coinbase.com/buy/select-payment-method?appId=58a3fa2e-617f-4198-81e7-096f5e498c00&defaultAsset=ETH&defaultPaymentMethod=CARD&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&fiatCurrency=USD&presetFiatAmount=10 + // https://pay.coinbase.com/buy?token=MWYwNDE2YmQtZjEyOS02NTk1LWIxYjMtODIxNTE0ZDI3MTM5&appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + // https://pay.coinbase.com/buy?sessionToken=MWYwNDE2Y2MtMDhlZC02MjdmLTgwNDgtMTY5MmQ0NGIwMTFh&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + + // example from coinbase docs https://docs.cdp.coinbase.com/onramp/docs/api-oneclickbuy#generating-one-click-buy-urls + // https://pay.coinbase.com/buy/select-asset?appId=58a3fa2e-617f-4198-81e7-096f5e498c00&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + + // my url + // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + // appId=aefedf19-488c-426c-b7be-133fab72807c + + // https://pay.coinbase.com/buy?token=MWYwNDE3MjEtYTk1Mi02ZGNlLTg2MTEtOGVhNDZjN2QzNWRh + // https://pay.coinbase.com/buy?token=MWYwNDE3MmEtNGM1Yy02OGY4LWIxYjMtODIxNTE0ZDI3MTM5 + // https://pay.coinbase.com/buy/select-asset?sessionToken=MWYwNDE3MmEtNGM1Yy02OGY4LWIxYjMtODIxNTE0ZDI3MTM5&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 + + // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&addresses={"0x652bd17D489F283A03bb52DAFa138764Be04Bc66":["baseSepolia"]}&assets=["ETH"] if (isCoinbaseToggled) { generateCoinbaseUrl(); } else { @@ -88,6 +146,8 @@ export const OnRamp = () => { organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + fiatCurrencyCode: "USD", }); console.log( @@ -172,10 +232,8 @@ export const OnRamp = () => { <> {coinbaseOnRampBuyUrl && ( <> - + + )} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca08e41ec..ef3319e4f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -52,7 +52,7 @@ importers: version: 5.1.1(rollup@4.41.1) '@rollup/plugin-babel': specifier: 5.3.0 - version: 5.3.0(@babel/core@7.26.9)(@types/babel__core@7.20.5)(rollup@4.41.1) + version: 5.3.0(@babel/core@7.27.3)(@types/babel__core@7.20.5)(rollup@4.41.1) '@rollup/plugin-node-resolve': specifier: 16.0.0 version: 16.0.0(rollup@4.41.1) @@ -178,7 +178,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -238,7 +238,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -387,7 +387,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -441,7 +441,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -683,7 +683,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -894,7 +894,7 @@ importers: version: 0.363.0(react@18.3.1) next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-themes: specifier: ^0.3.0 version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -1006,7 +1006,7 @@ importers: version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -1103,7 +1103,7 @@ importers: version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -1184,7 +1184,7 @@ importers: version: 0.13.0 next: specifier: ^14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -1376,7 +1376,7 @@ importers: version: 0.13.0 next: specifier: 14.2.25 - version: 14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) npm: specifier: ^9.7.2 version: 9.9.4 @@ -1896,7 +1896,7 @@ importers: version: link:../http jest: specifier: 29.7.0 - version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) + version: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) packages/eip-1193-provider: dependencies: @@ -2113,12 +2113,15 @@ importers: '@types/react': specifier: ^18.2.75 version: 18.3.23 + jwt-decode: + specifier: ^4.0.0 + version: 4.0.0 libphonenumber-js: specifier: ^1.11.14 version: 1.12.8 next: specifier: '^15.2.3 ' - version: 15.3.2(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 15.3.2(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-apple-login: specifier: ^1.1.6 version: 1.1.6(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -16457,6 +16460,41 @@ snapshots: - supports-color - ts-node + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.3.1 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3))': dependencies: '@jest/console': 29.7.0 @@ -18606,6 +18644,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@rollup/plugin-babel@5.3.0(@babel/core@7.27.3)(@types/babel__core@7.20.5)(rollup@4.41.1)': + dependencies: + '@babel/core': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@rollup/pluginutils': 3.1.0(rollup@4.41.1) + rollup: 4.41.1 + optionalDependencies: + '@types/babel__core': 7.20.5 + transitivePeerDependencies: + - supports-color + '@rollup/plugin-node-resolve@16.0.0(rollup@4.41.1)': dependencies: '@rollup/pluginutils': 5.1.4(rollup@4.41.1) @@ -23206,6 +23255,21 @@ snapshots: - supports-color - ts-node + create-jest@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + create-jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: '@jest/types': 29.6.3 @@ -25217,6 +25281,25 @@ snapshots: - supports-color - ts-node + jest-cli@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): + dependencies: + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jest-cli@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) @@ -25298,6 +25381,37 @@ snapshots: - babel-plugin-macros - supports-color + jest-config@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): + dependencies: + '@babel/core': 7.26.9 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.9) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.3.1 + ts-node: 10.9.2(@types/node@20.3.1)(typescript@5.4.3) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + jest-config@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: '@babel/core': 7.26.9 @@ -25604,6 +25718,18 @@ snapshots: - supports-color - ts-node + jest@29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)): + dependencies: + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jest@29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) @@ -26307,56 +26433,6 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - next@14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@next/env': 14.2.25 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001718 - graceful-fs: 4.2.11 - postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.2.0) - optionalDependencies: - '@next/swc-darwin-arm64': 14.2.25 - '@next/swc-darwin-x64': 14.2.25 - '@next/swc-linux-arm64-gnu': 14.2.25 - '@next/swc-linux-arm64-musl': 14.2.25 - '@next/swc-linux-x64-gnu': 14.2.25 - '@next/swc-linux-x64-musl': 14.2.25 - '@next/swc-win32-arm64-msvc': 14.2.25 - '@next/swc-win32-ia32-msvc': 14.2.25 - '@next/swc-win32-x64-msvc': 14.2.25 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - - next@14.2.25(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@next/env': 14.2.25 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001718 - graceful-fs: 4.2.11 - postcss: 8.4.31 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1) - optionalDependencies: - '@next/swc-darwin-arm64': 14.2.25 - '@next/swc-darwin-x64': 14.2.25 - '@next/swc-linux-arm64-gnu': 14.2.25 - '@next/swc-linux-arm64-musl': 14.2.25 - '@next/swc-linux-x64-gnu': 14.2.25 - '@next/swc-linux-x64-musl': 14.2.25 - '@next/swc-win32-arm64-msvc': 14.2.25 - '@next/swc-win32-ia32-msvc': 14.2.25 - '@next/swc-win32-x64-msvc': 14.2.25 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - next@14.2.25(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@next/env': 14.2.25 @@ -26407,7 +26483,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.3.2(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@15.3.2(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 15.3.2 '@swc/counter': 0.1.3 @@ -26417,7 +26493,7 @@ snapshots: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.6(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 15.3.2 '@next/swc-darwin-x64': 15.3.2 @@ -28303,22 +28379,6 @@ snapshots: style-inject@0.3.0: {} - styled-jsx@5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.2.0): - dependencies: - client-only: 0.0.1 - react: 18.2.0 - optionalDependencies: - '@babel/core': 7.26.9 - babel-plugin-macros: 3.1.0 - - styled-jsx@5.1.1(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optionalDependencies: - '@babel/core': 7.26.9 - babel-plugin-macros: 3.1.0 - styled-jsx@5.1.1(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.2.0): dependencies: client-only: 0.0.1 @@ -28335,12 +28395,12 @@ snapshots: '@babel/core': 7.27.3 babel-plugin-macros: 3.1.0 - styled-jsx@5.1.6(@babel/core@7.26.9)(babel-plugin-macros@3.1.0)(react@18.3.1): + styled-jsx@5.1.6(@babel/core@7.27.3)(babel-plugin-macros@3.1.0)(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 optionalDependencies: - '@babel/core': 7.26.9 + '@babel/core': 7.27.3 babel-plugin-macros: 3.1.0 stylehacks@5.1.1(postcss@8.5.3): From e4f5e06d2c17cafb87a3685978eaf64a5dec1530 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sat, 7 Jun 2025 14:17:49 -0400 Subject: [PATCH 09/42] chore: prettier --- .../src/app/dashboard/OnRamp.tsx | 2 +- .../public/v1/public_api.client.ts | 274 +++++++++--------- .../public/v1/public_api.fetcher.ts | 172 +++++------ 3 files changed, 224 insertions(+), 224 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index dfa8ff443..04b0cc874 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -152,7 +152,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse + initMoonPayFiatOnRampResponse, ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 459c4eb7d..1646267d3 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 1bb49db2f..a3ba66c02 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", From 277460a9cdca35b8b776329e1d739442ea15473b Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sat, 7 Jun 2025 16:15:59 -0400 Subject: [PATCH 10/42] chore: codegen --- .../public/v1/public_api.client.ts | 274 +++++++++--------- .../public/v1/public_api.fetcher.ts | 172 +++++------ .../src/__generated__/sdk-client-base.ts | 96 +++++- .../src/__generated__/sdk-client-base.ts | 84 +++++- packages/viem/package.json | 3 +- pnpm-lock.yaml | 7 +- 6 files changed, 392 insertions(+), 244 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 1646267d3..459c4eb7d 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index a3ba66c02..1bb49db2f 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 4ddb48da1..80516b782 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -966,6 +966,45 @@ export class TurnkeySDKClientBase { ); }; + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody + ): Promise => { + const { organizationId, timestampMs, ...rest } = input; + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult" + ); + }; + stampCreateApiKeys = async ( input: SdkApiTypes.TCreateApiKeysBody ): Promise => { @@ -973,7 +1012,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1012,7 +1051,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1051,7 +1090,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1090,7 +1129,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1129,7 +1168,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2698,6 +2737,45 @@ export class TurnkeySDKClientBase { ); }; + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody + ): Promise => { + const { organizationId, timestampMs, ...rest } = input; + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult" + ); + }; + stampRemoveOrganizationFeature = async ( input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { @@ -2705,7 +2783,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2744,7 +2822,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2783,7 +2861,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2822,7 +2900,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index a378cc4f5..d15ea97c1 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -819,6 +819,39 @@ export class TurnkeySDKClientBase { ); }; + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody + ): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult" + ); + }; + stampCreateApiKeys = async ( input: SdkApiTypes.TCreateApiKeysBody ): Promise => { @@ -826,7 +859,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -859,7 +892,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -892,7 +925,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -925,7 +958,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -958,7 +991,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2284,6 +2317,39 @@ export class TurnkeySDKClientBase { ); }; + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody + ): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult" + ); + }; + stampRemoveOrganizationFeature = async ( input: SdkApiTypes.TRemoveOrganizationFeatureBody ): Promise => { @@ -2291,7 +2357,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2324,7 +2390,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2357,7 +2423,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2390,7 +2456,7 @@ export class TurnkeySDKClientBase { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { diff --git a/packages/viem/package.json b/packages/viem/package.json index 174dc2599..14b33ffc7 100644 --- a/packages/viem/package.json +++ b/packages/viem/package.json @@ -56,11 +56,12 @@ "viem": "^1.16.6 || ^2.24.2" }, "dependencies": { + "@noble/curves": "1.8.0", + "@openzeppelin/contracts": "^4.9.0", "@turnkey/api-key-stamper": "workspace:*", "@turnkey/http": "workspace:*", "@turnkey/sdk-browser": "workspace:*", "@turnkey/sdk-server": "workspace:*", - "@noble/curves": "1.8.0", "cross-fetch": "^4.0.0" }, "devDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef3319e4f..d0ba6d36f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1896,7 +1896,7 @@ importers: version: link:../http jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) packages/eip-1193-provider: dependencies: @@ -2256,6 +2256,9 @@ importers: '@noble/curves': specifier: 1.8.0 version: 1.8.0 + '@openzeppelin/contracts': + specifier: ^4.9.0 + version: 4.9.6 '@turnkey/api-key-stamper': specifier: workspace:* version: link:../api-key-stamper @@ -2277,7 +2280,7 @@ importers: version: 29.5.14 jest: specifier: ^29.3.1 - version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) + version: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 From c4a40a482cafddd2c629d85b44f6f630d90db2da Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 8 Jun 2025 12:14:37 -0400 Subject: [PATCH 11/42] chore: codegen --- .../public/v1/public_api.swagger.json | 18 ++++++++++++++++++ .../coordinator/public/v1/public_api.types.ts | 15 +++++++++++++++ .../src/__inputs__/public_api.swagger.json | 18 ++++++++++++++++++ .../src/__inputs__/public_api.types.ts | 15 +++++++++++++++ .../src/__inputs__/public_api.swagger.json | 18 ++++++++++++++++++ .../src/__inputs__/public_api.types.ts | 15 +++++++++++++++ 6 files changed, 99 insertions(+) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 339651579..580b1ddb0 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -7985,6 +7985,24 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, + "v1OnrampPaymentMethod": { + "type": "string", + "enum": [ + "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", + "ONRAMP_PAYMENT_METHOD_APPLE_PAY", + "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", + "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", + "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", + "ONRAMP_PAYMENT_METHOD_PAYPAL", + "ONRAMP_PAYMENT_METHOD_VENMO", + "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", + "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", + "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", + "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" + ] + }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index 100cfc54f..4f69a2f50 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -2496,6 +2496,21 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ + v1OnrampPaymentMethod: + | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" + | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" + | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" + | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_PAYPAL" + | "ONRAMP_PAYMENT_METHOD_VENMO" + | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" + | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" + | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" + | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; + /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 339651579..580b1ddb0 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -7985,6 +7985,24 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, + "v1OnrampPaymentMethod": { + "type": "string", + "enum": [ + "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", + "ONRAMP_PAYMENT_METHOD_APPLE_PAY", + "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", + "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", + "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", + "ONRAMP_PAYMENT_METHOD_PAYPAL", + "ONRAMP_PAYMENT_METHOD_VENMO", + "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", + "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", + "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", + "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" + ] + }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index 100cfc54f..4f69a2f50 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -2496,6 +2496,21 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ + v1OnrampPaymentMethod: + | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" + | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" + | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" + | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_PAYPAL" + | "ONRAMP_PAYMENT_METHOD_VENMO" + | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" + | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" + | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" + | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; + /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 339651579..580b1ddb0 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -7985,6 +7985,24 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, + "v1OnrampPaymentMethod": { + "type": "string", + "enum": [ + "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", + "ONRAMP_PAYMENT_METHOD_APPLE_PAY", + "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", + "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", + "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", + "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", + "ONRAMP_PAYMENT_METHOD_PAYPAL", + "ONRAMP_PAYMENT_METHOD_VENMO", + "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", + "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", + "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", + "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" + ] + }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index 100cfc54f..4f69a2f50 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -2496,6 +2496,21 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ + v1OnrampPaymentMethod: + | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" + | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" + | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" + | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" + | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" + | "ONRAMP_PAYMENT_METHOD_PAYPAL" + | "ONRAMP_PAYMENT_METHOD_VENMO" + | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" + | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" + | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" + | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; + /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" From 0c4166ecb5f447c80931c5e9851bf37f98326e9b Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 8 Jun 2025 12:15:33 -0400 Subject: [PATCH 12/42] chore: codegen --- .../public/v1/public_api.client.ts | 274 +++++++++--------- .../public/v1/public_api.fetcher.ts | 172 +++++------ 2 files changed, 223 insertions(+), 223 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 459c4eb7d..1646267d3 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 1bb49db2f..a3ba66c02 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", From ef1c8ae5ee32fa5b18fd2647d68d46f7b88e3df6 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 8 Jun 2025 15:48:26 -0400 Subject: [PATCH 13/42] chore: codegen --- .../src/app/dashboard/OnRamp.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 04b0cc874..860a88b42 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -55,14 +55,6 @@ export const OnRamp = () => { const session = await turnkey?.getSession(); console.log("session response:", session); - const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ - organizationId: session?.organizationId!, - onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", - transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", - walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", - fiatCurrencyCode: "USD", - }); - const onrampConfig = await fetchOnrampConfig(); console.log("onrampConfig:", onrampConfig); @@ -71,6 +63,13 @@ export const OnRamp = () => { subdivision: "ME", }); console.log("onrampOptions:", onrampOptions); + const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", + transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", + walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + fiatCurrencyCode: "USD", + }); const onrampBuyUrl = getOnrampBuyUrl({ projectId: "aefedf19-488c-426c-b7be-133fab72807c", @@ -148,11 +147,12 @@ export const OnRamp = () => { transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", fiatCurrencyCode: "USD", + cryptoCurrencyCode: "eth", }); console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse, + initMoonPayFiatOnRampResponse ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" From ce5ec01f0df14fd7eafb3780c387c5fcbb295c96 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 8 Jun 2025 16:28:33 -0400 Subject: [PATCH 14/42] chore: codegen --- .../src/app/dashboard/OnRamp.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 860a88b42..58c599a6b 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -55,20 +55,22 @@ export const OnRamp = () => { const session = await turnkey?.getSession(); console.log("session response:", session); - const onrampConfig = await fetchOnrampConfig(); - console.log("onrampConfig:", onrampConfig); + // const onrampConfig = await fetchOnrampConfig(); + // console.log("onrampConfig:", onrampConfig); - const onrampOptions = await fetchOnrampOptions({ - country: "US", - subdivision: "ME", - }); - console.log("onrampOptions:", onrampOptions); + // const onrampOptions = await fetchOnrampOptions({ + // country: "US", + // subdivision: "ME", + // }); + // console.log("onrampOptions:", onrampOptions); const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", fiatCurrencyCode: "USD", + countryCode: "US", + countrySubdivisionCode: "ME", }); const onrampBuyUrl = getOnrampBuyUrl({ From 9530b2644a2c50ce87390b697ae405fe409d1442 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Mon, 9 Jun 2025 19:52:24 -0400 Subject: [PATCH 15/42] chore: codegen --- examples/react-components/src/app/dashboard/OnRamp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 58c599a6b..7e493c08a 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -154,7 +154,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse + initMoonPayFiatOnRampResponse, ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" From 04159b7af6092236a4b84f5af09a5ee5f6602871 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 10 Jun 2025 11:17:19 -0400 Subject: [PATCH 16/42] chore: codegen --- .github/workflows/Untitled-1.json | 3508 +++++++++++++++++ .../src/app/dashboard/OnRamp.tsx | 14 +- 2 files changed, 3515 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/Untitled-1.json diff --git a/.github/workflows/Untitled-1.json b/.github/workflows/Untitled-1.json new file mode 100644 index 000000000..6fae6f3bc --- /dev/null +++ b/.github/workflows/Untitled-1.json @@ -0,0 +1,3508 @@ +[ + { + "name": "Bitcoin", + "symbol": "BTC", + "networks": [ + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + }, + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + }, + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "bitcoin", + "displayName": "Bitcoin", + "chainId": "0" + } + ] + }, + { + "name": "Bitcoin Cash", + "symbol": "BCH", + "networks": [ + { + "name": "bitcoincash", + "displayName": "Bitcoin Cash", + "chainId": "0" + } + ] + }, + { + "name": "Ethereum", + "symbol": "ETH", + "networks": [ + { + "name": "unichain", + "displayName": "Unichain", + "chainId": "130" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + }, + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + }, + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + }, + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + }, + { + "name": "polygon", + "displayName": "Polygon", + "chainId": "137" + } + ] + }, + { + "name": "Ethereum Classic", + "symbol": "ETC", + "networks": [ + { + "name": "ethereumclassic", + "displayName": "Ethereum Classic", + "chainId": "61" + } + ] + }, + { + "name": "Litecoin", + "symbol": "LTC", + "networks": [ + { + "name": "litecoin", + "displayName": "Litecoin", + "chainId": "0" + } + ] + }, + { + "name": "0x Protocol", + "symbol": "ZRX", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "USDC", + "symbol": "USDC", + "networks": [ + { + "name": "unichain", + "displayName": "Unichain", + "chainId": "130" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + }, + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + }, + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + }, + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "noble", + "displayName": "Noble", + "chainId": "0" + }, + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + }, + { + "name": "polygon", + "displayName": "Polygon", + "chainId": "137" + }, + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + }, + { + "name": "stellar", + "displayName": "Stellar", + "chainId": "0" + }, + { + "name": "sui", + "displayName": "Sui", + "chainId": "0" + }, + { + "name": "aptos", + "displayName": "Aptos", + "chainId": "0" + } + ] + }, + { + "name": "Basic Attention Token", + "symbol": "BAT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Decentraland", + "symbol": "MANA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Kyber Network", + "symbol": "KNC", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Chainlink", + "symbol": "LINK", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "district0x", + "symbol": "DNT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Maker", + "symbol": "MKR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Civic", + "symbol": "CVC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Dai", + "symbol": "DAI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + }, + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + }, + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + }, + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + } + ] + }, + { + "name": "Zcash", + "symbol": "ZEC", + "networks": [ + { + "name": "zcash", + "displayName": "Zcash", + "chainId": "0" + } + ] + }, + { + "name": "XRP", + "symbol": "XRP", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ripple", + "displayName": "XRPL", + "chainId": "0" + } + ] + }, + { + "name": "Stellar Lumens", + "symbol": "XLM", + "networks": [ + { + "name": "stellar", + "displayName": "Stellar", + "chainId": "0" + } + ] + }, + { + "name": "EOS", + "symbol": "EOS", + "networks": [ + { + "name": "eosio", + "displayName": "EOS", + "chainId": "0" + } + ] + }, + { + "name": "Tezos", + "symbol": "XTZ", + "networks": [ + { + "name": "tezos", + "displayName": "Tezos", + "chainId": "0" + } + ] + }, + { + "name": "Algorand", + "symbol": "ALGO", + "networks": [ + { + "name": "algorand", + "displayName": "Algorand", + "chainId": "0" + } + ] + }, + { + "name": "Dash", + "symbol": "DASH", + "networks": [ + { + "name": "dash", + "displayName": "Dash", + "chainId": "0" + } + ] + }, + { + "name": "Cosmos", + "symbol": "ATOM", + "networks": [ + { + "name": "cosmos", + "displayName": "Cosmos", + "chainId": "0" + } + ] + }, + { + "name": "Orchid", + "symbol": "OXT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Compound", + "symbol": "COMP", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Band Protocol", + "symbol": "BAND", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Numeraire", + "symbol": "NMR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Celo", + "symbol": "CGLD", + "networks": [ + { + "name": "celo", + "displayName": "Celo Gold", + "chainId": "42220" + } + ] + }, + { + "name": "UMA", + "symbol": "UMA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Loopring", + "symbol": "LRC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "yearn.finance", + "symbol": "YFI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Uniswap", + "symbol": "UNI", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Balancer", + "symbol": "BAL", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Filecoin", + "symbol": "FIL", + "networks": [ + { + "name": "filecoin", + "displayName": "Filecoin", + "chainId": "0" + } + ] + }, + { + "name": "Aave", + "symbol": "AAVE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Bancor Network Token", + "symbol": "BNT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "The Graph", + "symbol": "GRT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Synthetix Network Token", + "symbol": "SNX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Storj", + "symbol": "STORJ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SushiSwap", + "symbol": "SUSHI", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Polygon", + "symbol": "MATIC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SKALE", + "symbol": "SKL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Cardano", + "symbol": "ADA", + "networks": [ + { + "name": "cardano", + "displayName": "ADA", + "chainId": "0" + } + ] + }, + { + "name": "Ankr", + "symbol": "ANKR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Curve DAO Token", + "symbol": "CRV", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Internet Computer", + "symbol": "ICP", + "networks": [ + { + "name": "dfinity", + "displayName": "Internet Computer Protocol", + "chainId": "0" + } + ] + }, + { + "name": "NKN", + "symbol": "NKN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Origin Token", + "symbol": "OGN", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "1inch", + "symbol": "1INCH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Tether", + "symbol": "USDT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ampleforth Governance Token", + "symbol": "FORTH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Cartesi", + "symbol": "CTSI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Tellor", + "symbol": "TRB", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "PAX Gold", + "symbol": "PAXG", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "iExec RLC", + "symbol": "RLC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Polkadot", + "symbol": "DOT", + "networks": [ + { + "name": "polkadot", + "displayName": "Polkadot", + "chainId": "0" + } + ] + }, + { + "name": "Solana", + "symbol": "SOL", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Dogecoin", + "symbol": "DOGE", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "dogecoin", + "displayName": "Dogecoin", + "chainId": "0" + } + ] + }, + { + "name": "Enzyme", + "symbol": "MLN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Gitcoin", + "symbol": "GTC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Amp", + "symbol": "AMP", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SHIBA INU", + "symbol": "SHIB", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Chiliz", + "symbol": "CHZ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Livepeer", + "symbol": "LPT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Quant", + "symbol": "QNT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Clover Finance", + "symbol": "CLV", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Harvest Finance", + "symbol": "FARM", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Mask Network", + "symbol": "MASK", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Artificial Superintelligence Alliance", + "symbol": "FET", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Paxos Standard", + "symbol": "PAX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Alchemy Pay", + "symbol": "ACH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Assemble AI", + "symbol": "ASM", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "IoTeX", + "symbol": "IOTX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Axie Infinity", + "symbol": "AXS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Request", + "symbol": "REQ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "TrueFi", + "symbol": "TRU", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Radworks", + "symbol": "RAD", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "COTI", + "symbol": "COTI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SUKU", + "symbol": "SUKU", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "XYO", + "symbol": "XYO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Horizen", + "symbol": "ZEN", + "networks": [ + { + "name": "horizen", + "displayName": "Horizen", + "chainId": "0" + } + ] + }, + { + "name": "AirSwap", + "symbol": "AST", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Bounce Token", + "symbol": "AUCTION", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Jasmy", + "symbol": "JASMY", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Wrapped Centrifuge", + "symbol": "WCFG", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Braintrust", + "symbol": "BTRST", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Adventure Gold", + "symbol": "AGLD", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Avalanche", + "symbol": "AVAX", + "networks": [ + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + } + ] + }, + { + "name": "Function X", + "symbol": "FX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "OriginTrail", + "symbol": "TRAC", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "LCX", + "symbol": "LCX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "ARPA Chain", + "symbol": "ARPA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Badger DAO", + "symbol": "BADGER", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Kryll", + "symbol": "KRL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Perpetual Protocol", + "symbol": "PERP", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Rarible", + "symbol": "RARI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Api3", + "symbol": "API3", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "PolySwarm", + "symbol": "NCT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SHPING", + "symbol": "SHPING", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Cronos", + "symbol": "CRO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Arcblock", + "symbol": "ABT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Convex Finance", + "symbol": "CVX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Aventus", + "symbol": "AVT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Measurable Data Token", + "symbol": "MDT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Alchemix", + "symbol": "ALCX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Shapeshift FOX Token", + "symbol": "FOX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Celer Network", + "symbol": "CELR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Powerledger", + "symbol": "POWR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "MyNeighborAlice", + "symbol": "ALICE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Inverse Finance", + "symbol": "INV", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Liquity", + "symbol": "LQTY", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Propy", + "symbol": "PRO", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Spell Token", + "symbol": "SPELL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ethereum Name Service", + "symbol": "ENS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "DIA", + "symbol": "DIA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Reserve Rights", + "symbol": "RSR", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Bluzelle", + "symbol": "BLZ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Cryptex Finance", + "symbol": "CTX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ethernity Chain", + "symbol": "ERN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "IDEX", + "symbol": "IDEX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Polkastarter", + "symbol": "POLS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Stacks", + "symbol": "STX", + "networks": [ + { + "name": "stacks", + "displayName": "Stacks", + "chainId": "0" + } + ] + }, + { + "name": "Kusama", + "symbol": "KSM", + "networks": [ + { + "name": "kusama", + "displayName": "Kusama", + "chainId": "0" + } + ] + }, + { + "name": "Gods Unchained", + "symbol": "GODS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Immutable", + "symbol": "IMX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ribbon Finance", + "symbol": "RBN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "BICONOMY (BICO)", + "symbol": "BICO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Goldfinch Protocol", + "symbol": "GFI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Golem", + "symbol": "GLM", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Pluton", + "symbol": "PLU", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SwftCoin", + "symbol": "SWFTC", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "The Sandbox", + "symbol": "SAND", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ocean Protocol", + "symbol": "OCEAN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Gnosis", + "symbol": "GNO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Bonfida", + "symbol": "FIDA", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Orca", + "symbol": "ORCA", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Render (ERC-20)", + "symbol": "RNDR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "HOPR", + "symbol": "HOPR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "MATH", + "symbol": "MATH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Synapse", + "symbol": "SYN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "AIOZ Network", + "symbol": "AIOZ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Aergo", + "symbol": "AERGO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Index Cooperative", + "symbol": "INDEX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Highstreet", + "symbol": "HIGH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Flow", + "symbol": "FLOW", + "networks": [ + { + "name": "flow", + "displayName": "Flow", + "chainId": "0" + } + ] + }, + { + "name": "Oasis Network", + "symbol": "ROSE", + "networks": [ + { + "name": "oasis", + "displayName": "Oasis", + "chainId": "0" + } + ] + }, + { + "name": "ApeCoin", + "symbol": "APE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Mina", + "symbol": "MINA", + "networks": [ + { + "name": "mina", + "displayName": "Mina", + "chainId": "0" + } + ] + }, + { + "name": "Green Satoshi Token", + "symbol": "GST", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "STEPN", + "symbol": "GMT", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Optimism", + "symbol": "OP", + "networks": [ + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + } + ] + }, + { + "name": "Coin98", + "symbol": "C98", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Marlin", + "symbol": "POND", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "StaFi", + "symbol": "FIS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Forta", + "symbol": "FORT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Aleph Cloud", + "symbol": "ALEPH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Elastos", + "symbol": "ELA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Chrono.tech", + "symbol": "TIME", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Muse", + "symbol": "MUSE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "DEXTools", + "symbol": "DEXT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Coinbase Wrapped Staked ETH", + "symbol": "CBETH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + }, + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + }, + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + }, + { + "name": "polygon", + "displayName": "Polygon", + "chainId": "137" + }, + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Metis", + "symbol": "METIS", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Onyxcoin", + "symbol": "XCN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Boba Network", + "symbol": "BOBA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SuperRare", + "symbol": "RARE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Lido DAO Token", + "symbol": "LDO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Pangolin", + "symbol": "PNG", + "networks": [ + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + } + ] + }, + { + "name": "League of Kingdoms Arena", + "symbol": "LOKA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Injective", + "symbol": "INJ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Illuvium", + "symbol": "ILV", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Audius", + "symbol": "AUDIO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Rocket Pool", + "symbol": "RPL", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Stargate Finance", + "symbol": "STG", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Aurora", + "symbol": "AURORA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "SuperVerse", + "symbol": "SUPER", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "NEAR Protocol", + "symbol": "NEAR", + "networks": [ + { + "name": "near", + "displayName": "Near", + "chainId": "0" + } + ] + }, + { + "name": "Hedera", + "symbol": "HBAR", + "networks": [ + { + "name": "hedera", + "displayName": "Hedera", + "chainId": "0" + } + ] + }, + { + "name": "Pundi X (New)", + "symbol": "PUNDIX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Vulcan Forged PYR", + "symbol": "PYR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "00 Token", + "symbol": "00", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Wrapped Axelar", + "symbol": "WAXL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Aptos", + "symbol": "APT", + "networks": [ + { + "name": "aptos", + "displayName": "Aptos", + "chainId": "0" + } + ] + }, + { + "name": "Marinade Staked SOL", + "symbol": "MSOL", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Marinade", + "symbol": "MNDE", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Voxies", + "symbol": "VOXEL", + "networks": [ + { + "name": "polygon", + "displayName": "Polygon", + "chainId": "137" + } + ] + }, + { + "name": "Hashflow", + "symbol": "HFT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "MultiversX", + "symbol": "EGLD", + "networks": [ + { + "name": "elrond", + "displayName": "MultiversX", + "chainId": "0" + } + ] + }, + { + "name": "Kava", + "symbol": "KAVA", + "networks": [ + { + "name": "kava", + "displayName": "Kava", + "chainId": "0" + } + ] + }, + { + "name": "BENQI", + "symbol": "QI", + "networks": [ + { + "name": "avacchain", + "displayName": "Avalanche C-Chain", + "chainId": "43114" + } + ] + }, + { + "name": "Aavegotchi", + "symbol": "GHST", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "MAGIC", + "symbol": "MAGIC", + "networks": [ + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + } + ] + }, + { + "name": "Axelar", + "symbol": "AXL", + "networks": [ + { + "name": "axelar", + "displayName": "Axelar", + "chainId": "0" + } + ] + }, + { + "name": "Ondo Finance", + "symbol": "ONDO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Threshold", + "symbol": "T", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "DIMO", + "symbol": "DIMO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Pendle", + "symbol": "PENDLE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Liquid Staked ETH", + "symbol": "LSETH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Access", + "symbol": "ACS", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Blur", + "symbol": "BLUR", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Flare", + "symbol": "FLR", + "networks": [ + { + "name": "flare", + "displayName": "Flare", + "chainId": "14" + } + ] + }, + { + "name": "Echelon Prime", + "symbol": "PRIME", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Arbitrum", + "symbol": "ARB", + "networks": [ + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + } + ] + }, + { + "name": "SUI", + "symbol": "SUI", + "networks": [ + { + "name": "sui", + "displayName": "Sui", + "chainId": "0" + } + ] + }, + { + "name": "Sperax", + "symbol": "SPA", + "networks": [ + { + "name": "arbitrum", + "displayName": "Arbitrum", + "chainId": "42161" + } + ] + }, + { + "name": "Osmosis", + "symbol": "OSMO", + "networks": [ + { + "name": "osmosis", + "displayName": "Osmosis", + "chainId": "0" + } + ] + }, + { + "name": "Helium", + "symbol": "HNT", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Arkham", + "symbol": "ARKM", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "vechain", + "symbol": "VET", + "networks": [ + { + "name": "vechain", + "displayName": "VeChain", + "chainId": "100009" + } + ] + }, + { + "name": "VeThor Token", + "symbol": "VTHO", + "networks": [ + { + "name": "vechain", + "displayName": "VeChain", + "chainId": "100009" + } + ] + }, + { + "name": "Sei", + "symbol": "SEI", + "networks": [ + { + "name": "sei", + "displayName": "Sei", + "chainId": "0" + } + ] + }, + { + "name": "Vara", + "symbol": "VARA", + "networks": [ + { + "name": "vara", + "displayName": "Vara", + "chainId": "0" + } + ] + }, + { + "name": "PayPal USD", + "symbol": "PYUSD", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Big Time", + "symbol": "BIGTIME", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Celestia", + "symbol": "TIA", + "networks": [ + { + "name": "celestia", + "displayName": "Celestia", + "chainId": "0" + } + ] + }, + { + "name": "Jito", + "symbol": "JTO", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Seamless", + "symbol": "SEAM", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Bonk", + "symbol": "BONK", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Aerodrome Finance", + "symbol": "AERO", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Hivemapper", + "symbol": "HONEY", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Aleo", + "symbol": "ALEO", + "networks": [ + { + "name": "aleo", + "displayName": "Aleo", + "chainId": "0" + } + ] + }, + { + "name": "Velodrome Finance", + "symbol": "VELO", + "networks": [ + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + } + ] + }, + { + "name": "Zetachain", + "symbol": "ZETA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Render", + "symbol": "RENDER", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Helium Mobile", + "symbol": "MOBILE", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Starknet Token", + "symbol": "STRK", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Akash Network", + "symbol": "AKT", + "networks": [ + { + "name": "akash", + "displayName": "Akash", + "chainId": "0" + } + ] + }, + { + "name": "Ronin", + "symbol": "RONIN", + "networks": [ + { + "name": "ronin", + "displayName": "Ronin", + "chainId": "2020" + } + ] + }, + { + "name": "Safe", + "symbol": "SAFE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Tensor", + "symbol": "TNSR", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Neon EVM", + "symbol": "NEON", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Shadow Token", + "symbol": "SHDW", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Karrat", + "symbol": "KARRAT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Omni Network", + "symbol": "OMNI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "EURC", + "symbol": "EURC", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Pirate Nation Token", + "symbol": "PIRATE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Worldcoin", + "symbol": "WLD", + "networks": [ + { + "name": "optimism", + "displayName": "Optimism", + "chainId": "10" + } + ] + }, + { + "name": "dogwifhat", + "symbol": "WIF", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Drift Protocol", + "symbol": "DRIFT", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Core", + "symbol": "CORECHAIN", + "networks": [ + { + "name": "coredao", + "displayName": "Coredao", + "chainId": "1116" + } + ] + }, + { + "name": "Blast", + "symbol": "BLAST", + "networks": [ + { + "name": "blast", + "displayName": "Blast", + "chainId": "81457" + } + ] + }, + { + "name": "LayerZero", + "symbol": "ZRO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ancient8", + "symbol": "A8", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Stader", + "symbol": "SD", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Gravity", + "symbol": "G", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Blocklords", + "symbol": "LRDS", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Polygon Ecosystem Token", + "symbol": "POL", + "networks": [ + { + "name": "polygon", + "displayName": "Polygon", + "chainId": "137" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "FLOKI", + "symbol": "FLOKI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Morpho", + "symbol": "MORPHO", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Across Protocol", + "symbol": "ACX", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Pepe", + "symbol": "PEPE", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + }, + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Altlayer", + "symbol": "ALT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "EigenLayer", + "symbol": "EIGEN", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "ether.fi", + "symbol": "ETHFI", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Ethena", + "symbol": "ENA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Parcl", + "symbol": "PRCL", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Zetachain", + "symbol": "ZETACHAIN", + "networks": [ + { + "name": "zetachain", + "displayName": "Zetachain", + "chainId": "0" + } + ] + }, + { + "name": "ZKsync", + "symbol": "ZK", + "networks": [ + { + "name": "zksync", + "displayName": "ZKsync", + "chainId": "324" + } + ] + }, + { + "name": "Pyth Network", + "symbol": "PYTH", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Moonwell", + "symbol": "WELL", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "CoW Protocol", + "symbol": "COW", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Degen", + "symbol": "DEGEN", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "io.net", + "symbol": "IO", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Berachain", + "symbol": "BERA", + "networks": [ + { + "name": "berachain", + "displayName": "Berachain", + "chainId": "80094" + } + ] + }, + { + "name": "SWELL", + "symbol": "SWELL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Story", + "symbol": "IP", + "networks": [ + { + "name": "story", + "displayName": "Story", + "chainId": "1514" + } + ] + }, + { + "name": "Popcat (SOL)", + "symbol": "POPCAT", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Maple Finance", + "symbol": "SYRUP", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Bittensor", + "symbol": "TAO", + "networks": [ + { + "name": "bittensor", + "displayName": "Bittensor", + "chainId": "0" + } + ] + }, + { + "name": "Peanut the Squirrel", + "symbol": "PNUT", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Moo Deng", + "symbol": "MOODENG", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Mog Coin", + "symbol": "MOG", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Turbo", + "symbol": "TURBO", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Gigachad", + "symbol": "GIGA", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Magic Eden", + "symbol": "ME", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Toshi", + "symbol": "TOSHI", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "OFFICIAL TRUMP", + "symbol": "TRUMP", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "Venice Token", + "symbol": "VVV", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Freysa", + "symbol": "FAI", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "B3 (Base)", + "symbol": "B3", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Pudgy Penguins", + "symbol": "PENGU", + "networks": [ + { + "name": "solana", + "displayName": "Solana", + "chainId": "0" + } + ] + }, + { + "name": "tokenbot", + "symbol": "CLANKER", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Redstone", + "symbol": "RED", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Kaito", + "symbol": "KAITO", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "KernelDAO", + "symbol": "KERNEL", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Renzo", + "symbol": "REZ", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Cookie DAO", + "symbol": "COOKIE", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Zora", + "symbol": "ZORA", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "doginme", + "symbol": "DOGINME", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Keyboard Cat", + "symbol": "KEYCAT", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Aethir", + "symbol": "ATH", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Layer3", + "symbol": "L3", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Definitive", + "symbol": "EDGE", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Wayfinder", + "symbol": "PROMPT", + "networks": [ + { + "name": "base", + "displayName": "Base", + "chainId": "8453" + } + ] + }, + { + "name": "Lagrange", + "symbol": "LA", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Mantle", + "symbol": "MANTLE", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + }, + { + "name": "Space and Time", + "symbol": "SXT", + "networks": [ + { + "name": "ethereum", + "displayName": "Ethereum", + "chainId": "1" + } + ] + } +] diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 7e493c08a..55caf6abf 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -55,14 +55,14 @@ export const OnRamp = () => { const session = await turnkey?.getSession(); console.log("session response:", session); - // const onrampConfig = await fetchOnrampConfig(); - // console.log("onrampConfig:", onrampConfig); + const onrampConfig = await fetchOnrampConfig(); + console.log("onrampConfig:", onrampConfig); - // const onrampOptions = await fetchOnrampOptions({ - // country: "US", - // subdivision: "ME", - // }); - // console.log("onrampOptions:", onrampOptions); + const onrampOptions = await fetchOnrampOptions({ + country: "US", + subdivision: "ME", + }); + console.log("onrampOptions:", onrampOptions); const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", From cc8ccff677938771bedae0eb3dfd6a7f0a5d7e3a Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 10 Jun 2025 12:05:23 -0400 Subject: [PATCH 17/42] chore: prettier --- examples/react-components/src/app/dashboard/OnRamp.tsx | 2 ++ .../services/coordinator/public/v1/public_api.swagger.json | 5 +---- .../services/coordinator/public/v1/public_api.types.ts | 4 +--- packages/sdk-browser/src/__inputs__/public_api.swagger.json | 5 +---- packages/sdk-browser/src/__inputs__/public_api.types.ts | 4 +--- packages/sdk-server/src/__inputs__/public_api.swagger.json | 5 +---- packages/sdk-server/src/__inputs__/public_api.types.ts | 4 +--- 7 files changed, 8 insertions(+), 21 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 55caf6abf..d7df5db98 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -68,6 +68,8 @@ export const OnRamp = () => { onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + cryptoCurrencyCode: "ETH", + network: "ethereum", fiatCurrencyCode: "USD", countryCode: "US", countrySubdivisionCode: "ME", diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 580b1ddb0..2dde01992 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -3134,10 +3134,7 @@ }, "immutablecommonv1FiatOnRampTransactionType": { "type": "string", - "enum": [ - "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", - "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" - ] + "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] }, "protobufAny": { "type": "object", diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index 4f69a2f50..d8960da3a 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -456,9 +456,7 @@ export type definitions = { | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: - | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" - | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; + immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 580b1ddb0..2dde01992 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -3134,10 +3134,7 @@ }, "immutablecommonv1FiatOnRampTransactionType": { "type": "string", - "enum": [ - "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", - "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" - ] + "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] }, "protobufAny": { "type": "object", diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index 4f69a2f50..d8960da3a 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -456,9 +456,7 @@ export type definitions = { | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: - | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" - | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; + immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 580b1ddb0..2dde01992 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -3134,10 +3134,7 @@ }, "immutablecommonv1FiatOnRampTransactionType": { "type": "string", - "enum": [ - "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", - "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL" - ] + "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] }, "protobufAny": { "type": "object", diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index 4f69a2f50..d8960da3a 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -456,9 +456,7 @@ export type definitions = { | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: - | "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY" - | "FIAT_ON_RAMP_TRANSACTION_TYPE_SELL"; + immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; From 1df6a47294fc3b7df802186626668acee8d90b4e Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 10 Jun 2025 17:46:09 -0400 Subject: [PATCH 18/42] chore: codegen --- .../services/coordinator/public/v1/public_api.swagger.json | 4 ---- .../services/coordinator/public/v1/public_api.types.ts | 2 -- packages/sdk-browser/src/__inputs__/public_api.swagger.json | 4 ---- packages/sdk-browser/src/__inputs__/public_api.types.ts | 2 -- packages/sdk-server/src/__inputs__/public_api.swagger.json | 4 ---- packages/sdk-server/src/__inputs__/public_api.types.ts | 2 -- 6 files changed, 18 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 2dde01992..7d9cae543 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -3132,10 +3132,6 @@ "FIAT_ON_RAMP_PROVIDER_MOONPAY" ] }, - "immutablecommonv1FiatOnRampTransactionType": { - "type": "string", - "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] - }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index d8960da3a..1485433a2 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -455,8 +455,6 @@ export type definitions = { immutablecommonv1FiatOnRampProvider: | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; - /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 2dde01992..7d9cae543 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -3132,10 +3132,6 @@ "FIAT_ON_RAMP_PROVIDER_MOONPAY" ] }, - "immutablecommonv1FiatOnRampTransactionType": { - "type": "string", - "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] - }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index d8960da3a..1485433a2 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -455,8 +455,6 @@ export type definitions = { immutablecommonv1FiatOnRampProvider: | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; - /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 2dde01992..7d9cae543 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -3132,10 +3132,6 @@ "FIAT_ON_RAMP_PROVIDER_MOONPAY" ] }, - "immutablecommonv1FiatOnRampTransactionType": { - "type": "string", - "enum": ["FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"] - }, "protobufAny": { "type": "object", "properties": { diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index d8960da3a..1485433a2 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -455,8 +455,6 @@ export type definitions = { immutablecommonv1FiatOnRampProvider: | "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; - /** @enum {string} */ - immutablecommonv1FiatOnRampTransactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; From bded297e53793fa7cf296a1ea09bea055eb5f5bb Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 11 Jun 2025 11:03:11 -0400 Subject: [PATCH 19/42] chore: codegen --- examples/react-components/src/app/dashboard/OnRamp.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index d7df5db98..6cb3980a2 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -66,10 +66,8 @@ export const OnRamp = () => { const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", - transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", cryptoCurrencyCode: "ETH", - network: "ethereum", fiatCurrencyCode: "USD", countryCode: "US", countrySubdivisionCode: "ME", @@ -148,7 +146,6 @@ export const OnRamp = () => { await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", - transactionType: "FIAT_ON_RAMP_TRANSACTION_TYPE_BUY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", fiatCurrencyCode: "USD", cryptoCurrencyCode: "eth", From 8dc87a8fd00c10a2a263157c4cb99f9a515813af Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Thu, 12 Jun 2025 11:18:31 -0400 Subject: [PATCH 20/42] chore: codegen --- examples/react-components/src/app/dashboard/OnRamp.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 6cb3980a2..3579d8192 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -67,6 +67,7 @@ export const OnRamp = () => { organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + network: "ethereum", cryptoCurrencyCode: "ETH", fiatCurrencyCode: "USD", countryCode: "US", @@ -147,13 +148,14 @@ export const OnRamp = () => { organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + network: "ethereum", fiatCurrencyCode: "USD", cryptoCurrencyCode: "eth", }); console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse, + initMoonPayFiatOnRampResponse ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" From db63855a9928248d357ccf5f30431b349cb97fc9 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Thu, 12 Jun 2025 18:35:10 -0400 Subject: [PATCH 21/42] chore: codegen --- .../src/app/dashboard/OnRamp.tsx | 2 +- .../public/v1/public_api.swagger.json | 25 ------------------- .../coordinator/public/v1/public_api.types.ts | 19 -------------- .../src/__inputs__/public_api.swagger.json | 25 ------------------- .../src/__inputs__/public_api.types.ts | 19 -------------- .../src/__inputs__/public_api.swagger.json | 25 ------------------- .../src/__inputs__/public_api.types.ts | 19 -------------- 7 files changed, 1 insertion(+), 133 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 3579d8192..4e918e4c3 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -155,7 +155,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse + initMoonPayFiatOnRampResponse, ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 7d9cae543..7f1b064a3 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -3125,13 +3125,6 @@ } } }, - "immutablecommonv1FiatOnRampProvider": { - "type": "string", - "enum": [ - "FIAT_ON_RAMP_PROVIDER_COINBASE", - "FIAT_ON_RAMP_PROVIDER_MOONPAY" - ] - }, "protobufAny": { "type": "object", "properties": { @@ -7978,24 +7971,6 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, - "v1OnrampPaymentMethod": { - "type": "string", - "enum": [ - "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", - "ONRAMP_PAYMENT_METHOD_APPLE_PAY", - "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", - "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", - "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", - "ONRAMP_PAYMENT_METHOD_PAYPAL", - "ONRAMP_PAYMENT_METHOD_VENMO", - "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", - "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", - "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", - "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" - ] - }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index 1485433a2..f83e9d833 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -451,10 +451,6 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; - /** @enum {string} */ - immutablecommonv1FiatOnRampProvider: - | "FIAT_ON_RAMP_PROVIDER_COINBASE" - | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -2492,21 +2488,6 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ - v1OnrampPaymentMethod: - | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" - | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" - | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" - | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_PAYPAL" - | "ONRAMP_PAYMENT_METHOD_VENMO" - | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" - | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" - | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" - | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; - /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 7d9cae543..7f1b064a3 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -3125,13 +3125,6 @@ } } }, - "immutablecommonv1FiatOnRampProvider": { - "type": "string", - "enum": [ - "FIAT_ON_RAMP_PROVIDER_COINBASE", - "FIAT_ON_RAMP_PROVIDER_MOONPAY" - ] - }, "protobufAny": { "type": "object", "properties": { @@ -7978,24 +7971,6 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, - "v1OnrampPaymentMethod": { - "type": "string", - "enum": [ - "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", - "ONRAMP_PAYMENT_METHOD_APPLE_PAY", - "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", - "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", - "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", - "ONRAMP_PAYMENT_METHOD_PAYPAL", - "ONRAMP_PAYMENT_METHOD_VENMO", - "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", - "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", - "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", - "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" - ] - }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index 1485433a2..f83e9d833 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -451,10 +451,6 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; - /** @enum {string} */ - immutablecommonv1FiatOnRampProvider: - | "FIAT_ON_RAMP_PROVIDER_COINBASE" - | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -2492,21 +2488,6 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ - v1OnrampPaymentMethod: - | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" - | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" - | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" - | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_PAYPAL" - | "ONRAMP_PAYMENT_METHOD_VENMO" - | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" - | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" - | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" - | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; - /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 7d9cae543..7f1b064a3 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -3125,13 +3125,6 @@ } } }, - "immutablecommonv1FiatOnRampProvider": { - "type": "string", - "enum": [ - "FIAT_ON_RAMP_PROVIDER_COINBASE", - "FIAT_ON_RAMP_PROVIDER_MOONPAY" - ] - }, "protobufAny": { "type": "object", "properties": { @@ -7978,24 +7971,6 @@ }, "required": ["userId", "apiKeyId", "credentialBundle"] }, - "v1OnrampPaymentMethod": { - "type": "string", - "enum": [ - "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD", - "ONRAMP_PAYMENT_METHOD_APPLE_PAY", - "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT", - "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY", - "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER", - "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT", - "ONRAMP_PAYMENT_METHOD_PAYPAL", - "ONRAMP_PAYMENT_METHOD_VENMO", - "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE", - "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT", - "ONRAMP_PAYMENT_METHOD_FIAT_WALLET", - "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT" - ] - }, "v1Operator": { "type": "string", "enum": [ diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index 1485433a2..f83e9d833 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -451,10 +451,6 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; - /** @enum {string} */ - immutablecommonv1FiatOnRampProvider: - | "FIAT_ON_RAMP_PROVIDER_COINBASE" - | "FIAT_ON_RAMP_PROVIDER_MOONPAY"; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -2492,21 +2488,6 @@ export type definitions = { credentialBundle: string; }; /** @enum {string} */ - v1OnrampPaymentMethod: - | "ONRAMP_PAYMENT_METHOD_CREDIT_DEBIT_CARD" - | "ONRAMP_PAYMENT_METHOD_APPLE_PAY" - | "ONRAMP_PAYMENT_METHOD_GBP_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_GBP_OPEN_BANKING_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_GOOGLE_PAY" - | "ONRAMP_PAYMENT_METHOD_SEPA_BANK_TRANSFER" - | "ONRAMP_PAYMENT_METHOD_PIX_INSTANT_PAYMENT" - | "ONRAMP_PAYMENT_METHOD_PAYPAL" - | "ONRAMP_PAYMENT_METHOD_VENMO" - | "ONRAMP_PAYMENT_METHOD_MOONPAY_BALANCE" - | "ONRAMP_PAYMENT_METHOD_CRYPTO_ACCOUNT" - | "ONRAMP_PAYMENT_METHOD_FIAT_WALLET" - | "ONRAMP_PAYMENT_METHOD_ACH_BANK_ACCOUNT"; - /** @enum {string} */ v1Operator: | "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" From 82c08e2f58fca2c2c8188e5ff7210a02ca83ebd9 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 13 Jun 2025 11:06:40 -0400 Subject: [PATCH 22/42] chore: codegen --- .../src/app/dashboard/OnRamp.tsx | 123 ++++++------------ 1 file changed, 41 insertions(+), 82 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 4e918e4c3..c69b26743 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -55,43 +55,44 @@ export const OnRamp = () => { const session = await turnkey?.getSession(); console.log("session response:", session); - const onrampConfig = await fetchOnrampConfig(); - console.log("onrampConfig:", onrampConfig); - - const onrampOptions = await fetchOnrampOptions({ - country: "US", - subdivision: "ME", - }); - console.log("onrampOptions:", onrampOptions); + // const onrampConfig = await fetchOnrampConfig(); + // console.log("onrampConfig:", onrampConfig); + + // const onrampOptions = await fetchOnrampOptions({ + // country: "US", + // subdivision: "ME", + // }); + // console.log("onrampOptions:", onrampOptions); const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", - network: "ethereum", - cryptoCurrencyCode: "ETH", + network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", + cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "USD", countryCode: "US", countrySubdivisionCode: "ME", }); - const onrampBuyUrl = getOnrampBuyUrl({ - projectId: "aefedf19-488c-426c-b7be-133fab72807c", - addresses: { - ["0x652bd17D489F283A03bb52DAFa138764Be04Bc66"]: ["base"], - }, - assets: ["ETH"], - presetFiatAmount: 20, - fiatCurrency: "USD", - }); + // const onrampBuyUrl = getOnrampBuyUrl({ + // projectId: "aefedf19-488c-426c-b7be-133fab72807c", + // addresses: { + // ["0x652bd17D489F283A03bb52DAFa138764Be04Bc66"]: ["base"], + // }, + // assets: ["ETH"], + // presetFiatAmount: 20, + // fiatCurrency: "USD", + // }); // ; - console.log("Coinbase onrampBuyUrl:", onrampBuyUrl); - setCoinbaseOnRampBuyUrl(onrampBuyUrl); + // console.log("Coinbase onrampBuyUrl:", onrampBuyUrl); + // setCoinbaseOnRampBuyUrl(onrampBuyUrl); console.log("initFiatOnRampResponse:", initFiatOnRampResponse); - // if (initFiatOnRampResponse?.onRampUrl) { - // setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); - // } + if (initFiatOnRampResponse?.onRampUrl) { + window.open(initFiatOnRampResponse?.onRampUrl, "_blank"); + // setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); + } } catch (error) { console.error("Failed to init fiat on ramp:", error); } @@ -131,26 +132,26 @@ export const OnRamp = () => { try { // get session const session = await turnkey?.getSession(); - console.log("session response:", session); - const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; - const originalUrl = - "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=eth&walletAddress=0xc7c10b3f98Be080DC2d6052BFd6d70F32B6b9e53"; - const signature = crypto - .createHmac("sha256", secretKey) // Use your secret key - .update(new URL(originalUrl).search) // Use the query string part of the URL - .digest("base64"); // Convert the result to a base64 string - - const urlWithSignature = `${originalUrl}&signature=${encodeURIComponent(signature)}`; // Add the signature to the URL - - console.log("urlWithSignature", urlWithSignature); + // console.log("session response:", session); + // const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; + // const originalUrl = + // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=eth&walletAddress=0xc7c10b3f98Be080DC2d6052BFd6d70F32B6b9e53"; + // const signature = crypto + // .createHmac("sha256", secretKey) // Use your secret key + // .update(new URL(originalUrl).search) // Use the query string part of the URL + // .digest("base64"); // Convert the result to a base64 string + + // const urlWithSignature = `${originalUrl}&signature=${encodeURIComponent(signature)}`; // Add the signature to the URL + + // console.log("urlWithSignature", urlWithSignature); const initMoonPayFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", - network: "ethereum", + network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", + cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "USD", - cryptoCurrencyCode: "eth", }); console.log( @@ -161,7 +162,8 @@ export const OnRamp = () => { // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" // ); if (initMoonPayFiatOnRampResponse?.onRampUrl) { - setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); + window.open(initMoonPayFiatOnRampResponse?.onRampUrl, "_blank"); + // setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); } // setMoonPayOnRampBuyUrl(urlWithSignature); } catch (error) { @@ -231,49 +233,6 @@ export const OnRamp = () => { onChange={() => setIsMoonPayToggled(!isMoonPayToggled)} /> - {isCoinbaseToggled ? ( - <> - {coinbaseOnRampBuyUrl && ( - <> - - - - )} - - ) : ( - <> - )} - {/* */} - {moonPayOnRampBuyUrl && ( - <> - - - )} - {/* */} - - {/* */} ); }; From 289d043b5b38f51b9a618d739fab7b0cab4111de Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 18 Jun 2025 12:16:49 -0400 Subject: [PATCH 23/42] chore: codegen --- .../public/v1/public_api.client.ts | 274 +++++++++--------- .../public/v1/public_api.fetcher.ts | 172 +++++------ 2 files changed, 223 insertions(+), 223 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 1646267d3..459c4eb7d 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index a3ba66c02..1bb49db2f 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", From dc9a7707a57b86a8a353c40a6dfed73cb3a8ae38 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 24 Jun 2025 16:18:00 -0400 Subject: [PATCH 24/42] chore: codegen --- pnpm-lock.yaml | 125 ++++++++++++++++++++++++++++++------------------- 1 file changed, 78 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0ba6d36f..4ffd945b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1896,7 +1896,7 @@ importers: version: link:../http jest: specifier: 29.7.0 - version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) + version: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) packages/eip-1193-provider: dependencies: @@ -2280,7 +2280,7 @@ importers: version: 29.5.14 jest: specifier: ^29.3.1 - version: 29.7.0(@types/node@20.3.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.3.1)(typescript@5.4.3)) + version: 29.7.0(@types/node@22.15.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.15.24)(typescript@5.4.3)) typescript: specifier: 5.4.3 version: 5.4.3 @@ -4348,9 +4348,6 @@ packages: '@ngraveio/bc-ur@1.1.13': resolution: {integrity: sha512-j73akJMV4+vLR2yQ4AphPIT5HZmxVjn/LxpL7YHoINnXoH6ccc90Zzck6/n6a3bCXOVZwBxq+YHwbAKRV+P8Zg==} - '@noble/ciphers@0.5.3': - resolution: {integrity: sha512-B0+6IIHiqEs3BPMT0hcRmHvEj2QHOLu+uwt+tqDDeVd0oyVzh7BPrDcPjRnV1PV/5LaknXJJQvOuRGR0zQJz+w==} - '@noble/ciphers@1.2.1': resolution: {integrity: sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==} engines: {node: ^14.21.3 || >=16} @@ -4362,9 +4359,6 @@ packages: '@noble/curves@1.2.0': resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} - '@noble/curves@1.4.0': - resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} - '@noble/curves@1.4.2': resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} @@ -4384,6 +4378,10 @@ packages: resolution: {integrity: sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==} engines: {node: ^14.21.3 || >=16} + '@noble/curves@1.9.0': + resolution: {integrity: sha512-7YDlXiNMdO1YZeH6t/kvopHHbIZzlxrCV9WLqCY6QhcXOoXiNCMDqJIglZ9Yjx5+w7Dz30TITFrlTjnRg7sKEg==} + engines: {node: ^14.21.3 || >=16} + '@noble/curves@1.9.1': resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==} engines: {node: ^14.21.3 || >=16} @@ -4413,7 +4411,6 @@ packages: '@noble/hashes@1.7.0': resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==} engines: {node: ^14.21.3 || >=16} - dev: false '@noble/hashes@1.7.1': resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} @@ -7825,6 +7822,9 @@ packages: create-ecdh@4.0.4: resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + create-hash@1.1.3: + resolution: {integrity: sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==} + create-hash@1.2.0: resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} @@ -8909,6 +8909,9 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} + hash-base@2.0.2: + resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==} + hash-base@3.0.5: resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} engines: {node: '>= 0.10'} @@ -10507,8 +10510,8 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} + pbkdf2@3.1.3: + resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} engines: {node: '>=0.12'} permissionless@0.1.49: @@ -11277,6 +11280,9 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true + ripemd160@2.0.1: + resolution: {integrity: sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==} + ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} @@ -11876,6 +11882,10 @@ packages: tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + to-buffer@1.2.1: + resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==} + engines: {node: '>= 0.4'} + to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -15306,7 +15316,7 @@ snapshots: '@coinbase/wallet-sdk@4.3.0': dependencies: - '@noble/hashes': 1.4.0 + '@noble/hashes': 1.8.0 clsx: 1.2.1 eventemitter3: 5.0.1 preact: 10.26.7 @@ -16187,13 +16197,13 @@ snapshots: '@hpke/dhkem-x25519@1.6.2': dependencies: '@hpke/common': 1.7.2 - '@noble/curves': 1.9.1 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@hpke/dhkem-x448@1.6.2': dependencies: '@hpke/common': 1.7.2 - '@noble/curves': 1.9.1 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@humanwhocodes/config-array@0.11.14': @@ -16925,7 +16935,7 @@ snapshots: dependencies: '@ethereumjs/tx': 4.2.0 '@metamask/superstruct': 3.2.1 - '@noble/hashes': 1.4.0 + '@noble/hashes': 1.8.0 '@scure/base': 1.2.5 '@types/debug': 4.1.12 debug: 4.4.1(supports-color@8.1.1) @@ -16939,7 +16949,7 @@ snapshots: dependencies: '@ethereumjs/tx': 4.2.0 '@metamask/superstruct': 3.2.1 - '@noble/hashes': 1.4.0 + '@noble/hashes': 1.8.0 '@scure/base': 1.2.5 '@types/debug': 4.1.12 debug: 4.4.1(supports-color@8.1.1) @@ -17231,8 +17241,6 @@ snapshots: jsbi: 3.2.5 sha.js: 2.4.11 - '@noble/ciphers@0.5.3': {} - '@noble/ciphers@1.2.1': {} '@noble/ciphers@1.3.0': {} @@ -17241,10 +17249,6 @@ snapshots: dependencies: '@noble/hashes': 1.3.2 - '@noble/curves@1.4.0': - dependencies: - '@noble/hashes': 1.4.0 - '@noble/curves@1.4.2': dependencies: '@noble/hashes': 1.4.0 @@ -17265,6 +17269,10 @@ snapshots: dependencies: '@noble/hashes': 1.7.2 + '@noble/curves@1.9.0': + dependencies: + '@noble/hashes': 1.8.0 + '@noble/curves@1.9.1': dependencies: '@noble/hashes': 1.8.0 @@ -18863,12 +18871,12 @@ snapshots: '@scure/bip32@1.3.2': dependencies: '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 + '@noble/hashes': 1.3.3 '@scure/base': 1.1.9 '@scure/bip32@1.4.0': dependencies: - '@noble/curves': 1.4.0 + '@noble/curves': 1.4.2 '@noble/hashes': 1.4.0 '@scure/base': 1.1.9 @@ -18880,13 +18888,13 @@ snapshots: '@scure/bip32@1.6.2': dependencies: - '@noble/curves': 1.8.1 - '@noble/hashes': 1.7.1 + '@noble/curves': 1.8.2 + '@noble/hashes': 1.7.2 '@scure/base': 1.2.5 '@scure/bip32@1.7.0': dependencies: - '@noble/curves': 1.9.1 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@scure/base': 1.2.5 @@ -18912,7 +18920,7 @@ snapshots: '@scure/bip39@1.5.4': dependencies: - '@noble/hashes': 1.7.1 + '@noble/hashes': 1.7.2 '@scure/base': 1.2.5 '@scure/bip39@1.6.0': @@ -18991,7 +18999,7 @@ snapshots: '@silencelaboratories/walletprovider-sdk@0.3.0(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)': dependencies: - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 js-base64: 3.7.7 viem: 2.21.32(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33) transitivePeerDependencies: @@ -19806,7 +19814,7 @@ snapshots: '@solana/wallet-adapter-unsafe-burner@0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))': dependencies: - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.3.0 '@solana/wallet-standard-util': 1.1.2 @@ -19944,7 +19952,7 @@ snapshots: '@solana/wallet-standard-util@1.1.2': dependencies: - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@solana/wallet-standard-chains': 1.1.1 '@solana/wallet-standard-features': 1.3.0 @@ -22080,7 +22088,7 @@ snapshots: '@xrplf/isomorphic@1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@noble/hashes': 1.4.0 + '@noble/hashes': 1.8.0 eventemitter3: 5.0.1 ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -23226,6 +23234,13 @@ snapshots: bn.js: 4.12.2 elliptic: 6.6.1 + create-hash@1.1.3: + dependencies: + cipher-base: 1.0.6 + inherits: 2.0.4 + ripemd160: 2.0.2 + sha.js: 2.4.11 + create-hash@1.2.0: dependencies: cipher-base: 1.0.6 @@ -23322,7 +23337,7 @@ snapshots: diffie-hellman: 5.0.3 hash-base: 3.0.5 inherits: 2.0.4 - pbkdf2: 3.1.2 + pbkdf2: 3.1.3 public-encrypt: 4.0.3 randombytes: 2.1.0 randomfill: 1.0.4 @@ -24181,7 +24196,7 @@ snapshots: create-hmac: 1.1.7 hash.js: 1.1.7 keccak: 3.0.4 - pbkdf2: 3.1.2 + pbkdf2: 3.1.3 randombytes: 2.1.0 safe-buffer: 5.2.1 scrypt-js: 3.0.1 @@ -24762,6 +24777,10 @@ snapshots: dependencies: has-symbols: 1.1.0 + hash-base@2.0.2: + dependencies: + inherits: 2.0.4 + hash-base@3.0.5: dependencies: inherits: 2.0.4 @@ -26684,7 +26703,7 @@ snapshots: ox@0.4.4(typescript@5.4.3)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 @@ -26698,7 +26717,7 @@ snapshots: ox@0.6.7(typescript@5.4.3)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 @@ -26712,8 +26731,8 @@ snapshots: ox@0.6.9(typescript@5.4.3)(zod@3.25.33): dependencies: '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.8.0 - '@noble/hashes': 1.7.1 + '@noble/curves': 1.9.0 + '@noble/hashes': 1.8.0 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 abitype: 1.0.8(typescript@5.4.3)(zod@3.25.33) @@ -26727,7 +26746,7 @@ snapshots: dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 @@ -26742,7 +26761,7 @@ snapshots: dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 @@ -26816,7 +26835,7 @@ snapshots: browserify-aes: 1.2.0 evp_bytestokey: 1.0.3 hash-base: 3.0.5 - pbkdf2: 3.1.2 + pbkdf2: 3.1.3 safe-buffer: 5.2.1 parse-json@4.0.0: @@ -26854,13 +26873,14 @@ snapshots: path-type@4.0.0: {} - pbkdf2@3.1.2: + pbkdf2@3.1.3: dependencies: - create-hash: 1.2.0 + create-hash: 1.1.3 create-hmac: 1.1.7 - ripemd160: 2.0.2 + ripemd160: 2.0.1 safe-buffer: 5.2.1 sha.js: 2.4.11 + to-buffer: 1.2.1 permissionless@0.1.49(viem@2.30.5(bufferutil@4.0.9)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.25.33)): dependencies: @@ -27790,6 +27810,11 @@ snapshots: dependencies: glob: 7.2.3 + ripemd160@2.0.1: + dependencies: + hash-base: 2.0.2 + inherits: 2.0.4 + ripemd160@2.0.2: dependencies: hash-base: 3.1.0 @@ -27814,7 +27839,7 @@ snapshots: ripple-keypairs@2.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@noble/curves': 1.8.0 + '@noble/curves': 1.9.0 '@xrplf/isomorphic': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) ripple-address-codec: 5.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -28566,6 +28591,12 @@ snapshots: tmpl@1.0.5: {} + to-buffer@1.2.1: + dependencies: + isarray: 2.0.5 + safe-buffer: 5.2.1 + typed-array-buffer: 1.0.3 + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -29455,8 +29486,8 @@ snapshots: webauthn-p256@0.0.10: dependencies: - '@noble/curves': 1.8.0 - '@noble/hashes': 1.4.0 + '@noble/curves': 1.9.0 + '@noble/hashes': 1.8.0 webcrypto-core@1.8.1: dependencies: From 6ecd39fa2ca33346a0726ec757333c64df3e48f7 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 25 Jun 2025 14:24:13 -0400 Subject: [PATCH 25/42] chore: codegen --- examples/react-components/src/app/dashboard/OnRamp.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index c69b26743..76fcdf775 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -69,7 +69,7 @@ export const OnRamp = () => { walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", - fiatCurrencyCode: "USD", + fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", countryCode: "US", countrySubdivisionCode: "ME", }); @@ -151,12 +151,12 @@ export const OnRamp = () => { walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", - fiatCurrencyCode: "USD", + fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", }); console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse, + initMoonPayFiatOnRampResponse ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" From 6fa0eaae8f9281b0fb3379fda263497ef1a65961 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 27 Jun 2025 11:09:00 -0400 Subject: [PATCH 26/42] chore: update onramp --- examples/react-components/src/app/dashboard/OnRamp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 76fcdf775..5e5f8cbab 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -156,7 +156,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse + initMoonPayFiatOnRampResponse, ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" From 6b34225c01819ea6aaa7464facec3be442aa0110 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 27 Jun 2025 12:47:31 -0400 Subject: [PATCH 27/42] chore: codegen --- .../src/pages/index.module.css | 5 +- .../src/pages/index.module.css | 3 +- .../public/v1/public_api.client.ts | 286 ++++----- .../public/v1/public_api.fetcher.ts | 178 +++--- .../src/__generated__/sdk-client-base.ts | 580 ++++++++---------- .../src/__generated__/sdk-client-base.ts | 568 ++++++++--------- 6 files changed, 737 insertions(+), 883 deletions(-) diff --git a/examples/wallet-import-export/src/pages/index.module.css b/examples/wallet-import-export/src/pages/index.module.css index 43d32d14d..0ee703808 100644 --- a/examples/wallet-import-export/src/pages/index.module.css +++ b/examples/wallet-import-export/src/pages/index.module.css @@ -103,9 +103,8 @@ display: flex; gap: 12px; justify-content: baseline; - font-family: - "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, - "Liberation Mono", monospace; + font-family: "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, + Consolas, "Liberation Mono", monospace; } .buttons { diff --git a/examples/with-federated-passkeys/src/pages/index.module.css b/examples/with-federated-passkeys/src/pages/index.module.css index 3ebc007bd..876b2f269 100644 --- a/examples/with-federated-passkeys/src/pages/index.module.css +++ b/examples/with-federated-passkeys/src/pages/index.module.css @@ -85,8 +85,7 @@ .td { /* From https://qwtel.com/posts/software/the-monospaced-system-ui-css-font-stack/ */ - font-family: - ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", + font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace; padding: 10px; diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 459c4eb7d..e73cd3260 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2857,7 +2857,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -2868,7 +2868,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 1bb49db2f..28940c80b 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -3993,7 +3993,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4039,7 +4039,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4091,7 +4091,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 80516b782..787da3b70 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -38,7 +38,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -79,7 +79,7 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; @@ -114,7 +114,7 @@ export class TurnkeySDKClientBase { if ( !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus + pollData.activity.status as TActivityStatus, ) ) { await sleep(pollingDuration); @@ -126,12 +126,12 @@ export class TurnkeySDKClientBase { const responseData = (await this.request( url, - body + body, )) as TActivityResponse; if ( !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus + responseData.activity.status as TActivityStatus, ) ) { return pollStatus(responseData.activity.id); @@ -142,7 +142,7 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { const activityData = (await this.request(url, body)) as TActivityResponse; @@ -153,7 +153,7 @@ export class TurnkeySDKClientBase { } getActivity = async ( - input: SdkApiTypes.TGetActivityBody + input: SdkApiTypes.TGetActivityBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -167,7 +167,7 @@ export class TurnkeySDKClientBase { }; stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody + input: SdkApiTypes.TGetActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -183,7 +183,7 @@ export class TurnkeySDKClientBase { }; getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody + input: SdkApiTypes.TGetApiKeyBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -197,7 +197,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody + input: SdkApiTypes.TGetApiKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -213,7 +213,7 @@ export class TurnkeySDKClientBase { }; getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {} + input: SdkApiTypes.TGetApiKeysBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -227,7 +227,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody + input: SdkApiTypes.TGetApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -243,7 +243,7 @@ export class TurnkeySDKClientBase { }; getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody + input: SdkApiTypes.TGetAttestationDocumentBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -257,7 +257,7 @@ export class TurnkeySDKClientBase { }; stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody + input: SdkApiTypes.TGetAttestationDocumentBody, ): Promise => { if (!this.stamper) { return undefined; @@ -273,7 +273,7 @@ export class TurnkeySDKClientBase { }; getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody + input: SdkApiTypes.TGetAuthenticatorBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -287,7 +287,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody + input: SdkApiTypes.TGetAuthenticatorBody, ): Promise => { if (!this.stamper) { return undefined; @@ -304,7 +304,7 @@ export class TurnkeySDKClientBase { }; getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody + input: SdkApiTypes.TGetAuthenticatorsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -318,7 +318,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody + input: SdkApiTypes.TGetAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -335,7 +335,7 @@ export class TurnkeySDKClientBase { }; getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody + input: SdkApiTypes.TGetOauthProvidersBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -349,7 +349,7 @@ export class TurnkeySDKClientBase { }; stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody + input: SdkApiTypes.TGetOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -366,7 +366,7 @@ export class TurnkeySDKClientBase { }; getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {} + input: SdkApiTypes.TGetOrganizationBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -380,7 +380,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody + input: SdkApiTypes.TGetOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -397,7 +397,7 @@ export class TurnkeySDKClientBase { }; getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody + input: SdkApiTypes.TGetOrganizationConfigsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -411,7 +411,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody + input: SdkApiTypes.TGetOrganizationConfigsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -428,7 +428,7 @@ export class TurnkeySDKClientBase { }; getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody + input: SdkApiTypes.TGetPolicyBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -442,7 +442,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody + input: SdkApiTypes.TGetPolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -458,7 +458,7 @@ export class TurnkeySDKClientBase { }; getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody + input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -472,7 +472,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody + input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -488,7 +488,7 @@ export class TurnkeySDKClientBase { }; getUser = async ( - input: SdkApiTypes.TGetUserBody + input: SdkApiTypes.TGetUserBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -502,7 +502,7 @@ export class TurnkeySDKClientBase { }; stampGetUser = async ( - input: SdkApiTypes.TGetUserBody + input: SdkApiTypes.TGetUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -518,7 +518,7 @@ export class TurnkeySDKClientBase { }; getWallet = async ( - input: SdkApiTypes.TGetWalletBody + input: SdkApiTypes.TGetWalletBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -532,7 +532,7 @@ export class TurnkeySDKClientBase { }; stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody + input: SdkApiTypes.TGetWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -548,7 +548,7 @@ export class TurnkeySDKClientBase { }; getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody + input: SdkApiTypes.TGetWalletAccountBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -562,7 +562,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody + input: SdkApiTypes.TGetWalletAccountBody, ): Promise => { if (!this.stamper) { return undefined; @@ -579,7 +579,7 @@ export class TurnkeySDKClientBase { }; getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {} + input: SdkApiTypes.TGetActivitiesBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -593,7 +593,7 @@ export class TurnkeySDKClientBase { }; stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody + input: SdkApiTypes.TGetActivitiesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -609,7 +609,7 @@ export class TurnkeySDKClientBase { }; getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {} + input: SdkApiTypes.TGetPoliciesBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -623,7 +623,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody + input: SdkApiTypes.TGetPoliciesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -639,7 +639,7 @@ export class TurnkeySDKClientBase { }; listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody + input: SdkApiTypes.TListPrivateKeyTagsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -653,7 +653,7 @@ export class TurnkeySDKClientBase { }; stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody + input: SdkApiTypes.TListPrivateKeyTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -670,7 +670,7 @@ export class TurnkeySDKClientBase { }; getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {} + input: SdkApiTypes.TGetPrivateKeysBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -684,7 +684,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody + input: SdkApiTypes.TGetPrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -701,7 +701,7 @@ export class TurnkeySDKClientBase { }; getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {} + input: SdkApiTypes.TGetSubOrgIdsBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -715,7 +715,7 @@ export class TurnkeySDKClientBase { }; stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody + input: SdkApiTypes.TGetSubOrgIdsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -731,7 +731,7 @@ export class TurnkeySDKClientBase { }; listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {} + input: SdkApiTypes.TListUserTagsBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -745,7 +745,7 @@ export class TurnkeySDKClientBase { }; stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody + input: SdkApiTypes.TListUserTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -761,7 +761,7 @@ export class TurnkeySDKClientBase { }; getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {} + input: SdkApiTypes.TGetUsersBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -775,7 +775,7 @@ export class TurnkeySDKClientBase { }; stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody + input: SdkApiTypes.TGetUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -791,7 +791,7 @@ export class TurnkeySDKClientBase { }; getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -805,7 +805,7 @@ export class TurnkeySDKClientBase { }; stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -822,7 +822,7 @@ export class TurnkeySDKClientBase { }; getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody + input: SdkApiTypes.TGetWalletAccountsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -836,7 +836,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody + input: SdkApiTypes.TGetWalletAccountsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -853,7 +853,7 @@ export class TurnkeySDKClientBase { }; getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {} + input: SdkApiTypes.TGetWalletsBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -867,7 +867,7 @@ export class TurnkeySDKClientBase { }; stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody + input: SdkApiTypes.TGetWalletsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -883,7 +883,7 @@ export class TurnkeySDKClientBase { }; getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {} + input: SdkApiTypes.TGetWhoamiBody = {}, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -897,7 +897,7 @@ export class TurnkeySDKClientBase { }; stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody + input: SdkApiTypes.TGetWhoamiBody, ): Promise => { if (!this.stamper) { return undefined; @@ -913,7 +913,7 @@ export class TurnkeySDKClientBase { }; approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody + input: SdkApiTypes.TApproveActivityBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -928,7 +928,7 @@ export class TurnkeySDKClientBase { }; stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody + input: SdkApiTypes.TApproveActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -945,46 +945,7 @@ export class TurnkeySDKClientBase { }; createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - let session = await getStorageValue(StorageKeys.Session); - session = parseSession(session!); - - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult" - ); - }; - - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody - ): Promise => { - if (!this.stamper) { - return undefined; - } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; - const body = JSON.stringify(input); - const stamp = await this.stamper.stamp(body); - return { - body: body, - stamp: stamp, - url: fullUrl, - }; - }; - - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody + input: SdkApiTypes.TCreateApiKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1001,18 +962,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", }, - "createApiKeysResult" + "createApiKeysResult", ); }; stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody + input: SdkApiTypes.TCreateApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1023,7 +984,7 @@ export class TurnkeySDKClientBase { }; createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody + input: SdkApiTypes.TCreateApiOnlyUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1040,18 +1001,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", }, - "createApiOnlyUsersResult" + "createApiOnlyUsersResult", ); }; stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody + input: SdkApiTypes.TCreateApiOnlyUsersBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1062,7 +1023,7 @@ export class TurnkeySDKClientBase { }; createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody + input: SdkApiTypes.TCreateAuthenticatorsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1079,18 +1040,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", }, - "createAuthenticatorsResult" + "createAuthenticatorsResult", ); }; stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody + input: SdkApiTypes.TCreateAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1101,7 +1062,7 @@ export class TurnkeySDKClientBase { }; createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody + input: SdkApiTypes.TCreateInvitationsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1118,18 +1079,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_INVITATIONS", }, - "createInvitationsResult" + "createInvitationsResult", ); }; stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody + input: SdkApiTypes.TCreateInvitationsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1140,7 +1101,7 @@ export class TurnkeySDKClientBase { }; createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody + input: SdkApiTypes.TCreateOauthProvidersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1157,18 +1118,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", }, - "createOauthProvidersResult" + "createOauthProvidersResult", ); }; stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody + input: SdkApiTypes.TCreateOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1179,7 +1140,7 @@ export class TurnkeySDKClientBase { }; createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody + input: SdkApiTypes.TCreatePoliciesBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1196,12 +1157,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICIES", }, - "createPoliciesResult" + "createPoliciesResult", ); }; stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody + input: SdkApiTypes.TCreatePoliciesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1218,7 +1179,7 @@ export class TurnkeySDKClientBase { }; createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody + input: SdkApiTypes.TCreatePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1235,12 +1196,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICY_V3", }, - "createPolicyResult" + "createPolicyResult", ); }; stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody + input: SdkApiTypes.TCreatePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1256,7 +1217,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody + input: SdkApiTypes.TCreatePrivateKeyTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1273,12 +1234,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", }, - "createPrivateKeyTagResult" + "createPrivateKeyTagResult", ); }; stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody + input: SdkApiTypes.TCreatePrivateKeyTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1295,7 +1256,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody + input: SdkApiTypes.TCreatePrivateKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1312,12 +1273,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", }, - "createPrivateKeysResultV2" + "createPrivateKeysResultV2", ); }; stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody + input: SdkApiTypes.TCreatePrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1334,7 +1295,7 @@ export class TurnkeySDKClientBase { }; createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody + input: SdkApiTypes.TCreateReadOnlySessionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1351,12 +1312,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", }, - "createReadOnlySessionResult" + "createReadOnlySessionResult", ); }; stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody + input: SdkApiTypes.TCreateReadOnlySessionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1373,7 +1334,7 @@ export class TurnkeySDKClientBase { }; createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody + input: SdkApiTypes.TCreateReadWriteSessionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1390,12 +1351,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", }, - "createReadWriteSessionResultV2" + "createReadWriteSessionResultV2", ); }; stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody + input: SdkApiTypes.TCreateReadWriteSessionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1412,7 +1373,7 @@ export class TurnkeySDKClientBase { }; createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody + input: SdkApiTypes.TCreateSubOrganizationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1429,12 +1390,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", }, - "createSubOrganizationResultV7" + "createSubOrganizationResultV7", ); }; stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody + input: SdkApiTypes.TCreateSubOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1451,7 +1412,7 @@ export class TurnkeySDKClientBase { }; createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody + input: SdkApiTypes.TCreateUserTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1468,12 +1429,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USER_TAG", }, - "createUserTagResult" + "createUserTagResult", ); }; stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody + input: SdkApiTypes.TCreateUserTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1490,7 +1451,7 @@ export class TurnkeySDKClientBase { }; createUsers = async ( - input: SdkApiTypes.TCreateUsersBody + input: SdkApiTypes.TCreateUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1507,12 +1468,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USERS_V3", }, - "createUsersResult" + "createUsersResult", ); }; stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody + input: SdkApiTypes.TCreateUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1528,7 +1489,7 @@ export class TurnkeySDKClientBase { }; createWallet = async ( - input: SdkApiTypes.TCreateWalletBody + input: SdkApiTypes.TCreateWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1545,12 +1506,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET", }, - "createWalletResult" + "createWalletResult", ); }; stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody + input: SdkApiTypes.TCreateWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1566,7 +1527,7 @@ export class TurnkeySDKClientBase { }; createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody + input: SdkApiTypes.TCreateWalletAccountsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1583,12 +1544,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", }, - "createWalletAccountsResult" + "createWalletAccountsResult", ); }; stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody + input: SdkApiTypes.TCreateWalletAccountsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1605,7 +1566,7 @@ export class TurnkeySDKClientBase { }; deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody + input: SdkApiTypes.TDeleteApiKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1622,12 +1583,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_API_KEYS", }, - "deleteApiKeysResult" + "deleteApiKeysResult", ); }; stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody + input: SdkApiTypes.TDeleteApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1644,7 +1605,7 @@ export class TurnkeySDKClientBase { }; deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody + input: SdkApiTypes.TDeleteAuthenticatorsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1661,12 +1622,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", }, - "deleteAuthenticatorsResult" + "deleteAuthenticatorsResult", ); }; stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody + input: SdkApiTypes.TDeleteAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1683,7 +1644,7 @@ export class TurnkeySDKClientBase { }; deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody + input: SdkApiTypes.TDeleteInvitationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1700,12 +1661,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_INVITATION", }, - "deleteInvitationResult" + "deleteInvitationResult", ); }; stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody + input: SdkApiTypes.TDeleteInvitationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1722,7 +1683,7 @@ export class TurnkeySDKClientBase { }; deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody + input: SdkApiTypes.TDeleteOauthProvidersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1739,12 +1700,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", }, - "deleteOauthProvidersResult" + "deleteOauthProvidersResult", ); }; stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody + input: SdkApiTypes.TDeleteOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1761,7 +1722,7 @@ export class TurnkeySDKClientBase { }; deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody + input: SdkApiTypes.TDeletePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1778,12 +1739,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_POLICY", }, - "deletePolicyResult" + "deletePolicyResult", ); }; stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody + input: SdkApiTypes.TDeletePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1799,7 +1760,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody + input: SdkApiTypes.TDeletePrivateKeyTagsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1816,12 +1777,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", }, - "deletePrivateKeyTagsResult" + "deletePrivateKeyTagsResult", ); }; stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody + input: SdkApiTypes.TDeletePrivateKeyTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1838,7 +1799,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody + input: SdkApiTypes.TDeletePrivateKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1855,12 +1816,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", }, - "deletePrivateKeysResult" + "deletePrivateKeysResult", ); }; stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody + input: SdkApiTypes.TDeletePrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1877,7 +1838,7 @@ export class TurnkeySDKClientBase { }; deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody + input: SdkApiTypes.TDeleteSubOrganizationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1894,12 +1855,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", }, - "deleteSubOrganizationResult" + "deleteSubOrganizationResult", ); }; stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody + input: SdkApiTypes.TDeleteSubOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1916,7 +1877,7 @@ export class TurnkeySDKClientBase { }; deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody + input: SdkApiTypes.TDeleteUserTagsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1933,12 +1894,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USER_TAGS", }, - "deleteUserTagsResult" + "deleteUserTagsResult", ); }; stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody + input: SdkApiTypes.TDeleteUserTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1955,7 +1916,7 @@ export class TurnkeySDKClientBase { }; deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody + input: SdkApiTypes.TDeleteUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -1972,12 +1933,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USERS", }, - "deleteUsersResult" + "deleteUsersResult", ); }; stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody + input: SdkApiTypes.TDeleteUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1993,7 +1954,7 @@ export class TurnkeySDKClientBase { }; deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody + input: SdkApiTypes.TDeleteWalletsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2010,12 +1971,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_WALLETS", }, - "deleteWalletsResult" + "deleteWalletsResult", ); }; stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody + input: SdkApiTypes.TDeleteWalletsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2031,7 +1992,7 @@ export class TurnkeySDKClientBase { }; emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody + input: SdkApiTypes.TEmailAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2048,12 +2009,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", }, - "emailAuthResult" + "emailAuthResult", ); }; stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody + input: SdkApiTypes.TEmailAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2069,7 +2030,7 @@ export class TurnkeySDKClientBase { }; exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody + input: SdkApiTypes.TExportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2086,12 +2047,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", }, - "exportPrivateKeyResult" + "exportPrivateKeyResult", ); }; stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody + input: SdkApiTypes.TExportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2108,7 +2069,7 @@ export class TurnkeySDKClientBase { }; exportWallet = async ( - input: SdkApiTypes.TExportWalletBody + input: SdkApiTypes.TExportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2125,12 +2086,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET", }, - "exportWalletResult" + "exportWalletResult", ); }; stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody + input: SdkApiTypes.TExportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2146,7 +2107,7 @@ export class TurnkeySDKClientBase { }; exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody + input: SdkApiTypes.TExportWalletAccountBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2163,12 +2124,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", }, - "exportWalletAccountResult" + "exportWalletAccountResult", ); }; stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody + input: SdkApiTypes.TExportWalletAccountBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2185,7 +2146,7 @@ export class TurnkeySDKClientBase { }; importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody + input: SdkApiTypes.TImportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2202,12 +2163,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", }, - "importPrivateKeyResult" + "importPrivateKeyResult", ); }; stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody + input: SdkApiTypes.TImportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2224,7 +2185,7 @@ export class TurnkeySDKClientBase { }; importWallet = async ( - input: SdkApiTypes.TImportWalletBody + input: SdkApiTypes.TImportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2241,12 +2202,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_WALLET", }, - "importWalletResult" + "importWalletResult", ); }; stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody + input: SdkApiTypes.TImportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2262,7 +2223,7 @@ export class TurnkeySDKClientBase { }; initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody + input: SdkApiTypes.TInitFiatOnRampBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2279,12 +2240,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", }, - "initFiatOnRampResult" + "initFiatOnRampResult", ); }; stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody + input: SdkApiTypes.TInitFiatOnRampBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2301,7 +2262,7 @@ export class TurnkeySDKClientBase { }; initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody + input: SdkApiTypes.TInitImportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2318,12 +2279,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", }, - "initImportPrivateKeyResult" + "initImportPrivateKeyResult", ); }; stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody + input: SdkApiTypes.TInitImportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2340,7 +2301,7 @@ export class TurnkeySDKClientBase { }; initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody + input: SdkApiTypes.TInitImportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2357,12 +2318,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", }, - "initImportWalletResult" + "initImportWalletResult", ); }; stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody + input: SdkApiTypes.TInitImportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2379,7 +2340,7 @@ export class TurnkeySDKClientBase { }; initOtp = async ( - input: SdkApiTypes.TInitOtpBody + input: SdkApiTypes.TInitOtpBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2396,12 +2357,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP", }, - "initOtpResult" + "initOtpResult", ); }; stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody + input: SdkApiTypes.TInitOtpBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2417,7 +2378,7 @@ export class TurnkeySDKClientBase { }; initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody + input: SdkApiTypes.TInitOtpAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2434,12 +2395,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", }, - "initOtpAuthResultV2" + "initOtpAuthResultV2", ); }; stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody + input: SdkApiTypes.TInitOtpAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2455,7 +2416,7 @@ export class TurnkeySDKClientBase { }; initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody + input: SdkApiTypes.TInitUserEmailRecoveryBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2472,12 +2433,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", }, - "initUserEmailRecoveryResult" + "initUserEmailRecoveryResult", ); }; stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody + input: SdkApiTypes.TInitUserEmailRecoveryBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2494,7 +2455,7 @@ export class TurnkeySDKClientBase { }; oauth = async ( - input: SdkApiTypes.TOauthBody + input: SdkApiTypes.TOauthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2511,12 +2472,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH", }, - "oauthResult" + "oauthResult", ); }; stampOauth = async ( - input: SdkApiTypes.TOauthBody + input: SdkApiTypes.TOauthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2532,7 +2493,7 @@ export class TurnkeySDKClientBase { }; oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody + input: SdkApiTypes.TOauthLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2549,12 +2510,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH_LOGIN", }, - "oauthLoginResult" + "oauthLoginResult", ); }; stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody + input: SdkApiTypes.TOauthLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2570,7 +2531,7 @@ export class TurnkeySDKClientBase { }; otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody + input: SdkApiTypes.TOtpAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2587,12 +2548,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_AUTH", }, - "otpAuthResult" + "otpAuthResult", ); }; stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody + input: SdkApiTypes.TOtpAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2608,7 +2569,7 @@ export class TurnkeySDKClientBase { }; otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody + input: SdkApiTypes.TOtpLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2625,12 +2586,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_LOGIN", }, - "otpLoginResult" + "otpLoginResult", ); }; stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody + input: SdkApiTypes.TOtpLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2646,7 +2607,7 @@ export class TurnkeySDKClientBase { }; recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody + input: SdkApiTypes.TRecoverUserBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2663,12 +2624,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_RECOVER_USER", }, - "recoverUserResult" + "recoverUserResult", ); }; stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody + input: SdkApiTypes.TRecoverUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2684,7 +2645,7 @@ export class TurnkeySDKClientBase { }; rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody + input: SdkApiTypes.TRejectActivityBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2699,7 +2660,7 @@ export class TurnkeySDKClientBase { }; stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody + input: SdkApiTypes.TRejectActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2716,46 +2677,7 @@ export class TurnkeySDKClientBase { }; removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - let session = await getStorageValue(StorageKeys.Session); - session = parseSession(session!); - - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult" - ); - }; - - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody - ): Promise => { - if (!this.stamper) { - return undefined; - } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; - const body = JSON.stringify(input); - const stamp = await this.stamper.stamp(body); - return { - body: body, - stamp: stamp, - url: fullUrl, - }; - }; - - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody + input: SdkApiTypes.TRemoveOrganizationFeatureBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2772,18 +2694,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", }, - "removeOrganizationFeatureResult" + "removeOrganizationFeatureResult", ); }; stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody + input: SdkApiTypes.TRemoveOrganizationFeatureBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2794,7 +2716,7 @@ export class TurnkeySDKClientBase { }; setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody + input: SdkApiTypes.TSetOrganizationFeatureBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2811,18 +2733,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", }, - "setOrganizationFeatureResult" + "setOrganizationFeatureResult", ); }; stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody + input: SdkApiTypes.TSetOrganizationFeatureBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2833,7 +2755,7 @@ export class TurnkeySDKClientBase { }; signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody + input: SdkApiTypes.TSignRawPayloadBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2850,18 +2772,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", }, - "signRawPayloadResult" + "signRawPayloadResult", ); }; stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody + input: SdkApiTypes.TSignRawPayloadBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2872,7 +2794,7 @@ export class TurnkeySDKClientBase { }; signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody + input: SdkApiTypes.TSignRawPayloadsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2889,18 +2811,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", }, - "signRawPayloadsResult" + "signRawPayloadsResult", ); }; stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody + input: SdkApiTypes.TSignRawPayloadsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2911,7 +2833,7 @@ export class TurnkeySDKClientBase { }; signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody + input: SdkApiTypes.TSignTransactionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2928,12 +2850,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", }, - "signTransactionResult" + "signTransactionResult", ); }; stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody + input: SdkApiTypes.TSignTransactionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2950,7 +2872,7 @@ export class TurnkeySDKClientBase { }; stampLogin = async ( - input: SdkApiTypes.TStampLoginBody + input: SdkApiTypes.TStampLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -2967,12 +2889,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_STAMP_LOGIN", }, - "stampLoginResult" + "stampLoginResult", ); }; stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody + input: SdkApiTypes.TStampLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2988,7 +2910,7 @@ export class TurnkeySDKClientBase { }; updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody + input: SdkApiTypes.TUpdatePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3005,12 +2927,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", }, - "updatePolicyResultV2" + "updatePolicyResultV2", ); }; stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody + input: SdkApiTypes.TUpdatePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3026,7 +2948,7 @@ export class TurnkeySDKClientBase { }; updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody + input: SdkApiTypes.TUpdatePrivateKeyTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3043,12 +2965,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", }, - "updatePrivateKeyTagResult" + "updatePrivateKeyTagResult", ); }; stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody + input: SdkApiTypes.TUpdatePrivateKeyTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3065,7 +2987,7 @@ export class TurnkeySDKClientBase { }; updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody + input: SdkApiTypes.TUpdateRootQuorumBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3082,12 +3004,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", }, - "updateRootQuorumResult" + "updateRootQuorumResult", ); }; stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody + input: SdkApiTypes.TUpdateRootQuorumBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3104,7 +3026,7 @@ export class TurnkeySDKClientBase { }; updateUser = async ( - input: SdkApiTypes.TUpdateUserBody + input: SdkApiTypes.TUpdateUserBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3121,12 +3043,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER", }, - "updateUserResult" + "updateUserResult", ); }; stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody + input: SdkApiTypes.TUpdateUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3142,7 +3064,7 @@ export class TurnkeySDKClientBase { }; updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody + input: SdkApiTypes.TUpdateUserEmailBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3159,12 +3081,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", }, - "updateUserEmailResult" + "updateUserEmailResult", ); }; stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody + input: SdkApiTypes.TUpdateUserEmailBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3181,7 +3103,7 @@ export class TurnkeySDKClientBase { }; updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody + input: SdkApiTypes.TUpdateUserNameBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3198,12 +3120,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_NAME", }, - "updateUserNameResult" + "updateUserNameResult", ); }; stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody + input: SdkApiTypes.TUpdateUserNameBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3220,7 +3142,7 @@ export class TurnkeySDKClientBase { }; updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody + input: SdkApiTypes.TUpdateUserPhoneNumberBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3237,12 +3159,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", }, - "updateUserPhoneNumberResult" + "updateUserPhoneNumberResult", ); }; stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody + input: SdkApiTypes.TUpdateUserPhoneNumberBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3259,7 +3181,7 @@ export class TurnkeySDKClientBase { }; updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody + input: SdkApiTypes.TUpdateUserTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3276,12 +3198,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_TAG", }, - "updateUserTagResult" + "updateUserTagResult", ); }; stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody + input: SdkApiTypes.TUpdateUserTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3298,7 +3220,7 @@ export class TurnkeySDKClientBase { }; updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody + input: SdkApiTypes.TUpdateWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3315,12 +3237,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_WALLET", }, - "updateWalletResult" + "updateWalletResult", ); }; stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody + input: SdkApiTypes.TUpdateWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3336,7 +3258,7 @@ export class TurnkeySDKClientBase { }; verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody + input: SdkApiTypes.TVerifyOtpBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); @@ -3353,12 +3275,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_VERIFY_OTP", }, - "verifyOtpResult" + "verifyOtpResult", ); }; stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody + input: SdkApiTypes.TVerifyOtpBody, ): Promise => { if (!this.stamper) { return undefined; @@ -3374,7 +3296,7 @@ export class TurnkeySDKClientBase { }; testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody + input: SdkApiTypes.TTestRateLimitsBody, ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); @@ -3388,7 +3310,7 @@ export class TurnkeySDKClientBase { }; stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody + input: SdkApiTypes.TTestRateLimitsBody, ): Promise => { if (!this.stamper) { return undefined; diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index d15ea97c1..7ecf34888 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -32,7 +32,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -66,7 +66,7 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; @@ -101,7 +101,7 @@ export class TurnkeySDKClientBase { if ( !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus + pollData.activity.status as TActivityStatus, ) ) { await sleep(pollingDuration); @@ -113,12 +113,12 @@ export class TurnkeySDKClientBase { const responseData = (await this.request( url, - body + body, )) as TActivityResponse; if ( !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus + responseData.activity.status as TActivityStatus, ) ) { return pollStatus(responseData.activity.id); @@ -129,7 +129,7 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { const activityData = (await this.request(url, body)) as TActivityResponse; @@ -140,7 +140,7 @@ export class TurnkeySDKClientBase { } getActivity = async ( - input: SdkApiTypes.TGetActivityBody + input: SdkApiTypes.TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", { ...input, @@ -149,7 +149,7 @@ export class TurnkeySDKClientBase { }; stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody + input: SdkApiTypes.TGetActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -165,7 +165,7 @@ export class TurnkeySDKClientBase { }; getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody + input: SdkApiTypes.TGetApiKeyBody, ): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, @@ -174,7 +174,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody + input: SdkApiTypes.TGetApiKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -190,7 +190,7 @@ export class TurnkeySDKClientBase { }; getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {} + input: SdkApiTypes.TGetApiKeysBody = {}, ): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, @@ -199,7 +199,7 @@ export class TurnkeySDKClientBase { }; stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody + input: SdkApiTypes.TGetApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -215,7 +215,7 @@ export class TurnkeySDKClientBase { }; getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody + input: SdkApiTypes.TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, @@ -224,7 +224,7 @@ export class TurnkeySDKClientBase { }; stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody + input: SdkApiTypes.TGetAttestationDocumentBody, ): Promise => { if (!this.stamper) { return undefined; @@ -240,7 +240,7 @@ export class TurnkeySDKClientBase { }; getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody + input: SdkApiTypes.TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, @@ -249,7 +249,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody + input: SdkApiTypes.TGetAuthenticatorBody, ): Promise => { if (!this.stamper) { return undefined; @@ -266,7 +266,7 @@ export class TurnkeySDKClientBase { }; getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody + input: SdkApiTypes.TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, @@ -275,7 +275,7 @@ export class TurnkeySDKClientBase { }; stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody + input: SdkApiTypes.TGetAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -292,7 +292,7 @@ export class TurnkeySDKClientBase { }; getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody + input: SdkApiTypes.TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, @@ -301,7 +301,7 @@ export class TurnkeySDKClientBase { }; stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody + input: SdkApiTypes.TGetOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -318,7 +318,7 @@ export class TurnkeySDKClientBase { }; getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {} + input: SdkApiTypes.TGetOrganizationBody = {}, ): Promise => { return this.request("/public/v1/query/get_organization", { ...input, @@ -327,7 +327,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody + input: SdkApiTypes.TGetOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -344,7 +344,7 @@ export class TurnkeySDKClientBase { }; getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody + input: SdkApiTypes.TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, @@ -353,7 +353,7 @@ export class TurnkeySDKClientBase { }; stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody + input: SdkApiTypes.TGetOrganizationConfigsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -370,7 +370,7 @@ export class TurnkeySDKClientBase { }; getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody + input: SdkApiTypes.TGetPolicyBody, ): Promise => { return this.request("/public/v1/query/get_policy", { ...input, @@ -379,7 +379,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody + input: SdkApiTypes.TGetPolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -395,7 +395,7 @@ export class TurnkeySDKClientBase { }; getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody + input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, @@ -404,7 +404,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody + input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -420,7 +420,7 @@ export class TurnkeySDKClientBase { }; getUser = async ( - input: SdkApiTypes.TGetUserBody + input: SdkApiTypes.TGetUserBody, ): Promise => { return this.request("/public/v1/query/get_user", { ...input, @@ -429,7 +429,7 @@ export class TurnkeySDKClientBase { }; stampGetUser = async ( - input: SdkApiTypes.TGetUserBody + input: SdkApiTypes.TGetUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -445,7 +445,7 @@ export class TurnkeySDKClientBase { }; getWallet = async ( - input: SdkApiTypes.TGetWalletBody + input: SdkApiTypes.TGetWalletBody, ): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, @@ -454,7 +454,7 @@ export class TurnkeySDKClientBase { }; stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody + input: SdkApiTypes.TGetWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -470,7 +470,7 @@ export class TurnkeySDKClientBase { }; getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody + input: SdkApiTypes.TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, @@ -479,7 +479,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody + input: SdkApiTypes.TGetWalletAccountBody, ): Promise => { if (!this.stamper) { return undefined; @@ -496,7 +496,7 @@ export class TurnkeySDKClientBase { }; getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {} + input: SdkApiTypes.TGetActivitiesBody = {}, ): Promise => { return this.request("/public/v1/query/list_activities", { ...input, @@ -505,7 +505,7 @@ export class TurnkeySDKClientBase { }; stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody + input: SdkApiTypes.TGetActivitiesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -521,7 +521,7 @@ export class TurnkeySDKClientBase { }; getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {} + input: SdkApiTypes.TGetPoliciesBody = {}, ): Promise => { return this.request("/public/v1/query/list_policies", { ...input, @@ -530,7 +530,7 @@ export class TurnkeySDKClientBase { }; stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody + input: SdkApiTypes.TGetPoliciesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -546,7 +546,7 @@ export class TurnkeySDKClientBase { }; listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody + input: SdkApiTypes.TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, @@ -555,7 +555,7 @@ export class TurnkeySDKClientBase { }; stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody + input: SdkApiTypes.TListPrivateKeyTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -572,7 +572,7 @@ export class TurnkeySDKClientBase { }; getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {} + input: SdkApiTypes.TGetPrivateKeysBody = {}, ): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, @@ -581,7 +581,7 @@ export class TurnkeySDKClientBase { }; stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody + input: SdkApiTypes.TGetPrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -598,7 +598,7 @@ export class TurnkeySDKClientBase { }; getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {} + input: SdkApiTypes.TGetSubOrgIdsBody = {}, ): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, @@ -607,7 +607,7 @@ export class TurnkeySDKClientBase { }; stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody + input: SdkApiTypes.TGetSubOrgIdsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -623,7 +623,7 @@ export class TurnkeySDKClientBase { }; listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {} + input: SdkApiTypes.TListUserTagsBody = {}, ): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, @@ -632,7 +632,7 @@ export class TurnkeySDKClientBase { }; stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody + input: SdkApiTypes.TListUserTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -648,7 +648,7 @@ export class TurnkeySDKClientBase { }; getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {} + input: SdkApiTypes.TGetUsersBody = {}, ): Promise => { return this.request("/public/v1/query/list_users", { ...input, @@ -657,7 +657,7 @@ export class TurnkeySDKClientBase { }; stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody + input: SdkApiTypes.TGetUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -673,7 +673,7 @@ export class TurnkeySDKClientBase { }; getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, @@ -682,7 +682,7 @@ export class TurnkeySDKClientBase { }; stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -699,7 +699,7 @@ export class TurnkeySDKClientBase { }; getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody + input: SdkApiTypes.TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, @@ -708,7 +708,7 @@ export class TurnkeySDKClientBase { }; stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody + input: SdkApiTypes.TGetWalletAccountsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -725,7 +725,7 @@ export class TurnkeySDKClientBase { }; getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {} + input: SdkApiTypes.TGetWalletsBody = {}, ): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, @@ -734,7 +734,7 @@ export class TurnkeySDKClientBase { }; stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody + input: SdkApiTypes.TGetWalletsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -750,7 +750,7 @@ export class TurnkeySDKClientBase { }; getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {} + input: SdkApiTypes.TGetWhoamiBody = {}, ): Promise => { return this.request("/public/v1/query/whoami", { ...input, @@ -759,7 +759,7 @@ export class TurnkeySDKClientBase { }; stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody + input: SdkApiTypes.TGetWhoamiBody, ): Promise => { if (!this.stamper) { return undefined; @@ -775,7 +775,7 @@ export class TurnkeySDKClientBase { }; approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody + input: SdkApiTypes.TApproveActivityBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.activityDecision("/public/v1/submit/approve_activity", { @@ -787,7 +787,7 @@ export class TurnkeySDKClientBase { }; stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody + input: SdkApiTypes.TApproveActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -804,40 +804,7 @@ export class TurnkeySDKClientBase { }; createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult" - ); - }; - - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody - ): Promise => { - if (!this.stamper) { - return undefined; - } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; - const body = JSON.stringify(input); - const stamp = await this.stamper.stamp(body); - return { - body: body, - stamp: stamp, - url: fullUrl, - }; - }; - - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody + input: SdkApiTypes.TCreateApiKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -848,18 +815,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", }, - "createApiKeysResult" + "createApiKeysResult", ); }; stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody + input: SdkApiTypes.TCreateApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -870,7 +837,7 @@ export class TurnkeySDKClientBase { }; createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody + input: SdkApiTypes.TCreateApiOnlyUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -881,18 +848,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", }, - "createApiOnlyUsersResult" + "createApiOnlyUsersResult", ); }; stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody + input: SdkApiTypes.TCreateApiOnlyUsersBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -903,7 +870,7 @@ export class TurnkeySDKClientBase { }; createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody + input: SdkApiTypes.TCreateAuthenticatorsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -914,18 +881,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", }, - "createAuthenticatorsResult" + "createAuthenticatorsResult", ); }; stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody + input: SdkApiTypes.TCreateAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -936,7 +903,7 @@ export class TurnkeySDKClientBase { }; createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody + input: SdkApiTypes.TCreateInvitationsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -947,18 +914,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_INVITATIONS", }, - "createInvitationsResult" + "createInvitationsResult", ); }; stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody + input: SdkApiTypes.TCreateInvitationsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -969,7 +936,7 @@ export class TurnkeySDKClientBase { }; createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody + input: SdkApiTypes.TCreateOauthProvidersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -980,18 +947,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", }, - "createOauthProvidersResult" + "createOauthProvidersResult", ); }; stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody + input: SdkApiTypes.TCreateOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1002,7 +969,7 @@ export class TurnkeySDKClientBase { }; createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody + input: SdkApiTypes.TCreatePoliciesBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1013,12 +980,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICIES", }, - "createPoliciesResult" + "createPoliciesResult", ); }; stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody + input: SdkApiTypes.TCreatePoliciesBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1035,7 +1002,7 @@ export class TurnkeySDKClientBase { }; createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody + input: SdkApiTypes.TCreatePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1046,12 +1013,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_POLICY_V3", }, - "createPolicyResult" + "createPolicyResult", ); }; stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody + input: SdkApiTypes.TCreatePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1067,7 +1034,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody + input: SdkApiTypes.TCreatePrivateKeyTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1078,12 +1045,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", }, - "createPrivateKeyTagResult" + "createPrivateKeyTagResult", ); }; stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody + input: SdkApiTypes.TCreatePrivateKeyTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1100,7 +1067,7 @@ export class TurnkeySDKClientBase { }; createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody + input: SdkApiTypes.TCreatePrivateKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1111,12 +1078,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", }, - "createPrivateKeysResultV2" + "createPrivateKeysResultV2", ); }; stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody + input: SdkApiTypes.TCreatePrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1133,7 +1100,7 @@ export class TurnkeySDKClientBase { }; createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody + input: SdkApiTypes.TCreateReadOnlySessionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1144,12 +1111,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", }, - "createReadOnlySessionResult" + "createReadOnlySessionResult", ); }; stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody + input: SdkApiTypes.TCreateReadOnlySessionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1166,7 +1133,7 @@ export class TurnkeySDKClientBase { }; createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody + input: SdkApiTypes.TCreateReadWriteSessionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1177,12 +1144,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", }, - "createReadWriteSessionResultV2" + "createReadWriteSessionResultV2", ); }; stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody + input: SdkApiTypes.TCreateReadWriteSessionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1199,7 +1166,7 @@ export class TurnkeySDKClientBase { }; createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody + input: SdkApiTypes.TCreateSubOrganizationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1210,12 +1177,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", }, - "createSubOrganizationResultV7" + "createSubOrganizationResultV7", ); }; stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody + input: SdkApiTypes.TCreateSubOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1232,7 +1199,7 @@ export class TurnkeySDKClientBase { }; createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody + input: SdkApiTypes.TCreateUserTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1243,12 +1210,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USER_TAG", }, - "createUserTagResult" + "createUserTagResult", ); }; stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody + input: SdkApiTypes.TCreateUserTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1265,7 +1232,7 @@ export class TurnkeySDKClientBase { }; createUsers = async ( - input: SdkApiTypes.TCreateUsersBody + input: SdkApiTypes.TCreateUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1276,12 +1243,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_USERS_V3", }, - "createUsersResult" + "createUsersResult", ); }; stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody + input: SdkApiTypes.TCreateUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1297,7 +1264,7 @@ export class TurnkeySDKClientBase { }; createWallet = async ( - input: SdkApiTypes.TCreateWalletBody + input: SdkApiTypes.TCreateWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1308,12 +1275,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET", }, - "createWalletResult" + "createWalletResult", ); }; stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody + input: SdkApiTypes.TCreateWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1329,7 +1296,7 @@ export class TurnkeySDKClientBase { }; createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody + input: SdkApiTypes.TCreateWalletAccountsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1340,12 +1307,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", }, - "createWalletAccountsResult" + "createWalletAccountsResult", ); }; stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody + input: SdkApiTypes.TCreateWalletAccountsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1362,7 +1329,7 @@ export class TurnkeySDKClientBase { }; deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody + input: SdkApiTypes.TDeleteApiKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1373,12 +1340,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_API_KEYS", }, - "deleteApiKeysResult" + "deleteApiKeysResult", ); }; stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody + input: SdkApiTypes.TDeleteApiKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1395,7 +1362,7 @@ export class TurnkeySDKClientBase { }; deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody + input: SdkApiTypes.TDeleteAuthenticatorsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1406,12 +1373,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", }, - "deleteAuthenticatorsResult" + "deleteAuthenticatorsResult", ); }; stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody + input: SdkApiTypes.TDeleteAuthenticatorsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1428,7 +1395,7 @@ export class TurnkeySDKClientBase { }; deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody + input: SdkApiTypes.TDeleteInvitationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1439,12 +1406,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_INVITATION", }, - "deleteInvitationResult" + "deleteInvitationResult", ); }; stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody + input: SdkApiTypes.TDeleteInvitationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1461,7 +1428,7 @@ export class TurnkeySDKClientBase { }; deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody + input: SdkApiTypes.TDeleteOauthProvidersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1472,12 +1439,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", }, - "deleteOauthProvidersResult" + "deleteOauthProvidersResult", ); }; stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody + input: SdkApiTypes.TDeleteOauthProvidersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1494,7 +1461,7 @@ export class TurnkeySDKClientBase { }; deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody + input: SdkApiTypes.TDeletePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1505,12 +1472,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_POLICY", }, - "deletePolicyResult" + "deletePolicyResult", ); }; stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody + input: SdkApiTypes.TDeletePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1526,7 +1493,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody + input: SdkApiTypes.TDeletePrivateKeyTagsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1537,12 +1504,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", }, - "deletePrivateKeyTagsResult" + "deletePrivateKeyTagsResult", ); }; stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody + input: SdkApiTypes.TDeletePrivateKeyTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1559,7 +1526,7 @@ export class TurnkeySDKClientBase { }; deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody + input: SdkApiTypes.TDeletePrivateKeysBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1570,12 +1537,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", }, - "deletePrivateKeysResult" + "deletePrivateKeysResult", ); }; stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody + input: SdkApiTypes.TDeletePrivateKeysBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1592,7 +1559,7 @@ export class TurnkeySDKClientBase { }; deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody + input: SdkApiTypes.TDeleteSubOrganizationBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1603,12 +1570,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", }, - "deleteSubOrganizationResult" + "deleteSubOrganizationResult", ); }; stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody + input: SdkApiTypes.TDeleteSubOrganizationBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1625,7 +1592,7 @@ export class TurnkeySDKClientBase { }; deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody + input: SdkApiTypes.TDeleteUserTagsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1636,12 +1603,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USER_TAGS", }, - "deleteUserTagsResult" + "deleteUserTagsResult", ); }; stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody + input: SdkApiTypes.TDeleteUserTagsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1658,7 +1625,7 @@ export class TurnkeySDKClientBase { }; deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody + input: SdkApiTypes.TDeleteUsersBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1669,12 +1636,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_USERS", }, - "deleteUsersResult" + "deleteUsersResult", ); }; stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody + input: SdkApiTypes.TDeleteUsersBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1690,7 +1657,7 @@ export class TurnkeySDKClientBase { }; deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody + input: SdkApiTypes.TDeleteWalletsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1701,12 +1668,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_DELETE_WALLETS", }, - "deleteWalletsResult" + "deleteWalletsResult", ); }; stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody + input: SdkApiTypes.TDeleteWalletsBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1722,7 +1689,7 @@ export class TurnkeySDKClientBase { }; emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody + input: SdkApiTypes.TEmailAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1733,12 +1700,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", }, - "emailAuthResult" + "emailAuthResult", ); }; stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody + input: SdkApiTypes.TEmailAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1754,7 +1721,7 @@ export class TurnkeySDKClientBase { }; exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody + input: SdkApiTypes.TExportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1765,12 +1732,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", }, - "exportPrivateKeyResult" + "exportPrivateKeyResult", ); }; stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody + input: SdkApiTypes.TExportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1787,7 +1754,7 @@ export class TurnkeySDKClientBase { }; exportWallet = async ( - input: SdkApiTypes.TExportWalletBody + input: SdkApiTypes.TExportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1798,12 +1765,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET", }, - "exportWalletResult" + "exportWalletResult", ); }; stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody + input: SdkApiTypes.TExportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1819,7 +1786,7 @@ export class TurnkeySDKClientBase { }; exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody + input: SdkApiTypes.TExportWalletAccountBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1830,12 +1797,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", }, - "exportWalletAccountResult" + "exportWalletAccountResult", ); }; stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody + input: SdkApiTypes.TExportWalletAccountBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1852,7 +1819,7 @@ export class TurnkeySDKClientBase { }; importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody + input: SdkApiTypes.TImportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1863,12 +1830,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", }, - "importPrivateKeyResult" + "importPrivateKeyResult", ); }; stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody + input: SdkApiTypes.TImportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1885,7 +1852,7 @@ export class TurnkeySDKClientBase { }; importWallet = async ( - input: SdkApiTypes.TImportWalletBody + input: SdkApiTypes.TImportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1896,12 +1863,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_IMPORT_WALLET", }, - "importWalletResult" + "importWalletResult", ); }; stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody + input: SdkApiTypes.TImportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1917,7 +1884,7 @@ export class TurnkeySDKClientBase { }; initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody + input: SdkApiTypes.TInitFiatOnRampBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1928,12 +1895,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", }, - "initFiatOnRampResult" + "initFiatOnRampResult", ); }; stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody + input: SdkApiTypes.TInitFiatOnRampBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1950,7 +1917,7 @@ export class TurnkeySDKClientBase { }; initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody + input: SdkApiTypes.TInitImportPrivateKeyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1961,12 +1928,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", }, - "initImportPrivateKeyResult" + "initImportPrivateKeyResult", ); }; stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody + input: SdkApiTypes.TInitImportPrivateKeyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -1983,7 +1950,7 @@ export class TurnkeySDKClientBase { }; initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody + input: SdkApiTypes.TInitImportWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -1994,12 +1961,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", }, - "initImportWalletResult" + "initImportWalletResult", ); }; stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody + input: SdkApiTypes.TInitImportWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2016,7 +1983,7 @@ export class TurnkeySDKClientBase { }; initOtp = async ( - input: SdkApiTypes.TInitOtpBody + input: SdkApiTypes.TInitOtpBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2027,12 +1994,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP", }, - "initOtpResult" + "initOtpResult", ); }; stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody + input: SdkApiTypes.TInitOtpBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2048,7 +2015,7 @@ export class TurnkeySDKClientBase { }; initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody + input: SdkApiTypes.TInitOtpAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2059,12 +2026,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", }, - "initOtpAuthResultV2" + "initOtpAuthResultV2", ); }; stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody + input: SdkApiTypes.TInitOtpAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2080,7 +2047,7 @@ export class TurnkeySDKClientBase { }; initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody + input: SdkApiTypes.TInitUserEmailRecoveryBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2091,12 +2058,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", }, - "initUserEmailRecoveryResult" + "initUserEmailRecoveryResult", ); }; stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody + input: SdkApiTypes.TInitUserEmailRecoveryBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2113,7 +2080,7 @@ export class TurnkeySDKClientBase { }; oauth = async ( - input: SdkApiTypes.TOauthBody + input: SdkApiTypes.TOauthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2124,12 +2091,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH", }, - "oauthResult" + "oauthResult", ); }; stampOauth = async ( - input: SdkApiTypes.TOauthBody + input: SdkApiTypes.TOauthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2145,7 +2112,7 @@ export class TurnkeySDKClientBase { }; oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody + input: SdkApiTypes.TOauthLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2156,12 +2123,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OAUTH_LOGIN", }, - "oauthLoginResult" + "oauthLoginResult", ); }; stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody + input: SdkApiTypes.TOauthLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2177,7 +2144,7 @@ export class TurnkeySDKClientBase { }; otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody + input: SdkApiTypes.TOtpAuthBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2188,12 +2155,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_AUTH", }, - "otpAuthResult" + "otpAuthResult", ); }; stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody + input: SdkApiTypes.TOtpAuthBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2209,7 +2176,7 @@ export class TurnkeySDKClientBase { }; otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody + input: SdkApiTypes.TOtpLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2220,12 +2187,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_OTP_LOGIN", }, - "otpLoginResult" + "otpLoginResult", ); }; stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody + input: SdkApiTypes.TOtpLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2241,7 +2208,7 @@ export class TurnkeySDKClientBase { }; recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody + input: SdkApiTypes.TRecoverUserBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2252,12 +2219,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_RECOVER_USER", }, - "recoverUserResult" + "recoverUserResult", ); }; stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody + input: SdkApiTypes.TRecoverUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2273,7 +2240,7 @@ export class TurnkeySDKClientBase { }; rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody + input: SdkApiTypes.TRejectActivityBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.activityDecision("/public/v1/submit/reject_activity", { @@ -2285,7 +2252,7 @@ export class TurnkeySDKClientBase { }; stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody + input: SdkApiTypes.TRejectActivityBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2302,40 +2269,7 @@ export class TurnkeySDKClientBase { }; removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult" - ); - }; - - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody - ): Promise => { - if (!this.stamper) { - return undefined; - } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; - const body = JSON.stringify(input); - const stamp = await this.stamper.stamp(body); - return { - body: body, - stamp: stamp, - url: fullUrl, - }; - }; - - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody + input: SdkApiTypes.TRemoveOrganizationFeatureBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2346,18 +2280,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", }, - "removeOrganizationFeatureResult" + "removeOrganizationFeatureResult", ); }; stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody + input: SdkApiTypes.TRemoveOrganizationFeatureBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2368,7 +2302,7 @@ export class TurnkeySDKClientBase { }; setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody + input: SdkApiTypes.TSetOrganizationFeatureBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2379,18 +2313,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", }, - "setOrganizationFeatureResult" + "setOrganizationFeatureResult", ); }; stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody + input: SdkApiTypes.TSetOrganizationFeatureBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2401,7 +2335,7 @@ export class TurnkeySDKClientBase { }; signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody + input: SdkApiTypes.TSignRawPayloadBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2412,18 +2346,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", }, - "signRawPayloadResult" + "signRawPayloadResult", ); }; stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody + input: SdkApiTypes.TSignRawPayloadBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2434,7 +2368,7 @@ export class TurnkeySDKClientBase { }; signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody + input: SdkApiTypes.TSignRawPayloadsBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2445,18 +2379,18 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", }, - "signRawPayloadsResult" + "signRawPayloadsResult", ); }; stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody + input: SdkApiTypes.TSignRawPayloadsBody, ): Promise => { if (!this.stamper) { return undefined; } const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2467,7 +2401,7 @@ export class TurnkeySDKClientBase { }; signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody + input: SdkApiTypes.TSignTransactionBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2478,12 +2412,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", }, - "signTransactionResult" + "signTransactionResult", ); }; stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody + input: SdkApiTypes.TSignTransactionBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2500,7 +2434,7 @@ export class TurnkeySDKClientBase { }; stampLogin = async ( - input: SdkApiTypes.TStampLoginBody + input: SdkApiTypes.TStampLoginBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2511,12 +2445,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_STAMP_LOGIN", }, - "stampLoginResult" + "stampLoginResult", ); }; stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody + input: SdkApiTypes.TStampLoginBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2532,7 +2466,7 @@ export class TurnkeySDKClientBase { }; updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody + input: SdkApiTypes.TUpdatePolicyBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2543,12 +2477,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", }, - "updatePolicyResultV2" + "updatePolicyResultV2", ); }; stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody + input: SdkApiTypes.TUpdatePolicyBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2564,7 +2498,7 @@ export class TurnkeySDKClientBase { }; updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody + input: SdkApiTypes.TUpdatePrivateKeyTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2575,12 +2509,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", }, - "updatePrivateKeyTagResult" + "updatePrivateKeyTagResult", ); }; stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody + input: SdkApiTypes.TUpdatePrivateKeyTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2597,7 +2531,7 @@ export class TurnkeySDKClientBase { }; updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody + input: SdkApiTypes.TUpdateRootQuorumBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2608,12 +2542,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", }, - "updateRootQuorumResult" + "updateRootQuorumResult", ); }; stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody + input: SdkApiTypes.TUpdateRootQuorumBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2630,7 +2564,7 @@ export class TurnkeySDKClientBase { }; updateUser = async ( - input: SdkApiTypes.TUpdateUserBody + input: SdkApiTypes.TUpdateUserBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2641,12 +2575,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER", }, - "updateUserResult" + "updateUserResult", ); }; stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody + input: SdkApiTypes.TUpdateUserBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2662,7 +2596,7 @@ export class TurnkeySDKClientBase { }; updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody + input: SdkApiTypes.TUpdateUserEmailBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2673,12 +2607,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", }, - "updateUserEmailResult" + "updateUserEmailResult", ); }; stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody + input: SdkApiTypes.TUpdateUserEmailBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2695,7 +2629,7 @@ export class TurnkeySDKClientBase { }; updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody + input: SdkApiTypes.TUpdateUserNameBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2706,12 +2640,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_NAME", }, - "updateUserNameResult" + "updateUserNameResult", ); }; stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody + input: SdkApiTypes.TUpdateUserNameBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2728,7 +2662,7 @@ export class TurnkeySDKClientBase { }; updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody + input: SdkApiTypes.TUpdateUserPhoneNumberBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2739,12 +2673,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", }, - "updateUserPhoneNumberResult" + "updateUserPhoneNumberResult", ); }; stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody + input: SdkApiTypes.TUpdateUserPhoneNumberBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2761,7 +2695,7 @@ export class TurnkeySDKClientBase { }; updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody + input: SdkApiTypes.TUpdateUserTagBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2772,12 +2706,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_USER_TAG", }, - "updateUserTagResult" + "updateUserTagResult", ); }; stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody + input: SdkApiTypes.TUpdateUserTagBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2794,7 +2728,7 @@ export class TurnkeySDKClientBase { }; updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody + input: SdkApiTypes.TUpdateWalletBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2805,12 +2739,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_UPDATE_WALLET", }, - "updateWalletResult" + "updateWalletResult", ); }; stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody + input: SdkApiTypes.TUpdateWalletBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2826,7 +2760,7 @@ export class TurnkeySDKClientBase { }; verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody + input: SdkApiTypes.TVerifyOtpBody, ): Promise => { const { organizationId, timestampMs, ...rest } = input; return this.command( @@ -2837,12 +2771,12 @@ export class TurnkeySDKClientBase { timestampMs: timestampMs ?? String(Date.now()), type: "ACTIVITY_TYPE_VERIFY_OTP", }, - "verifyOtpResult" + "verifyOtpResult", ); }; stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody + input: SdkApiTypes.TVerifyOtpBody, ): Promise => { if (!this.stamper) { return undefined; @@ -2858,7 +2792,7 @@ export class TurnkeySDKClientBase { }; testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody + input: SdkApiTypes.TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, @@ -2867,7 +2801,7 @@ export class TurnkeySDKClientBase { }; stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody + input: SdkApiTypes.TTestRateLimitsBody, ): Promise => { if (!this.stamper) { return undefined; From 2fedf872e5ae25ae7a23c5ecac7505d04b3a835c Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 27 Jun 2025 15:07:39 -0400 Subject: [PATCH 28/42] chore: codegen --- .../public/v1/public_api.client.ts | 286 +- .../public/v1/public_api.fetcher.ts | 178 +- .../src/__generated__/sdk-client-base.ts | 2751 ++++++----------- .../src/__generated__/sdk_api_types.ts | 758 ++--- .../src/__generated__/sdk-client-base.ts | 2487 ++++++--------- .../src/__generated__/sdk_api_types.ts | 758 ++--- 6 files changed, 2602 insertions(+), 4616 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index e73cd3260..459c4eb7d 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2857,7 +2857,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -2868,7 +2868,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 28940c80b..1bb49db2f 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -3993,7 +3993,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4039,7 +4039,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4091,7 +4091,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 787da3b70..19db879bb 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,20 +1,10 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -24,6 +14,7 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -38,27 +29,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION, - }; + "X-Client-Version": VERSION + } if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue; + headers[stamp.stampHeaderName] = stamp.stampHeaderValue } - if (this.config.readOnlySession) { - headers["X-Session"] = this.config.readOnlySession; + if (this.config.readOnlySession){ + headers["X-Session"] = this.config.readOnlySession } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -79,13 +70,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -93,7 +83,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -104,19 +94,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -124,16 +110,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -142,33 +121,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -180,25 +154,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -210,25 +179,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -240,25 +204,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -270,30 +229,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -301,30 +254,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -332,30 +279,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -363,30 +304,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -394,30 +329,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -425,25 +354,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -455,25 +379,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -485,25 +404,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -515,25 +429,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -545,30 +454,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -576,25 +479,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -606,25 +504,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -636,30 +529,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -667,30 +554,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -698,25 +579,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -728,25 +604,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -758,25 +629,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -788,30 +654,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -819,30 +679,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -850,25 +704,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -880,25 +729,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -910,31 +754,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -942,38 +783,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -981,38 +812,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1020,38 +841,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1059,38 +870,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1098,38 +899,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1137,38 +928,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1176,33 +957,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1214,38 +986,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1253,38 +1015,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1292,38 +1044,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1331,38 +1073,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1370,38 +1102,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } + - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1409,38 +1131,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1448,33 +1160,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } + - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1486,33 +1189,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1524,38 +1218,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } + - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1563,38 +1247,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } + - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1602,38 +1276,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } + - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1641,38 +1305,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1680,38 +1334,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1719,33 +1363,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } + - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1757,38 +1392,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1796,38 +1421,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } + - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1835,38 +1450,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1874,38 +1479,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } + - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1913,33 +1508,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1951,33 +1537,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } + - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -1989,33 +1566,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2027,38 +1595,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } + - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2066,33 +1624,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } + - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2104,38 +1653,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } + - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2143,38 +1682,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2182,33 +1711,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2220,38 +1740,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } + - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2259,38 +1769,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } + - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2298,38 +1798,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } + - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2337,33 +1827,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2375,33 +1856,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } + - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2413,38 +1885,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2452,33 +1914,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } + - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2490,33 +1943,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2528,33 +1972,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } + - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2566,33 +2001,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2604,33 +2030,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } + - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2642,31 +2059,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2674,38 +2088,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } + - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2713,38 +2117,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2752,38 +2146,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } + - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2791,38 +2175,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2830,38 +2204,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2869,33 +2233,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2907,33 +2262,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } + - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -2945,38 +2291,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } + - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2984,38 +2320,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3023,33 +2349,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -3061,38 +2378,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3100,38 +2407,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3139,38 +2436,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } + - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3178,38 +2465,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } + - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3217,33 +2494,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -3255,33 +2523,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } + - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -3293,25 +2552,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -3323,5 +2577,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index f850348bd..1853bc3d3 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,926 +2,534 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 7ecf34888..d49c224cf 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,25 +1,16 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -32,7 +23,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -42,10 +33,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION, + "X-Client-Version": VERSION }, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -66,13 +57,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -80,7 +70,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -91,19 +81,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -111,16 +97,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -129,28 +108,26 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -162,20 +139,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -187,20 +162,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -212,20 +185,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -237,25 +208,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -263,25 +231,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -289,25 +254,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -315,25 +277,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -341,25 +300,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -367,20 +323,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -392,20 +346,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -417,20 +369,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -442,20 +392,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -467,25 +415,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -493,20 +438,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -518,20 +461,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -543,25 +484,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -569,25 +507,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -595,20 +530,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -620,20 +553,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -645,20 +576,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -670,25 +599,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -696,25 +622,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -722,20 +645,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -747,20 +668,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -772,28 +691,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -801,32 +718,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } + - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -834,32 +744,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -867,32 +770,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } + - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -900,32 +796,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -933,32 +822,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } + - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -966,32 +848,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -999,27 +874,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } + - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1031,32 +900,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1064,32 +926,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } + - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1097,32 +952,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1130,32 +978,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } + - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1163,32 +1004,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { - if (!this.stamper) { + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } + + + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1196,32 +1030,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } + - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1229,27 +1056,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1261,27 +1082,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } + - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1293,32 +1108,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1326,32 +1134,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } + - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1359,32 +1160,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } + - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1392,32 +1186,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } + - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1425,32 +1212,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } + - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1458,27 +1238,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1490,32 +1264,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1523,32 +1290,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1556,32 +1316,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } + - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1589,32 +1342,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1622,27 +1368,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } + - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1654,27 +1394,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -1686,27 +1420,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } + - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -1718,32 +1446,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } + - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1751,27 +1472,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1783,32 +1498,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } + - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1816,32 +1524,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } + - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1849,27 +1550,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } + - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1881,32 +1576,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1914,32 +1602,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } + - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1947,32 +1628,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } + - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1980,27 +1654,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } + - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2012,27 +1680,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } + - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2044,32 +1706,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2077,27 +1732,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } + - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2109,27 +1758,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } + - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2141,27 +1784,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } + - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2173,27 +1810,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2205,27 +1836,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } + - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2237,28 +1862,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2266,32 +1889,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } + - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2299,32 +1915,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } + - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2332,32 +1941,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } + - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2365,32 +1967,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } + - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2398,32 +1993,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2431,27 +2019,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } + - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2463,27 +2045,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } + - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -2495,32 +2071,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } + - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2528,32 +2097,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2561,27 +2123,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } + - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2593,32 +2149,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } + - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2626,32 +2175,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2659,32 +2201,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } + - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2692,32 +2227,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } + - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2725,27 +2253,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } + - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2757,27 +2279,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } + - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2789,20 +2305,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -2814,5 +2328,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index f850348bd..1853bc3d3 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,926 +2,534 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file From 501da72b6f6710f74ca704ce2380251864590e18 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sat, 28 Jun 2025 14:58:47 -0400 Subject: [PATCH 29/42] chore: prettier --- .../src/pages/index.module.css | 5 +- .../src/pages/index.module.css | 3 +- .../public/v1/public_api.client.ts | 286 +- .../public/v1/public_api.fetcher.ts | 178 +- .../src/__generated__/sdk-client-base.ts | 2751 +++++++++++------ .../src/__generated__/sdk_api_types.ts | 758 +++-- .../src/__generated__/sdk-client-base.ts | 2485 +++++++++------ .../src/__generated__/sdk_api_types.ts | 758 +++-- 8 files changed, 4620 insertions(+), 2604 deletions(-) diff --git a/examples/wallet-import-export/src/pages/index.module.css b/examples/wallet-import-export/src/pages/index.module.css index 0ee703808..43d32d14d 100644 --- a/examples/wallet-import-export/src/pages/index.module.css +++ b/examples/wallet-import-export/src/pages/index.module.css @@ -103,8 +103,9 @@ display: flex; gap: 12px; justify-content: baseline; - font-family: "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, - Consolas, "Liberation Mono", monospace; + font-family: + "iA Writer Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, + "Liberation Mono", monospace; } .buttons { diff --git a/examples/with-federated-passkeys/src/pages/index.module.css b/examples/with-federated-passkeys/src/pages/index.module.css index 876b2f269..3ebc007bd 100644 --- a/examples/with-federated-passkeys/src/pages/index.module.css +++ b/examples/with-federated-passkeys/src/pages/index.module.css @@ -85,7 +85,8 @@ .td { /* From https://qwtel.com/posts/software/the-monospaced-system-ui-css-font-stack/ */ - font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", + font-family: + ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace; padding: 10px; diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 459c4eb7d..e73cd3260 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -341,7 +341,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +380,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +391,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +465,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +476,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +496,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +507,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +527,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +538,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +558,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +569,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +590,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +601,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +621,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +632,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +680,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +691,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -765,7 +765,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +776,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +796,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +807,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +827,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +838,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +858,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +869,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +890,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +901,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -921,7 +921,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +932,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +952,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +963,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1010,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1021,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1042,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1053,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1128,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1139,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1159,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1170,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1190,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1201,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1233,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1254,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1265,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1286,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1297,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1318,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1329,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1349,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1360,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1391,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1423,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1444,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1455,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1476,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1487,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1508,7 +1508,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1519,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1540,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1551,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1571,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1582,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1602,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1613,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1633,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1644,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1665,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1676,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1696,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1707,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1728,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1739,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1759,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1770,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1791,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1802,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1822,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1833,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1854,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1865,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1886,7 +1886,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +1897,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +1918,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +1929,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +1949,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +1960,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +1980,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +1991,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2038,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2049,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2070,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2081,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2101,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2112,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2165,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2176,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2196,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2207,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2227,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2238,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2259,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2270,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2489,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2500,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2520,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2531,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2551,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2562,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2583,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2594,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2615,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2626,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2646,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2657,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2677,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2688,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2735,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2746,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2766,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2777,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2798,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2809,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2857,7 +2857,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -2868,7 +2868,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +2982,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +2993,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3040,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3051,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 1bb49db2f..28940c80b 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -585,7 +585,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +631,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +683,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +729,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +775,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +827,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +873,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -919,7 +919,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +965,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1011,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1063,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1115,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1161,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1207,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1253,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1299,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1351,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1403,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1455,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1507,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1553,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1599,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1651,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1703,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1755,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1809,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1861,7 +1861,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +1907,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +1953,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +1999,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2051,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2097,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2149,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2201,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2253,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2299,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2351,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2403,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2455,7 +2455,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2501,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2547,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2593,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2639,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2691,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2737,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +2789,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +2841,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +2887,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +2933,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +2985,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3037,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3083,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3129,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3181,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3227,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3273,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3319,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3365,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3411,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3457,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3492,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3513,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3567,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3613,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3659,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3705,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3751,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +3797,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +3849,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +3901,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +3947,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -3993,7 +3993,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4039,7 +4039,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4091,7 +4091,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4137,7 +4137,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4183,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4229,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4300,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 19db879bb..787da3b70 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,10 +1,20 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -14,7 +24,6 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -29,27 +38,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION - } + "X-Client-Version": VERSION, + }; if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue + headers[stamp.stampHeaderName] = stamp.stampHeaderValue; } - if (this.config.readOnlySession){ - headers["X-Session"] = this.config.readOnlySession + if (this.config.readOnlySession) { + headers["X-Session"] = this.config.readOnlySession; } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -70,12 +79,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -83,7 +93,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -94,15 +104,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -110,9 +124,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -121,28 +142,33 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -154,20 +180,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -179,20 +210,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -204,20 +240,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -229,24 +270,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,24 +301,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -279,24 +332,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -304,24 +363,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -329,24 +394,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -354,20 +425,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -379,20 +455,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -404,20 +485,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -429,20 +515,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -454,24 +545,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -479,20 +576,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -504,20 +606,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -529,24 +636,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -554,24 +667,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -579,20 +698,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -604,20 +728,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -629,20 +758,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -654,24 +788,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -679,24 +819,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -704,20 +850,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -729,20 +880,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -754,28 +910,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -783,28 +942,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -812,28 +981,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -841,28 +1020,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -870,28 +1059,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -899,28 +1098,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -928,28 +1137,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -957,24 +1176,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -986,28 +1214,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1015,28 +1253,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1044,28 +1292,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1073,28 +1331,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1102,28 +1370,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1131,28 +1409,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1160,24 +1448,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1189,24 +1486,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1218,28 +1524,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1247,28 +1563,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1276,28 +1602,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1305,28 +1641,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1334,28 +1680,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1363,24 +1719,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1392,28 +1757,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1421,28 +1796,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1450,28 +1835,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1479,28 +1874,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1508,24 +1913,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1537,24 +1951,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1566,24 +1989,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1595,28 +2027,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1624,24 +2066,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1653,28 +2104,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1682,28 +2143,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1711,24 +2182,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1740,28 +2220,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1769,28 +2259,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1798,28 +2298,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1827,24 +2337,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1856,24 +2375,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1885,28 +2413,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1914,24 +2452,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1943,24 +2490,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1972,24 +2528,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2001,24 +2566,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2030,24 +2604,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2059,28 +2642,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2088,28 +2674,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2117,28 +2713,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2146,28 +2752,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2175,28 +2791,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2204,28 +2830,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2233,24 +2869,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2262,24 +2907,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2291,28 +2945,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2320,28 +2984,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2349,24 +3023,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2378,28 +3061,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2407,28 +3100,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2436,28 +3139,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2465,28 +3178,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2494,24 +3217,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2523,24 +3255,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2552,20 +3293,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } + }; - - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2577,6 +3323,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index 1853bc3d3..f850348bd 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,534 +2,926 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index d49c224cf..7ecf34888 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,16 +1,25 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -23,7 +32,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -33,10 +42,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION + "X-Client-Version": VERSION, }, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -57,12 +66,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -70,7 +80,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -81,15 +91,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -97,9 +111,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -108,26 +129,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -139,18 +162,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -162,18 +187,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -185,18 +212,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -208,22 +237,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -231,22 +263,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,22 +289,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -277,22 +315,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -300,22 +341,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -323,18 +367,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -346,18 +392,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -369,18 +417,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -392,18 +442,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -415,22 +467,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -438,18 +493,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -461,18 +518,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -484,22 +543,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -507,22 +569,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -530,18 +595,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -553,18 +620,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -576,18 +645,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -599,22 +670,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -622,22 +696,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -645,18 +722,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -668,18 +747,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -691,26 +772,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -718,25 +801,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -744,25 +834,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -770,25 +867,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -796,25 +900,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -822,25 +933,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -848,25 +966,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -874,21 +999,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -900,25 +1031,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -926,25 +1064,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -952,25 +1097,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -978,25 +1130,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1004,25 +1163,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - - - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; + + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1030,25 +1196,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1056,21 +1229,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1082,21 +1261,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1108,25 +1293,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1134,25 +1326,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1160,25 +1359,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1186,25 +1392,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1212,25 +1425,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1238,21 +1458,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1264,25 +1490,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1290,25 +1523,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1316,25 +1556,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1342,25 +1589,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1368,21 +1622,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1394,21 +1654,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1420,21 +1686,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1446,25 +1718,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1472,21 +1751,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1498,25 +1783,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1524,25 +1816,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1550,21 +1849,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1576,25 +1881,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1602,25 +1914,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1628,25 +1947,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1654,21 +1980,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1680,21 +2012,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1706,25 +2044,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1732,21 +2077,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1758,21 +2109,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1784,21 +2141,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1810,21 +2173,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1836,21 +2205,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1862,26 +2237,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1889,25 +2266,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1915,25 +2299,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1941,25 +2332,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1967,25 +2365,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1993,25 +2398,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2019,21 +2431,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2045,21 +2463,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2071,25 +2495,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2097,25 +2528,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2123,21 +2561,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2149,25 +2593,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2175,25 +2626,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2201,25 +2659,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2227,25 +2692,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2253,21 +2725,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2279,21 +2757,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2305,18 +2789,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2328,6 +2814,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index 1853bc3d3..f850348bd 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,534 +2,926 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; From 5dd4d9370e07373b29daf45a40f657d0260af615 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 8 Jul 2025 14:30:10 -0400 Subject: [PATCH 30/42] codegen --- .../src/app/dashboard/OnRamp.tsx | 8 +- .../public/v1/public_api.client.ts | 439 ++- .../public/v1/public_api.fetcher.ts | 402 ++- .../public/v1/public_api.swagger.json | 346 +- .../coordinator/public/v1/public_api.types.ts | 177 +- .../src/__generated__/sdk-client-base.ts | 2859 +++++++---------- .../src/__generated__/sdk_api_types.ts | 782 ++--- .../src/__inputs__/public_api.swagger.json | 346 +- .../src/__inputs__/public_api.types.ts | 177 +- .../src/__generated__/sdk-client-base.ts | 2585 +++++++-------- .../src/__generated__/sdk_api_types.ts | 782 ++--- .../src/__inputs__/public_api.swagger.json | 346 +- .../src/__inputs__/public_api.types.ts | 177 +- 13 files changed, 4800 insertions(+), 4626 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 5e5f8cbab..07a92da4f 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -21,7 +21,7 @@ export const OnRamp = () => { const ethToken: Token = { name: "ETH", - address: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + address: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", symbol: "ETH", decimals: 6, chainId: 8453, @@ -66,7 +66,7 @@ export const OnRamp = () => { const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", - walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", @@ -148,7 +148,7 @@ export const OnRamp = () => { await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", - walletAddress: "0x652bd17D489F283A03bb52DAFa138764Be04Bc66", + walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", @@ -156,7 +156,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse, + initMoonPayFiatOnRampResponse ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index e73cd3260..933da4daa 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -47,6 +47,10 @@ import type { TGetPrivateKeyBody, TGetPrivateKeyResponse, } from "./public_api.fetcher"; +import type { + TGetSmartContractInterfaceBody, + TGetSmartContractInterfaceResponse, +} from "./public_api.fetcher"; import type { TGetUserBody, TGetUserResponse } from "./public_api.fetcher"; import type { TGetWalletBody, TGetWalletResponse } from "./public_api.fetcher"; import type { @@ -69,6 +73,10 @@ import type { TGetPrivateKeysBody, TGetPrivateKeysResponse, } from "./public_api.fetcher"; +import type { + TGetSmartContractInterfacesBody, + TGetSmartContractInterfacesResponse, +} from "./public_api.fetcher"; import type { TGetSubOrgIdsBody, TGetSubOrgIdsResponse, @@ -139,6 +147,10 @@ import type { TCreateReadWriteSessionBody, TCreateReadWriteSessionResponse, } from "./public_api.fetcher"; +import type { + TCreateSmartContractInterfaceBody, + TCreateSmartContractInterfaceResponse, +} from "./public_api.fetcher"; import type { TCreateSubOrganizationBody, TCreateSubOrganizationResponse, @@ -187,6 +199,10 @@ import type { TDeletePrivateKeysBody, TDeletePrivateKeysResponse, } from "./public_api.fetcher"; +import type { + TDeleteSmartContractInterfaceBody, + TDeleteSmartContractInterfaceResponse, +} from "./public_api.fetcher"; import type { TDeleteSubOrganizationBody, TDeleteSubOrganizationResponse, @@ -341,7 +357,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -380,7 +396,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -391,7 +407,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -465,7 +481,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -476,7 +492,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -496,7 +512,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -507,7 +523,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -527,7 +543,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -538,7 +554,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -558,7 +574,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -569,7 +585,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -590,7 +606,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -601,7 +617,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -621,7 +637,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -632,7 +648,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -680,7 +696,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -691,7 +707,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -703,6 +719,38 @@ export class TurnkeyClient { }; }; + /** + * Get details about a Smart Contract Interface + * + * Sign the provided `TGetSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_smart_contract_interface). + * + * See also {@link stampGetSmartContractInterface}. + */ + getSmartContractInterface = async ( + input: TGetSmartContractInterfaceBody + ): Promise => { + return this.request("/public/v1/query/get_smart_contract_interface", input); + }; + + /** + * Produce a `SignedRequest` from `TGetSmartContractInterfaceBody` by using the client's `stamp` function. + * + * See also {@link GetSmartContractInterface}. + */ + stampGetSmartContractInterface = async ( + input: TGetSmartContractInterfaceBody + ): Promise => { + const fullUrl = + this.config.baseUrl + "/public/v1/query/get_smart_contract_interface"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + /** * Get details about a User * @@ -765,7 +813,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -776,7 +824,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -796,7 +844,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -807,7 +855,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -827,7 +875,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -838,7 +886,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -858,7 +906,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -869,7 +917,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -890,7 +938,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -901,7 +949,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -913,6 +961,41 @@ export class TurnkeyClient { }; }; + /** + * List all Smart Contract Interfaces within an Organization + * + * Sign the provided `TGetSmartContractInterfacesBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_smart_contract_interfaces). + * + * See also {@link stampGetSmartContractInterfaces}. + */ + getSmartContractInterfaces = async ( + input: TGetSmartContractInterfacesBody + ): Promise => { + return this.request( + "/public/v1/query/list_smart_contract_interfaces", + input + ); + }; + + /** + * Produce a `SignedRequest` from `TGetSmartContractInterfacesBody` by using the client's `stamp` function. + * + * See also {@link GetSmartContractInterfaces}. + */ + stampGetSmartContractInterfaces = async ( + input: TGetSmartContractInterfacesBody + ): Promise => { + const fullUrl = + this.config.baseUrl + "/public/v1/query/list_smart_contract_interfaces"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + /** * Get all suborg IDs associated given a parent org ID and an optional filter. * @@ -921,7 +1004,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -932,7 +1015,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -952,7 +1035,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -963,7 +1046,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1010,7 +1093,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1021,7 +1104,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1042,7 +1125,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1053,7 +1136,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1128,7 +1211,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1139,7 +1222,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1159,7 +1242,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1170,7 +1253,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1190,7 +1273,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1201,7 +1284,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1222,7 +1305,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1233,7 +1316,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1254,7 +1337,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1265,7 +1348,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1286,7 +1369,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1297,7 +1380,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1318,7 +1401,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1329,7 +1412,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1349,7 +1432,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1360,7 +1443,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1380,7 +1463,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1391,7 +1474,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1412,7 +1495,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1423,7 +1506,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1444,7 +1527,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1455,7 +1538,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1476,7 +1559,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1487,7 +1570,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1500,6 +1583,41 @@ export class TurnkeyClient { }; }; + /** + * Create an ABI/IDL in JSON + * + * Sign the provided `TCreateSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_smart_contract_interface). + * + * See also {@link stampCreateSmartContractInterface}. + */ + createSmartContractInterface = async ( + input: TCreateSmartContractInterfaceBody + ): Promise => { + return this.request( + "/public/v1/submit/create_smart_contract_interface", + input + ); + }; + + /** + * Produce a `SignedRequest` from `TCreateSmartContractInterfaceBody` by using the client's `stamp` function. + * + * See also {@link CreateSmartContractInterface}. + */ + stampCreateSmartContractInterface = async ( + input: TCreateSmartContractInterfaceBody + ): Promise => { + const fullUrl = + this.config.baseUrl + "/public/v1/submit/create_smart_contract_interface"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + /** * Create a new Sub-Organization * @@ -1508,7 +1626,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1519,7 +1637,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1540,7 +1658,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1551,7 +1669,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1571,7 +1689,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1582,7 +1700,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1602,7 +1720,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1613,7 +1731,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1633,7 +1751,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1644,7 +1762,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1665,7 +1783,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1676,7 +1794,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1696,7 +1814,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1707,7 +1825,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1728,7 +1846,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1739,7 +1857,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1759,7 +1877,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1770,7 +1888,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1791,7 +1909,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1802,7 +1920,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1822,7 +1940,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1833,7 +1951,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1854,7 +1972,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1865,7 +1983,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -1878,6 +1996,41 @@ export class TurnkeyClient { }; }; + /** + * Delete a Smart Contract Interface + * + * Sign the provided `TDeleteSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_smart_contract_interface). + * + * See also {@link stampDeleteSmartContractInterface}. + */ + deleteSmartContractInterface = async ( + input: TDeleteSmartContractInterfaceBody + ): Promise => { + return this.request( + "/public/v1/submit/delete_smart_contract_interface", + input + ); + }; + + /** + * Produce a `SignedRequest` from `TDeleteSmartContractInterfaceBody` by using the client's `stamp` function. + * + * See also {@link DeleteSmartContractInterface}. + */ + stampDeleteSmartContractInterface = async ( + input: TDeleteSmartContractInterfaceBody + ): Promise => { + const fullUrl = + this.config.baseUrl + "/public/v1/submit/delete_smart_contract_interface"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + /** * Deletes a sub organization * @@ -1886,7 +2039,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -1897,7 +2050,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -1918,7 +2071,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -1929,7 +2082,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -1949,7 +2102,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -1960,7 +2113,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -1980,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -1991,7 +2144,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2038,7 +2191,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2049,7 +2202,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2070,7 +2223,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2081,7 +2234,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2101,7 +2254,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2112,7 +2265,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2133,7 +2286,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2144,7 +2297,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2165,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2176,7 +2329,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2196,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2207,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2227,7 +2380,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2238,7 +2391,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2259,7 +2412,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2270,7 +2423,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2318,7 +2471,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2329,7 +2482,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2349,7 +2502,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2360,7 +2513,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2489,7 +2642,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2500,7 +2653,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2520,7 +2673,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2531,7 +2684,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2551,7 +2704,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2562,7 +2715,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2583,7 +2736,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2594,7 +2747,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2615,7 +2768,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2626,7 +2779,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2646,7 +2799,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2657,7 +2810,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2677,7 +2830,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2688,7 +2841,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2735,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2746,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2766,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2777,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2798,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2809,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -2857,7 +3010,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -2868,7 +3021,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -2888,7 +3041,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -2899,7 +3052,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -2919,7 +3072,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -2930,7 +3083,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -2951,7 +3104,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -2962,7 +3115,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -2982,7 +3135,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -2993,7 +3146,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3040,7 +3193,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3051,7 +3204,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index 28940c80b..b6dd75764 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -547,6 +547,62 @@ export const signGetPrivateKey = ( options, }); +/** + * `POST /public/v1/query/get_smart_contract_interface` + */ +export type TGetSmartContractInterfaceResponse = + operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; + +/** + * `POST /public/v1/query/get_smart_contract_interface` + */ +export type TGetSmartContractInterfaceInput = { + body: TGetSmartContractInterfaceBody; +}; + +/** + * `POST /public/v1/query/get_smart_contract_interface` + */ +export type TGetSmartContractInterfaceBody = + operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"]; + +/** + * Get Smart Contract Interface + * + * Get details about a Smart Contract Interface + * + * `POST /public/v1/query/get_smart_contract_interface` + */ +export const getSmartContractInterface = ( + input: TGetSmartContractInterfaceInput +) => + request< + TGetSmartContractInterfaceResponse, + TGetSmartContractInterfaceBody, + never, + never, + never + >({ + uri: "/public/v1/query/get_smart_contract_interface", + method: "POST", + body: input.body, + }); + +/** + * Request a WebAuthn assertion and return a signed `GetSmartContractInterface` request, ready to be POSTed to Turnkey. + * + * See {@link GetSmartContractInterface} + */ +export const signGetSmartContractInterface = ( + input: TGetSmartContractInterfaceInput, + options?: TurnkeyCredentialRequestOptions +) => + signedRequest({ + uri: "/public/v1/query/get_smart_contract_interface", + body: input.body, + options, + }); + /** * `POST /public/v1/query/get_user` */ @@ -585,7 +641,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -631,7 +687,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -683,7 +739,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -729,7 +785,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -775,7 +831,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -827,7 +883,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -873,7 +929,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -881,6 +937,62 @@ export const signGetPrivateKeys = ( options, }); +/** + * `POST /public/v1/query/list_smart_contract_interfaces` + */ +export type TGetSmartContractInterfacesResponse = + operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; + +/** + * `POST /public/v1/query/list_smart_contract_interfaces` + */ +export type TGetSmartContractInterfacesInput = { + body: TGetSmartContractInterfacesBody; +}; + +/** + * `POST /public/v1/query/list_smart_contract_interfaces` + */ +export type TGetSmartContractInterfacesBody = + operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"]; + +/** + * List Smart Contract Interfaces + * + * List all Smart Contract Interfaces within an Organization + * + * `POST /public/v1/query/list_smart_contract_interfaces` + */ +export const getSmartContractInterfaces = ( + input: TGetSmartContractInterfacesInput +) => + request< + TGetSmartContractInterfacesResponse, + TGetSmartContractInterfacesBody, + never, + never, + never + >({ + uri: "/public/v1/query/list_smart_contract_interfaces", + method: "POST", + body: input.body, + }); + +/** + * Request a WebAuthn assertion and return a signed `GetSmartContractInterfaces` request, ready to be POSTed to Turnkey. + * + * See {@link GetSmartContractInterfaces} + */ +export const signGetSmartContractInterfaces = ( + input: TGetSmartContractInterfacesInput, + options?: TurnkeyCredentialRequestOptions +) => + signedRequest({ + uri: "/public/v1/query/list_smart_contract_interfaces", + body: input.body, + options, + }); + /** * `POST /public/v1/query/list_suborgs` */ @@ -919,7 +1031,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -965,7 +1077,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1011,7 +1123,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1063,7 +1175,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1115,7 +1227,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1161,7 +1273,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1207,7 +1319,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1253,7 +1365,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1299,7 +1411,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1351,7 +1463,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1403,7 +1515,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1455,7 +1567,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1507,7 +1619,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1553,7 +1665,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1599,7 +1711,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1651,7 +1763,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1703,7 +1815,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1755,7 +1867,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1809,7 +1921,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1817,6 +1929,62 @@ export const signCreateReadWriteSession = ( options, }); +/** + * `POST /public/v1/submit/create_smart_contract_interface` + */ +export type TCreateSmartContractInterfaceResponse = + operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]; + +/** + * `POST /public/v1/submit/create_smart_contract_interface` + */ +export type TCreateSmartContractInterfaceInput = { + body: TCreateSmartContractInterfaceBody; +}; + +/** + * `POST /public/v1/submit/create_smart_contract_interface` + */ +export type TCreateSmartContractInterfaceBody = + operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]; + +/** + * Create Smart Contract Interface + * + * Create an ABI/IDL in JSON + * + * `POST /public/v1/submit/create_smart_contract_interface` + */ +export const createSmartContractInterface = ( + input: TCreateSmartContractInterfaceInput +) => + request< + TCreateSmartContractInterfaceResponse, + TCreateSmartContractInterfaceBody, + never, + never, + never + >({ + uri: "/public/v1/submit/create_smart_contract_interface", + method: "POST", + body: input.body, + }); + +/** + * Request a WebAuthn assertion and return a signed `CreateSmartContractInterface` request, ready to be POSTed to Turnkey. + * + * See {@link CreateSmartContractInterface} + */ +export const signCreateSmartContractInterface = ( + input: TCreateSmartContractInterfaceInput, + options?: TurnkeyCredentialRequestOptions +) => + signedRequest({ + uri: "/public/v1/submit/create_smart_contract_interface", + body: input.body, + options, + }); + /** * `POST /public/v1/submit/create_sub_organization` */ @@ -1861,7 +2029,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -1907,7 +2075,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -1953,7 +2121,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -1999,7 +2167,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2051,7 +2219,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2097,7 +2265,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2149,7 +2317,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2201,7 +2369,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2253,7 +2421,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2299,7 +2467,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2351,7 +2519,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2403,7 +2571,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2411,6 +2579,62 @@ export const signDeletePrivateKeys = ( options, }); +/** + * `POST /public/v1/submit/delete_smart_contract_interface` + */ +export type TDeleteSmartContractInterfaceResponse = + operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]; + +/** + * `POST /public/v1/submit/delete_smart_contract_interface` + */ +export type TDeleteSmartContractInterfaceInput = { + body: TDeleteSmartContractInterfaceBody; +}; + +/** + * `POST /public/v1/submit/delete_smart_contract_interface` + */ +export type TDeleteSmartContractInterfaceBody = + operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]; + +/** + * Create Smart Contract Interface + * + * Delete a Smart Contract Interface + * + * `POST /public/v1/submit/delete_smart_contract_interface` + */ +export const deleteSmartContractInterface = ( + input: TDeleteSmartContractInterfaceInput +) => + request< + TDeleteSmartContractInterfaceResponse, + TDeleteSmartContractInterfaceBody, + never, + never, + never + >({ + uri: "/public/v1/submit/delete_smart_contract_interface", + method: "POST", + body: input.body, + }); + +/** + * Request a WebAuthn assertion and return a signed `DeleteSmartContractInterface` request, ready to be POSTed to Turnkey. + * + * See {@link DeleteSmartContractInterface} + */ +export const signDeleteSmartContractInterface = ( + input: TDeleteSmartContractInterfaceInput, + options?: TurnkeyCredentialRequestOptions +) => + signedRequest({ + uri: "/public/v1/submit/delete_smart_contract_interface", + body: input.body, + options, + }); + /** * `POST /public/v1/submit/delete_sub_organization` */ @@ -2455,7 +2679,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2501,7 +2725,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2547,7 +2771,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2593,7 +2817,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2639,7 +2863,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2691,7 +2915,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2737,7 +2961,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -2789,7 +3013,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -2841,7 +3065,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -2887,7 +3111,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -2933,7 +3157,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -2985,7 +3209,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3037,7 +3261,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3083,7 +3307,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3129,7 +3353,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3181,7 +3405,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3227,7 +3451,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3273,7 +3497,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3319,7 +3543,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3365,7 +3589,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3411,7 +3635,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3457,7 +3681,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3492,7 +3716,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3513,7 +3737,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3567,7 +3791,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3613,7 +3837,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3659,7 +3883,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3705,7 +3929,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3751,7 +3975,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -3797,7 +4021,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -3849,7 +4073,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -3901,7 +4125,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -3947,7 +4171,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -3993,7 +4217,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4039,7 +4263,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4091,7 +4315,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4137,7 +4361,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4183,7 +4407,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4229,7 +4453,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4300,7 +4524,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 7f1b064a3..c43663bba 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -420,6 +420,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/get_smart_contract_interface": { + "post": { + "summary": "Get Smart Contract Interface", + "description": "Get details about a Smart Contract Interface", + "operationId": "PublicApiService_GetSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/get_user": { "post": { "summary": "Get User", @@ -644,6 +676,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/list_smart_contract_interfaces": { + "post": { + "summary": "List Smart Contract Interfaces", + "description": "List all Smart Contract Interfaces within an Organization", + "operationId": "PublicApiService_GetSmartContractInterfaces", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/list_suborgs": { "post": { "summary": "Get Suborgs", @@ -1252,6 +1316,38 @@ "tags": ["Sessions"] } }, + "/public/v1/submit/create_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Create an ABI/IDL in JSON", + "operationId": "PublicApiService_CreateSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/create_sub_organization": { "post": { "summary": "Create Sub-Organization", @@ -1636,6 +1732,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/submit/delete_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Delete a Smart Contract Interface", + "operationId": "PublicApiService_DeleteSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/delete_sub_organization": { "post": { "summary": "Delete Sub Organization", @@ -3393,7 +3521,9 @@ "ACTIVITY_TYPE_UPDATE_USER_NAME", "ACTIVITY_TYPE_UPDATE_USER_EMAIL", "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" ] }, "v1AddressFormat": { @@ -4568,6 +4698,62 @@ "credentialBundle" ] }, + "v1CreateSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractAddress": { + "type": "string", + "description": "Corresponding contract address or program ID" + }, + "smartContractInterface": { + "type": "string", + "description": "ABI/IDL as a JSON string" + }, + "type": { + "$ref": "#/definitions/v1SmartContractInterfaceType" + }, + "label": { + "type": "string", + "description": "Human-readable name for a Smart Contract Interface." + }, + "notes": { + "type": "string", + "description": "Notes for a Smart Contract Interface." + } + }, + "required": ["smartContractAddress", "smartContractInterface", "type"] + }, + "v1CreateSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1CreateSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the created Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1CreateSubOrganizationIntent": { "type": "object", "properties": { @@ -5552,6 +5738,47 @@ }, "required": ["privateKeyIds"] }, + "v1DeleteSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of a Smart Contract Interface intended for deletion." + } + }, + "required": ["smartContractInterfaceId"] + }, + "v1DeleteSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1DeleteSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the deleted Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1DeleteSubOrganizationIntent": { "type": "object", "properties": { @@ -6517,6 +6744,54 @@ }, "required": ["privateKeys"] }, + "v1GetSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface." + } + }, + "required": ["organizationId", "smartContractInterfaceId"] + }, + "v1GetSmartContractInterfaceResponse": { + "type": "object", + "properties": { + "smartContractInterface": { + "$ref": "#/definitions/v1SmartContractInterface", + "description": "Object to be used in conjunction with Policies to guard transaction signing." + } + }, + "required": ["smartContractInterface"] + }, + "v1GetSmartContractInterfacesRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + } + }, + "required": ["organizationId"] + }, + "v1GetSmartContractInterfacesResponse": { + "type": "object", + "properties": { + "smartContractInterfaces": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterface" + }, + "description": "A list of Smart Contract Interfaces." + } + }, + "required": ["smartContractInterfaces"] + }, "v1GetSubOrgIdsRequest": { "type": "object", "properties": { @@ -7629,6 +7904,12 @@ }, "initFiatOnRampIntent": { "$ref": "#/definitions/v1InitFiatOnRampIntent" + }, + "createSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + }, + "deleteSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" } } }, @@ -8740,6 +9021,12 @@ }, "initFiatOnRampResult": { "$ref": "#/definitions/v1InitFiatOnRampResult" + }, + "createSmartContractInterfaceResult": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceResult" + }, + "deleteSmartContractInterfaceResult": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceResult" } } }, @@ -9190,6 +9477,63 @@ } } }, + "v1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "contractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "interface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "contractAddress", + "interface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, + "v1SmartContractInterfaceType": { + "type": "string", + "enum": [ + "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM", + "SMART_CONTRACT_INTERFACE_TYPE_SOLANA" + ] + }, "v1SmsCustomizationParams": { "type": "object", "properties": { diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index f83e9d833..d5554bca2 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -48,6 +48,10 @@ export type paths = { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; }; + "/public/v1/query/get_smart_contract_interface": { + /** Get details about a Smart Contract Interface */ + post: operations["PublicApiService_GetSmartContractInterface"]; + }; "/public/v1/query/get_user": { /** Get details about a User */ post: operations["PublicApiService_GetUser"]; @@ -76,6 +80,10 @@ export type paths = { /** List all Private Keys within an Organization */ post: operations["PublicApiService_GetPrivateKeys"]; }; + "/public/v1/query/list_smart_contract_interfaces": { + /** List all Smart Contract Interfaces within an Organization */ + post: operations["PublicApiService_GetSmartContractInterfaces"]; + }; "/public/v1/query/list_suborgs": { /** Get all suborg IDs associated given a parent org ID and an optional filter. */ post: operations["PublicApiService_GetSubOrgIds"]; @@ -152,6 +160,10 @@ export type paths = { /** Create a read write session for a user */ post: operations["PublicApiService_CreateReadWriteSession"]; }; + "/public/v1/submit/create_smart_contract_interface": { + /** Create an ABI/IDL in JSON */ + post: operations["PublicApiService_CreateSmartContractInterface"]; + }; "/public/v1/submit/create_sub_organization": { /** Create a new Sub-Organization */ post: operations["PublicApiService_CreateSubOrganization"]; @@ -200,6 +212,10 @@ export type paths = { /** Deletes private keys for an organization */ post: operations["PublicApiService_DeletePrivateKeys"]; }; + "/public/v1/submit/delete_smart_contract_interface": { + /** Delete a Smart Contract Interface */ + post: operations["PublicApiService_DeleteSmartContractInterface"]; + }; "/public/v1/submit/delete_sub_organization": { /** Deletes a sub organization */ post: operations["PublicApiService_DeleteSubOrganization"]; @@ -613,7 +629,9 @@ export type definitions = { | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP"; + | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; /** @enum {string} */ v1AddressFormat: | "ADDRESS_FORMAT_UNCOMPRESSED" @@ -1087,6 +1105,30 @@ export type definitions = { /** @description HPKE encrypted credential bundle */ credentialBundle: string; }; + v1CreateSmartContractInterfaceIntent: { + /** @description Corresponding contract address or program ID */ + smartContractAddress: string; + /** @description ABI/IDL as a JSON string */ + smartContractInterface: string; + type: definitions["v1SmartContractInterfaceType"]; + /** @description Human-readable name for a Smart Contract Interface. */ + label?: string; + /** @description Notes for a Smart Contract Interface. */ + notes?: string; + }; + v1CreateSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1CreateSmartContractInterfaceIntent"]; + }; + v1CreateSmartContractInterfaceResult: { + /** @description The ID of the created Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1CreateSubOrganizationIntent: { /** @description Name for this sub-organization */ name: string; @@ -1473,6 +1515,23 @@ export type definitions = { /** @description A list of private key unique identifiers that were removed */ privateKeyIds: string[]; }; + v1DeleteSmartContractInterfaceIntent: { + /** @description The ID of a Smart Contract Interface intended for deletion. */ + smartContractInterfaceId: string; + }; + v1DeleteSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1DeleteSmartContractInterfaceIntent"]; + }; + v1DeleteSmartContractInterfaceResult: { + /** @description The ID of the deleted Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1DeleteSubOrganizationIntent: { /** @description Sub-organization deletion, by default, requires associated wallets and private keys to be exported for security reasons. Set this boolean to true to force sub-organization deletion even if some wallets or private keys within it have not been exported yet. Default: false. */ deleteWithoutExport?: boolean; @@ -1902,6 +1961,24 @@ export type definitions = { /** @description A list of Private Keys. */ privateKeys: definitions["v1PrivateKey"][]; }; + v1GetSmartContractInterfaceRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface. */ + smartContractInterfaceId: string; + }; + v1GetSmartContractInterfaceResponse: { + /** @description Object to be used in conjunction with Policies to guard transaction signing. */ + smartContractInterface: definitions["v1SmartContractInterface"]; + }; + v1GetSmartContractInterfacesRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + }; + v1GetSmartContractInterfacesResponse: { + /** @description A list of Smart Contract Interfaces. */ + smartContractInterfaces: definitions["v1SmartContractInterface"][]; + }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ organizationId: string; @@ -2349,6 +2426,8 @@ export type definitions = { updateUserEmailIntent?: definitions["v1UpdateUserEmailIntent"]; updateUserPhoneNumberIntent?: definitions["v1UpdateUserPhoneNumberIntent"]; initFiatOnRampIntent?: definitions["v1InitFiatOnRampIntent"]; + createSmartContractInterfaceIntent?: definitions["v1CreateSmartContractInterfaceIntent"]; + deleteSmartContractInterfaceIntent?: definitions["v1DeleteSmartContractInterfaceIntent"]; }; v1Invitation: { /** @description Unique identifier for a given Invitation object. */ @@ -2768,6 +2847,8 @@ export type definitions = { updateUserEmailResult?: definitions["v1UpdateUserEmailResult"]; updateUserPhoneNumberResult?: definitions["v1UpdateUserPhoneNumberResult"]; initFiatOnRampResult?: definitions["v1InitFiatOnRampResult"]; + createSmartContractInterfaceResult?: definitions["v1CreateSmartContractInterfaceResult"]; + deleteSmartContractInterfaceResult?: definitions["v1DeleteSmartContractInterfaceResult"]; }; v1RootUserParams: { /** @description Human-readable name for a User. */ @@ -2936,6 +3017,28 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; + v1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + contractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface. */ + interface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; + /** @enum {string} */ + v1SmartContractInterfaceType: + | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" + | "SMART_CONTRACT_INTERFACE_TYPE_SOLANA"; v1SmsCustomizationParams: { /** @description Template containing references to .OtpCode i.e Your OTP is {{.OtpCode}} */ template?: string; @@ -3575,6 +3678,24 @@ export type operations = { }; }; }; + /** Get details about a Smart Contract Interface */ + PublicApiService_GetSmartContractInterface: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfaceResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a User */ PublicApiService_GetUser: { parameters: { @@ -3701,6 +3822,24 @@ export type operations = { }; }; }; + /** List all Smart Contract Interfaces within an Organization */ + PublicApiService_GetSmartContractInterfaces: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfacesRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfacesResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get all suborg IDs associated given a parent org ID and an optional filter. */ PublicApiService_GetSubOrgIds: { parameters: { @@ -4043,6 +4182,24 @@ export type operations = { }; }; }; + /** Create an ABI/IDL in JSON */ + PublicApiService_CreateSmartContractInterface: { + parameters: { + body: { + body: definitions["v1CreateSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Create a new Sub-Organization */ PublicApiService_CreateSubOrganization: { parameters: { @@ -4259,6 +4416,24 @@ export type operations = { }; }; }; + /** Delete a Smart Contract Interface */ + PublicApiService_DeleteSmartContractInterface: { + parameters: { + body: { + body: definitions["v1DeleteSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Deletes a sub organization */ PublicApiService_DeleteSubOrganization: { parameters: { diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 787da3b70..714980d61 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,20 +1,10 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -24,6 +14,7 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -38,27 +29,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION, - }; + "X-Client-Version": VERSION + } if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue; + headers[stamp.stampHeaderName] = stamp.stampHeaderValue } - if (this.config.readOnlySession) { - headers["X-Session"] = this.config.readOnlySession; + if (this.config.readOnlySession){ + headers["X-Session"] = this.config.readOnlySession } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -79,13 +70,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -93,7 +83,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -104,19 +94,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -124,16 +110,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -142,33 +121,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -180,25 +154,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -210,25 +179,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -240,25 +204,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -270,30 +229,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -301,30 +254,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -332,30 +279,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -363,30 +304,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -394,30 +329,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -425,25 +354,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -455,25 +379,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -485,25 +404,45 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + + + getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + return this.request("/public/v1/query/get_smart_contract_interface", { + ...input, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + }); + } + + + stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -515,25 +454,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -545,30 +479,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -576,25 +504,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -606,25 +529,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -636,30 +554,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -667,30 +579,49 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + + + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + return this.request("/public/v1/query/list_smart_contract_interfaces", { + ...input, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + }); + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -698,25 +629,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -728,25 +654,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -758,25 +679,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -788,30 +704,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -819,30 +729,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -850,25 +754,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -880,25 +779,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -910,31 +804,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -942,38 +833,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -981,38 +862,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1020,38 +891,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1059,38 +920,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1098,38 +949,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1137,38 +978,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1176,33 +1007,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1214,38 +1036,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1253,38 +1065,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1292,38 +1094,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1331,38 +1123,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1370,38 +1152,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + + createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; + return this.command("/public/v1/submit/create_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + }, "createSmartContractInterfaceResult"); + } + - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1409,38 +1181,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1448,33 +1210,53 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } + - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } + + + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1486,33 +1268,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1524,38 +1297,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1563,38 +1326,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } + - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1602,38 +1355,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1641,38 +1384,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } + - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1680,38 +1413,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } + - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1719,33 +1442,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1757,38 +1471,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1796,38 +1500,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } + - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1835,38 +1529,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" + }, "deleteSmartContractInterfaceResult"); + } - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + + stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1874,38 +1558,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } + - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1913,33 +1587,53 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } + + + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1951,33 +1645,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } + - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -1989,33 +1674,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } + - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2027,38 +1703,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2066,33 +1732,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } + - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2104,38 +1761,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } + - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2143,38 +1790,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2182,33 +1819,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } + - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2220,38 +1848,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } + - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2259,38 +1877,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2298,38 +1906,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } + - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2337,33 +1935,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2375,33 +1964,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } + - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2413,38 +1993,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2452,33 +2022,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } + - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2490,33 +2051,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } + - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2528,33 +2080,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2566,33 +2109,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2604,33 +2138,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2642,31 +2167,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2674,38 +2196,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2713,38 +2225,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } + - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2752,38 +2254,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } + - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2791,38 +2283,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2830,38 +2312,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2869,33 +2341,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2907,33 +2370,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } + - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -2945,38 +2399,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2984,38 +2428,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3023,33 +2457,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } + - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -3061,38 +2486,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3100,38 +2515,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3139,38 +2544,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3178,38 +2573,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3217,33 +2602,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } + - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -3255,33 +2631,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -3293,25 +2660,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -3323,5 +2685,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index f850348bd..777abe97b 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,926 +2,558 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; + +export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; + +export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; + +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; + +export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; + +export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; + +export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; + +export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; + +export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; + +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; + +export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; + +export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; + +export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 7f1b064a3..c43663bba 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -420,6 +420,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/get_smart_contract_interface": { + "post": { + "summary": "Get Smart Contract Interface", + "description": "Get details about a Smart Contract Interface", + "operationId": "PublicApiService_GetSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/get_user": { "post": { "summary": "Get User", @@ -644,6 +676,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/list_smart_contract_interfaces": { + "post": { + "summary": "List Smart Contract Interfaces", + "description": "List all Smart Contract Interfaces within an Organization", + "operationId": "PublicApiService_GetSmartContractInterfaces", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/list_suborgs": { "post": { "summary": "Get Suborgs", @@ -1252,6 +1316,38 @@ "tags": ["Sessions"] } }, + "/public/v1/submit/create_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Create an ABI/IDL in JSON", + "operationId": "PublicApiService_CreateSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/create_sub_organization": { "post": { "summary": "Create Sub-Organization", @@ -1636,6 +1732,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/submit/delete_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Delete a Smart Contract Interface", + "operationId": "PublicApiService_DeleteSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/delete_sub_organization": { "post": { "summary": "Delete Sub Organization", @@ -3393,7 +3521,9 @@ "ACTIVITY_TYPE_UPDATE_USER_NAME", "ACTIVITY_TYPE_UPDATE_USER_EMAIL", "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" ] }, "v1AddressFormat": { @@ -4568,6 +4698,62 @@ "credentialBundle" ] }, + "v1CreateSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractAddress": { + "type": "string", + "description": "Corresponding contract address or program ID" + }, + "smartContractInterface": { + "type": "string", + "description": "ABI/IDL as a JSON string" + }, + "type": { + "$ref": "#/definitions/v1SmartContractInterfaceType" + }, + "label": { + "type": "string", + "description": "Human-readable name for a Smart Contract Interface." + }, + "notes": { + "type": "string", + "description": "Notes for a Smart Contract Interface." + } + }, + "required": ["smartContractAddress", "smartContractInterface", "type"] + }, + "v1CreateSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1CreateSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the created Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1CreateSubOrganizationIntent": { "type": "object", "properties": { @@ -5552,6 +5738,47 @@ }, "required": ["privateKeyIds"] }, + "v1DeleteSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of a Smart Contract Interface intended for deletion." + } + }, + "required": ["smartContractInterfaceId"] + }, + "v1DeleteSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1DeleteSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the deleted Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1DeleteSubOrganizationIntent": { "type": "object", "properties": { @@ -6517,6 +6744,54 @@ }, "required": ["privateKeys"] }, + "v1GetSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface." + } + }, + "required": ["organizationId", "smartContractInterfaceId"] + }, + "v1GetSmartContractInterfaceResponse": { + "type": "object", + "properties": { + "smartContractInterface": { + "$ref": "#/definitions/v1SmartContractInterface", + "description": "Object to be used in conjunction with Policies to guard transaction signing." + } + }, + "required": ["smartContractInterface"] + }, + "v1GetSmartContractInterfacesRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + } + }, + "required": ["organizationId"] + }, + "v1GetSmartContractInterfacesResponse": { + "type": "object", + "properties": { + "smartContractInterfaces": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterface" + }, + "description": "A list of Smart Contract Interfaces." + } + }, + "required": ["smartContractInterfaces"] + }, "v1GetSubOrgIdsRequest": { "type": "object", "properties": { @@ -7629,6 +7904,12 @@ }, "initFiatOnRampIntent": { "$ref": "#/definitions/v1InitFiatOnRampIntent" + }, + "createSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + }, + "deleteSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" } } }, @@ -8740,6 +9021,12 @@ }, "initFiatOnRampResult": { "$ref": "#/definitions/v1InitFiatOnRampResult" + }, + "createSmartContractInterfaceResult": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceResult" + }, + "deleteSmartContractInterfaceResult": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceResult" } } }, @@ -9190,6 +9477,63 @@ } } }, + "v1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "contractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "interface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "contractAddress", + "interface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, + "v1SmartContractInterfaceType": { + "type": "string", + "enum": [ + "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM", + "SMART_CONTRACT_INTERFACE_TYPE_SOLANA" + ] + }, "v1SmsCustomizationParams": { "type": "object", "properties": { diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index f83e9d833..d5554bca2 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -48,6 +48,10 @@ export type paths = { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; }; + "/public/v1/query/get_smart_contract_interface": { + /** Get details about a Smart Contract Interface */ + post: operations["PublicApiService_GetSmartContractInterface"]; + }; "/public/v1/query/get_user": { /** Get details about a User */ post: operations["PublicApiService_GetUser"]; @@ -76,6 +80,10 @@ export type paths = { /** List all Private Keys within an Organization */ post: operations["PublicApiService_GetPrivateKeys"]; }; + "/public/v1/query/list_smart_contract_interfaces": { + /** List all Smart Contract Interfaces within an Organization */ + post: operations["PublicApiService_GetSmartContractInterfaces"]; + }; "/public/v1/query/list_suborgs": { /** Get all suborg IDs associated given a parent org ID and an optional filter. */ post: operations["PublicApiService_GetSubOrgIds"]; @@ -152,6 +160,10 @@ export type paths = { /** Create a read write session for a user */ post: operations["PublicApiService_CreateReadWriteSession"]; }; + "/public/v1/submit/create_smart_contract_interface": { + /** Create an ABI/IDL in JSON */ + post: operations["PublicApiService_CreateSmartContractInterface"]; + }; "/public/v1/submit/create_sub_organization": { /** Create a new Sub-Organization */ post: operations["PublicApiService_CreateSubOrganization"]; @@ -200,6 +212,10 @@ export type paths = { /** Deletes private keys for an organization */ post: operations["PublicApiService_DeletePrivateKeys"]; }; + "/public/v1/submit/delete_smart_contract_interface": { + /** Delete a Smart Contract Interface */ + post: operations["PublicApiService_DeleteSmartContractInterface"]; + }; "/public/v1/submit/delete_sub_organization": { /** Deletes a sub organization */ post: operations["PublicApiService_DeleteSubOrganization"]; @@ -613,7 +629,9 @@ export type definitions = { | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP"; + | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; /** @enum {string} */ v1AddressFormat: | "ADDRESS_FORMAT_UNCOMPRESSED" @@ -1087,6 +1105,30 @@ export type definitions = { /** @description HPKE encrypted credential bundle */ credentialBundle: string; }; + v1CreateSmartContractInterfaceIntent: { + /** @description Corresponding contract address or program ID */ + smartContractAddress: string; + /** @description ABI/IDL as a JSON string */ + smartContractInterface: string; + type: definitions["v1SmartContractInterfaceType"]; + /** @description Human-readable name for a Smart Contract Interface. */ + label?: string; + /** @description Notes for a Smart Contract Interface. */ + notes?: string; + }; + v1CreateSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1CreateSmartContractInterfaceIntent"]; + }; + v1CreateSmartContractInterfaceResult: { + /** @description The ID of the created Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1CreateSubOrganizationIntent: { /** @description Name for this sub-organization */ name: string; @@ -1473,6 +1515,23 @@ export type definitions = { /** @description A list of private key unique identifiers that were removed */ privateKeyIds: string[]; }; + v1DeleteSmartContractInterfaceIntent: { + /** @description The ID of a Smart Contract Interface intended for deletion. */ + smartContractInterfaceId: string; + }; + v1DeleteSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1DeleteSmartContractInterfaceIntent"]; + }; + v1DeleteSmartContractInterfaceResult: { + /** @description The ID of the deleted Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1DeleteSubOrganizationIntent: { /** @description Sub-organization deletion, by default, requires associated wallets and private keys to be exported for security reasons. Set this boolean to true to force sub-organization deletion even if some wallets or private keys within it have not been exported yet. Default: false. */ deleteWithoutExport?: boolean; @@ -1902,6 +1961,24 @@ export type definitions = { /** @description A list of Private Keys. */ privateKeys: definitions["v1PrivateKey"][]; }; + v1GetSmartContractInterfaceRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface. */ + smartContractInterfaceId: string; + }; + v1GetSmartContractInterfaceResponse: { + /** @description Object to be used in conjunction with Policies to guard transaction signing. */ + smartContractInterface: definitions["v1SmartContractInterface"]; + }; + v1GetSmartContractInterfacesRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + }; + v1GetSmartContractInterfacesResponse: { + /** @description A list of Smart Contract Interfaces. */ + smartContractInterfaces: definitions["v1SmartContractInterface"][]; + }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ organizationId: string; @@ -2349,6 +2426,8 @@ export type definitions = { updateUserEmailIntent?: definitions["v1UpdateUserEmailIntent"]; updateUserPhoneNumberIntent?: definitions["v1UpdateUserPhoneNumberIntent"]; initFiatOnRampIntent?: definitions["v1InitFiatOnRampIntent"]; + createSmartContractInterfaceIntent?: definitions["v1CreateSmartContractInterfaceIntent"]; + deleteSmartContractInterfaceIntent?: definitions["v1DeleteSmartContractInterfaceIntent"]; }; v1Invitation: { /** @description Unique identifier for a given Invitation object. */ @@ -2768,6 +2847,8 @@ export type definitions = { updateUserEmailResult?: definitions["v1UpdateUserEmailResult"]; updateUserPhoneNumberResult?: definitions["v1UpdateUserPhoneNumberResult"]; initFiatOnRampResult?: definitions["v1InitFiatOnRampResult"]; + createSmartContractInterfaceResult?: definitions["v1CreateSmartContractInterfaceResult"]; + deleteSmartContractInterfaceResult?: definitions["v1DeleteSmartContractInterfaceResult"]; }; v1RootUserParams: { /** @description Human-readable name for a User. */ @@ -2936,6 +3017,28 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; + v1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + contractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface. */ + interface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; + /** @enum {string} */ + v1SmartContractInterfaceType: + | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" + | "SMART_CONTRACT_INTERFACE_TYPE_SOLANA"; v1SmsCustomizationParams: { /** @description Template containing references to .OtpCode i.e Your OTP is {{.OtpCode}} */ template?: string; @@ -3575,6 +3678,24 @@ export type operations = { }; }; }; + /** Get details about a Smart Contract Interface */ + PublicApiService_GetSmartContractInterface: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfaceResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a User */ PublicApiService_GetUser: { parameters: { @@ -3701,6 +3822,24 @@ export type operations = { }; }; }; + /** List all Smart Contract Interfaces within an Organization */ + PublicApiService_GetSmartContractInterfaces: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfacesRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfacesResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get all suborg IDs associated given a parent org ID and an optional filter. */ PublicApiService_GetSubOrgIds: { parameters: { @@ -4043,6 +4182,24 @@ export type operations = { }; }; }; + /** Create an ABI/IDL in JSON */ + PublicApiService_CreateSmartContractInterface: { + parameters: { + body: { + body: definitions["v1CreateSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Create a new Sub-Organization */ PublicApiService_CreateSubOrganization: { parameters: { @@ -4259,6 +4416,24 @@ export type operations = { }; }; }; + /** Delete a Smart Contract Interface */ + PublicApiService_DeleteSmartContractInterface: { + parameters: { + body: { + body: definitions["v1DeleteSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Deletes a sub organization */ PublicApiService_DeleteSubOrganization: { parameters: { diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 7ecf34888..80ce13532 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,25 +1,16 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -32,7 +23,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -42,10 +33,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION, + "X-Client-Version": VERSION }, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -66,13 +57,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -80,7 +70,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -91,19 +81,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -111,16 +97,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -129,28 +108,26 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -162,20 +139,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -187,20 +162,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -212,20 +185,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -237,25 +208,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -263,25 +231,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -289,25 +254,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -315,25 +277,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -341,25 +300,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -367,20 +323,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -392,20 +346,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -417,20 +369,41 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + + + getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + return this.request("/public/v1/query/get_smart_contract_interface", { + ...input, + organizationId: input.organizationId ?? this.config.organizationId + }); + } + + + stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -442,20 +415,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -467,25 +438,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -493,20 +461,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -518,20 +484,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -543,25 +507,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -569,25 +530,45 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId + }); + } + + + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + return this.request("/public/v1/query/list_smart_contract_interfaces", { + ...input, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -595,20 +576,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -620,20 +599,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -645,20 +622,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -670,25 +645,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -696,25 +668,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -722,20 +691,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -747,20 +714,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -772,28 +737,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -801,32 +764,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } + - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -834,32 +790,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -867,32 +816,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } + - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -900,32 +842,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -933,32 +868,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } + - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -966,32 +894,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -999,27 +920,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } + - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1031,32 +946,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1064,32 +972,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { - const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { - if (!this.stamper) { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } + + + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1097,32 +998,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1130,32 +1024,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1163,32 +1050,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; + return this.command("/public/v1/submit/create_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + }, "createSmartContractInterfaceResult"); + } + - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1196,32 +1076,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1229,27 +1102,47 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } + + + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1261,27 +1154,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } + - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1293,32 +1180,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } + - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1326,32 +1206,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } + - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1359,32 +1232,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1392,32 +1258,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } + - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1425,32 +1284,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1458,27 +1310,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } + - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1490,32 +1336,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1523,32 +1362,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1556,32 +1388,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" + }, "deleteSmartContractInterfaceResult"); + } + - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1589,32 +1414,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } + - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1622,27 +1440,47 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } + - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + } + + + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + const { organizationId, timestampMs, ...rest } = input; + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } + + + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1654,27 +1492,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } + - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -1686,27 +1518,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -1718,32 +1544,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } + - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1751,27 +1570,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } + - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1783,32 +1596,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1816,32 +1622,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } + - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1849,27 +1648,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1881,32 +1674,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } + - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1914,32 +1700,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1947,32 +1726,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } + - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1980,27 +1752,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2012,27 +1778,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } + - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2044,32 +1804,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } + - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2077,27 +1830,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2109,27 +1856,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } + - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2141,27 +1882,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } + - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2173,27 +1908,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2205,27 +1934,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } + - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2237,28 +1960,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2266,32 +1987,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } + - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2299,32 +2013,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } + - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2332,32 +2039,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } + - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2365,32 +2065,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } + - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2398,32 +2091,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2431,27 +2117,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } + - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2463,27 +2143,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } + - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -2495,32 +2169,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } + - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2528,32 +2195,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2561,27 +2221,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } + - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2593,32 +2247,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } + - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2626,32 +2273,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2659,32 +2299,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } + - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2692,32 +2325,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } + - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2725,27 +2351,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } + - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2757,27 +2377,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } + - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2789,20 +2403,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -2814,5 +2426,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index f850348bd..777abe97b 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,926 +2,558 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; + +export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; + +export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; + +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; + +export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; + +export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; + +export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; + +export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; + +export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; + +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; + +export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; + +export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; + +export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 7f1b064a3..c43663bba 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -420,6 +420,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/get_smart_contract_interface": { + "post": { + "summary": "Get Smart Contract Interface", + "description": "Get details about a Smart Contract Interface", + "operationId": "PublicApiService_GetSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/get_user": { "post": { "summary": "Get User", @@ -644,6 +676,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/query/list_smart_contract_interfaces": { + "post": { + "summary": "List Smart Contract Interfaces", + "description": "List all Smart Contract Interfaces within an Organization", + "operationId": "PublicApiService_GetSmartContractInterfaces", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetSmartContractInterfacesRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/query/list_suborgs": { "post": { "summary": "Get Suborgs", @@ -1252,6 +1316,38 @@ "tags": ["Sessions"] } }, + "/public/v1/submit/create_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Create an ABI/IDL in JSON", + "operationId": "PublicApiService_CreateSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/create_sub_organization": { "post": { "summary": "Create Sub-Organization", @@ -1636,6 +1732,38 @@ "tags": ["Private Keys"] } }, + "/public/v1/submit/delete_smart_contract_interface": { + "post": { + "summary": "Create Smart Contract Interface", + "description": "Delete a Smart Contract Interface", + "operationId": "PublicApiService_DeleteSmartContractInterface", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1ActivityResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceRequest" + } + } + ], + "tags": ["Policies"] + } + }, "/public/v1/submit/delete_sub_organization": { "post": { "summary": "Delete Sub Organization", @@ -3393,7 +3521,9 @@ "ACTIVITY_TYPE_UPDATE_USER_NAME", "ACTIVITY_TYPE_UPDATE_USER_EMAIL", "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" ] }, "v1AddressFormat": { @@ -4568,6 +4698,62 @@ "credentialBundle" ] }, + "v1CreateSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractAddress": { + "type": "string", + "description": "Corresponding contract address or program ID" + }, + "smartContractInterface": { + "type": "string", + "description": "ABI/IDL as a JSON string" + }, + "type": { + "$ref": "#/definitions/v1SmartContractInterfaceType" + }, + "label": { + "type": "string", + "description": "Human-readable name for a Smart Contract Interface." + }, + "notes": { + "type": "string", + "description": "Notes for a Smart Contract Interface." + } + }, + "required": ["smartContractAddress", "smartContractInterface", "type"] + }, + "v1CreateSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1CreateSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the created Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1CreateSubOrganizationIntent": { "type": "object", "properties": { @@ -5552,6 +5738,47 @@ }, "required": ["privateKeyIds"] }, + "v1DeleteSmartContractInterfaceIntent": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of a Smart Contract Interface intended for deletion." + } + }, + "required": ["smartContractInterfaceId"] + }, + "v1DeleteSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"] + }, + "timestampMs": { + "type": "string", + "description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "parameters": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" + } + }, + "required": ["type", "timestampMs", "organizationId", "parameters"] + }, + "v1DeleteSmartContractInterfaceResult": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string", + "description": "The ID of the deleted Smart Contract Interface." + } + }, + "required": ["smartContractInterfaceId"] + }, "v1DeleteSubOrganizationIntent": { "type": "object", "properties": { @@ -6517,6 +6744,54 @@ }, "required": ["privateKeys"] }, + "v1GetSmartContractInterfaceRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface." + } + }, + "required": ["organizationId", "smartContractInterfaceId"] + }, + "v1GetSmartContractInterfaceResponse": { + "type": "object", + "properties": { + "smartContractInterface": { + "$ref": "#/definitions/v1SmartContractInterface", + "description": "Object to be used in conjunction with Policies to guard transaction signing." + } + }, + "required": ["smartContractInterface"] + }, + "v1GetSmartContractInterfacesRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + } + }, + "required": ["organizationId"] + }, + "v1GetSmartContractInterfacesResponse": { + "type": "object", + "properties": { + "smartContractInterfaces": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterface" + }, + "description": "A list of Smart Contract Interfaces." + } + }, + "required": ["smartContractInterfaces"] + }, "v1GetSubOrgIdsRequest": { "type": "object", "properties": { @@ -7629,6 +7904,12 @@ }, "initFiatOnRampIntent": { "$ref": "#/definitions/v1InitFiatOnRampIntent" + }, + "createSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceIntent" + }, + "deleteSmartContractInterfaceIntent": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceIntent" } } }, @@ -8740,6 +9021,12 @@ }, "initFiatOnRampResult": { "$ref": "#/definitions/v1InitFiatOnRampResult" + }, + "createSmartContractInterfaceResult": { + "$ref": "#/definitions/v1CreateSmartContractInterfaceResult" + }, + "deleteSmartContractInterfaceResult": { + "$ref": "#/definitions/v1DeleteSmartContractInterfaceResult" } } }, @@ -9190,6 +9477,63 @@ } } }, + "v1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "contractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "interface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "contractAddress", + "interface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, + "v1SmartContractInterfaceType": { + "type": "string", + "enum": [ + "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM", + "SMART_CONTRACT_INTERFACE_TYPE_SOLANA" + ] + }, "v1SmsCustomizationParams": { "type": "object", "properties": { diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index f83e9d833..d5554bca2 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -48,6 +48,10 @@ export type paths = { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; }; + "/public/v1/query/get_smart_contract_interface": { + /** Get details about a Smart Contract Interface */ + post: operations["PublicApiService_GetSmartContractInterface"]; + }; "/public/v1/query/get_user": { /** Get details about a User */ post: operations["PublicApiService_GetUser"]; @@ -76,6 +80,10 @@ export type paths = { /** List all Private Keys within an Organization */ post: operations["PublicApiService_GetPrivateKeys"]; }; + "/public/v1/query/list_smart_contract_interfaces": { + /** List all Smart Contract Interfaces within an Organization */ + post: operations["PublicApiService_GetSmartContractInterfaces"]; + }; "/public/v1/query/list_suborgs": { /** Get all suborg IDs associated given a parent org ID and an optional filter. */ post: operations["PublicApiService_GetSubOrgIds"]; @@ -152,6 +160,10 @@ export type paths = { /** Create a read write session for a user */ post: operations["PublicApiService_CreateReadWriteSession"]; }; + "/public/v1/submit/create_smart_contract_interface": { + /** Create an ABI/IDL in JSON */ + post: operations["PublicApiService_CreateSmartContractInterface"]; + }; "/public/v1/submit/create_sub_organization": { /** Create a new Sub-Organization */ post: operations["PublicApiService_CreateSubOrganization"]; @@ -200,6 +212,10 @@ export type paths = { /** Deletes private keys for an organization */ post: operations["PublicApiService_DeletePrivateKeys"]; }; + "/public/v1/submit/delete_smart_contract_interface": { + /** Delete a Smart Contract Interface */ + post: operations["PublicApiService_DeleteSmartContractInterface"]; + }; "/public/v1/submit/delete_sub_organization": { /** Deletes a sub organization */ post: operations["PublicApiService_DeleteSubOrganization"]; @@ -613,7 +629,9 @@ export type definitions = { | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP"; + | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; /** @enum {string} */ v1AddressFormat: | "ADDRESS_FORMAT_UNCOMPRESSED" @@ -1087,6 +1105,30 @@ export type definitions = { /** @description HPKE encrypted credential bundle */ credentialBundle: string; }; + v1CreateSmartContractInterfaceIntent: { + /** @description Corresponding contract address or program ID */ + smartContractAddress: string; + /** @description ABI/IDL as a JSON string */ + smartContractInterface: string; + type: definitions["v1SmartContractInterfaceType"]; + /** @description Human-readable name for a Smart Contract Interface. */ + label?: string; + /** @description Notes for a Smart Contract Interface. */ + notes?: string; + }; + v1CreateSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1CreateSmartContractInterfaceIntent"]; + }; + v1CreateSmartContractInterfaceResult: { + /** @description The ID of the created Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1CreateSubOrganizationIntent: { /** @description Name for this sub-organization */ name: string; @@ -1473,6 +1515,23 @@ export type definitions = { /** @description A list of private key unique identifiers that were removed */ privateKeyIds: string[]; }; + v1DeleteSmartContractInterfaceIntent: { + /** @description The ID of a Smart Contract Interface intended for deletion. */ + smartContractInterfaceId: string; + }; + v1DeleteSmartContractInterfaceRequest: { + /** @enum {string} */ + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"; + /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */ + timestampMs: string; + /** @description Unique identifier for a given Organization. */ + organizationId: string; + parameters: definitions["v1DeleteSmartContractInterfaceIntent"]; + }; + v1DeleteSmartContractInterfaceResult: { + /** @description The ID of the deleted Smart Contract Interface. */ + smartContractInterfaceId: string; + }; v1DeleteSubOrganizationIntent: { /** @description Sub-organization deletion, by default, requires associated wallets and private keys to be exported for security reasons. Set this boolean to true to force sub-organization deletion even if some wallets or private keys within it have not been exported yet. Default: false. */ deleteWithoutExport?: boolean; @@ -1902,6 +1961,24 @@ export type definitions = { /** @description A list of Private Keys. */ privateKeys: definitions["v1PrivateKey"][]; }; + v1GetSmartContractInterfaceRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface. */ + smartContractInterfaceId: string; + }; + v1GetSmartContractInterfaceResponse: { + /** @description Object to be used in conjunction with Policies to guard transaction signing. */ + smartContractInterface: definitions["v1SmartContractInterface"]; + }; + v1GetSmartContractInterfacesRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + }; + v1GetSmartContractInterfacesResponse: { + /** @description A list of Smart Contract Interfaces. */ + smartContractInterfaces: definitions["v1SmartContractInterface"][]; + }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ organizationId: string; @@ -2349,6 +2426,8 @@ export type definitions = { updateUserEmailIntent?: definitions["v1UpdateUserEmailIntent"]; updateUserPhoneNumberIntent?: definitions["v1UpdateUserPhoneNumberIntent"]; initFiatOnRampIntent?: definitions["v1InitFiatOnRampIntent"]; + createSmartContractInterfaceIntent?: definitions["v1CreateSmartContractInterfaceIntent"]; + deleteSmartContractInterfaceIntent?: definitions["v1DeleteSmartContractInterfaceIntent"]; }; v1Invitation: { /** @description Unique identifier for a given Invitation object. */ @@ -2768,6 +2847,8 @@ export type definitions = { updateUserEmailResult?: definitions["v1UpdateUserEmailResult"]; updateUserPhoneNumberResult?: definitions["v1UpdateUserPhoneNumberResult"]; initFiatOnRampResult?: definitions["v1InitFiatOnRampResult"]; + createSmartContractInterfaceResult?: definitions["v1CreateSmartContractInterfaceResult"]; + deleteSmartContractInterfaceResult?: definitions["v1DeleteSmartContractInterfaceResult"]; }; v1RootUserParams: { /** @description Human-readable name for a User. */ @@ -2936,6 +3017,28 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; + v1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + contractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface. */ + interface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; + /** @enum {string} */ + v1SmartContractInterfaceType: + | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" + | "SMART_CONTRACT_INTERFACE_TYPE_SOLANA"; v1SmsCustomizationParams: { /** @description Template containing references to .OtpCode i.e Your OTP is {{.OtpCode}} */ template?: string; @@ -3575,6 +3678,24 @@ export type operations = { }; }; }; + /** Get details about a Smart Contract Interface */ + PublicApiService_GetSmartContractInterface: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfaceResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a User */ PublicApiService_GetUser: { parameters: { @@ -3701,6 +3822,24 @@ export type operations = { }; }; }; + /** List all Smart Contract Interfaces within an Organization */ + PublicApiService_GetSmartContractInterfaces: { + parameters: { + body: { + body: definitions["v1GetSmartContractInterfacesRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetSmartContractInterfacesResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get all suborg IDs associated given a parent org ID and an optional filter. */ PublicApiService_GetSubOrgIds: { parameters: { @@ -4043,6 +4182,24 @@ export type operations = { }; }; }; + /** Create an ABI/IDL in JSON */ + PublicApiService_CreateSmartContractInterface: { + parameters: { + body: { + body: definitions["v1CreateSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Create a new Sub-Organization */ PublicApiService_CreateSubOrganization: { parameters: { @@ -4259,6 +4416,24 @@ export type operations = { }; }; }; + /** Delete a Smart Contract Interface */ + PublicApiService_DeleteSmartContractInterface: { + parameters: { + body: { + body: definitions["v1DeleteSmartContractInterfaceRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1ActivityResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Deletes a sub organization */ PublicApiService_DeleteSubOrganization: { parameters: { From b59e76aea5de5ca2862410ee24d6d9da2914e511 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 8 Jul 2025 15:21:32 -0400 Subject: [PATCH 31/42] codegen --- .../src/app/dashboard/OnRamp.tsx | 2 +- .../public/v1/public_api.client.ts | 308 +- .../public/v1/public_api.fetcher.ts | 194 +- .../public/v1/public_api.swagger.json | 38 +- .../coordinator/public/v1/public_api.types.ts | 14 +- .../src/__generated__/sdk-client-base.ts | 2870 +++++++++++------ .../src/__generated__/sdk_api_types.ts | 808 +++-- .../src/__inputs__/public_api.swagger.json | 38 +- .../src/__inputs__/public_api.types.ts | 14 +- .../src/__generated__/sdk-client-base.ts | 2590 +++++++++------ .../src/__generated__/sdk_api_types.ts | 808 +++-- .../src/__inputs__/public_api.swagger.json | 38 +- .../src/__inputs__/public_api.types.ts | 14 +- 13 files changed, 4978 insertions(+), 2758 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 07a92da4f..48710d0db 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -156,7 +156,7 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse + initMoonPayFiatOnRampResponse, ); // console.log( // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 933da4daa..a77aba152 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -357,7 +357,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -396,7 +396,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -407,7 +407,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -481,7 +481,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -492,7 +492,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -512,7 +512,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -523,7 +523,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -543,7 +543,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -554,7 +554,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -574,7 +574,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -585,7 +585,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -606,7 +606,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -617,7 +617,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -637,7 +637,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -648,7 +648,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -696,7 +696,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -707,7 +707,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -727,7 +727,7 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterface}. */ getSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody + input: TGetSmartContractInterfaceBody, ): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", input); }; @@ -738,7 +738,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterface}. */ stampGetSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody + input: TGetSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_smart_contract_interface"; @@ -813,7 +813,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -824,7 +824,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -844,7 +844,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -855,7 +855,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -875,7 +875,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -886,7 +886,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -906,7 +906,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -917,7 +917,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -938,7 +938,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -949,7 +949,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -969,11 +969,11 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterfaces}. */ getSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody + input: TGetSmartContractInterfacesBody, ): Promise => { return this.request( "/public/v1/query/list_smart_contract_interfaces", - input + input, ); }; @@ -983,7 +983,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterfaces}. */ stampGetSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody + input: TGetSmartContractInterfacesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_smart_contract_interfaces"; @@ -1004,7 +1004,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -1015,7 +1015,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -1035,7 +1035,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -1046,7 +1046,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1093,7 +1093,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1104,7 +1104,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1125,7 +1125,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1136,7 +1136,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1211,7 +1211,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1242,7 +1242,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1253,7 +1253,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1273,7 +1273,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1284,7 +1284,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1305,7 +1305,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1316,7 +1316,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1337,7 +1337,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1348,7 +1348,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1369,7 +1369,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1401,7 +1401,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1432,7 +1432,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1443,7 +1443,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1463,7 +1463,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1474,7 +1474,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1495,7 +1495,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1506,7 +1506,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1527,7 +1527,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1538,7 +1538,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1559,7 +1559,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1570,7 +1570,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1591,11 +1591,11 @@ export class TurnkeyClient { * See also {@link stampCreateSmartContractInterface}. */ createSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody + input: TCreateSmartContractInterfaceBody, ): Promise => { return this.request( "/public/v1/submit/create_smart_contract_interface", - input + input, ); }; @@ -1605,7 +1605,7 @@ export class TurnkeyClient { * See also {@link CreateSmartContractInterface}. */ stampCreateSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody + input: TCreateSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_smart_contract_interface"; @@ -1626,7 +1626,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1637,7 +1637,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1658,7 +1658,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1669,7 +1669,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1689,7 +1689,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1700,7 +1700,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1720,7 +1720,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1731,7 +1731,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1751,7 +1751,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1762,7 +1762,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1783,7 +1783,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1794,7 +1794,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1814,7 +1814,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1825,7 +1825,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1846,7 +1846,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1857,7 +1857,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1877,7 +1877,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1888,7 +1888,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1909,7 +1909,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1920,7 +1920,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1940,7 +1940,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1951,7 +1951,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1972,7 +1972,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1983,7 +1983,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -2004,11 +2004,11 @@ export class TurnkeyClient { * See also {@link stampDeleteSmartContractInterface}. */ deleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody + input: TDeleteSmartContractInterfaceBody, ): Promise => { return this.request( "/public/v1/submit/delete_smart_contract_interface", - input + input, ); }; @@ -2018,7 +2018,7 @@ export class TurnkeyClient { * See also {@link DeleteSmartContractInterface}. */ stampDeleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody + input: TDeleteSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_smart_contract_interface"; @@ -2039,7 +2039,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -2050,7 +2050,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -2071,7 +2071,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -2082,7 +2082,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -2102,7 +2102,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -2113,7 +2113,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2191,7 +2191,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2202,7 +2202,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2223,7 +2223,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2234,7 +2234,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2254,7 +2254,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2265,7 +2265,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2286,7 +2286,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2297,7 +2297,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2380,7 +2380,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2391,7 +2391,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2412,7 +2412,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2423,7 +2423,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2471,7 +2471,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2482,7 +2482,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2502,7 +2502,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2513,7 +2513,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2642,7 +2642,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2653,7 +2653,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2673,7 +2673,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2684,7 +2684,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2704,7 +2704,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2715,7 +2715,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2736,7 +2736,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2747,7 +2747,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2768,7 +2768,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2779,7 +2779,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2799,7 +2799,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2810,7 +2810,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2830,7 +2830,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2841,7 +2841,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -3010,7 +3010,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -3021,7 +3021,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -3041,7 +3041,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -3052,7 +3052,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -3072,7 +3072,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -3083,7 +3083,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -3104,7 +3104,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -3115,7 +3115,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -3135,7 +3135,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -3146,7 +3146,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3193,7 +3193,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3204,7 +3204,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index b6dd75764..fcc5eba26 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -574,7 +574,7 @@ export type TGetSmartContractInterfaceBody = * `POST /public/v1/query/get_smart_contract_interface` */ export const getSmartContractInterface = ( - input: TGetSmartContractInterfaceInput + input: TGetSmartContractInterfaceInput, ) => request< TGetSmartContractInterfaceResponse, @@ -595,7 +595,7 @@ export const getSmartContractInterface = ( */ export const signGetSmartContractInterface = ( input: TGetSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_smart_contract_interface", @@ -641,7 +641,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -687,7 +687,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -739,7 +739,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -785,7 +785,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -831,7 +831,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -883,7 +883,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -929,7 +929,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -964,7 +964,7 @@ export type TGetSmartContractInterfacesBody = * `POST /public/v1/query/list_smart_contract_interfaces` */ export const getSmartContractInterfaces = ( - input: TGetSmartContractInterfacesInput + input: TGetSmartContractInterfacesInput, ) => request< TGetSmartContractInterfacesResponse, @@ -985,7 +985,7 @@ export const getSmartContractInterfaces = ( */ export const signGetSmartContractInterfaces = ( input: TGetSmartContractInterfacesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_smart_contract_interfaces", @@ -1031,7 +1031,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -1077,7 +1077,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1123,7 +1123,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1175,7 +1175,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1227,7 +1227,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1273,7 +1273,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1319,7 +1319,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1365,7 +1365,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1411,7 +1411,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1463,7 +1463,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1515,7 +1515,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1567,7 +1567,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1619,7 +1619,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1665,7 +1665,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1711,7 +1711,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1763,7 +1763,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1815,7 +1815,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1867,7 +1867,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1921,7 +1921,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1956,7 +1956,7 @@ export type TCreateSmartContractInterfaceBody = * `POST /public/v1/submit/create_smart_contract_interface` */ export const createSmartContractInterface = ( - input: TCreateSmartContractInterfaceInput + input: TCreateSmartContractInterfaceInput, ) => request< TCreateSmartContractInterfaceResponse, @@ -1977,7 +1977,7 @@ export const createSmartContractInterface = ( */ export const signCreateSmartContractInterface = ( input: TCreateSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_smart_contract_interface", @@ -2029,7 +2029,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -2075,7 +2075,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -2121,7 +2121,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -2167,7 +2167,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2219,7 +2219,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2265,7 +2265,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2317,7 +2317,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2369,7 +2369,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2421,7 +2421,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2467,7 +2467,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2519,7 +2519,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2571,7 +2571,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2606,7 +2606,7 @@ export type TDeleteSmartContractInterfaceBody = * `POST /public/v1/submit/delete_smart_contract_interface` */ export const deleteSmartContractInterface = ( - input: TDeleteSmartContractInterfaceInput + input: TDeleteSmartContractInterfaceInput, ) => request< TDeleteSmartContractInterfaceResponse, @@ -2627,7 +2627,7 @@ export const deleteSmartContractInterface = ( */ export const signDeleteSmartContractInterface = ( input: TDeleteSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_smart_contract_interface", @@ -2679,7 +2679,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2725,7 +2725,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2771,7 +2771,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2817,7 +2817,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2863,7 +2863,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2915,7 +2915,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2961,7 +2961,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -3013,7 +3013,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -3065,7 +3065,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -3111,7 +3111,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -3157,7 +3157,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -3209,7 +3209,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3261,7 +3261,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3307,7 +3307,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3353,7 +3353,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3405,7 +3405,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3451,7 +3451,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3497,7 +3497,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3543,7 +3543,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3589,7 +3589,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3635,7 +3635,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3681,7 +3681,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3716,7 +3716,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3737,7 +3737,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3791,7 +3791,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3837,7 +3837,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3883,7 +3883,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3929,7 +3929,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3975,7 +3975,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -4021,7 +4021,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -4073,7 +4073,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -4125,7 +4125,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -4171,7 +4171,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4217,7 +4217,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4263,7 +4263,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4315,7 +4315,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4361,7 +4361,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4407,7 +4407,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4453,7 +4453,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4524,7 +4524,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index c43663bba..871064c2c 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -4721,7 +4721,12 @@ "description": "Notes for a Smart Contract Interface." } }, - "required": ["smartContractAddress", "smartContractInterface", "type"] + "required": [ + "smartContractAddress", + "smartContractInterface", + "type", + "label" + ] }, "v1CreateSmartContractInterfaceRequest": { "type": "object", @@ -8328,6 +8333,13 @@ "type": "object", "$ref": "#/definitions/v1Wallet" } + }, + "smartContractInterfaceReferences": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterfaceReference" + } } } }, @@ -9488,13 +9500,13 @@ "type": "string", "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." }, - "contractAddress": { + "smartContractAddress": { "type": "string", "description": "The address corresponding to the Smart Contract or Program." }, - "interface": { + "smartContractInterface": { "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface." + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." }, "type": { "type": "string", @@ -9518,8 +9530,8 @@ "required": [ "organizationId", "smartContractInterfaceId", - "contractAddress", - "interface", + "smartContractAddress", + "smartContractInterface", "type", "label", "notes", @@ -9527,6 +9539,20 @@ "updatedAt" ] }, + "v1SmartContractInterfaceReference": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string" + }, + "smartContractAddress": { + "type": "string" + }, + "digest": { + "type": "string" + } + } + }, "v1SmartContractInterfaceType": { "type": "string", "enum": [ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index d5554bca2..706a4d8c9 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -1112,7 +1112,7 @@ export type definitions = { smartContractInterface: string; type: definitions["v1SmartContractInterfaceType"]; /** @description Human-readable name for a Smart Contract Interface. */ - label?: string; + label: string; /** @description Notes for a Smart Contract Interface. */ notes?: string; }; @@ -2590,6 +2590,7 @@ export type definitions = { rootQuorum?: definitions["externaldatav1Quorum"]; features?: definitions["v1Feature"][]; wallets?: definitions["v1Wallet"][]; + smartContractInterfaceReferences?: definitions["v1SmartContractInterfaceReference"][]; }; v1OtpAuthIntent: { /** @description ID representing the result of an init OTP activity. */ @@ -3023,9 +3024,9 @@ export type definitions = { /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ smartContractInterfaceId: string; /** @description The address corresponding to the Smart Contract or Program. */ - contractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface. */ - interface: string; + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ type: string; /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ @@ -3035,6 +3036,11 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + v1SmartContractInterfaceReference: { + smartContractInterfaceId?: string; + smartContractAddress?: string; + digest?: string; + }; /** @enum {string} */ v1SmartContractInterfaceType: | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 714980d61..2f01b9397 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,10 +1,20 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -14,7 +24,6 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -29,27 +38,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION - } + "X-Client-Version": VERSION, + }; if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue + headers[stamp.stampHeaderName] = stamp.stampHeaderValue; } - if (this.config.readOnlySession){ - headers["X-Session"] = this.config.readOnlySession + if (this.config.readOnlySession) { + headers["X-Session"] = this.config.readOnlySession; } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -70,12 +79,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -83,7 +93,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -94,15 +104,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -110,9 +124,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -121,28 +142,33 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -154,20 +180,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -179,20 +210,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -204,20 +240,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -229,24 +270,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,24 +301,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -279,24 +332,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -304,24 +363,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -329,24 +394,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -354,20 +425,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -379,20 +455,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -404,24 +485,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + getSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + stampGetSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -429,20 +516,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -454,20 +546,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -479,24 +576,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -504,20 +607,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -529,20 +637,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -554,24 +667,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -579,24 +698,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -604,24 +729,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + getSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + stampGetSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -629,20 +761,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -654,20 +791,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -679,20 +821,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -704,24 +851,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -729,24 +882,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -754,20 +913,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -779,20 +943,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -804,28 +973,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -833,28 +1005,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -862,28 +1044,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -891,28 +1083,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -920,28 +1122,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -949,28 +1161,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -978,28 +1200,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1007,24 +1239,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1036,28 +1277,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1065,28 +1316,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1094,28 +1355,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1123,28 +1394,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1152,28 +1433,39 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + createSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" - }, "createSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/create_smart_contract_interface", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + }, + "createSmartContractInterfaceResult", + ); + }; - stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + stampCreateSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1181,28 +1473,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1210,28 +1512,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1239,24 +1551,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1268,24 +1589,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1297,28 +1627,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1326,28 +1666,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1355,28 +1705,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1384,28 +1744,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1413,28 +1783,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1442,24 +1822,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1471,28 +1860,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1500,28 +1899,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1529,28 +1938,39 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + deleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" - }, "deleteSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/delete_smart_contract_interface", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", + }, + "deleteSmartContractInterfaceResult", + ); + }; - stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + stampDeleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1558,28 +1978,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1587,28 +2017,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1616,24 +2056,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1645,24 +2094,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1674,24 +2132,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1703,28 +2170,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1732,24 +2209,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1761,28 +2247,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1790,28 +2286,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1819,24 +2325,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1848,28 +2363,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1877,28 +2402,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1906,28 +2441,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1935,24 +2480,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1964,24 +2518,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1993,28 +2556,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2022,24 +2595,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2051,24 +2633,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2080,24 +2671,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2109,24 +2709,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2138,24 +2747,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2167,28 +2785,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2196,28 +2817,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2225,28 +2856,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2254,28 +2895,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2283,28 +2934,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2312,28 +2973,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2341,24 +3012,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2370,24 +3050,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2399,28 +3088,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2428,28 +3127,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2457,24 +3166,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2486,28 +3204,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2515,28 +3243,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2544,28 +3282,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2573,28 +3321,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2602,24 +3360,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2631,24 +3398,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2660,20 +3436,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } + }; - - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2685,6 +3466,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index 777abe97b..e1ad0eedd 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,558 +2,976 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = + operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; +export type TGetSmartContractInterfaceInput = { + body: TGetSmartContractInterfaceBody; +}; -export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit< + operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = + operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; +export type TGetSmartContractInterfacesInput = { + body: TGetSmartContractInterfacesBody; +}; -export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit< + operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = + operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; +export type TCreateSmartContractInterfaceInput = { + body: TCreateSmartContractInterfaceBody; +}; -export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSmartContractInterfaceBody = + operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = + operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; +export type TDeleteSmartContractInterfaceInput = { + body: TDeleteSmartContractInterfaceBody; +}; -export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = + operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index c43663bba..871064c2c 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -4721,7 +4721,12 @@ "description": "Notes for a Smart Contract Interface." } }, - "required": ["smartContractAddress", "smartContractInterface", "type"] + "required": [ + "smartContractAddress", + "smartContractInterface", + "type", + "label" + ] }, "v1CreateSmartContractInterfaceRequest": { "type": "object", @@ -8328,6 +8333,13 @@ "type": "object", "$ref": "#/definitions/v1Wallet" } + }, + "smartContractInterfaceReferences": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterfaceReference" + } } } }, @@ -9488,13 +9500,13 @@ "type": "string", "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." }, - "contractAddress": { + "smartContractAddress": { "type": "string", "description": "The address corresponding to the Smart Contract or Program." }, - "interface": { + "smartContractInterface": { "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface." + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." }, "type": { "type": "string", @@ -9518,8 +9530,8 @@ "required": [ "organizationId", "smartContractInterfaceId", - "contractAddress", - "interface", + "smartContractAddress", + "smartContractInterface", "type", "label", "notes", @@ -9527,6 +9539,20 @@ "updatedAt" ] }, + "v1SmartContractInterfaceReference": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string" + }, + "smartContractAddress": { + "type": "string" + }, + "digest": { + "type": "string" + } + } + }, "v1SmartContractInterfaceType": { "type": "string", "enum": [ diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index d5554bca2..706a4d8c9 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -1112,7 +1112,7 @@ export type definitions = { smartContractInterface: string; type: definitions["v1SmartContractInterfaceType"]; /** @description Human-readable name for a Smart Contract Interface. */ - label?: string; + label: string; /** @description Notes for a Smart Contract Interface. */ notes?: string; }; @@ -2590,6 +2590,7 @@ export type definitions = { rootQuorum?: definitions["externaldatav1Quorum"]; features?: definitions["v1Feature"][]; wallets?: definitions["v1Wallet"][]; + smartContractInterfaceReferences?: definitions["v1SmartContractInterfaceReference"][]; }; v1OtpAuthIntent: { /** @description ID representing the result of an init OTP activity. */ @@ -3023,9 +3024,9 @@ export type definitions = { /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ smartContractInterfaceId: string; /** @description The address corresponding to the Smart Contract or Program. */ - contractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface. */ - interface: string; + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ type: string; /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ @@ -3035,6 +3036,11 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + v1SmartContractInterfaceReference: { + smartContractInterfaceId?: string; + smartContractAddress?: string; + digest?: string; + }; /** @enum {string} */ v1SmartContractInterfaceType: | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 80ce13532..984a47e5d 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,16 +1,25 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -23,7 +32,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -33,10 +42,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION + "X-Client-Version": VERSION, }, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -57,12 +66,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -70,7 +80,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -81,15 +91,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -97,9 +111,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -108,26 +129,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -139,18 +162,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -162,18 +187,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -185,18 +212,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -208,22 +237,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -231,22 +263,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,22 +289,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -277,22 +315,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -300,22 +341,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -323,18 +367,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -346,18 +392,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -369,22 +417,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + getSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + stampGetSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -392,18 +443,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -415,18 +468,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -438,22 +493,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -461,18 +519,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -484,18 +544,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -507,22 +569,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -530,22 +595,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -553,22 +621,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + getSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + stampGetSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -576,18 +648,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -599,18 +673,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -622,18 +698,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -645,22 +723,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -668,22 +749,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -691,18 +775,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -714,18 +800,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -737,26 +825,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -764,25 +854,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -790,25 +887,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -816,25 +920,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -842,25 +953,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -868,25 +986,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -894,25 +1019,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -920,21 +1052,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -946,25 +1084,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -972,25 +1117,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -998,25 +1150,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1024,25 +1183,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1050,25 +1216,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + createSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" - }, "createSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/create_smart_contract_interface", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + }, + "createSmartContractInterfaceResult", + ); + }; - stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + stampCreateSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1076,25 +1250,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1102,25 +1283,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1128,21 +1316,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1154,21 +1348,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1180,25 +1380,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1206,25 +1413,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1232,25 +1446,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1258,25 +1479,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1284,25 +1512,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1310,21 +1545,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1336,25 +1577,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1362,25 +1610,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1388,25 +1643,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + deleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" - }, "deleteSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/delete_smart_contract_interface", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", + }, + "deleteSmartContractInterfaceResult", + ); + }; - stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + stampDeleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1414,25 +1677,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1440,25 +1710,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1466,21 +1743,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1492,21 +1775,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1518,21 +1807,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1544,25 +1839,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1570,21 +1872,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1596,25 +1904,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1622,25 +1937,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1648,21 +1970,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1674,25 +2002,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1700,25 +2035,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1726,25 +2068,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1752,21 +2101,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1778,21 +2133,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1804,25 +2165,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1830,21 +2198,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1856,21 +2230,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1882,21 +2262,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1908,21 +2294,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1934,21 +2326,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1960,26 +2358,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1987,25 +2387,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2013,25 +2420,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2039,25 +2453,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2065,25 +2486,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2091,25 +2519,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2117,21 +2552,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2143,21 +2584,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2169,25 +2616,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2195,25 +2649,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2221,21 +2682,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2247,25 +2714,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2273,25 +2747,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2299,25 +2780,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2325,25 +2813,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2351,21 +2846,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2377,21 +2878,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2403,18 +2910,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2426,6 +2935,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index 777abe97b..e1ad0eedd 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,558 +2,976 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = + operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; +export type TGetSmartContractInterfaceInput = { + body: TGetSmartContractInterfaceBody; +}; -export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit< + operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = + operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; +export type TGetSmartContractInterfacesInput = { + body: TGetSmartContractInterfacesBody; +}; -export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit< + operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = + operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; +export type TCreateSmartContractInterfaceInput = { + body: TCreateSmartContractInterfaceBody; +}; -export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSmartContractInterfaceBody = + operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = + operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; +export type TDeleteSmartContractInterfaceInput = { + body: TDeleteSmartContractInterfaceBody; +}; -export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = + operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index c43663bba..871064c2c 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -4721,7 +4721,12 @@ "description": "Notes for a Smart Contract Interface." } }, - "required": ["smartContractAddress", "smartContractInterface", "type"] + "required": [ + "smartContractAddress", + "smartContractInterface", + "type", + "label" + ] }, "v1CreateSmartContractInterfaceRequest": { "type": "object", @@ -8328,6 +8333,13 @@ "type": "object", "$ref": "#/definitions/v1Wallet" } + }, + "smartContractInterfaceReferences": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/v1SmartContractInterfaceReference" + } } } }, @@ -9488,13 +9500,13 @@ "type": "string", "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." }, - "contractAddress": { + "smartContractAddress": { "type": "string", "description": "The address corresponding to the Smart Contract or Program." }, - "interface": { + "smartContractInterface": { "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface." + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." }, "type": { "type": "string", @@ -9518,8 +9530,8 @@ "required": [ "organizationId", "smartContractInterfaceId", - "contractAddress", - "interface", + "smartContractAddress", + "smartContractInterface", "type", "label", "notes", @@ -9527,6 +9539,20 @@ "updatedAt" ] }, + "v1SmartContractInterfaceReference": { + "type": "object", + "properties": { + "smartContractInterfaceId": { + "type": "string" + }, + "smartContractAddress": { + "type": "string" + }, + "digest": { + "type": "string" + } + } + }, "v1SmartContractInterfaceType": { "type": "string", "enum": [ diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index d5554bca2..706a4d8c9 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -1112,7 +1112,7 @@ export type definitions = { smartContractInterface: string; type: definitions["v1SmartContractInterfaceType"]; /** @description Human-readable name for a Smart Contract Interface. */ - label?: string; + label: string; /** @description Notes for a Smart Contract Interface. */ notes?: string; }; @@ -2590,6 +2590,7 @@ export type definitions = { rootQuorum?: definitions["externaldatav1Quorum"]; features?: definitions["v1Feature"][]; wallets?: definitions["v1Wallet"][]; + smartContractInterfaceReferences?: definitions["v1SmartContractInterfaceReference"][]; }; v1OtpAuthIntent: { /** @description ID representing the result of an init OTP activity. */ @@ -3023,9 +3024,9 @@ export type definitions = { /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ smartContractInterfaceId: string; /** @description The address corresponding to the Smart Contract or Program. */ - contractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface. */ - interface: string; + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ type: string; /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ @@ -3035,6 +3036,11 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + v1SmartContractInterfaceReference: { + smartContractInterfaceId?: string; + smartContractAddress?: string; + digest?: string; + }; /** @enum {string} */ v1SmartContractInterfaceType: | "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" From 696d65cbf63807367b00b8e7c398e1b8511444a4 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 8 Jul 2025 15:30:14 -0400 Subject: [PATCH 32/42] update pnpm-lock.yaml --- pnpm-lock.yaml | 160 ++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 133 insertions(+), 27 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4ffd945b5..309972f18 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1413,13 +1413,13 @@ importers: version: 7.0.2 '@stacks/transactions': specifier: ^7.1.0 - version: 7.1.0 + version: 7.1.0(encoding@0.1.13) '@turnkey/sdk-server': specifier: workspace:* version: link:../../packages/sdk-server dotenv: specifier: ^16.0.3 - version: 16.0.3 + version: 16.5.0 path: specifier: ^0.12.7 version: 0.12.7 @@ -1649,16 +1649,16 @@ importers: version: 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-base-ui': specifier: ^0.1.2 - version: 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + version: 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-react': specifier: ^0.15.35 - version: 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + version: 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-react-ui': specifier: ^0.9.35 - version: 0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + version: 0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 - version: 0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@5.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33) + version: 0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@6.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33) '@solana/web3.js': specifier: ^1.95.8 version: 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) @@ -4389,6 +4389,9 @@ packages: '@noble/ed25519@2.2.3': resolution: {integrity: sha512-iHV8eI2mRcUmOx159QNrU8vTpQ/Xm70yJ2cTk3Trc86++02usfqFoNl6x0p3JN81ZDS/1gx6xiK0OwrgqCT43g==} + '@noble/hashes@1.1.5': + resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==} + '@noble/hashes@1.2.0': resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} @@ -6095,6 +6098,15 @@ packages: peerDependencies: '@solana/web3.js': '*' + '@stacks/common@7.0.2': + resolution: {integrity: sha512-+RSecHdkxOtswmE4tDDoZlYEuULpnTQVeDIG5eZ32opK8cFxf4EugAcK9CsIsHx/Se1yTEaQ21WGATmJGK84lQ==} + + '@stacks/network@7.0.2': + resolution: {integrity: sha512-XzHnoWqku/jRrTgMXhmh3c+I0O9vDH24KlhzGDZtBu+8CGGyHNPAZzGwvoUShonMXrXjEnfO9IYQwV5aJhfv6g==} + + '@stacks/transactions@7.1.0': + resolution: {integrity: sha512-/4n5h+ka5N3mq16f1Zo0O0g2gyOYhaXFdGN8ifLz38NJmkjnCDXqi/ogB6NFNpSKGonyqyF5Vz1UPaQHwO8+IA==} + '@suchipi/femver@1.0.0': resolution: {integrity: sha512-bprE8+K5V+DPX7q2e2K57ImqNBdfGHDIWaGI5xHxZoxbKOuQZn4wzPiUxOAHnsUr3w3xHrWXwN7gnG/iIuEMIg==} @@ -7331,7 +7343,6 @@ packages: base-x@4.0.1: resolution: {integrity: sha512-uAZ8x6r6S3aUM9rbHGVOIsR15U/ZSc82b3ymnCPsT45Gk1DDvhDPdIgB5MrhirZWt+5K0EEPQH985kNqZgNPFw==} - dev: false base-x@5.0.1: resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==} @@ -7532,6 +7543,10 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} + c32check@2.0.0: + resolution: {integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==} + engines: {node: '>=8'} + cacheable-lookup@5.0.4: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} @@ -9065,6 +9080,9 @@ packages: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -9738,6 +9756,9 @@ packages: lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + lodash.clonedeep@4.5.0: + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} + lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} @@ -10510,6 +10531,9 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} + path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + pbkdf2@3.1.3: resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} engines: {node: '>=0.12'} @@ -12332,6 +12356,9 @@ packages: util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} @@ -17279,6 +17306,8 @@ snapshots: '@noble/ed25519@2.2.3': {} + '@noble/hashes@1.1.5': {} + '@noble/hashes@1.2.0': {} '@noble/hashes@1.3.2': {} @@ -17419,11 +17448,11 @@ snapshots: crypto-js: 4.2.0 uuidv4: 6.2.13 - '@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)': + '@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)': dependencies: '@particle-network/auth': 1.3.1 '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - bs58: 5.0.0 + bs58: 6.0.0 '@paulmillr/qr@0.2.1': {} @@ -19562,9 +19591,9 @@ snapshots: '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-base-ui@0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@solana/wallet-adapter-base-ui@0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 transitivePeerDependencies: @@ -19683,9 +19712,9 @@ snapshots: '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-particle@0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)': + '@solana/wallet-adapter-particle@0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)': dependencies: - '@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0) '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -19696,11 +19725,11 @@ snapshots: '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-react-ui@0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@solana/wallet-adapter-react-ui@0.9.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-base-ui': 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) - '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-base-ui': 0.1.5(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@solana/wallet-adapter-react': 0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -19708,11 +19737,11 @@ snapshots: - bs58 - react-native - '@solana/wallet-adapter-react@0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@solana/wallet-adapter-react@0.15.38(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@solana-mobile/wallet-adapter-mobile': 2.2.0(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) - '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1) + '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@18.3.1) '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) react: 18.3.1 transitivePeerDependencies: @@ -19852,7 +19881,7 @@ snapshots: - utf-8-validate - zod - '@solana/wallet-adapter-wallets@0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@5.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33)': + '@solana/wallet-adapter-wallets@0.19.36(@babel/runtime@7.27.3)(@react-native-async-storage/async-storage@1.24.0(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/sysvars@2.1.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.3))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(@types/react@18.3.23)(bs58@6.0.0)(bufferutil@4.0.9)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react-native@0.76.5(@babel/core@7.27.3)(@babel/preset-env@7.20.2(@babel/core@7.27.3))(@types/react@18.3.23)(bufferutil@4.0.9)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(typescript@5.4.3)(utf-8-validate@5.0.10)(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.33)': dependencies: '@solana/wallet-adapter-alpha': 0.1.13(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-avana': 0.1.16(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) @@ -19873,7 +19902,7 @@ snapshots: '@solana/wallet-adapter-nightly': 0.1.19(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-nufi': 0.1.20(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-onto': 0.1.10(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-particle': 0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@solana/wallet-adapter-particle': 0.1.15(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0) '@solana/wallet-adapter-phantom': 0.9.27(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-safepal': 0.5.21(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-saifu': 0.1.18(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) @@ -19969,6 +19998,19 @@ snapshots: '@wallet-standard/wallet': 1.1.0 bs58: 5.0.0 + '@solana/wallet-standard-wallet-adapter-base@1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)': + dependencies: + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-chains': 1.1.1 + '@solana/wallet-standard-features': 1.3.0 + '@solana/wallet-standard-util': 1.1.2 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 + bs58: 6.0.0 + '@solana/wallet-standard-wallet-adapter-react@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)': dependencies: '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) @@ -19980,6 +20022,17 @@ snapshots: - '@solana/web3.js' - bs58 + '@solana/wallet-standard-wallet-adapter-react@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@18.3.1)': + dependencies: + '@solana/wallet-adapter-base': 0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@6.0.0) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + react: 18.3.1 + transitivePeerDependencies: + - '@solana/web3.js' + - bs58 + '@solana/wallet-standard-wallet-adapter@1.1.4(@solana/wallet-adapter-base@0.9.26(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10)))(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)': dependencies: '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.4.3)(utf-8-validate@5.0.10))(bs58@5.0.0) @@ -20039,6 +20092,26 @@ snapshots: eventemitter3: 5.0.1 uuid: 9.0.1 + '@stacks/common@7.0.2': {} + + '@stacks/network@7.0.2(encoding@0.1.13)': + dependencies: + '@stacks/common': 7.0.2 + cross-fetch: 3.2.0(encoding@0.1.13) + transitivePeerDependencies: + - encoding + + '@stacks/transactions@7.1.0(encoding@0.1.13)': + dependencies: + '@noble/hashes': 1.1.5 + '@noble/secp256k1': 1.7.1 + '@stacks/common': 7.0.2 + '@stacks/network': 7.0.2(encoding@0.1.13) + c32check: 2.0.0 + lodash.clonedeep: 4.5.0 + transitivePeerDependencies: + - encoding + '@suchipi/femver@1.0.0': {} '@swc/counter@0.1.3': {} @@ -22935,6 +23008,11 @@ snapshots: bytes@3.1.2: {} + c32check@2.0.0: + dependencies: + '@noble/hashes': 1.8.0 + base-x: 4.0.1 + cacheable-lookup@5.0.4: {} cacheable-request@7.0.4: @@ -23916,8 +23994,8 @@ snapshots: '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.56.0) eslint-plugin-react: 7.37.5(eslint@8.56.0) eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.56.0) @@ -23936,6 +24014,21 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0): + dependencies: + '@nolyfill/is-core-module': 1.0.39 + debug: 4.4.1(supports-color@8.1.1) + eslint: 8.56.0 + get-tsconfig: 4.10.1 + is-bun-module: 2.0.0 + stable-hash: 0.0.5 + tinyglobby: 0.2.14 + unrs-resolver: 1.7.6 + optionalDependencies: + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) + transitivePeerDependencies: + - supports-color + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0): dependencies: '@nolyfill/is-core-module': 1.0.39 @@ -23947,7 +24040,7 @@ snapshots: tinyglobby: 0.2.14 unrs-resolver: 1.7.6 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.1.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) transitivePeerDependencies: - supports-color @@ -23962,14 +24055,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.33.0(eslint@8.56.0)(typescript@5.4.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0) transitivePeerDependencies: - supports-color @@ -24002,7 +24095,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -24013,7 +24106,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.56.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -24938,6 +25031,8 @@ snapshots: once: 1.4.0 wrappy: 1.0.2 + inherits@2.0.3: {} + inherits@2.0.4: {} install@0.13.0: {} @@ -26035,6 +26130,8 @@ snapshots: lodash.camelcase@4.3.0: {} + lodash.clonedeep@4.5.0: {} + lodash.debounce@4.0.8: {} lodash.isequal@4.5.0: {} @@ -26873,6 +26970,11 @@ snapshots: path-type@4.0.0: {} + path@0.12.7: + dependencies: + process: 0.11.10 + util: 0.10.4 + pbkdf2@3.1.3: dependencies: create-hash: 1.1.3 @@ -29049,6 +29151,10 @@ snapshots: util-deprecate@1.0.2: {} + util@0.10.4: + dependencies: + inherits: 2.0.3 + util@0.12.5: dependencies: inherits: 2.0.4 From 4e4c2a18db6d1ce71196fee9e0819828053a929a Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Tue, 8 Jul 2025 15:45:44 -0400 Subject: [PATCH 33/42] clean up on-ramp component --- .../src/app/dashboard/OnRamp.tsx | 137 +----------------- 1 file changed, 6 insertions(+), 131 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 48710d0db..9c8b9086f 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -8,61 +8,23 @@ import { } from "@coinbase/onchainkit/fund"; import { useEffect, useState } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; -import { Buy } from "@coinbase/onchainkit/buy"; -import { Token } from "@coinbase/onchainkit/token"; +// import { Buy } from "@coinbase/onchainkit/buy"; +// import { Token } from "@coinbase/onchainkit/token"; export const OnRamp = () => { const { turnkey, indexedDbClient } = useTurnkey(); - const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); + // const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); const [coinbaseOnRampBuyUrl, setCoinbaseOnRampBuyUrl] = useState(""); const [moonPayOnRampBuyUrl, setMoonPayOnRampBuyUrl] = useState(""); const [isCoinbaseToggled, setIsCoinbaseToggled] = useState(false); const [isMoonPayToggled, setIsMoonPayToggled] = useState(false); - const ethToken: Token = { - name: "ETH", - address: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", - symbol: "ETH", - decimals: 6, - chainId: 8453, - image: "", - }; - // useEffect(() => { - // const loadMoonPaySdk = async () => { - // try { - // const moonPay = await loadMoonPay(); - // const moonPaySdk = moonPay!({ - // flow: 'buy', - // environment: 'sandbox', - // variant: 'overlay', - // params: { - // apiKey: process.env.NEXT_PUBLIC_MOONPAY_API_KEY!, - // }, - // debug: true - // }); - // setMoonPaySDK(moonPaySdk); - // } catch (error) { - // console.error("Failed to load MoonPay SDK:", error); - // } - // }; - // loadMoonPaySdk(); - // }, []); - useEffect(() => { const generateCoinbaseUrl = async () => { try { // get session const session = await turnkey?.getSession(); - console.log("session response:", session); - - // const onrampConfig = await fetchOnrampConfig(); - // console.log("onrampConfig:", onrampConfig); - // const onrampOptions = await fetchOnrampOptions({ - // country: "US", - // subdivision: "ME", - // }); - // console.log("onrampOptions:", onrampOptions); const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", @@ -74,48 +36,16 @@ export const OnRamp = () => { countrySubdivisionCode: "ME", }); - // const onrampBuyUrl = getOnrampBuyUrl({ - // projectId: "aefedf19-488c-426c-b7be-133fab72807c", - // addresses: { - // ["0x652bd17D489F283A03bb52DAFa138764Be04Bc66"]: ["base"], - // }, - // assets: ["ETH"], - // presetFiatAmount: 20, - // fiatCurrency: "USD", - // }); - - // ; - - // console.log("Coinbase onrampBuyUrl:", onrampBuyUrl); - // setCoinbaseOnRampBuyUrl(onrampBuyUrl); console.log("initFiatOnRampResponse:", initFiatOnRampResponse); + if (initFiatOnRampResponse?.onRampUrl) { window.open(initFiatOnRampResponse?.onRampUrl, "_blank"); - // setCoinbaseOnRampBuyUrl(initFiatOnRampResponse?.onRampUrl); } } catch (error) { console.error("Failed to init fiat on ramp:", error); } }; - // https://pay.coinbase.com/buy?sessionToken=MWYwNDE2YTItYWMwZC02OTA0LThjMDAtMTY3NzNhNGRkNGRk&appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - // https://pay.coinbase.com/buy/select-payment-method?appId=58a3fa2e-617f-4198-81e7-096f5e498c00&defaultAsset=ETH&defaultPaymentMethod=CARD&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&fiatCurrency=USD&presetFiatAmount=10 - // https://pay.coinbase.com/buy?token=MWYwNDE2YmQtZjEyOS02NTk1LWIxYjMtODIxNTE0ZDI3MTM5&appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=%5B%7B%22address%22%3A%220x652bd17D489F283A03bb52DAFa138764Be04Bc66%22%2C%22blockchains%22%3A%5B%22ethereum%22%5D%7D%5D&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - // https://pay.coinbase.com/buy?sessionToken=MWYwNDE2Y2MtMDhlZC02MjdmLTgwNDgtMTY5MmQ0NGIwMTFh&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - - // example from coinbase docs https://docs.cdp.coinbase.com/onramp/docs/api-oneclickbuy#generating-one-click-buy-urls - // https://pay.coinbase.com/buy/select-asset?appId=58a3fa2e-617f-4198-81e7-096f5e498c00&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - - // my url - // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - // appId=aefedf19-488c-426c-b7be-133fab72807c - - // https://pay.coinbase.com/buy?token=MWYwNDE3MjEtYTk1Mi02ZGNlLTg2MTEtOGVhNDZjN2QzNWRh - // https://pay.coinbase.com/buy?token=MWYwNDE3MmEtNGM1Yy02OGY4LWIxYjMtODIxNTE0ZDI3MTM5 - // https://pay.coinbase.com/buy/select-asset?sessionToken=MWYwNDE3MmEtNGM1Yy02OGY4LWIxYjMtODIxNTE0ZDI3MTM5&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&destinationWallets=[{"address":"0x652bd17D489F283A03bb52DAFa138764Be04Bc66","blockchains":["ethereum"]}]&defaultAsset=ETH&defaultPaymentMethod=CARD&fiatCurrency=USD&presetFiatAmount=10 - - // https://pay.coinbase.com/buy/select-asset?appId=aefedf19-488c-426c-b7be-133fab72807c&addresses={"0x652bd17D489F283A03bb52DAFa138764Be04Bc66":["baseSepolia"]}&assets=["ETH"] if (isCoinbaseToggled) { generateCoinbaseUrl(); } else { @@ -123,27 +53,12 @@ export const OnRamp = () => { } }, [isCoinbaseToggled]); - const openMoonPay = () => { - window.open(moonPayOnRampBuyUrl, "_blank"); - }; - useEffect(() => { const generateMoonPayUrl = async () => { try { // get session const session = await turnkey?.getSession(); - // console.log("session response:", session); - // const secretKey = "sk_test_QVIzIpqMuAtqUKRFaMcF6jwwgL96vwD"; - // const originalUrl = - // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=eth&walletAddress=0xc7c10b3f98Be080DC2d6052BFd6d70F32B6b9e53"; - // const signature = crypto - // .createHmac("sha256", secretKey) // Use your secret key - // .update(new URL(originalUrl).search) // Use the query string part of the URL - // .digest("base64"); // Convert the result to a base64 string - - // const urlWithSignature = `${originalUrl}&signature=${encodeURIComponent(signature)}`; // Add the signature to the URL - // console.log("urlWithSignature", urlWithSignature); const initMoonPayFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, @@ -156,16 +71,12 @@ export const OnRamp = () => { console.log( "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse, + initMoonPayFiatOnRampResponse ); - // console.log( - // "https://buy-sandbox.moonpay.com?apiKey=pk_test_zEGwLvmLma8crfMBnJwzom7jzKeu6Jsk¤cyCode=ETH&walletAddress=0xf2C35a22F398a00097E7621638D3931173850811&signature=wecT6rA1h8Fo5xL3wtjMH2nvUdAwGbHHTu8NRI85Xeo%3D" - // ); + if (initMoonPayFiatOnRampResponse?.onRampUrl) { window.open(initMoonPayFiatOnRampResponse?.onRampUrl, "_blank"); - // setMoonPayOnRampBuyUrl(initMoonPayFiatOnRampResponse?.onRampUrl); } - // setMoonPayOnRampBuyUrl(urlWithSignature); } catch (error) { console.error("Failed to init fiat on ramp:", error); } @@ -178,42 +89,6 @@ export const OnRamp = () => { } }, [isMoonPayToggled]); - // const handleGetMoonPayUrlSignature = async (url: string): Promise => { - // try { - // // get session - // const session = await turnkey?.getSession(); - // console.log("session response:", session); - - // const initMoonPayFiatOnRampResponse = - // await indexedDbClient?.initFiatOnRamp({ - // organizationId: session?.organizationId!, - // onrampProvider: "MOONPAY", - // transactionType: "BUY", - // }); - - // console.log( - // "initMoonPayFiatOnRampResponse:", - // initMoonPayFiatOnRampResponse - // ); - // } catch (error) { - // console.error("Failed to init fiat on ramp:", error); - // } - // // console.log("Generating signature for URL:", url); - // // const signature = crypto - // // .createHmac("sha256", secretKey) - // // .update(new URL(url).search) // Use the query string part of the URL - // // .digest("base64"); // Convert the result to a base64 string - - // // console.log(signature); // Print the signature - // // return signature; // Return the signature - // }; - - // const handleGetSignature = async (url: string): Promise => { - // const signature = await fetch(`https://http://localhost:3001//sign-url?url=${url}`) - // console.log("Signature received:", signature); - // return signature as unknown as string; - // } - return (

Fiat On Ramps

From ba12dd0383c3be4332eb4d4ef92826538d31ee7b Mon Sep 17 00:00:00 2001 From: Mohammad Cheikh Date: Tue, 8 Jul 2025 17:09:28 -0400 Subject: [PATCH 34/42] funding container --- .../src/app/dashboard/OnRamp.tsx | 140 ++++++------------ .../src/app/dashboard/dashboard.css | 78 +++++++++- .../src/app/dashboard/page.tsx | 3 +- 3 files changed, 125 insertions(+), 96 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 9c8b9086f..70179e184 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -1,113 +1,65 @@ -import crypto from "crypto"; -import { MoonPayBuyWidget } from "@moonpay/moonpay-react"; -import { - FundButton, - getOnrampBuyUrl, - fetchOnrampConfig, - fetchOnrampOptions, -} from "@coinbase/onchainkit/fund"; -import { useEffect, useState } from "react"; +import { useEffect } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; -// import { Buy } from "@coinbase/onchainkit/buy"; -// import { Token } from "@coinbase/onchainkit/token"; export const OnRamp = () => { const { turnkey, indexedDbClient } = useTurnkey(); - // const [isMoonPayVisible, setIsMoonPayVisible] = useState(false); - const [coinbaseOnRampBuyUrl, setCoinbaseOnRampBuyUrl] = useState(""); - const [moonPayOnRampBuyUrl, setMoonPayOnRampBuyUrl] = useState(""); - const [isCoinbaseToggled, setIsCoinbaseToggled] = useState(false); - const [isMoonPayToggled, setIsMoonPayToggled] = useState(false); - useEffect(() => { - const generateCoinbaseUrl = async () => { - try { - // get session - const session = await turnkey?.getSession(); + const generateCoinbaseUrl = async () => { + try { + const session = await turnkey?.getSession(); - const initFiatOnRampResponse = await indexedDbClient?.initFiatOnRamp({ - organizationId: session?.organizationId!, - onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", - walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", - network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", - cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", - fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", - countryCode: "US", - countrySubdivisionCode: "ME", - }); + const response = await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", + walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", + network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", + cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", + fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", + countryCode: "US", + countrySubdivisionCode: "ME", + }); - console.log("initFiatOnRampResponse:", initFiatOnRampResponse); - - if (initFiatOnRampResponse?.onRampUrl) { - window.open(initFiatOnRampResponse?.onRampUrl, "_blank"); - } - } catch (error) { - console.error("Failed to init fiat on ramp:", error); + if (response?.onRampUrl) { + window.open(response.onRampUrl, "_blank"); } - }; - - if (isCoinbaseToggled) { - generateCoinbaseUrl(); - } else { - setCoinbaseOnRampBuyUrl(""); + } catch (error) { + console.error("Failed to init Coinbase on-ramp:", error); } - }, [isCoinbaseToggled]); + }; - useEffect(() => { - const generateMoonPayUrl = async () => { - try { - // get session - const session = await turnkey?.getSession(); + const generateMoonPayUrl = async () => { + try { + const session = await turnkey?.getSession(); - const initMoonPayFiatOnRampResponse = - await indexedDbClient?.initFiatOnRamp({ - organizationId: session?.organizationId!, - onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", - walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", - network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", - cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", - fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", - }); + const response = await indexedDbClient?.initFiatOnRamp({ + organizationId: session?.organizationId!, + onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", + walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", + network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", + cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", + fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", + }); - console.log( - "initMoonPayFiatOnRampResponse:", - initMoonPayFiatOnRampResponse - ); - - if (initMoonPayFiatOnRampResponse?.onRampUrl) { - window.open(initMoonPayFiatOnRampResponse?.onRampUrl, "_blank"); - } - } catch (error) { - console.error("Failed to init fiat on ramp:", error); + if (response?.onRampUrl) { + window.open(response.onRampUrl, "_blank"); } - }; - - if (isMoonPayToggled) { - generateMoonPayUrl(); - } else { - setMoonPayOnRampBuyUrl(""); + } catch (error) { + console.error("Failed to init MoonPay on-ramp:", error); } - }, [isMoonPayToggled]); + }; return ( -
-

Fiat On Ramps

- - +
+
+
Funding
+
Add funds via Coinbase or MoonPay.
+
+ +
); }; diff --git a/examples/react-components/src/app/dashboard/dashboard.css b/examples/react-components/src/app/dashboard/dashboard.css index 40abd54c6..9d75c4805 100644 --- a/examples/react-components/src/app/dashboard/dashboard.css +++ b/examples/react-components/src/app/dashboard/dashboard.css @@ -48,7 +48,7 @@ body { padding: 8px 24px; border-radius: 8px; width: 542px; - height: 584px; + height: 642px; border: 1px solid var(--Greyscale-100, #ebedf2); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); display: flex; @@ -465,3 +465,79 @@ button:hover { .sonner-toaster > div { pointer-events: auto; } + +.onRamp { + display: flex; +min-height: 36.02px; +padding: 24px; +flex-direction: column; +align-items: flex-start; +gap: 16px; +align-self: stretch; +border-radius: 8px; +background: #FFF; +background: color(display-p3 1 1 1); +box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10); +box-shadow: 0px 2px 4px 0px color(display-p3 0 0 0 / 0.10); +} + +.fundingText { + display: flex; +flex-direction: column; +align-items: flex-start; +gap: 4px; +} +.fundingTitle { + color: #000; +color: color(display-p3 0 0 0); +font-family: Inter; +font-size: 16px; +font-style: normal; +font-weight: 700; +} + +.fundingSub { + color: #6D7681; +color: color(display-p3 0.4351 0.4613 0.5033); +font-family: Inter; +font-size: 16px; +font-style: normal; +font-weight: 400; +} + +.whiteButton { + letter-spacing: -0.01em; + display: inline-flex; + align-items: center; + justify-content: center; + padding: 10px 16px; + gap: 8px; + color: var(--button-text); + width: 100%; + font-size: 1rem; + background: var(--button-bg); + border: 1px solid var(--button-border); + border-radius: 8px; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.whiteButton:hover { + background-color: var(--button-hover-bg); +} + +.whiteButton:disabled { + color: var(--button-disabled-text); + background: var(--button-disabled-bg); + border-color: var(--button-disabled-border); + cursor: default; +} + +.onRampContainer { + display: flex; + flex-direction: column; + margin-top: 24px; + padding-top: 16px; + padding-bottom: 16px; + border-top: 1px solid var(--Greyscale-200, #ebedf2); +} \ No newline at end of file diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index c615148fb..34a2053a9 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -715,7 +715,6 @@ export default function Dashboard() { -
@@ -730,6 +729,8 @@ export default function Dashboard() { onHandleImportSuccess={handleImportSuccess} />
+
+
From 6ca99de684f1a8895f36112af650c1aa127c0940 Mon Sep 17 00:00:00 2001 From: Mohammad Cheikh Date: Tue, 8 Jul 2025 17:21:15 -0400 Subject: [PATCH 35/42] buy buttons with popups --- .../react-components/public/images/coinbase.png | Bin 0 -> 1206 bytes .../react-components/public/images/moonpay.jpg | Bin 0 -> 6413 bytes .../src/app/dashboard/OnRamp.tsx | 16 +++++++++++++--- .../src/app/dashboard/dashboard.css | 5 +++++ 4 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 examples/react-components/public/images/coinbase.png create mode 100644 examples/react-components/public/images/moonpay.jpg diff --git a/examples/react-components/public/images/coinbase.png b/examples/react-components/public/images/coinbase.png new file mode 100644 index 0000000000000000000000000000000000000000..4f86621bad9175d5c68f0abdc33e537ea9e60ec7 GIT binary patch literal 1206 zcmV;n1WEgeP)at5VQ9hz=bbGKoXf z(h7EQXe$&&FjNJrQ<{DWZG0ptQgIVkDfk~)!C7#yh*WTKa1cZX5#5|RDY$5O-j`I` zBHqX4{WzR+xm>^-P#G)s0x0R0kxay-wbZ)gdxM9bQ>tdNsG=+i{{6e_^U?L*Pl#Df zyLJ%SPh6MIE|+$m0#kqeUDcn-ni~Dz)Ip6I7T}SIm2Ha&-X$I}Xer{V;JnMng3~Ua zJD!zfocNYl(h6#ZxJfLhJM?@9mx^VrwS(B+pVe2F#T@EU%wZEI7>ZC)fdmENfBe&q zKaMSOS71;sj{+>pL`e}7vc&VypY?`La=`luFqi^{?NiPd)$u0`o~kK~#7FwU<3i6hRcn-)*ju(olN{0oPNXcExg{!1F5-4H+JGZ;DGjBe21OH@m zd$T)lelzc5W=rRxsDO_C6P=tA4Nk@X@f+eQqO$Lc80^c>-q@M#7&~v zDWW?yf2fjcB{0~J?eO}|4{Q>EX73TrO}k;N5PKb>rPX|cs{+76Q>;#Ih}F&T+M-Jn zKo(~BXXPRQ^_uW~t(vy=!$56!!`18ZePVkYNI4I{)6l>3P2q2okTvL!Am%_SBf^fX zj5}ap`nBE}e*L^CX74N5diGKL$^yi+P-0^gaqq_)U#!bT;KSfLmMH z`eCaFXhWdNW8fbBu}aZObbES7803WPSy|T$7$)*&O+4px|F+(S5P%{GZaGo=RmJIN z6P|OmqQOAGoe4z$IQtN3#Kl6(vx4sY)7xNA4bZ`v_>E#hU0PEyipgEt_$zi=Rq8nX zVGRlB3RE(*n}eZ5H0_2E+=lcTlZSM_KDyHA;YwX1TmQFb=Ir13a(~}G``i1>{>c720I8*>sRlqG0003$!2Ww^ zfu@RzwE<3FO;hL0Ap@G^Zs*|x7X<(hPhW4Gx-#aRnK=gdTeG$E!7CXU==_cJFSs#u zU>yM72p!n^7xRC*rLcGKu>%K41`5jB;k|u9j0Le?fG_?4CxMvG&e_%;#Kj;!;SCND z#IFzN7k=W|1MKt@e?P$9#yAxKfKq}Oxm!g=>cA#jvaW#1D61A zP{Rpu26az>R6oE6Z~%KpknR9}+(8Mj{mK2GoccIQ9M}Uxrqlue#LWKwx*!0M<^aHM z%>Mq5qW%5dTL1tX0f6STKl)y2U^n_e}txxdH%nPyWy@lmI|Im}90%ysfwG zp&uA{g*rL{z?a(qKxGC1XfW4DEdH|kI z6bgeJMDSN5A%%bgCWC@p7I3A3%)fKt2ndV>O1l3Rpaiv`NEi~F$N1~S^I^aA|Ip9t$>-zBF1jv{@JaFF8b+e1hib z5Tj&tGjNvvaV>5mgOl(#Q!pk@0Vy7#fzV+!C_N-iJm_S519z$g%YG-hS`d5oJ~M>8rnsK*cerSLP5= zChoCyVV^H;TVWby*k9I`x4H(OPK>Vkjnd13Bc0Ig29r&4S$ALZ-kQ+3)Oz0A*&V(_x$x6HA1Mt#rIc3)Z*Tz_1(6+R`HYID!o=dS!Vdv!sZqB zmkjzl$$RR%<9I2XLkb!9a(?v$lC3B6mjD2C%seJ8>rq#8JvBHWLi!6n_-$I-FjirI z%fO@uHG5%a3;W7MsLYZN-Cae z{Z3ccC8%(o{n8Y2tSpW?sp>{#MXL1-+?dT@o`YrjdYPueq6o{)}S!Tv+)KXtSb(nJ5GV{m0$>ejF`{TXDS8IZBqWLpTvue^dV?UKyT>5rX7SRJ z6Crifah<7Z5gMK|`~umk9;&XF#XFzdJuThHwPXtYx=|!0?~stvWiKAQ4cFD|dO&&(I72b?r4!<%RNf8n1^Z?*fNUAR`6Lo^(!ozjKj z`iGu?q}y}*3=xC``p#_9U@O2u#sai;DLscaZVc2Pq)*t8CiE|3~1u@;QaJEEN@|zSqUjzh4}Ur!gqxr z-8^fkn&&2E0)t1MCGC^?pqSdH`lGY%W&)cHmpk2;Pm2V_Xv8!0@_5(f2Ss=9qN-my zexwP~RjjWXowE`Sp|-jSo$lr@`#)Y;m4R_+sJ@i(IGHF2ww42ZvZ)YgGE4OrJL zF)?{hQZ4Hn!0~I-OPJLVu*;RD$50z3ck`IQjf20D3t0&|i}e&OHD} z(Ta*;II&1BaV0dKPTBBq?!juS2-#)sFIrcg=4V}-Ij?=)`CFoLba?M&2BQoGh7Y6f z$Axb!MEMeB^5)LQyTwRtvFsKezust3bh0?vy6?4Y3$fm>5S@P~eoEhef{*^hTobii zc!!Gg{jPkHdHqFcNQdh7u>5DdgzD@E$H509Qw_4ZrHQOw<2%x+vodp*8ft@$b35dz zD(+*v>Am460z1UhWfkyeN@v%mHIbn%)AkEMo}j!}-95W@=j4aFp)C?0UP*V1TY`{Wco;MEAm%L=t~s_u z_<3g$f+oH*yoDffkoIlT=<(_vfAJ&pl-GJm%*<~XKU~>F zGsh`p3B0pXBqy+>P2$QJ;;2O69SWrwO{o@$>y+cDaNp7;;ssci>x}Qo<7pSESC2yH z>1RxvvNd#b^1Pm^1m|Sd!M@ExN@DRSIV}nD+ER7FB(ndl_f)N1UyUnCZorcNT*{@ZFVbRTGx=1cVcuOG73ErWPg#sR6aoOUVTg_^ z{k5y@`@lCW6c+Y1aqO1-{1FQ}>p+SVN`qp=OpoGbG)=NKI5&!54T3^R;1u8)=ki5JQ z|Jl*onn6X%%_q;)77OsMQH%Pq$hhCOO3oe@fh>Hb><4zZx7S8>F3W7PhoAm>i7l-z zo@ik?3Iln4Esutdbvr<-dn(SHf0&Bl^!y>i=P!L%1NTZ3o#=m8V5O#cI*;IV{vHXm z;qho`=8qf>Onhe|>7006p`Oe*rS1*nN`P^P`WTMpvVf$Pd5x!XZ}RNREC{RlHC=rd zvl*yCN(oCCl9hO;bdT9jGaE?oRQK7FdGMvY6j&R)>GO|gYgE6`0{;3EfH?&sdHKC|)Ne+q5EUCr8qOljXb9I|KPj1$Rp+8MW zYPHuekax+JnV+wj<{%&7TkR5=%;$_O{!wzt?xvUdS&5m*K((_p_fKv(4C#8s?6yij zGmalV=}20b=+Gu$nw%esj$kv5d=#S1{`PV4!d-a%us2+2(5jZ6HAI~<$G`0fJG=1b@5U6bD#N%@ZO2P7<&Lg~StA03TDsCRCYmA?T{@P&%ST)Dz1Q*GwlOS* zT2Y-a<2dQ%d+GgjubLWD6kp=6pD5jOw~1Qsne|FwR5lqki7EJS6WH+U&^qx}E%2pI z*3DGjk4G}pMn04-oShR-B;3H=i>e&BJjd~fx%`w~0XEU`T3UX4S^L#F7`GY2Ud&?g%N?1c%LO4d$Ai1!zr4PAkll1%9hA49GC5OMz+vu_kG-xk< zq`e+`caQmoeQ0sM34KoVr;6xt&Fb35NBo-M00VV1nXIl>qw?gj?bU|%ZJ1s;m3T9> z%NfDSOItZ3G5O%TK`EmXnZ@8T+AdYTY=;m|#R9`?ei{b^1n$>9v7#rpyCL>)ebaeK zK$ORH@L0}_FVl}P_ndjH#I%CR3L(mtP28%-gRRLLrW7Lli*+k4$+F6XXg8 zoW-RJ%z?wuA&KY1wLNi_tAw)8LQ<{w1x?p;gKtw+O}VF7rKy~JqN1mM)0@@p(L~VI zkdtXr?oFnxV^^0?7y_3^Je{5E7Qb}aKNB^thj!Kd!^bG{=oRg1_f3+TFLFKCI`uebs*R6)V=%6C5d6|twDPtBTy=NPi1D9TJS+lNK z-(%tC6N1V2a(@{sK|8uo$YUa!sBP;TJ=)2cTrsHS&q*DaEzXdqv4D-lsWRZYlfAZm z4@;7~4;I7I!-8ROAXVB}YP~MPOu;yG&E18&?aEQh%jO;(_l*m24c)wteJbU*vR=)U zE9n-r-&^`Dgp+gj$K>M1`o4Twg}zKv?UvomZ<#vIud*_^DlmyjynCbBLhM<(YfSI^ zfN^H^8x40oM=7ajU>;qZ>crsCtC9gW*fuWP4I>XGRy_L=vy@0#e1^BPa7xC9Ui@Y1 ztM}7oFW&P6;9seacZEyxJg=dd=+BDxTdhj};rI#P4WZ z7V{kM+ExT>?BQG0;Tt7#z4z4r(^p~VUyiL%D&$1F_KhD~8{S8~iG! z!l&wTyf%Lg`~5xunt)FIx(7wq4oRn0c|ccQZ>D;g4~HZ4dr+X*+CAU(mlQsKjDvO*W!l((TmH`ia3|(L9h4>* z4DtKb8Z1p>O5phjb8tEWD-+@8etU2lL~h9Fn)hdBLj?82H=k5TjPe5#9S#cHN70Fb zw_=KpS_f$i?V747rj-x(oTE3dR$JJ9XQ!-%Ll{YThGk?`ZZDqUS?JxC6@SXxDj=e4 zG3^(xYBrj-GL^hui&=jn<#AMmkDE+{d6iE`dUR0cvMhup7zYfO6KI|wLnan?G^Yy5 z&^mi`5K=nQ?sG0h@6;;~P7?xP3;>K2e4+XE_W%Syaf*s584|(^v9^7f_G*1xL4rOyqDV*Url_)}i4J9Ls8m$`yQZE6zTC`nM6_h!`DW5uY8s_z zE+54w5l%!Symj!NGCtxC@8a;)@-R#cvMbha|Zjs@e0q$0&(bU_{U>=e8D}h zCZI2!&zh19k;9|ZB#}BP`vA}5ww92>rtI{|4&#P5xTolPTqWsg3c>Cxqi&wpI-$=g z+JloU-Djr+veUP#g3ER9&zpXfQvvKeAB|S3(opnlYZrKz3RVTnw%5RhuzMebBo@Ln zBb28v&Bm}HtbJ&(8+<^nC{En^i2;8xBdOYzUfG&JQzCz~=wW#POSPbU{{5xQ6t*nL}ts*gqTo=Abm zbcuFRy|ci!y-I2kPjVk!h=|Mx{bL5%foh&1-jXwz&Sh06*X2^Zwp&BWR`83Z1b@xo zms^#x)Z#V?LJuiJCj=EnEN)|V8T~eP`aIy}W*W0qTngNrFBsa$iLGyL5g3!H)*@03 zJHu68HnR-uG8^Xpa4_c&Vpp|k@IY4(lC>^IiMF~ts96|4GfPsSqLm9#A4j)fZdm(^ zj7|05dpk0KVRA1z$wR>Be94}F7^w;{d^nJjDxh%AZY#jm2NVT2ic`D0eTA8 z+U0A}pOI4M9K{r%weRqpMq#nvT~8j-2%D8A%Q@wnnGVHZGh)9OW9eB@a>9rgN0!-T zldjikYA&nHz57;rg@Dx2FRW)35Q%D|c>RMNiN{rQ3~Faa4n1A=BfK51u`vkT2hNf! zifMDQCF{wp+v&{!3A5j)g{4wdQiU=0eoI{Gyqak-dUC93LXEmV$VYvb0IyXgj0(_WEZlCin>9``{oz+{$()k|4% z4uubRr&v)|!q+sg7(JlqnT~K3)oUADx?!be)cNw*o`+^)Mp_PXm#Pt0d#eLoQGU1o zZIS*P;KKBvbWct3&2)#7Oi|W!OzgF|5?D(+)8rJjec5s61hFulIN2ydJgPM?lid7T ztCPxYO1-NH`%hOjh|l%`ixs^BZLQq9FK8oG8?p`DoLA@F4c1KSBQ4oXn%)V198qFX r(;ZWP5Ac3el0?3nWCmaaI#H-d22n5!Mo#N4ZCVe}vVI31Zb$zM@QNLV literal 0 HcmV?d00001 diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 70179e184..ac41b83a2 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -20,7 +20,11 @@ export const OnRamp = () => { }); if (response?.onRampUrl) { - window.open(response.onRampUrl, "_blank"); +window.open( + response.onRampUrl, + "_blank", + "popup,width=500,height=700,scrollbars=yes,resizable=yes" +); } } catch (error) { console.error("Failed to init Coinbase on-ramp:", error); @@ -41,7 +45,11 @@ export const OnRamp = () => { }); if (response?.onRampUrl) { - window.open(response.onRampUrl, "_blank"); + window.open( + response.onRampUrl, + "_blank", + "popup,width=500,height=700,scrollbars=yes,resizable=yes" +); } } catch (error) { console.error("Failed to init MoonPay on-ramp:", error); @@ -54,10 +62,12 @@ export const OnRamp = () => {
Funding
Add funds via Coinbase or MoonPay.
-
diff --git a/examples/react-components/src/app/dashboard/dashboard.css b/examples/react-components/src/app/dashboard/dashboard.css index 9d75c4805..88cbc90dd 100644 --- a/examples/react-components/src/app/dashboard/dashboard.css +++ b/examples/react-components/src/app/dashboard/dashboard.css @@ -522,6 +522,11 @@ font-weight: 400; transition: background-color 0.3s ease; } +.whiteButton img { + width: 24px; + height: 24px; + object-fit: contain; +} .whiteButton:hover { background-color: var(--button-hover-bg); } From afe9f3b2563a8904010a21fdde726ff271ed73f5 Mon Sep 17 00:00:00 2001 From: Mohammad Cheikh Date: Tue, 8 Jul 2025 17:38:02 -0400 Subject: [PATCH 36/42] pass eth address to onRamp component --- .../react-components/src/app/dashboard/OnRamp.tsx | 11 ++++++++--- examples/react-components/src/app/dashboard/page.tsx | 6 +++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index ac41b83a2..899cdc59d 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -1,7 +1,12 @@ import { useEffect } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; -export const OnRamp = () => { +type OnRampProps = { + ethAddress: string; +}; + + +export const OnRamp = ({ ethAddress }: OnRampProps) => { const { turnkey, indexedDbClient } = useTurnkey(); const generateCoinbaseUrl = async () => { @@ -11,7 +16,7 @@ export const OnRamp = () => { const response = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE", - walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", + walletAddress: ethAddress, network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", @@ -38,7 +43,7 @@ window.open( const response = await indexedDbClient?.initFiatOnRamp({ organizationId: session?.organizationId!, onrampProvider: "FIAT_ON_RAMP_PROVIDER_MOONPAY", - walletAddress: "0x958E4A3364a25e5555f3e1b1171e91322DEe0589", + walletAddress: ethAddress, network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 34a2053a9..687adafc3 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -476,6 +476,9 @@ export default function Dashboard() { : "Verification failed.", ); }; + const ethAddress = accounts.find((account: any) => + account.address.startsWith("0x") +)?.address; if (loading) { return (
@@ -729,7 +732,8 @@ export default function Dashboard() { onHandleImportSuccess={handleImportSuccess} />
-
+ +
From a8ea760674889ea18d5f53af16a75b0eb397fe6f Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 9 Jul 2025 13:11:37 -0400 Subject: [PATCH 37/42] enable sandbox mode --- .../app/components/CoinbaseCryptoProvider.tsx | 4 +- .../public/v1/public_api.client.ts | 308 +- .../public/v1/public_api.fetcher.ts | 194 +- .../public/v1/public_api.swagger.json | 4 + .../coordinator/public/v1/public_api.types.ts | 2 + .../src/__generated__/sdk-client-base.ts | 2872 ++++++----------- .../src/__generated__/sdk_api_types.ts | 808 ++--- .../src/__inputs__/public_api.swagger.json | 4 + .../src/__inputs__/public_api.types.ts | 2 + .../src/__generated__/sdk-client-base.ts | 2590 ++++++--------- .../src/__generated__/sdk_api_types.ts | 808 ++--- .../src/__inputs__/public_api.swagger.json | 4 + .../src/__inputs__/public_api.types.ts | 2 + 13 files changed, 2748 insertions(+), 4854 deletions(-) diff --git a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx index fac1900b5..bb043074d 100644 --- a/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx +++ b/examples/react-components/src/app/components/CoinbaseCryptoProvider.tsx @@ -2,7 +2,7 @@ import React from "react"; import { OnchainKitProvider } from "@coinbase/onchainkit"; -import { baseSepolia } from "viem/chains"; +import { sepolia } from "viem/chains"; interface CoinbaseCryptoProviderProps { children: React.ReactNode; @@ -13,7 +13,7 @@ const CoinbaseCryptoProvider = ({ children }: CoinbaseCryptoProviderProps) => { {children} diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index a77aba152..933da4daa 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -357,7 +357,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -396,7 +396,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -407,7 +407,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody, + input: TGetActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -481,7 +481,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -492,7 +492,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody, + input: TGetAttestationDocumentBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -512,7 +512,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -523,7 +523,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody, + input: TGetAuthenticatorBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -543,7 +543,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -554,7 +554,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody, + input: TGetAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -574,7 +574,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -585,7 +585,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody, + input: TGetOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -606,7 +606,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -617,7 +617,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody, + input: TGetOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -637,7 +637,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -648,7 +648,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody, + input: TGetOrganizationConfigsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -696,7 +696,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -707,7 +707,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody, + input: TGetPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -727,7 +727,7 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterface}. */ getSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody, + input: TGetSmartContractInterfaceBody ): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", input); }; @@ -738,7 +738,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterface}. */ stampGetSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody, + input: TGetSmartContractInterfaceBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_smart_contract_interface"; @@ -813,7 +813,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -824,7 +824,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody, + input: TGetWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -844,7 +844,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -855,7 +855,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody, + input: TGetActivitiesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -875,7 +875,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -886,7 +886,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody, + input: TGetPoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -906,7 +906,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -917,7 +917,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody, + input: TListPrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -938,7 +938,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -949,7 +949,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody, + input: TGetPrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -969,11 +969,11 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterfaces}. */ getSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody, + input: TGetSmartContractInterfacesBody ): Promise => { return this.request( "/public/v1/query/list_smart_contract_interfaces", - input, + input ); }; @@ -983,7 +983,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterfaces}. */ stampGetSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody, + input: TGetSmartContractInterfacesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_smart_contract_interfaces"; @@ -1004,7 +1004,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -1015,7 +1015,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody, + input: TGetSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -1035,7 +1035,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -1046,7 +1046,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody, + input: TListUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1093,7 +1093,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1104,7 +1104,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody, + input: TGetVerifiedSubOrgIdsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1125,7 +1125,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1136,7 +1136,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody, + input: TGetWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1211,7 +1211,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody, + input: TApproveActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1242,7 +1242,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1253,7 +1253,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody, + input: TCreateApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1273,7 +1273,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1284,7 +1284,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody, + input: TCreateApiOnlyUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1305,7 +1305,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1316,7 +1316,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody, + input: TCreateAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1337,7 +1337,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1348,7 +1348,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody, + input: TCreateInvitationsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1369,7 +1369,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody, + input: TCreateOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1401,7 +1401,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody, + input: TCreatePoliciesBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1432,7 +1432,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1443,7 +1443,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody, + input: TCreatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1463,7 +1463,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1474,7 +1474,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody, + input: TCreatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1495,7 +1495,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1506,7 +1506,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody, + input: TCreatePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1527,7 +1527,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1538,7 +1538,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody, + input: TCreateReadOnlySessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1559,7 +1559,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1570,7 +1570,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody, + input: TCreateReadWriteSessionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1591,11 +1591,11 @@ export class TurnkeyClient { * See also {@link stampCreateSmartContractInterface}. */ createSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody, + input: TCreateSmartContractInterfaceBody ): Promise => { return this.request( "/public/v1/submit/create_smart_contract_interface", - input, + input ); }; @@ -1605,7 +1605,7 @@ export class TurnkeyClient { * See also {@link CreateSmartContractInterface}. */ stampCreateSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody, + input: TCreateSmartContractInterfaceBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_smart_contract_interface"; @@ -1626,7 +1626,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1637,7 +1637,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody, + input: TCreateSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1658,7 +1658,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1669,7 +1669,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody, + input: TCreateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1689,7 +1689,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1700,7 +1700,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody, + input: TCreateUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1720,7 +1720,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1731,7 +1731,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody, + input: TCreateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1751,7 +1751,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1762,7 +1762,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody, + input: TCreateWalletAccountsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1783,7 +1783,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1794,7 +1794,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody, + input: TDeleteApiKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1814,7 +1814,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1825,7 +1825,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody, + input: TDeleteAuthenticatorsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1846,7 +1846,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1857,7 +1857,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody, + input: TDeleteInvitationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1877,7 +1877,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1888,7 +1888,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody, + input: TDeleteOauthProvidersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1909,7 +1909,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1920,7 +1920,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody, + input: TDeletePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1940,7 +1940,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1951,7 +1951,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody, + input: TDeletePrivateKeyTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1972,7 +1972,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1983,7 +1983,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody, + input: TDeletePrivateKeysBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -2004,11 +2004,11 @@ export class TurnkeyClient { * See also {@link stampDeleteSmartContractInterface}. */ deleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody, + input: TDeleteSmartContractInterfaceBody ): Promise => { return this.request( "/public/v1/submit/delete_smart_contract_interface", - input, + input ); }; @@ -2018,7 +2018,7 @@ export class TurnkeyClient { * See also {@link DeleteSmartContractInterface}. */ stampDeleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody, + input: TDeleteSmartContractInterfaceBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_smart_contract_interface"; @@ -2039,7 +2039,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -2050,7 +2050,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody, + input: TDeleteSubOrganizationBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -2071,7 +2071,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -2082,7 +2082,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody, + input: TDeleteUserTagsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -2102,7 +2102,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -2113,7 +2113,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody, + input: TDeleteUsersBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody, + input: TDeleteWalletsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2191,7 +2191,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2202,7 +2202,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody, + input: TExportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2223,7 +2223,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2234,7 +2234,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody, + input: TExportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2254,7 +2254,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2265,7 +2265,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody, + input: TExportWalletAccountBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2286,7 +2286,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2297,7 +2297,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody, + input: TImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody, + input: TImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody, + input: TInitFiatOnRampBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2380,7 +2380,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2391,7 +2391,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody, + input: TInitImportPrivateKeyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2412,7 +2412,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2423,7 +2423,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody, + input: TInitImportWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2471,7 +2471,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2482,7 +2482,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody, + input: TInitOtpAuthBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2502,7 +2502,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2513,7 +2513,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody, + input: TInitUserEmailRecoveryBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2642,7 +2642,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2653,7 +2653,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody, + input: TRecoverUserBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2673,7 +2673,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2684,7 +2684,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody, + input: TRejectActivityBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2704,7 +2704,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2715,7 +2715,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody, + input: TRemoveOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2736,7 +2736,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2747,7 +2747,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody, + input: TSetOrganizationFeatureBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2768,7 +2768,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2779,7 +2779,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody, + input: TSignRawPayloadBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2799,7 +2799,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2810,7 +2810,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody, + input: TSignRawPayloadsBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2830,7 +2830,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2841,7 +2841,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody, + input: TSignTransactionBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody, + input: TUpdatePolicyBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody, + input: TUpdatePrivateKeyTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody, + input: TUpdateRootQuorumBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -3010,7 +3010,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -3021,7 +3021,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody, + input: TUpdateUserEmailBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -3041,7 +3041,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -3052,7 +3052,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody, + input: TUpdateUserNameBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -3072,7 +3072,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -3083,7 +3083,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody, + input: TUpdateUserPhoneNumberBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -3104,7 +3104,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -3115,7 +3115,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody, + input: TUpdateUserTagBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -3135,7 +3135,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -3146,7 +3146,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody, + input: TUpdateWalletBody ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3193,7 +3193,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3204,7 +3204,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody, + input: TTestRateLimitsBody ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index fcc5eba26..b6dd75764 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -574,7 +574,7 @@ export type TGetSmartContractInterfaceBody = * `POST /public/v1/query/get_smart_contract_interface` */ export const getSmartContractInterface = ( - input: TGetSmartContractInterfaceInput, + input: TGetSmartContractInterfaceInput ) => request< TGetSmartContractInterfaceResponse, @@ -595,7 +595,7 @@ export const getSmartContractInterface = ( */ export const signGetSmartContractInterface = ( input: TGetSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_smart_contract_interface", @@ -641,7 +641,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -687,7 +687,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -739,7 +739,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -785,7 +785,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -831,7 +831,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -883,7 +883,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -929,7 +929,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -964,7 +964,7 @@ export type TGetSmartContractInterfacesBody = * `POST /public/v1/query/list_smart_contract_interfaces` */ export const getSmartContractInterfaces = ( - input: TGetSmartContractInterfacesInput, + input: TGetSmartContractInterfacesInput ) => request< TGetSmartContractInterfacesResponse, @@ -985,7 +985,7 @@ export const getSmartContractInterfaces = ( */ export const signGetSmartContractInterfaces = ( input: TGetSmartContractInterfacesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_smart_contract_interfaces", @@ -1031,7 +1031,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -1077,7 +1077,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1123,7 +1123,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1175,7 +1175,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1227,7 +1227,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1273,7 +1273,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1319,7 +1319,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1365,7 +1365,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1411,7 +1411,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1463,7 +1463,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1515,7 +1515,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1567,7 +1567,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1619,7 +1619,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1665,7 +1665,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1711,7 +1711,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1763,7 +1763,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1815,7 +1815,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1867,7 +1867,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1921,7 +1921,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1956,7 +1956,7 @@ export type TCreateSmartContractInterfaceBody = * `POST /public/v1/submit/create_smart_contract_interface` */ export const createSmartContractInterface = ( - input: TCreateSmartContractInterfaceInput, + input: TCreateSmartContractInterfaceInput ) => request< TCreateSmartContractInterfaceResponse, @@ -1977,7 +1977,7 @@ export const createSmartContractInterface = ( */ export const signCreateSmartContractInterface = ( input: TCreateSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_smart_contract_interface", @@ -2029,7 +2029,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -2075,7 +2075,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -2121,7 +2121,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -2167,7 +2167,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2219,7 +2219,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2265,7 +2265,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2317,7 +2317,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2369,7 +2369,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2421,7 +2421,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2467,7 +2467,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2519,7 +2519,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2571,7 +2571,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2606,7 +2606,7 @@ export type TDeleteSmartContractInterfaceBody = * `POST /public/v1/submit/delete_smart_contract_interface` */ export const deleteSmartContractInterface = ( - input: TDeleteSmartContractInterfaceInput, + input: TDeleteSmartContractInterfaceInput ) => request< TDeleteSmartContractInterfaceResponse, @@ -2627,7 +2627,7 @@ export const deleteSmartContractInterface = ( */ export const signDeleteSmartContractInterface = ( input: TDeleteSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_smart_contract_interface", @@ -2679,7 +2679,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2725,7 +2725,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2771,7 +2771,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2817,7 +2817,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2863,7 +2863,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2915,7 +2915,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2961,7 +2961,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -3013,7 +3013,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -3065,7 +3065,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -3111,7 +3111,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -3157,7 +3157,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -3209,7 +3209,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3261,7 +3261,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3307,7 +3307,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3353,7 +3353,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3405,7 +3405,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3451,7 +3451,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3497,7 +3497,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3543,7 +3543,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3589,7 +3589,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3635,7 +3635,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3681,7 +3681,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3716,7 +3716,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput, + input: TRemoveOrganizationFeatureInput ) => request< TRemoveOrganizationFeatureResponse, @@ -3737,7 +3737,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3791,7 +3791,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3837,7 +3837,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3883,7 +3883,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3929,7 +3929,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3975,7 +3975,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -4021,7 +4021,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -4073,7 +4073,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -4125,7 +4125,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -4171,7 +4171,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4217,7 +4217,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4263,7 +4263,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4315,7 +4315,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4361,7 +4361,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4407,7 +4407,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4453,7 +4453,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4524,7 +4524,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions, + options?: TurnkeyCredentialRequestOptions ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 871064c2c..939120b01 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -7244,6 +7244,10 @@ "countrySubdivisionCode": { "type": "string", "description": "ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US." + }, + "sandboxMode": { + "type": "boolean", + "description": "Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false." } }, "required": [ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index 706a4d8c9..1148df59e 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -2160,6 +2160,8 @@ export type definitions = { countryCode?: string; /** @description ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US. */ countrySubdivisionCode?: string; + /** @description Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false. */ + sandboxMode?: boolean; }; v1InitFiatOnRampRequest: { /** @enum {string} */ diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 2f01b9397..714980d61 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,20 +1,10 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -24,6 +14,7 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -38,27 +29,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION, - }; + "X-Client-Version": VERSION + } if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue; + headers[stamp.stampHeaderName] = stamp.stampHeaderValue } - if (this.config.readOnlySession) { - headers["X-Session"] = this.config.readOnlySession; + if (this.config.readOnlySession){ + headers["X-Session"] = this.config.readOnlySession } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -79,13 +70,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -93,7 +83,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -104,19 +94,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -124,16 +110,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -142,33 +121,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -180,25 +154,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -210,25 +179,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -240,25 +204,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -270,30 +229,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -301,30 +254,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -332,30 +279,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -363,30 +304,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -394,30 +329,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -425,25 +354,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -455,25 +379,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -485,30 +404,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSmartContractInterface = async ( - input: SdkApiTypes.TGetSmartContractInterfaceBody, - ): Promise => { + getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSmartContractInterface = async ( - input: SdkApiTypes.TGetSmartContractInterfaceBody, - ): Promise => { + stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -516,25 +429,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -546,25 +454,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -576,30 +479,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -607,25 +504,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -637,25 +529,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -667,30 +554,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -698,30 +579,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -729,31 +604,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSmartContractInterfaces = async ( - input: SdkApiTypes.TGetSmartContractInterfacesBody, - ): Promise => { + getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSmartContractInterfaces = async ( - input: SdkApiTypes.TGetSmartContractInterfacesBody, - ): Promise => { + stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -761,25 +629,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -791,25 +654,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -821,25 +679,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -851,30 +704,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -882,30 +729,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -913,25 +754,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -943,25 +779,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -973,31 +804,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1005,38 +833,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1044,38 +862,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1083,38 +891,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1122,38 +920,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1161,38 +949,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1200,38 +978,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1239,33 +1007,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1277,38 +1036,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1316,38 +1065,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1355,38 +1094,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1394,38 +1123,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1433,39 +1152,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createSmartContractInterface = async ( - input: SdkApiTypes.TCreateSmartContractInterfaceBody, - ): Promise => { + + createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_smart_contract_interface", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", - }, - "createSmartContractInterfaceResult", - ); - }; + return this.command("/public/v1/submit/create_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + }, "createSmartContractInterfaceResult"); + } + - stampCreateSmartContractInterface = async ( - input: SdkApiTypes.TCreateSmartContractInterfaceBody, - ): Promise => { + stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1473,38 +1181,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1512,38 +1210,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } + - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1551,33 +1239,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; - - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } + + + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1589,33 +1268,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } + - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1627,38 +1297,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } + - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1666,38 +1326,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } + - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1705,38 +1355,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } + - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1744,38 +1384,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1783,38 +1413,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1822,33 +1442,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1860,38 +1471,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1899,38 +1500,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } + - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1938,39 +1529,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSmartContractInterface = async ( - input: SdkApiTypes.TDeleteSmartContractInterfaceBody, - ): Promise => { + deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_smart_contract_interface", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", - }, - "deleteSmartContractInterfaceResult", - ); - }; + return this.command("/public/v1/submit/delete_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" + }, "deleteSmartContractInterfaceResult"); + } + - stampDeleteSmartContractInterface = async ( - input: SdkApiTypes.TDeleteSmartContractInterfaceBody, - ): Promise => { + stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1978,38 +1558,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } + - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2017,38 +1587,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } + - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2056,33 +1616,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } + - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -2094,33 +1645,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } + - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -2132,33 +1674,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2170,38 +1703,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2209,33 +1732,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2247,38 +1761,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } + - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2286,38 +1790,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } + - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2325,33 +1819,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } + - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2363,38 +1848,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } + - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2402,38 +1877,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2441,38 +1906,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2480,33 +1935,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } + - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2518,33 +1964,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2556,38 +1993,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2595,33 +2022,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2633,33 +2051,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } + - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2671,33 +2080,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } + - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2709,33 +2109,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2747,33 +2138,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } + - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2785,31 +2167,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: - organizationId ?? session?.organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2817,38 +2196,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } + - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2856,38 +2225,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } + - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2895,38 +2254,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2934,38 +2283,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } + - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2973,38 +2312,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3012,33 +2341,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -3050,33 +2370,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -3088,38 +2399,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3127,38 +2428,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3166,33 +2457,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } + - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -3204,38 +2486,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } + - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3243,38 +2515,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3282,38 +2544,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3321,38 +2573,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -3360,33 +2602,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -3398,33 +2631,24 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: - organizationId ?? - session?.organizationId ?? - this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } + - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -3436,25 +2660,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: - input.organizationId ?? - session?.organizationId ?? - this.config.organizationId, + organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId }); - }; + } - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -3466,5 +2685,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index e1ad0eedd..777abe97b 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,976 +2,558 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetSmartContractInterfaceResponse = - operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { - body: TGetSmartContractInterfaceBody; -}; +export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; -export type TGetSmartContractInterfaceBody = Omit< - operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; -export type TGetSmartContractInterfacesResponse = - operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { - body: TGetSmartContractInterfacesBody; -}; +export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; -export type TGetSmartContractInterfacesBody = Omit< - operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = - operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & - definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { - body: TCreateSmartContractInterfaceBody; -}; +export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; -export type TCreateSmartContractInterfaceBody = - operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = - operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { - body: TDeleteSmartContractInterfaceBody; -}; +export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; -export type TDeleteSmartContractInterfaceBody = - operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 871064c2c..939120b01 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -7244,6 +7244,10 @@ "countrySubdivisionCode": { "type": "string", "description": "ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US." + }, + "sandboxMode": { + "type": "boolean", + "description": "Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false." } }, "required": [ diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index 706a4d8c9..1148df59e 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -2160,6 +2160,8 @@ export type definitions = { countryCode?: string; /** @description ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US. */ countrySubdivisionCode?: string; + /** @description Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false. */ + sandboxMode?: boolean; }; v1InitFiatOnRampRequest: { /** @enum {string} */ diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 984a47e5d..80ce13532 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,25 +1,16 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { - TERMINAL_ACTIVITY_STATUSES, - TActivityResponse, - TActivityStatus, - TSignedRequest, -} from "@turnkey/http"; +import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { - GrpcStatus, - TStamper, - TurnkeyRequestError, - TurnkeySDKClientConfig, -} from "../__types__/base"; +import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; + export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -32,7 +23,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType, + body: TBodyType ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -42,10 +33,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION, + "X-Client-Version": VERSION }, body: stringifiedBody, - redirect: "follow", + redirect: "follow" }); if (!response.ok) { @@ -66,13 +57,12 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string, + resultKey: string ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => - new Promise((resolve) => setTimeout(resolve, ms)); + const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -80,7 +70,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData, + ...activityData } as TResponseType; } @@ -91,19 +81,15 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = (await this.getActivity(pollBody)) as TActivityResponse; + const pollData = await this.getActivity(pollBody) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - pollData.activity.status as TActivityStatus, - ) - ) { + + if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -111,16 +97,9 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = (await this.request( - url, - body, - )) as TActivityResponse; - - if ( - !TERMINAL_ACTIVITY_STATUSES.includes( - responseData.activity.status as TActivityStatus, - ) - ) { + const responseData = await this.request(url, body) as TActivityResponse; + + if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { return pollStatus(responseData.activity.id); } @@ -129,28 +108,26 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType, + body: TBodyType ): Promise { - const activityData = (await this.request(url, body)) as TActivityResponse; + const activityData = await this.request(url, body) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData, + ...activityData } as TResponseType; } - getActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + + getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivity = async ( - input: SdkApiTypes.TGetActivityBody, - ): Promise => { + stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { if (!this.stamper) { return undefined; } @@ -162,20 +139,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKey = async ( - input: SdkApiTypes.TGetApiKeyBody, - ): Promise => { + stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -187,20 +162,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody = {}, - ): Promise => { + getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetApiKeys = async ( - input: SdkApiTypes.TGetApiKeysBody, - ): Promise => { + stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { if (!this.stamper) { return undefined; } @@ -212,20 +185,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAttestationDocument = async ( - input: SdkApiTypes.TGetAttestationDocumentBody, - ): Promise => { + stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { if (!this.stamper) { return undefined; } @@ -237,25 +208,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticator = async ( - input: SdkApiTypes.TGetAuthenticatorBody, - ): Promise => { + stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -263,25 +231,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetAuthenticators = async ( - input: SdkApiTypes.TGetAuthenticatorsBody, - ): Promise => { + stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -289,25 +254,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOauthProviders = async ( - input: SdkApiTypes.TGetOauthProvidersBody, - ): Promise => { + stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -315,25 +277,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody = {}, - ): Promise => { + getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganization = async ( - input: SdkApiTypes.TGetOrganizationBody, - ): Promise => { + stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -341,25 +300,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetOrganizationConfigs = async ( - input: SdkApiTypes.TGetOrganizationConfigsBody, - ): Promise => { + stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -367,20 +323,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicy = async ( - input: SdkApiTypes.TGetPolicyBody, - ): Promise => { + stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -392,20 +346,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKey = async ( - input: SdkApiTypes.TGetPrivateKeyBody, - ): Promise => { + stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } @@ -417,25 +369,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSmartContractInterface = async ( - input: SdkApiTypes.TGetSmartContractInterfaceBody, - ): Promise => { + getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSmartContractInterface = async ( - input: SdkApiTypes.TGetSmartContractInterfaceBody, - ): Promise => { + stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -443,20 +392,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUser = async ( - input: SdkApiTypes.TGetUserBody, - ): Promise => { + stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -468,20 +415,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallet = async ( - input: SdkApiTypes.TGetWalletBody, - ): Promise => { + stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -493,25 +438,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccount = async ( - input: SdkApiTypes.TGetWalletAccountBody, - ): Promise => { + stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -519,20 +461,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getActivities = async ( - input: SdkApiTypes.TGetActivitiesBody = {}, - ): Promise => { + getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetActivities = async ( - input: SdkApiTypes.TGetActivitiesBody, - ): Promise => { + stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { if (!this.stamper) { return undefined; } @@ -544,20 +484,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody = {}, - ): Promise => { + getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPolicies = async ( - input: SdkApiTypes.TGetPoliciesBody, - ): Promise => { + stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { if (!this.stamper) { return undefined; } @@ -569,25 +507,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListPrivateKeyTags = async ( - input: SdkApiTypes.TListPrivateKeyTagsBody, - ): Promise => { + stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -595,25 +530,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody = {}, - ): Promise => { + getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetPrivateKeys = async ( - input: SdkApiTypes.TGetPrivateKeysBody, - ): Promise => { + stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -621,26 +553,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSmartContractInterfaces = async ( - input: SdkApiTypes.TGetSmartContractInterfacesBody, - ): Promise => { + getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSmartContractInterfaces = async ( - input: SdkApiTypes.TGetSmartContractInterfacesBody, - ): Promise => { + stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -648,20 +576,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody = {}, - ): Promise => { + getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetSubOrgIds = async ( - input: SdkApiTypes.TGetSubOrgIdsBody, - ): Promise => { + stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } @@ -673,20 +599,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - listUserTags = async ( - input: SdkApiTypes.TListUserTagsBody = {}, - ): Promise => { + listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampListUserTags = async ( - input: SdkApiTypes.TListUserTagsBody, - ): Promise => { + stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { if (!this.stamper) { return undefined; } @@ -698,20 +622,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getUsers = async ( - input: SdkApiTypes.TGetUsersBody = {}, - ): Promise => { + getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetUsers = async ( - input: SdkApiTypes.TGetUsersBody, - ): Promise => { + stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -723,25 +645,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetVerifiedSubOrgIds = async ( - input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, - ): Promise => { + stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -749,25 +668,22 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWalletAccounts = async ( - input: SdkApiTypes.TGetWalletAccountsBody, - ): Promise => { + stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -775,20 +691,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWallets = async ( - input: SdkApiTypes.TGetWalletsBody = {}, - ): Promise => { + getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWallets = async ( - input: SdkApiTypes.TGetWalletsBody, - ): Promise => { + stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -800,20 +714,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - getWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody = {}, - ): Promise => { + getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampGetWhoami = async ( - input: SdkApiTypes.TGetWhoamiBody, - ): Promise => { + stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { if (!this.stamper) { return undefined; } @@ -825,28 +737,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - approveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/approve_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" + }); + } + - stampApproveActivity = async ( - input: SdkApiTypes.TApproveActivityBody, - ): Promise => { + stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -854,32 +764,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", - }, - "createApiKeysResult", - ); - }; + return this.command("/public/v1/submit/create_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" + }, "createApiKeysResult"); + } + - stampCreateApiKeys = async ( - input: SdkApiTypes.TCreateApiKeysBody, - ): Promise => { + stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -887,32 +790,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_api_only_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", - }, - "createApiOnlyUsersResult", - ); - }; + return this.command("/public/v1/submit/create_api_only_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" + }, "createApiOnlyUsersResult"); + } + - stampCreateApiOnlyUsers = async ( - input: SdkApiTypes.TCreateApiOnlyUsersBody, - ): Promise => { + stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -920,32 +816,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", - }, - "createAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/create_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" + }, "createAuthenticatorsResult"); + } + - stampCreateAuthenticators = async ( - input: SdkApiTypes.TCreateAuthenticatorsBody, - ): Promise => { + stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -953,32 +842,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_invitations", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS", - }, - "createInvitationsResult", - ); - }; + return this.command("/public/v1/submit/create_invitations", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS" + }, "createInvitationsResult"); + } + - stampCreateInvitations = async ( - input: SdkApiTypes.TCreateInvitationsBody, - ): Promise => { + stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -986,32 +868,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", - }, - "createOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/create_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" + }, "createOauthProvidersResult"); + } + - stampCreateOauthProviders = async ( - input: SdkApiTypes.TCreateOauthProvidersBody, - ): Promise => { + stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1019,32 +894,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policies", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES", - }, - "createPoliciesResult", - ); - }; + return this.command("/public/v1/submit/create_policies", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES" + }, "createPoliciesResult"); + } + - stampCreatePolicies = async ( - input: SdkApiTypes.TCreatePoliciesBody, - ): Promise => { + stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1052,27 +920,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3", - }, - "createPolicyResult", - ); - }; + return this.command("/public/v1/submit/create_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3" + }, "createPolicyResult"); + } + - stampCreatePolicy = async ( - input: SdkApiTypes.TCreatePolicyBody, - ): Promise => { + stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1084,32 +946,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", - }, - "createPrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/create_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" + }, "createPrivateKeyTagResult"); + } + - stampCreatePrivateKeyTag = async ( - input: SdkApiTypes.TCreatePrivateKeyTagBody, - ): Promise => { + stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1117,32 +972,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createPrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", - }, - "createPrivateKeysResultV2", - ); - }; + return this.command("/public/v1/submit/create_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" + }, "createPrivateKeysResultV2"); + } + - stampCreatePrivateKeys = async ( - input: SdkApiTypes.TCreatePrivateKeysBody, - ): Promise => { + stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1150,32 +998,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_only_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", - }, - "createReadOnlySessionResult", - ); - }; + return this.command("/public/v1/submit/create_read_only_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" + }, "createReadOnlySessionResult"); + } + - stampCreateReadOnlySession = async ( - input: SdkApiTypes.TCreateReadOnlySessionBody, - ): Promise => { + stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1183,32 +1024,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_read_write_session", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", - }, - "createReadWriteSessionResultV2", - ); - }; + return this.command("/public/v1/submit/create_read_write_session", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" + }, "createReadWriteSessionResultV2"); + } + - stampCreateReadWriteSession = async ( - input: SdkApiTypes.TCreateReadWriteSessionBody, - ): Promise => { + stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1216,33 +1050,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createSmartContractInterface = async ( - input: SdkApiTypes.TCreateSmartContractInterfaceBody, - ): Promise => { + createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_smart_contract_interface", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", - }, - "createSmartContractInterfaceResult", - ); - }; + return this.command("/public/v1/submit/create_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" + }, "createSmartContractInterfaceResult"); + } + - stampCreateSmartContractInterface = async ( - input: SdkApiTypes.TCreateSmartContractInterfaceBody, - ): Promise => { + stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1250,32 +1076,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", - }, - "createSubOrganizationResultV7", - ); - }; + return this.command("/public/v1/submit/create_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" + }, "createSubOrganizationResultV7"); + } + - stampCreateSubOrganization = async ( - input: SdkApiTypes.TCreateSubOrganizationBody, - ): Promise => { + stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1283,32 +1102,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG", - }, - "createUserTagResult", - ); - }; + return this.command("/public/v1/submit/create_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG" + }, "createUserTagResult"); + } + - stampCreateUserTag = async ( - input: SdkApiTypes.TCreateUserTagBody, - ): Promise => { + stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1316,27 +1128,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3", - }, - "createUsersResult", - ); - }; + return this.command("/public/v1/submit/create_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3" + }, "createUsersResult"); + } - stampCreateUsers = async ( - input: SdkApiTypes.TCreateUsersBody, - ): Promise => { + + stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1348,27 +1154,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET", - }, - "createWalletResult", - ); - }; + return this.command("/public/v1/submit/create_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET" + }, "createWalletResult"); + } - stampCreateWallet = async ( - input: SdkApiTypes.TCreateWalletBody, - ): Promise => { + + stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1380,32 +1180,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - createWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/create_wallet_accounts", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", - }, - "createWalletAccountsResult", - ); - }; + return this.command("/public/v1/submit/create_wallet_accounts", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" + }, "createWalletAccountsResult"); + } - stampCreateWalletAccounts = async ( - input: SdkApiTypes.TCreateWalletAccountsBody, - ): Promise => { + + stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1413,32 +1206,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_api_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS", - }, - "deleteApiKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_api_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS" + }, "deleteApiKeysResult"); + } - stampDeleteApiKeys = async ( - input: SdkApiTypes.TDeleteApiKeysBody, - ): Promise => { + + stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1446,32 +1232,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_authenticators", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", - }, - "deleteAuthenticatorsResult", - ); - }; + return this.command("/public/v1/submit/delete_authenticators", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" + }, "deleteAuthenticatorsResult"); + } + - stampDeleteAuthenticators = async ( - input: SdkApiTypes.TDeleteAuthenticatorsBody, - ): Promise => { + stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1479,32 +1258,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + + deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_invitation", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION", - }, - "deleteInvitationResult", - ); - }; + return this.command("/public/v1/submit/delete_invitation", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION" + }, "deleteInvitationResult"); + } + - stampDeleteInvitation = async ( - input: SdkApiTypes.TDeleteInvitationBody, - ): Promise => { + stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1512,32 +1284,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + + deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_oauth_providers", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", - }, - "deleteOauthProvidersResult", - ); - }; + return this.command("/public/v1/submit/delete_oauth_providers", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" + }, "deleteOauthProvidersResult"); + } + - stampDeleteOauthProviders = async ( - input: SdkApiTypes.TDeleteOauthProvidersBody, - ): Promise => { + stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1545,27 +1310,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + + deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY", - }, - "deletePolicyResult", - ); - }; + return this.command("/public/v1/submit/delete_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY" + }, "deletePolicyResult"); + } + - stampDeletePolicy = async ( - input: SdkApiTypes.TDeletePolicyBody, - ): Promise => { + stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -1577,32 +1336,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + + deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_key_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", - }, - "deletePrivateKeyTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_private_key_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" + }, "deletePrivateKeyTagsResult"); + } + - stampDeletePrivateKeyTags = async ( - input: SdkApiTypes.TDeletePrivateKeyTagsBody, - ): Promise => { + stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1610,32 +1362,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_private_keys", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", - }, - "deletePrivateKeysResult", - ); - }; + return this.command("/public/v1/submit/delete_private_keys", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" + }, "deletePrivateKeysResult"); + } + - stampDeletePrivateKeys = async ( - input: SdkApiTypes.TDeletePrivateKeysBody, - ): Promise => { + stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1643,33 +1388,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSmartContractInterface = async ( - input: SdkApiTypes.TDeleteSmartContractInterfaceBody, - ): Promise => { + deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_smart_contract_interface", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", - }, - "deleteSmartContractInterfaceResult", - ); - }; + return this.command("/public/v1/submit/delete_smart_contract_interface", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" + }, "deleteSmartContractInterfaceResult"); + } - stampDeleteSmartContractInterface = async ( - input: SdkApiTypes.TDeleteSmartContractInterfaceBody, - ): Promise => { + + stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + - "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1677,32 +1414,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_sub_organization", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", - }, - "deleteSubOrganizationResult", - ); - }; + return this.command("/public/v1/submit/delete_sub_organization", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" + }, "deleteSubOrganizationResult"); + } - stampDeleteSubOrganization = async ( - input: SdkApiTypes.TDeleteSubOrganizationBody, - ): Promise => { + + stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1710,32 +1440,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - deleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_user_tags", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS", - }, - "deleteUserTagsResult", - ); - }; + return this.command("/public/v1/submit/delete_user_tags", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS" + }, "deleteUserTagsResult"); + } + - stampDeleteUserTags = async ( - input: SdkApiTypes.TDeleteUserTagsBody, - ): Promise => { + stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1743,27 +1466,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + + deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_users", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS", - }, - "deleteUsersResult", - ); - }; + return this.command("/public/v1/submit/delete_users", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS" + }, "deleteUsersResult"); + } + - stampDeleteUsers = async ( - input: SdkApiTypes.TDeleteUsersBody, - ): Promise => { + stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { if (!this.stamper) { return undefined; } @@ -1775,27 +1492,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - deleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + + deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/delete_wallets", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS", - }, - "deleteWalletsResult", - ); - }; + return this.command("/public/v1/submit/delete_wallets", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS" + }, "deleteWalletsResult"); + } + - stampDeleteWallets = async ( - input: SdkApiTypes.TDeleteWalletsBody, - ): Promise => { + stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { if (!this.stamper) { return undefined; } @@ -1807,27 +1518,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - emailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + + emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/email_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", - }, - "emailAuthResult", - ); - }; + return this.command("/public/v1/submit/email_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" + }, "emailAuthResult"); + } + - stampEmailAuth = async ( - input: SdkApiTypes.TEmailAuthBody, - ): Promise => { + stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -1839,32 +1544,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - exportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + + exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", - }, - "exportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/export_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" + }, "exportPrivateKeyResult"); + } + - stampExportPrivateKey = async ( - input: SdkApiTypes.TExportPrivateKeyBody, - ): Promise => { + stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1872,27 +1570,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET", - }, - "exportWalletResult", - ); - }; + return this.command("/public/v1/submit/export_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET" + }, "exportWalletResult"); + } + - stampExportWallet = async ( - input: SdkApiTypes.TExportWalletBody, - ): Promise => { + stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -1904,32 +1596,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - exportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/export_wallet_account", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", - }, - "exportWalletAccountResult", - ); - }; + return this.command("/public/v1/submit/export_wallet_account", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" + }, "exportWalletAccountResult"); + } + - stampExportWalletAccount = async ( - input: SdkApiTypes.TExportWalletAccountBody, - ): Promise => { + stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1937,32 +1622,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", - }, - "importPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" + }, "importPrivateKeyResult"); + } + - stampImportPrivateKey = async ( - input: SdkApiTypes.TImportPrivateKeyBody, - ): Promise => { + stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1970,27 +1648,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - importWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET", - }, - "importWalletResult", - ); - }; + return this.command("/public/v1/submit/import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET" + }, "importWalletResult"); + } - stampImportWallet = async ( - input: SdkApiTypes.TImportWalletBody, - ): Promise => { + + stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2002,32 +1674,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_fiat_on_ramp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", - }, - "initFiatOnRampResult", - ); - }; + return this.command("/public/v1/submit/init_fiat_on_ramp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" + }, "initFiatOnRampResult"); + } - stampInitFiatOnRamp = async ( - input: SdkApiTypes.TInitFiatOnRampBody, - ): Promise => { + + stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2035,32 +1700,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_private_key", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", - }, - "initImportPrivateKeyResult", - ); - }; + return this.command("/public/v1/submit/init_import_private_key", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" + }, "initImportPrivateKeyResult"); + } - stampInitImportPrivateKey = async ( - input: SdkApiTypes.TInitImportPrivateKeyBody, - ): Promise => { + + stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2068,32 +1726,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_import_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", - }, - "initImportWalletResult", - ); - }; + return this.command("/public/v1/submit/init_import_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" + }, "initImportWalletResult"); + } - stampInitImportWallet = async ( - input: SdkApiTypes.TInitImportWalletBody, - ): Promise => { + + stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2101,27 +1752,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - initOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP", - }, - "initOtpResult", - ); - }; + return this.command("/public/v1/submit/init_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP" + }, "initOtpResult"); + } + - stampInitOtp = async ( - input: SdkApiTypes.TInitOtpBody, - ): Promise => { + stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2133,27 +1778,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + + initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", - }, - "initOtpAuthResultV2", - ); - }; + return this.command("/public/v1/submit/init_otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" + }, "initOtpAuthResultV2"); + } + - stampInitOtpAuth = async ( - input: SdkApiTypes.TInitOtpAuthBody, - ): Promise => { + stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2165,32 +1804,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } - initUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + + initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/init_user_email_recovery", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", - }, - "initUserEmailRecoveryResult", - ); - }; + return this.command("/public/v1/submit/init_user_email_recovery", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" + }, "initUserEmailRecoveryResult"); + } + - stampInitUserEmailRecovery = async ( - input: SdkApiTypes.TInitUserEmailRecoveryBody, - ): Promise => { + stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2198,27 +1830,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + oauth = async (input: SdkApiTypes.TOauthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH", - }, - "oauthResult", - ); - }; + return this.command("/public/v1/submit/oauth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH" + }, "oauthResult"); + } + - stampOauth = async ( - input: SdkApiTypes.TOauthBody, - ): Promise => { + stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2230,27 +1856,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - oauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/oauth_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN", - }, - "oauthLoginResult", - ); - }; + return this.command("/public/v1/submit/oauth_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN" + }, "oauthLoginResult"); + } + - stampOauthLogin = async ( - input: SdkApiTypes.TOauthLoginBody, - ): Promise => { + stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2262,27 +1882,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_auth", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH", - }, - "otpAuthResult", - ); - }; + return this.command("/public/v1/submit/otp_auth", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH" + }, "otpAuthResult"); + } + - stampOtpAuth = async ( - input: SdkApiTypes.TOtpAuthBody, - ): Promise => { + stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { if (!this.stamper) { return undefined; } @@ -2294,27 +1908,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - otpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/otp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN", - }, - "otpLoginResult", - ); - }; + return this.command("/public/v1/submit/otp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN" + }, "otpLoginResult"); + } + - stampOtpLogin = async ( - input: SdkApiTypes.TOtpLoginBody, - ): Promise => { + stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2326,27 +1934,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - recoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/recover_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER", - }, - "recoverUserResult", - ); - }; + return this.command("/public/v1/submit/recover_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER" + }, "recoverUserResult"); + } + - stampRecoverUser = async ( - input: SdkApiTypes.TRecoverUserBody, - ): Promise => { + stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2358,28 +1960,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - rejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY", - }); - }; + return this.activityDecision("/public/v1/submit/reject_activity", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY" + }); + } + - stampRejectActivity = async ( - input: SdkApiTypes.TRejectActivityBody, - ): Promise => { + stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2387,32 +1987,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - removeOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/remove_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", - }, - "removeOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/remove_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" + }, "removeOrganizationFeatureResult"); + } + - stampRemoveOrganizationFeature = async ( - input: SdkApiTypes.TRemoveOrganizationFeatureBody, - ): Promise => { + stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2420,32 +2013,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - setOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/set_organization_feature", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", - }, - "setOrganizationFeatureResult", - ); - }; + return this.command("/public/v1/submit/set_organization_feature", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" + }, "setOrganizationFeatureResult"); + } + - stampSetOrganizationFeature = async ( - input: SdkApiTypes.TSetOrganizationFeatureBody, - ): Promise => { + stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2453,32 +2039,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payload", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", - }, - "signRawPayloadResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payload", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" + }, "signRawPayloadResult"); + } + - stampSignRawPayload = async ( - input: SdkApiTypes.TSignRawPayloadBody, - ): Promise => { + stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2486,32 +2065,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_raw_payloads", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", - }, - "signRawPayloadsResult", - ); - }; + return this.command("/public/v1/submit/sign_raw_payloads", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" + }, "signRawPayloadsResult"); + } + - stampSignRawPayloads = async ( - input: SdkApiTypes.TSignRawPayloadsBody, - ): Promise => { + stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2519,32 +2091,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - signTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/sign_transaction", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", - }, - "signTransactionResult", - ); - }; + return this.command("/public/v1/submit/sign_transaction", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" + }, "signTransactionResult"); + } + - stampSignTransaction = async ( - input: SdkApiTypes.TSignTransactionBody, - ): Promise => { + stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2552,27 +2117,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - stampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/stamp_login", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN", - }, - "stampLoginResult", - ); - }; + return this.command("/public/v1/submit/stamp_login", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN" + }, "stampLoginResult"); + } + - stampStampLogin = async ( - input: SdkApiTypes.TStampLoginBody, - ): Promise => { + stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { if (!this.stamper) { return undefined; } @@ -2584,27 +2143,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_policy", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", - }, - "updatePolicyResultV2", - ); - }; + return this.command("/public/v1/submit/update_policy", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" + }, "updatePolicyResultV2"); + } + - stampUpdatePolicy = async ( - input: SdkApiTypes.TUpdatePolicyBody, - ): Promise => { + stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { if (!this.stamper) { return undefined; } @@ -2616,32 +2169,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_private_key_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", - }, - "updatePrivateKeyTagResult", - ); - }; + return this.command("/public/v1/submit/update_private_key_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" + }, "updatePrivateKeyTagResult"); + } + - stampUpdatePrivateKeyTag = async ( - input: SdkApiTypes.TUpdatePrivateKeyTagBody, - ): Promise => { + stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2649,32 +2195,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_root_quorum", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", - }, - "updateRootQuorumResult", - ); - }; + return this.command("/public/v1/submit/update_root_quorum", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" + }, "updateRootQuorumResult"); + } + - stampUpdateRootQuorum = async ( - input: SdkApiTypes.TUpdateRootQuorumBody, - ): Promise => { + stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2682,27 +2221,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER", - }, - "updateUserResult", - ); - }; + return this.command("/public/v1/submit/update_user", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER" + }, "updateUserResult"); + } + - stampUpdateUser = async ( - input: SdkApiTypes.TUpdateUserBody, - ): Promise => { + stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { if (!this.stamper) { return undefined; } @@ -2714,32 +2247,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_email", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", - }, - "updateUserEmailResult", - ); - }; + return this.command("/public/v1/submit/update_user_email", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" + }, "updateUserEmailResult"); + } + - stampUpdateUserEmail = async ( - input: SdkApiTypes.TUpdateUserEmailBody, - ): Promise => { + stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2747,32 +2273,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_name", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME", - }, - "updateUserNameResult", - ); - }; + return this.command("/public/v1/submit/update_user_name", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME" + }, "updateUserNameResult"); + } + - stampUpdateUserName = async ( - input: SdkApiTypes.TUpdateUserNameBody, - ): Promise => { + stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2780,32 +2299,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_phone_number", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", - }, - "updateUserPhoneNumberResult", - ); - }; + return this.command("/public/v1/submit/update_user_phone_number", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" + }, "updateUserPhoneNumberResult"); + } + - stampUpdateUserPhoneNumber = async ( - input: SdkApiTypes.TUpdateUserPhoneNumberBody, - ): Promise => { + stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2813,32 +2325,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_user_tag", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG", - }, - "updateUserTagResult", - ); - }; + return this.command("/public/v1/submit/update_user_tag", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG" + }, "updateUserTagResult"); + } + - stampUpdateUserTag = async ( - input: SdkApiTypes.TUpdateUserTagBody, - ): Promise => { + stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = - this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2846,27 +2351,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - updateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/update_wallet", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET", - }, - "updateWalletResult", - ); - }; + return this.command("/public/v1/submit/update_wallet", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET" + }, "updateWalletResult"); + } + - stampUpdateWallet = async ( - input: SdkApiTypes.TUpdateWalletBody, - ): Promise => { + stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { if (!this.stamper) { return undefined; } @@ -2878,27 +2377,21 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - verifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command( - "/public/v1/submit/verify_otp", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP", - }, - "verifyOtpResult", - ); - }; + return this.command("/public/v1/submit/verify_otp", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP" + }, "verifyOtpResult"); + } + - stampVerifyOtp = async ( - input: SdkApiTypes.TVerifyOtpBody, - ): Promise => { + stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { if (!this.stamper) { return undefined; } @@ -2910,20 +2403,18 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; + } + - testRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId, + organizationId: input.organizationId ?? this.config.organizationId }); - }; + } + - stampTestRateLimits = async ( - input: SdkApiTypes.TTestRateLimitsBody, - ): Promise => { + stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { if (!this.stamper) { return undefined; } @@ -2935,5 +2426,6 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - }; -} + } + +} \ No newline at end of file diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index e1ad0eedd..777abe97b 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,976 +2,558 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { - queryOverrideParams, - commandOverrideParams, -} from "../__types__/base"; +import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; -export type TGetActivityResponse = - operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit< - operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivityBody = Omit & queryOverrideParams; -export type TGetApiKeyResponse = - operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit< - operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeyBody = Omit & queryOverrideParams; -export type TGetApiKeysResponse = - operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit< - operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetApiKeysBody = Omit & queryOverrideParams; -export type TGetAttestationDocumentResponse = - operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { - body: TGetAttestationDocumentBody; -}; +export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; -export type TGetAttestationDocumentBody = Omit< - operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAttestationDocumentBody = Omit & queryOverrideParams; -export type TGetAuthenticatorResponse = - operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit< - operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorBody = Omit & queryOverrideParams; -export type TGetAuthenticatorsResponse = - operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit< - operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetAuthenticatorsBody = Omit & queryOverrideParams; -export type TGetOauthProvidersResponse = - operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit< - operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOauthProvidersBody = Omit & queryOverrideParams; -export type TGetOrganizationResponse = - operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit< - operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationBody = Omit & queryOverrideParams; -export type TGetOrganizationConfigsResponse = - operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { - body: TGetOrganizationConfigsBody; -}; +export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; -export type TGetOrganizationConfigsBody = Omit< - operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; -export type TGetPolicyResponse = - operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit< - operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPolicyBody = Omit & queryOverrideParams; -export type TGetPrivateKeyResponse = - operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit< - operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeyBody = Omit & queryOverrideParams; -export type TGetSmartContractInterfaceResponse = - operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { - body: TGetSmartContractInterfaceBody; -}; +export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; -export type TGetSmartContractInterfaceBody = Omit< - operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; -export type TGetUserResponse = - operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit< - operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUserBody = Omit & queryOverrideParams; -export type TGetWalletResponse = - operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit< - operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletBody = Omit & queryOverrideParams; -export type TGetWalletAccountResponse = - operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit< - operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountBody = Omit & queryOverrideParams; -export type TGetActivitiesResponse = - operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit< - operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetActivitiesBody = Omit & queryOverrideParams; -export type TGetPoliciesResponse = - operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit< - operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPoliciesBody = Omit & queryOverrideParams; -export type TListPrivateKeyTagsResponse = - operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit< - operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; -export type TGetPrivateKeysResponse = - operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit< - operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetPrivateKeysBody = Omit & queryOverrideParams; -export type TGetSmartContractInterfacesResponse = - operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { - body: TGetSmartContractInterfacesBody; -}; +export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; -export type TGetSmartContractInterfacesBody = Omit< - operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; -export type TGetSubOrgIdsResponse = - operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit< - operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetSubOrgIdsBody = Omit & queryOverrideParams; -export type TListUserTagsResponse = - operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit< - operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TListUserTagsBody = Omit & queryOverrideParams; -export type TGetUsersResponse = - operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit< - operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetUsersBody = Omit & queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = - operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit< - operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; -export type TGetWalletAccountsResponse = - operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit< - operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletAccountsBody = Omit & queryOverrideParams; -export type TGetWalletsResponse = - operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit< - operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWalletsBody = Omit & queryOverrideParams; -export type TGetWhoamiResponse = - operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit< - operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TGetWhoamiBody = Omit & queryOverrideParams; -export type TApproveActivityResponse = - operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = - operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiKeysResponse = - operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = - operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateApiOnlyUsersResponse = - operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = - operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateAuthenticatorsResponse = - operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = - operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateInvitationsResponse = - operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = - operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateOauthProvidersResponse = - operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = - operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePoliciesResponse = - operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = - operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePolicyResponse = - operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = - operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeyTagResponse = - operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = - operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreatePrivateKeysResponse = - operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = - operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadOnlySessionResponse = - operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & - definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = - operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateReadWriteSessionResponse = - operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & - definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { - body: TCreateReadWriteSessionBody; -}; +export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; -export type TCreateReadWriteSessionBody = - operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = - operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & - definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { - body: TCreateSmartContractInterfaceBody; -}; +export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; -export type TCreateSmartContractInterfaceBody = - operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateSubOrganizationResponse = - operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & - definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = - operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUserTagResponse = - operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = - operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateUsersResponse = - operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & - definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = - operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletResponse = - operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = - operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TCreateWalletAccountsResponse = - operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & - definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = - operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteApiKeysResponse = - operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = - operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteAuthenticatorsResponse = - operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = - operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteInvitationResponse = - operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = - operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteOauthProvidersResponse = - operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = - operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePolicyResponse = - operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = - operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = - operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = - operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeletePrivateKeysResponse = - operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & - definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = - operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = - operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { - body: TDeleteSmartContractInterfaceBody; -}; +export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; -export type TDeleteSmartContractInterfaceBody = - operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteSubOrganizationResponse = - operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = - operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUserTagsResponse = - operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = - operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteUsersResponse = - operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = - operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TDeleteWalletsResponse = - operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & - definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = - operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TEmailAuthResponse = - operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & - definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = - operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportPrivateKeyResponse = - operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = - operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletResponse = - operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = - operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TExportWalletAccountResponse = - operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & - definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = - operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportPrivateKeyResponse = - operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = - operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TImportWalletResponse = - operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & - definitions["v1ActivityResponse"]; +export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = - operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitFiatOnRampResponse = - operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & - definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = - operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportPrivateKeyResponse = - operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = - operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitImportWalletResponse = - operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & - definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = - operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpResponse = - operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & - definitions["v1ActivityResponse"]; +export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = - operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitOtpAuthResponse = - operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & - definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = - operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TInitUserEmailRecoveryResponse = - operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & - definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = - operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthResponse = - operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & - definitions["v1ActivityResponse"]; +export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = - operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOauthLoginResponse = - operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = - operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpAuthResponse = - operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & - definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = - operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TOtpLoginResponse = - operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & - definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = - operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRecoverUserResponse = - operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & - definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = - operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRejectActivityResponse = - operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & - definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = - operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = - operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { - body: TRemoveOrganizationFeatureBody; -}; +export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; -export type TRemoveOrganizationFeatureBody = - operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSetOrganizationFeatureResponse = - operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & - definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { - body: TSetOrganizationFeatureBody; -}; +export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; -export type TSetOrganizationFeatureBody = - operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadResponse = - operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = - operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignRawPayloadsResponse = - operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & - definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = - operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TSignTransactionResponse = - operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & - definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = - operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TStampLoginResponse = - operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & - definitions["v1ActivityResponse"]; +export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = - operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePolicyResponse = - operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & - definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = - operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = - operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = - operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateRootQuorumResponse = - operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = - operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserResponse = - operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = - operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserEmailResponse = - operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = - operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserNameResponse = - operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = - operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = - operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = - operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateUserTagResponse = - operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = - operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TUpdateWalletResponse = - operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & - definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = - operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TVerifyOtpResponse = - operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & - definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = - operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & - commandOverrideParams; +export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; -export type TNOOPCodegenAnchorResponse = - operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = - operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit< - operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], - "organizationId" -> & - queryOverrideParams; +export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 871064c2c..939120b01 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -7244,6 +7244,10 @@ "countrySubdivisionCode": { "type": "string", "description": "ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US." + }, + "sandboxMode": { + "type": "boolean", + "description": "Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false." } }, "required": [ diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index 706a4d8c9..1148df59e 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -2160,6 +2160,8 @@ export type definitions = { countryCode?: string; /** @description ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US. */ countrySubdivisionCode?: string; + /** @description Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false. */ + sandboxMode?: boolean; }; v1InitFiatOnRampRequest: { /** @enum {string} */ From d165ccf903acb7602ba1bab643a556d792a559ca Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 9 Jul 2025 16:51:52 -0400 Subject: [PATCH 38/42] update codegen --- .../src/app/dashboard/OnRamp.tsx | 27 +- .../src/app/dashboard/dashboard.css | 52 +- .../src/app/dashboard/page.tsx | 13 +- .../public/v1/public_api.client.ts | 308 +- .../public/v1/public_api.fetcher.ts | 194 +- .../src/__generated__/sdk-client-base.ts | 2870 +++++++++++------ .../src/__generated__/sdk_api_types.ts | 808 +++-- .../src/__generated__/sdk-client-base.ts | 2590 +++++++++------ .../src/__generated__/sdk_api_types.ts | 808 +++-- 9 files changed, 4898 insertions(+), 2772 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 899cdc59d..c342b1568 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -5,7 +5,6 @@ type OnRampProps = { ethAddress: string; }; - export const OnRamp = ({ ethAddress }: OnRampProps) => { const { turnkey, indexedDbClient } = useTurnkey(); @@ -25,11 +24,11 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { }); if (response?.onRampUrl) { -window.open( - response.onRampUrl, - "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes" -); + window.open( + response.onRampUrl, + "_blank", + "popup,width=500,height=700,scrollbars=yes,resizable=yes", + ); } } catch (error) { console.error("Failed to init Coinbase on-ramp:", error); @@ -50,11 +49,11 @@ window.open( }); if (response?.onRampUrl) { - window.open( - response.onRampUrl, - "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes" -); + window.open( + response.onRampUrl, + "_blank", + "popup,width=500,height=700,scrollbars=yes,resizable=yes", + ); } } catch (error) { console.error("Failed to init MoonPay on-ramp:", error); @@ -67,12 +66,12 @@ window.open(
Funding
Add funds via Coinbase or MoonPay.
-
diff --git a/examples/react-components/src/app/dashboard/dashboard.css b/examples/react-components/src/app/dashboard/dashboard.css index 88cbc90dd..1b16dcdba 100644 --- a/examples/react-components/src/app/dashboard/dashboard.css +++ b/examples/react-components/src/app/dashboard/dashboard.css @@ -468,41 +468,41 @@ button:hover { .onRamp { display: flex; -min-height: 36.02px; -padding: 24px; -flex-direction: column; -align-items: flex-start; -gap: 16px; -align-self: stretch; -border-radius: 8px; -background: #FFF; -background: color(display-p3 1 1 1); -box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10); -box-shadow: 0px 2px 4px 0px color(display-p3 0 0 0 / 0.10); + min-height: 36.02px; + padding: 24px; + flex-direction: column; + align-items: flex-start; + gap: 16px; + align-self: stretch; + border-radius: 8px; + background: #fff; + background: color(display-p3 1 1 1); + box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 2px 4px 0px color(display-p3 0 0 0 / 0.1); } .fundingText { display: flex; -flex-direction: column; -align-items: flex-start; -gap: 4px; + flex-direction: column; + align-items: flex-start; + gap: 4px; } .fundingTitle { color: #000; -color: color(display-p3 0 0 0); -font-family: Inter; -font-size: 16px; -font-style: normal; -font-weight: 700; + color: color(display-p3 0 0 0); + font-family: Inter; + font-size: 16px; + font-style: normal; + font-weight: 700; } .fundingSub { - color: #6D7681; -color: color(display-p3 0.4351 0.4613 0.5033); -font-family: Inter; -font-size: 16px; -font-style: normal; -font-weight: 400; + color: #6d7681; + color: color(display-p3 0.4351 0.4613 0.5033); + font-family: Inter; + font-size: 16px; + font-style: normal; + font-weight: 400; } .whiteButton { @@ -545,4 +545,4 @@ font-weight: 400; padding-top: 16px; padding-bottom: 16px; border-top: 1px solid var(--Greyscale-200, #ebedf2); -} \ No newline at end of file +} diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 687adafc3..ac429600c 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -477,8 +477,8 @@ export default function Dashboard() { ); }; const ethAddress = accounts.find((account: any) => - account.address.startsWith("0x") -)?.address; + account.address.startsWith("0x"), + )?.address; if (loading) { return (
@@ -732,9 +732,12 @@ export default function Dashboard() { onHandleImportSuccess={handleImportSuccess} /> - -
- + +
+ {" "} + +
+
diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index 933da4daa..a77aba152 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -357,7 +357,7 @@ export class TurnkeyClient { } async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.baseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -396,7 +396,7 @@ export class TurnkeyClient { * See also {@link stampGetActivity}. */ getActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { return this.request("/public/v1/query/get_activity", input); }; @@ -407,7 +407,7 @@ export class TurnkeyClient { * See also {@link GetActivity}. */ stampGetActivity = async ( - input: TGetActivityBody + input: TGetActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_activity"; const body = JSON.stringify(input); @@ -481,7 +481,7 @@ export class TurnkeyClient { * See also {@link stampGetAttestationDocument}. */ getAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { return this.request("/public/v1/query/get_attestation", input); }; @@ -492,7 +492,7 @@ export class TurnkeyClient { * See also {@link GetAttestationDocument}. */ stampGetAttestationDocument = async ( - input: TGetAttestationDocumentBody + input: TGetAttestationDocumentBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_attestation"; const body = JSON.stringify(input); @@ -512,7 +512,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticator}. */ getAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { return this.request("/public/v1/query/get_authenticator", input); }; @@ -523,7 +523,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticator}. */ stampGetAuthenticator = async ( - input: TGetAuthenticatorBody + input: TGetAuthenticatorBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); @@ -543,7 +543,7 @@ export class TurnkeyClient { * See also {@link stampGetAuthenticators}. */ getAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { return this.request("/public/v1/query/get_authenticators", input); }; @@ -554,7 +554,7 @@ export class TurnkeyClient { * See also {@link GetAuthenticators}. */ stampGetAuthenticators = async ( - input: TGetAuthenticatorsBody + input: TGetAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); @@ -574,7 +574,7 @@ export class TurnkeyClient { * See also {@link stampGetOauthProviders}. */ getOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { return this.request("/public/v1/query/get_oauth_providers", input); }; @@ -585,7 +585,7 @@ export class TurnkeyClient { * See also {@link GetOauthProviders}. */ stampGetOauthProviders = async ( - input: TGetOauthProvidersBody + input: TGetOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_oauth_providers"; @@ -606,7 +606,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganization}. */ getOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { return this.request("/public/v1/query/get_organization", input); }; @@ -617,7 +617,7 @@ export class TurnkeyClient { * See also {@link GetOrganization}. */ stampGetOrganization = async ( - input: TGetOrganizationBody + input: TGetOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); @@ -637,7 +637,7 @@ export class TurnkeyClient { * See also {@link stampGetOrganizationConfigs}. */ getOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { return this.request("/public/v1/query/get_organization_configs", input); }; @@ -648,7 +648,7 @@ export class TurnkeyClient { * See also {@link GetOrganizationConfigs}. */ stampGetOrganizationConfigs = async ( - input: TGetOrganizationConfigsBody + input: TGetOrganizationConfigsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_organization_configs"; @@ -696,7 +696,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKey}. */ getPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { return this.request("/public/v1/query/get_private_key", input); }; @@ -707,7 +707,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKey}. */ stampGetPrivateKey = async ( - input: TGetPrivateKeyBody + input: TGetPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_private_key"; const body = JSON.stringify(input); @@ -727,7 +727,7 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterface}. */ getSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody + input: TGetSmartContractInterfaceBody, ): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", input); }; @@ -738,7 +738,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterface}. */ stampGetSmartContractInterface = async ( - input: TGetSmartContractInterfaceBody + input: TGetSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_smart_contract_interface"; @@ -813,7 +813,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccount}. */ getWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { return this.request("/public/v1/query/get_wallet_account", input); }; @@ -824,7 +824,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccount}. */ stampGetWalletAccount = async ( - input: TGetWalletAccountBody + input: TGetWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); @@ -844,7 +844,7 @@ export class TurnkeyClient { * See also {@link stampGetActivities}. */ getActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { return this.request("/public/v1/query/list_activities", input); }; @@ -855,7 +855,7 @@ export class TurnkeyClient { * See also {@link GetActivities}. */ stampGetActivities = async ( - input: TGetActivitiesBody + input: TGetActivitiesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_activities"; const body = JSON.stringify(input); @@ -875,7 +875,7 @@ export class TurnkeyClient { * See also {@link stampGetPolicies}. */ getPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { return this.request("/public/v1/query/list_policies", input); }; @@ -886,7 +886,7 @@ export class TurnkeyClient { * See also {@link GetPolicies}. */ stampGetPolicies = async ( - input: TGetPoliciesBody + input: TGetPoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_policies"; const body = JSON.stringify(input); @@ -906,7 +906,7 @@ export class TurnkeyClient { * See also {@link stampListPrivateKeyTags}. */ listPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/query/list_private_key_tags", input); }; @@ -917,7 +917,7 @@ export class TurnkeyClient { * See also {@link ListPrivateKeyTags}. */ stampListPrivateKeyTags = async ( - input: TListPrivateKeyTagsBody + input: TListPrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_key_tags"; @@ -938,7 +938,7 @@ export class TurnkeyClient { * See also {@link stampGetPrivateKeys}. */ getPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { return this.request("/public/v1/query/list_private_keys", input); }; @@ -949,7 +949,7 @@ export class TurnkeyClient { * See also {@link GetPrivateKeys}. */ stampGetPrivateKeys = async ( - input: TGetPrivateKeysBody + input: TGetPrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); @@ -969,11 +969,11 @@ export class TurnkeyClient { * See also {@link stampGetSmartContractInterfaces}. */ getSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody + input: TGetSmartContractInterfacesBody, ): Promise => { return this.request( "/public/v1/query/list_smart_contract_interfaces", - input + input, ); }; @@ -983,7 +983,7 @@ export class TurnkeyClient { * See also {@link GetSmartContractInterfaces}. */ stampGetSmartContractInterfaces = async ( - input: TGetSmartContractInterfacesBody + input: TGetSmartContractInterfacesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_smart_contract_interfaces"; @@ -1004,7 +1004,7 @@ export class TurnkeyClient { * See also {@link stampGetSubOrgIds}. */ getSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_suborgs", input); }; @@ -1015,7 +1015,7 @@ export class TurnkeyClient { * See also {@link GetSubOrgIds}. */ stampGetSubOrgIds = async ( - input: TGetSubOrgIdsBody + input: TGetSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_suborgs"; const body = JSON.stringify(input); @@ -1035,7 +1035,7 @@ export class TurnkeyClient { * See also {@link stampListUserTags}. */ listUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { return this.request("/public/v1/query/list_user_tags", input); }; @@ -1046,7 +1046,7 @@ export class TurnkeyClient { * See also {@link ListUserTags}. */ stampListUserTags = async ( - input: TListUserTagsBody + input: TListUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_user_tags"; const body = JSON.stringify(input); @@ -1093,7 +1093,7 @@ export class TurnkeyClient { * See also {@link stampGetVerifiedSubOrgIds}. */ getVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", input); }; @@ -1104,7 +1104,7 @@ export class TurnkeyClient { * See also {@link GetVerifiedSubOrgIds}. */ stampGetVerifiedSubOrgIds = async ( - input: TGetVerifiedSubOrgIdsBody + input: TGetVerifiedSubOrgIdsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_verified_suborgs"; @@ -1125,7 +1125,7 @@ export class TurnkeyClient { * See also {@link stampGetWalletAccounts}. */ getWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", input); }; @@ -1136,7 +1136,7 @@ export class TurnkeyClient { * See also {@link GetWalletAccounts}. */ stampGetWalletAccounts = async ( - input: TGetWalletAccountsBody + input: TGetWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/query/list_wallet_accounts"; @@ -1211,7 +1211,7 @@ export class TurnkeyClient { * See also {@link stampApproveActivity}. */ approveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { return this.request("/public/v1/submit/approve_activity", input); }; @@ -1222,7 +1222,7 @@ export class TurnkeyClient { * See also {@link ApproveActivity}. */ stampApproveActivity = async ( - input: TApproveActivityBody + input: TApproveActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); @@ -1242,7 +1242,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiKeys}. */ createApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { return this.request("/public/v1/submit/create_api_keys", input); }; @@ -1253,7 +1253,7 @@ export class TurnkeyClient { * See also {@link CreateApiKeys}. */ stampCreateApiKeys = async ( - input: TCreateApiKeysBody + input: TCreateApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); @@ -1273,7 +1273,7 @@ export class TurnkeyClient { * See also {@link stampCreateApiOnlyUsers}. */ createApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { return this.request("/public/v1/submit/create_api_only_users", input); }; @@ -1284,7 +1284,7 @@ export class TurnkeyClient { * See also {@link CreateApiOnlyUsers}. */ stampCreateApiOnlyUsers = async ( - input: TCreateApiOnlyUsersBody + input: TCreateApiOnlyUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_api_only_users"; @@ -1305,7 +1305,7 @@ export class TurnkeyClient { * See also {@link stampCreateAuthenticators}. */ createAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/create_authenticators", input); }; @@ -1316,7 +1316,7 @@ export class TurnkeyClient { * See also {@link CreateAuthenticators}. */ stampCreateAuthenticators = async ( - input: TCreateAuthenticatorsBody + input: TCreateAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_authenticators"; @@ -1337,7 +1337,7 @@ export class TurnkeyClient { * See also {@link stampCreateInvitations}. */ createInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { return this.request("/public/v1/submit/create_invitations", input); }; @@ -1348,7 +1348,7 @@ export class TurnkeyClient { * See also {@link CreateInvitations}. */ stampCreateInvitations = async ( - input: TCreateInvitationsBody + input: TCreateInvitationsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_invitations"; @@ -1369,7 +1369,7 @@ export class TurnkeyClient { * See also {@link stampCreateOauthProviders}. */ createOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/create_oauth_providers", input); }; @@ -1380,7 +1380,7 @@ export class TurnkeyClient { * See also {@link CreateOauthProviders}. */ stampCreateOauthProviders = async ( - input: TCreateOauthProvidersBody + input: TCreateOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_oauth_providers"; @@ -1401,7 +1401,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicies}. */ createPolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { return this.request("/public/v1/submit/create_policies", input); }; @@ -1412,7 +1412,7 @@ export class TurnkeyClient { * See also {@link CreatePolicies}. */ stampCreatePolicies = async ( - input: TCreatePoliciesBody + input: TCreatePoliciesBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); @@ -1432,7 +1432,7 @@ export class TurnkeyClient { * See also {@link stampCreatePolicy}. */ createPolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { return this.request("/public/v1/submit/create_policy", input); }; @@ -1443,7 +1443,7 @@ export class TurnkeyClient { * See also {@link CreatePolicy}. */ stampCreatePolicy = async ( - input: TCreatePolicyBody + input: TCreatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_policy"; const body = JSON.stringify(input); @@ -1463,7 +1463,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeyTag}. */ createPrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/create_private_key_tag", input); }; @@ -1474,7 +1474,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeyTag}. */ stampCreatePrivateKeyTag = async ( - input: TCreatePrivateKeyTagBody + input: TCreatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_key_tag"; @@ -1495,7 +1495,7 @@ export class TurnkeyClient { * See also {@link stampCreatePrivateKeys}. */ createPrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/create_private_keys", input); }; @@ -1506,7 +1506,7 @@ export class TurnkeyClient { * See also {@link CreatePrivateKeys}. */ stampCreatePrivateKeys = async ( - input: TCreatePrivateKeysBody + input: TCreatePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_private_keys"; @@ -1527,7 +1527,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadOnlySession}. */ createReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_only_session", input); }; @@ -1538,7 +1538,7 @@ export class TurnkeyClient { * See also {@link CreateReadOnlySession}. */ stampCreateReadOnlySession = async ( - input: TCreateReadOnlySessionBody + input: TCreateReadOnlySessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_only_session"; @@ -1559,7 +1559,7 @@ export class TurnkeyClient { * See also {@link stampCreateReadWriteSession}. */ createReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { return this.request("/public/v1/submit/create_read_write_session", input); }; @@ -1570,7 +1570,7 @@ export class TurnkeyClient { * See also {@link CreateReadWriteSession}. */ stampCreateReadWriteSession = async ( - input: TCreateReadWriteSessionBody + input: TCreateReadWriteSessionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_read_write_session"; @@ -1591,11 +1591,11 @@ export class TurnkeyClient { * See also {@link stampCreateSmartContractInterface}. */ createSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody + input: TCreateSmartContractInterfaceBody, ): Promise => { return this.request( "/public/v1/submit/create_smart_contract_interface", - input + input, ); }; @@ -1605,7 +1605,7 @@ export class TurnkeyClient { * See also {@link CreateSmartContractInterface}. */ stampCreateSmartContractInterface = async ( - input: TCreateSmartContractInterfaceBody + input: TCreateSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_smart_contract_interface"; @@ -1626,7 +1626,7 @@ export class TurnkeyClient { * See also {@link stampCreateSubOrganization}. */ createSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/create_sub_organization", input); }; @@ -1637,7 +1637,7 @@ export class TurnkeyClient { * See also {@link CreateSubOrganization}. */ stampCreateSubOrganization = async ( - input: TCreateSubOrganizationBody + input: TCreateSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_sub_organization"; @@ -1658,7 +1658,7 @@ export class TurnkeyClient { * See also {@link stampCreateUserTag}. */ createUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { return this.request("/public/v1/submit/create_user_tag", input); }; @@ -1669,7 +1669,7 @@ export class TurnkeyClient { * See also {@link CreateUserTag}. */ stampCreateUserTag = async ( - input: TCreateUserTagBody + input: TCreateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); @@ -1689,7 +1689,7 @@ export class TurnkeyClient { * See also {@link stampCreateUsers}. */ createUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { return this.request("/public/v1/submit/create_users", input); }; @@ -1700,7 +1700,7 @@ export class TurnkeyClient { * See also {@link CreateUsers}. */ stampCreateUsers = async ( - input: TCreateUsersBody + input: TCreateUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_users"; const body = JSON.stringify(input); @@ -1720,7 +1720,7 @@ export class TurnkeyClient { * See also {@link stampCreateWallet}. */ createWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { return this.request("/public/v1/submit/create_wallet", input); }; @@ -1731,7 +1731,7 @@ export class TurnkeyClient { * See also {@link CreateWallet}. */ stampCreateWallet = async ( - input: TCreateWalletBody + input: TCreateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet"; const body = JSON.stringify(input); @@ -1751,7 +1751,7 @@ export class TurnkeyClient { * See also {@link stampCreateWalletAccounts}. */ createWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { return this.request("/public/v1/submit/create_wallet_accounts", input); }; @@ -1762,7 +1762,7 @@ export class TurnkeyClient { * See also {@link CreateWalletAccounts}. */ stampCreateWalletAccounts = async ( - input: TCreateWalletAccountsBody + input: TCreateWalletAccountsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/create_wallet_accounts"; @@ -1783,7 +1783,7 @@ export class TurnkeyClient { * See also {@link stampDeleteApiKeys}. */ deleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_api_keys", input); }; @@ -1794,7 +1794,7 @@ export class TurnkeyClient { * See also {@link DeleteApiKeys}. */ stampDeleteApiKeys = async ( - input: TDeleteApiKeysBody + input: TDeleteApiKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); @@ -1814,7 +1814,7 @@ export class TurnkeyClient { * See also {@link stampDeleteAuthenticators}. */ deleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { return this.request("/public/v1/submit/delete_authenticators", input); }; @@ -1825,7 +1825,7 @@ export class TurnkeyClient { * See also {@link DeleteAuthenticators}. */ stampDeleteAuthenticators = async ( - input: TDeleteAuthenticatorsBody + input: TDeleteAuthenticatorsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_authenticators"; @@ -1846,7 +1846,7 @@ export class TurnkeyClient { * See also {@link stampDeleteInvitation}. */ deleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { return this.request("/public/v1/submit/delete_invitation", input); }; @@ -1857,7 +1857,7 @@ export class TurnkeyClient { * See also {@link DeleteInvitation}. */ stampDeleteInvitation = async ( - input: TDeleteInvitationBody + input: TDeleteInvitationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); @@ -1877,7 +1877,7 @@ export class TurnkeyClient { * See also {@link stampDeleteOauthProviders}. */ deleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { return this.request("/public/v1/submit/delete_oauth_providers", input); }; @@ -1888,7 +1888,7 @@ export class TurnkeyClient { * See also {@link DeleteOauthProviders}. */ stampDeleteOauthProviders = async ( - input: TDeleteOauthProvidersBody + input: TDeleteOauthProvidersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_oauth_providers"; @@ -1909,7 +1909,7 @@ export class TurnkeyClient { * See also {@link stampDeletePolicy}. */ deletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { return this.request("/public/v1/submit/delete_policy", input); }; @@ -1920,7 +1920,7 @@ export class TurnkeyClient { * See also {@link DeletePolicy}. */ stampDeletePolicy = async ( - input: TDeletePolicyBody + input: TDeletePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_policy"; const body = JSON.stringify(input); @@ -1940,7 +1940,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeyTags}. */ deletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_private_key_tags", input); }; @@ -1951,7 +1951,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeyTags}. */ stampDeletePrivateKeyTags = async ( - input: TDeletePrivateKeyTagsBody + input: TDeletePrivateKeyTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_key_tags"; @@ -1972,7 +1972,7 @@ export class TurnkeyClient { * See also {@link stampDeletePrivateKeys}. */ deletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { return this.request("/public/v1/submit/delete_private_keys", input); }; @@ -1983,7 +1983,7 @@ export class TurnkeyClient { * See also {@link DeletePrivateKeys}. */ stampDeletePrivateKeys = async ( - input: TDeletePrivateKeysBody + input: TDeletePrivateKeysBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_private_keys"; @@ -2004,11 +2004,11 @@ export class TurnkeyClient { * See also {@link stampDeleteSmartContractInterface}. */ deleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody + input: TDeleteSmartContractInterfaceBody, ): Promise => { return this.request( "/public/v1/submit/delete_smart_contract_interface", - input + input, ); }; @@ -2018,7 +2018,7 @@ export class TurnkeyClient { * See also {@link DeleteSmartContractInterface}. */ stampDeleteSmartContractInterface = async ( - input: TDeleteSmartContractInterfaceBody + input: TDeleteSmartContractInterfaceBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_smart_contract_interface"; @@ -2039,7 +2039,7 @@ export class TurnkeyClient { * See also {@link stampDeleteSubOrganization}. */ deleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { return this.request("/public/v1/submit/delete_sub_organization", input); }; @@ -2050,7 +2050,7 @@ export class TurnkeyClient { * See also {@link DeleteSubOrganization}. */ stampDeleteSubOrganization = async ( - input: TDeleteSubOrganizationBody + input: TDeleteSubOrganizationBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_sub_organization"; @@ -2071,7 +2071,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUserTags}. */ deleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { return this.request("/public/v1/submit/delete_user_tags", input); }; @@ -2082,7 +2082,7 @@ export class TurnkeyClient { * See also {@link DeleteUserTags}. */ stampDeleteUserTags = async ( - input: TDeleteUserTagsBody + input: TDeleteUserTagsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); @@ -2102,7 +2102,7 @@ export class TurnkeyClient { * See also {@link stampDeleteUsers}. */ deleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { return this.request("/public/v1/submit/delete_users", input); }; @@ -2113,7 +2113,7 @@ export class TurnkeyClient { * See also {@link DeleteUsers}. */ stampDeleteUsers = async ( - input: TDeleteUsersBody + input: TDeleteUsersBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_users"; const body = JSON.stringify(input); @@ -2133,7 +2133,7 @@ export class TurnkeyClient { * See also {@link stampDeleteWallets}. */ deleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { return this.request("/public/v1/submit/delete_wallets", input); }; @@ -2144,7 +2144,7 @@ export class TurnkeyClient { * See also {@link DeleteWallets}. */ stampDeleteWallets = async ( - input: TDeleteWalletsBody + input: TDeleteWalletsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/delete_wallets"; const body = JSON.stringify(input); @@ -2191,7 +2191,7 @@ export class TurnkeyClient { * See also {@link stampExportPrivateKey}. */ exportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/export_private_key", input); }; @@ -2202,7 +2202,7 @@ export class TurnkeyClient { * See also {@link ExportPrivateKey}. */ stampExportPrivateKey = async ( - input: TExportPrivateKeyBody + input: TExportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_private_key"; @@ -2223,7 +2223,7 @@ export class TurnkeyClient { * See also {@link stampExportWallet}. */ exportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { return this.request("/public/v1/submit/export_wallet", input); }; @@ -2234,7 +2234,7 @@ export class TurnkeyClient { * See also {@link ExportWallet}. */ stampExportWallet = async ( - input: TExportWalletBody + input: TExportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet"; const body = JSON.stringify(input); @@ -2254,7 +2254,7 @@ export class TurnkeyClient { * See also {@link stampExportWalletAccount}. */ exportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { return this.request("/public/v1/submit/export_wallet_account", input); }; @@ -2265,7 +2265,7 @@ export class TurnkeyClient { * See also {@link ExportWalletAccount}. */ stampExportWalletAccount = async ( - input: TExportWalletAccountBody + input: TExportWalletAccountBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/export_wallet_account"; @@ -2286,7 +2286,7 @@ export class TurnkeyClient { * See also {@link stampImportPrivateKey}. */ importPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/import_private_key", input); }; @@ -2297,7 +2297,7 @@ export class TurnkeyClient { * See also {@link ImportPrivateKey}. */ stampImportPrivateKey = async ( - input: TImportPrivateKeyBody + input: TImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_private_key"; @@ -2318,7 +2318,7 @@ export class TurnkeyClient { * See also {@link stampImportWallet}. */ importWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { return this.request("/public/v1/submit/import_wallet", input); }; @@ -2329,7 +2329,7 @@ export class TurnkeyClient { * See also {@link ImportWallet}. */ stampImportWallet = async ( - input: TImportWalletBody + input: TImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/import_wallet"; const body = JSON.stringify(input); @@ -2349,7 +2349,7 @@ export class TurnkeyClient { * See also {@link stampInitFiatOnRamp}. */ initFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { return this.request("/public/v1/submit/init_fiat_on_ramp", input); }; @@ -2360,7 +2360,7 @@ export class TurnkeyClient { * See also {@link InitFiatOnRamp}. */ stampInitFiatOnRamp = async ( - input: TInitFiatOnRampBody + input: TInitFiatOnRampBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); @@ -2380,7 +2380,7 @@ export class TurnkeyClient { * See also {@link stampInitImportPrivateKey}. */ initImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { return this.request("/public/v1/submit/init_import_private_key", input); }; @@ -2391,7 +2391,7 @@ export class TurnkeyClient { * See also {@link InitImportPrivateKey}. */ stampInitImportPrivateKey = async ( - input: TInitImportPrivateKeyBody + input: TInitImportPrivateKeyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_private_key"; @@ -2412,7 +2412,7 @@ export class TurnkeyClient { * See also {@link stampInitImportWallet}. */ initImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { return this.request("/public/v1/submit/init_import_wallet", input); }; @@ -2423,7 +2423,7 @@ export class TurnkeyClient { * See also {@link InitImportWallet}. */ stampInitImportWallet = async ( - input: TInitImportWalletBody + input: TInitImportWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_import_wallet"; @@ -2471,7 +2471,7 @@ export class TurnkeyClient { * See also {@link stampInitOtpAuth}. */ initOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { return this.request("/public/v1/submit/init_otp_auth", input); }; @@ -2482,7 +2482,7 @@ export class TurnkeyClient { * See also {@link InitOtpAuth}. */ stampInitOtpAuth = async ( - input: TInitOtpAuthBody + input: TInitOtpAuthBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_otp_auth"; const body = JSON.stringify(input); @@ -2502,7 +2502,7 @@ export class TurnkeyClient { * See also {@link stampInitUserEmailRecovery}. */ initUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { return this.request("/public/v1/submit/init_user_email_recovery", input); }; @@ -2513,7 +2513,7 @@ export class TurnkeyClient { * See also {@link InitUserEmailRecovery}. */ stampInitUserEmailRecovery = async ( - input: TInitUserEmailRecoveryBody + input: TInitUserEmailRecoveryBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/init_user_email_recovery"; @@ -2642,7 +2642,7 @@ export class TurnkeyClient { * See also {@link stampRecoverUser}. */ recoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { return this.request("/public/v1/submit/recover_user", input); }; @@ -2653,7 +2653,7 @@ export class TurnkeyClient { * See also {@link RecoverUser}. */ stampRecoverUser = async ( - input: TRecoverUserBody + input: TRecoverUserBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/recover_user"; const body = JSON.stringify(input); @@ -2673,7 +2673,7 @@ export class TurnkeyClient { * See also {@link stampRejectActivity}. */ rejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { return this.request("/public/v1/submit/reject_activity", input); }; @@ -2684,7 +2684,7 @@ export class TurnkeyClient { * See also {@link RejectActivity}. */ stampRejectActivity = async ( - input: TRejectActivityBody + input: TRejectActivityBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); @@ -2704,7 +2704,7 @@ export class TurnkeyClient { * See also {@link stampRemoveOrganizationFeature}. */ removeOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/remove_organization_feature", input); }; @@ -2715,7 +2715,7 @@ export class TurnkeyClient { * See also {@link RemoveOrganizationFeature}. */ stampRemoveOrganizationFeature = async ( - input: TRemoveOrganizationFeatureBody + input: TRemoveOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/remove_organization_feature"; @@ -2736,7 +2736,7 @@ export class TurnkeyClient { * See also {@link stampSetOrganizationFeature}. */ setOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { return this.request("/public/v1/submit/set_organization_feature", input); }; @@ -2747,7 +2747,7 @@ export class TurnkeyClient { * See also {@link SetOrganizationFeature}. */ stampSetOrganizationFeature = async ( - input: TSetOrganizationFeatureBody + input: TSetOrganizationFeatureBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/set_organization_feature"; @@ -2768,7 +2768,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayload}. */ signRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payload", input); }; @@ -2779,7 +2779,7 @@ export class TurnkeyClient { * See also {@link SignRawPayload}. */ stampSignRawPayload = async ( - input: TSignRawPayloadBody + input: TSignRawPayloadBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); @@ -2799,7 +2799,7 @@ export class TurnkeyClient { * See also {@link stampSignRawPayloads}. */ signRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { return this.request("/public/v1/submit/sign_raw_payloads", input); }; @@ -2810,7 +2810,7 @@ export class TurnkeyClient { * See also {@link SignRawPayloads}. */ stampSignRawPayloads = async ( - input: TSignRawPayloadsBody + input: TSignRawPayloadsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); @@ -2830,7 +2830,7 @@ export class TurnkeyClient { * See also {@link stampSignTransaction}. */ signTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { return this.request("/public/v1/submit/sign_transaction", input); }; @@ -2841,7 +2841,7 @@ export class TurnkeyClient { * See also {@link SignTransaction}. */ stampSignTransaction = async ( - input: TSignTransactionBody + input: TSignTransactionBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); @@ -2888,7 +2888,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePolicy}. */ updatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { return this.request("/public/v1/submit/update_policy", input); }; @@ -2899,7 +2899,7 @@ export class TurnkeyClient { * See also {@link UpdatePolicy}. */ stampUpdatePolicy = async ( - input: TUpdatePolicyBody + input: TUpdatePolicyBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_policy"; const body = JSON.stringify(input); @@ -2919,7 +2919,7 @@ export class TurnkeyClient { * See also {@link stampUpdatePrivateKeyTag}. */ updatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { return this.request("/public/v1/submit/update_private_key_tag", input); }; @@ -2930,7 +2930,7 @@ export class TurnkeyClient { * See also {@link UpdatePrivateKeyTag}. */ stampUpdatePrivateKeyTag = async ( - input: TUpdatePrivateKeyTagBody + input: TUpdatePrivateKeyTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_private_key_tag"; @@ -2951,7 +2951,7 @@ export class TurnkeyClient { * See also {@link stampUpdateRootQuorum}. */ updateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { return this.request("/public/v1/submit/update_root_quorum", input); }; @@ -2962,7 +2962,7 @@ export class TurnkeyClient { * See also {@link UpdateRootQuorum}. */ stampUpdateRootQuorum = async ( - input: TUpdateRootQuorumBody + input: TUpdateRootQuorumBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_root_quorum"; @@ -3010,7 +3010,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserEmail}. */ updateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { return this.request("/public/v1/submit/update_user_email", input); }; @@ -3021,7 +3021,7 @@ export class TurnkeyClient { * See also {@link UpdateUserEmail}. */ stampUpdateUserEmail = async ( - input: TUpdateUserEmailBody + input: TUpdateUserEmailBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); @@ -3041,7 +3041,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserName}. */ updateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { return this.request("/public/v1/submit/update_user_name", input); }; @@ -3052,7 +3052,7 @@ export class TurnkeyClient { * See also {@link UpdateUserName}. */ stampUpdateUserName = async ( - input: TUpdateUserNameBody + input: TUpdateUserNameBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); @@ -3072,7 +3072,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserPhoneNumber}. */ updateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { return this.request("/public/v1/submit/update_user_phone_number", input); }; @@ -3083,7 +3083,7 @@ export class TurnkeyClient { * See also {@link UpdateUserPhoneNumber}. */ stampUpdateUserPhoneNumber = async ( - input: TUpdateUserPhoneNumberBody + input: TUpdateUserPhoneNumberBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_phone_number"; @@ -3104,7 +3104,7 @@ export class TurnkeyClient { * See also {@link stampUpdateUserTag}. */ updateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { return this.request("/public/v1/submit/update_user_tag", input); }; @@ -3115,7 +3115,7 @@ export class TurnkeyClient { * See also {@link UpdateUserTag}. */ stampUpdateUserTag = async ( - input: TUpdateUserTagBody + input: TUpdateUserTagBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); @@ -3135,7 +3135,7 @@ export class TurnkeyClient { * See also {@link stampUpdateWallet}. */ updateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { return this.request("/public/v1/submit/update_wallet", input); }; @@ -3146,7 +3146,7 @@ export class TurnkeyClient { * See also {@link UpdateWallet}. */ stampUpdateWallet = async ( - input: TUpdateWalletBody + input: TUpdateWalletBody, ): Promise => { const fullUrl = this.config.baseUrl + "/public/v1/submit/update_wallet"; const body = JSON.stringify(input); @@ -3193,7 +3193,7 @@ export class TurnkeyClient { * See also {@link stampTestRateLimits}. */ testRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", input); }; @@ -3204,7 +3204,7 @@ export class TurnkeyClient { * See also {@link TestRateLimits}. */ stampTestRateLimits = async ( - input: TTestRateLimitsBody + input: TTestRateLimitsBody, ): Promise => { const fullUrl = this.config.baseUrl + "/tkhq/api/v1/test_rate_limits"; const body = JSON.stringify(input); diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index b6dd75764..fcc5eba26 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -45,7 +45,7 @@ export const getActivity = (input: TGetActivityInput) => */ export const signGetActivity = ( input: TGetActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_activity", @@ -91,7 +91,7 @@ export const getApiKey = (input: TGetApiKeyInput) => */ export const signGetApiKey = ( input: TGetApiKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_key", @@ -137,7 +137,7 @@ export const getApiKeys = (input: TGetApiKeysInput) => */ export const signGetApiKeys = ( input: TGetApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_api_keys", @@ -191,7 +191,7 @@ export const getAttestationDocument = (input: TGetAttestationDocumentInput) => */ export const signGetAttestationDocument = ( input: TGetAttestationDocumentInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_attestation", @@ -243,7 +243,7 @@ export const getAuthenticator = (input: TGetAuthenticatorInput) => */ export const signGetAuthenticator = ( input: TGetAuthenticatorInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticator", @@ -295,7 +295,7 @@ export const getAuthenticators = (input: TGetAuthenticatorsInput) => */ export const signGetAuthenticators = ( input: TGetAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_authenticators", @@ -347,7 +347,7 @@ export const getOauthProviders = (input: TGetOauthProvidersInput) => */ export const signGetOauthProviders = ( input: TGetOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_oauth_providers", @@ -393,7 +393,7 @@ export const getOrganization = (input: TGetOrganizationInput) => */ export const signGetOrganization = ( input: TGetOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization", @@ -447,7 +447,7 @@ export const getOrganizationConfigs = (input: TGetOrganizationConfigsInput) => */ export const signGetOrganizationConfigs = ( input: TGetOrganizationConfigsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_organization_configs", @@ -493,7 +493,7 @@ export const getPolicy = (input: TGetPolicyInput) => */ export const signGetPolicy = ( input: TGetPolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_policy", @@ -539,7 +539,7 @@ export const getPrivateKey = (input: TGetPrivateKeyInput) => */ export const signGetPrivateKey = ( input: TGetPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_private_key", @@ -574,7 +574,7 @@ export type TGetSmartContractInterfaceBody = * `POST /public/v1/query/get_smart_contract_interface` */ export const getSmartContractInterface = ( - input: TGetSmartContractInterfaceInput + input: TGetSmartContractInterfaceInput, ) => request< TGetSmartContractInterfaceResponse, @@ -595,7 +595,7 @@ export const getSmartContractInterface = ( */ export const signGetSmartContractInterface = ( input: TGetSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_smart_contract_interface", @@ -641,7 +641,7 @@ export const getUser = (input: TGetUserInput) => */ export const signGetUser = ( input: TGetUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_user", @@ -687,7 +687,7 @@ export const getWallet = (input: TGetWalletInput) => */ export const signGetWallet = ( input: TGetWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet", @@ -739,7 +739,7 @@ export const getWalletAccount = (input: TGetWalletAccountInput) => */ export const signGetWalletAccount = ( input: TGetWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/get_wallet_account", @@ -785,7 +785,7 @@ export const getActivities = (input: TGetActivitiesInput) => */ export const signGetActivities = ( input: TGetActivitiesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_activities", @@ -831,7 +831,7 @@ export const getPolicies = (input: TGetPoliciesInput) => */ export const signGetPolicies = ( input: TGetPoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_policies", @@ -883,7 +883,7 @@ export const listPrivateKeyTags = (input: TListPrivateKeyTagsInput) => */ export const signListPrivateKeyTags = ( input: TListPrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_key_tags", @@ -929,7 +929,7 @@ export const getPrivateKeys = (input: TGetPrivateKeysInput) => */ export const signGetPrivateKeys = ( input: TGetPrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_private_keys", @@ -964,7 +964,7 @@ export type TGetSmartContractInterfacesBody = * `POST /public/v1/query/list_smart_contract_interfaces` */ export const getSmartContractInterfaces = ( - input: TGetSmartContractInterfacesInput + input: TGetSmartContractInterfacesInput, ) => request< TGetSmartContractInterfacesResponse, @@ -985,7 +985,7 @@ export const getSmartContractInterfaces = ( */ export const signGetSmartContractInterfaces = ( input: TGetSmartContractInterfacesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_smart_contract_interfaces", @@ -1031,7 +1031,7 @@ export const getSubOrgIds = (input: TGetSubOrgIdsInput) => */ export const signGetSubOrgIds = ( input: TGetSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_suborgs", @@ -1077,7 +1077,7 @@ export const listUserTags = (input: TListUserTagsInput) => */ export const signListUserTags = ( input: TListUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_user_tags", @@ -1123,7 +1123,7 @@ export const getUsers = (input: TGetUsersInput) => */ export const signGetUsers = ( input: TGetUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_users", @@ -1175,7 +1175,7 @@ export const getVerifiedSubOrgIds = (input: TGetVerifiedSubOrgIdsInput) => */ export const signGetVerifiedSubOrgIds = ( input: TGetVerifiedSubOrgIdsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_verified_suborgs", @@ -1227,7 +1227,7 @@ export const getWalletAccounts = (input: TGetWalletAccountsInput) => */ export const signGetWalletAccounts = ( input: TGetWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallet_accounts", @@ -1273,7 +1273,7 @@ export const getWallets = (input: TGetWalletsInput) => */ export const signGetWallets = ( input: TGetWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/list_wallets", @@ -1319,7 +1319,7 @@ export const getWhoami = (input: TGetWhoamiInput) => */ export const signGetWhoami = ( input: TGetWhoamiInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/query/whoami", @@ -1365,7 +1365,7 @@ export const approveActivity = (input: TApproveActivityInput) => */ export const signApproveActivity = ( input: TApproveActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/approve_activity", @@ -1411,7 +1411,7 @@ export const createApiKeys = (input: TCreateApiKeysInput) => */ export const signCreateApiKeys = ( input: TCreateApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_keys", @@ -1463,7 +1463,7 @@ export const createApiOnlyUsers = (input: TCreateApiOnlyUsersInput) => */ export const signCreateApiOnlyUsers = ( input: TCreateApiOnlyUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_api_only_users", @@ -1515,7 +1515,7 @@ export const createAuthenticators = (input: TCreateAuthenticatorsInput) => */ export const signCreateAuthenticators = ( input: TCreateAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_authenticators", @@ -1567,7 +1567,7 @@ export const createInvitations = (input: TCreateInvitationsInput) => */ export const signCreateInvitations = ( input: TCreateInvitationsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_invitations", @@ -1619,7 +1619,7 @@ export const createOauthProviders = (input: TCreateOauthProvidersInput) => */ export const signCreateOauthProviders = ( input: TCreateOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_oauth_providers", @@ -1665,7 +1665,7 @@ export const createPolicies = (input: TCreatePoliciesInput) => */ export const signCreatePolicies = ( input: TCreatePoliciesInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policies", @@ -1711,7 +1711,7 @@ export const createPolicy = (input: TCreatePolicyInput) => */ export const signCreatePolicy = ( input: TCreatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_policy", @@ -1763,7 +1763,7 @@ export const createPrivateKeyTag = (input: TCreatePrivateKeyTagInput) => */ export const signCreatePrivateKeyTag = ( input: TCreatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_key_tag", @@ -1815,7 +1815,7 @@ export const createPrivateKeys = (input: TCreatePrivateKeysInput) => */ export const signCreatePrivateKeys = ( input: TCreatePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_private_keys", @@ -1867,7 +1867,7 @@ export const createReadOnlySession = (input: TCreateReadOnlySessionInput) => */ export const signCreateReadOnlySession = ( input: TCreateReadOnlySessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_only_session", @@ -1921,7 +1921,7 @@ export const createReadWriteSession = (input: TCreateReadWriteSessionInput) => */ export const signCreateReadWriteSession = ( input: TCreateReadWriteSessionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_read_write_session", @@ -1956,7 +1956,7 @@ export type TCreateSmartContractInterfaceBody = * `POST /public/v1/submit/create_smart_contract_interface` */ export const createSmartContractInterface = ( - input: TCreateSmartContractInterfaceInput + input: TCreateSmartContractInterfaceInput, ) => request< TCreateSmartContractInterfaceResponse, @@ -1977,7 +1977,7 @@ export const createSmartContractInterface = ( */ export const signCreateSmartContractInterface = ( input: TCreateSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_smart_contract_interface", @@ -2029,7 +2029,7 @@ export const createSubOrganization = (input: TCreateSubOrganizationInput) => */ export const signCreateSubOrganization = ( input: TCreateSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_sub_organization", @@ -2075,7 +2075,7 @@ export const createUserTag = (input: TCreateUserTagInput) => */ export const signCreateUserTag = ( input: TCreateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_user_tag", @@ -2121,7 +2121,7 @@ export const createUsers = (input: TCreateUsersInput) => */ export const signCreateUsers = ( input: TCreateUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_users", @@ -2167,7 +2167,7 @@ export const createWallet = (input: TCreateWalletInput) => */ export const signCreateWallet = ( input: TCreateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet", @@ -2219,7 +2219,7 @@ export const createWalletAccounts = (input: TCreateWalletAccountsInput) => */ export const signCreateWalletAccounts = ( input: TCreateWalletAccountsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/create_wallet_accounts", @@ -2265,7 +2265,7 @@ export const deleteApiKeys = (input: TDeleteApiKeysInput) => */ export const signDeleteApiKeys = ( input: TDeleteApiKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_api_keys", @@ -2317,7 +2317,7 @@ export const deleteAuthenticators = (input: TDeleteAuthenticatorsInput) => */ export const signDeleteAuthenticators = ( input: TDeleteAuthenticatorsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_authenticators", @@ -2369,7 +2369,7 @@ export const deleteInvitation = (input: TDeleteInvitationInput) => */ export const signDeleteInvitation = ( input: TDeleteInvitationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_invitation", @@ -2421,7 +2421,7 @@ export const deleteOauthProviders = (input: TDeleteOauthProvidersInput) => */ export const signDeleteOauthProviders = ( input: TDeleteOauthProvidersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_oauth_providers", @@ -2467,7 +2467,7 @@ export const deletePolicy = (input: TDeletePolicyInput) => */ export const signDeletePolicy = ( input: TDeletePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_policy", @@ -2519,7 +2519,7 @@ export const deletePrivateKeyTags = (input: TDeletePrivateKeyTagsInput) => */ export const signDeletePrivateKeyTags = ( input: TDeletePrivateKeyTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_key_tags", @@ -2571,7 +2571,7 @@ export const deletePrivateKeys = (input: TDeletePrivateKeysInput) => */ export const signDeletePrivateKeys = ( input: TDeletePrivateKeysInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_private_keys", @@ -2606,7 +2606,7 @@ export type TDeleteSmartContractInterfaceBody = * `POST /public/v1/submit/delete_smart_contract_interface` */ export const deleteSmartContractInterface = ( - input: TDeleteSmartContractInterfaceInput + input: TDeleteSmartContractInterfaceInput, ) => request< TDeleteSmartContractInterfaceResponse, @@ -2627,7 +2627,7 @@ export const deleteSmartContractInterface = ( */ export const signDeleteSmartContractInterface = ( input: TDeleteSmartContractInterfaceInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_smart_contract_interface", @@ -2679,7 +2679,7 @@ export const deleteSubOrganization = (input: TDeleteSubOrganizationInput) => */ export const signDeleteSubOrganization = ( input: TDeleteSubOrganizationInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_sub_organization", @@ -2725,7 +2725,7 @@ export const deleteUserTags = (input: TDeleteUserTagsInput) => */ export const signDeleteUserTags = ( input: TDeleteUserTagsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_user_tags", @@ -2771,7 +2771,7 @@ export const deleteUsers = (input: TDeleteUsersInput) => */ export const signDeleteUsers = ( input: TDeleteUsersInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_users", @@ -2817,7 +2817,7 @@ export const deleteWallets = (input: TDeleteWalletsInput) => */ export const signDeleteWallets = ( input: TDeleteWalletsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/delete_wallets", @@ -2863,7 +2863,7 @@ export const emailAuth = (input: TEmailAuthInput) => */ export const signEmailAuth = ( input: TEmailAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/email_auth", @@ -2915,7 +2915,7 @@ export const exportPrivateKey = (input: TExportPrivateKeyInput) => */ export const signExportPrivateKey = ( input: TExportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_private_key", @@ -2961,7 +2961,7 @@ export const exportWallet = (input: TExportWalletInput) => */ export const signExportWallet = ( input: TExportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet", @@ -3013,7 +3013,7 @@ export const exportWalletAccount = (input: TExportWalletAccountInput) => */ export const signExportWalletAccount = ( input: TExportWalletAccountInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/export_wallet_account", @@ -3065,7 +3065,7 @@ export const importPrivateKey = (input: TImportPrivateKeyInput) => */ export const signImportPrivateKey = ( input: TImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_private_key", @@ -3111,7 +3111,7 @@ export const importWallet = (input: TImportWalletInput) => */ export const signImportWallet = ( input: TImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/import_wallet", @@ -3157,7 +3157,7 @@ export const initFiatOnRamp = (input: TInitFiatOnRampInput) => */ export const signInitFiatOnRamp = ( input: TInitFiatOnRampInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_fiat_on_ramp", @@ -3209,7 +3209,7 @@ export const initImportPrivateKey = (input: TInitImportPrivateKeyInput) => */ export const signInitImportPrivateKey = ( input: TInitImportPrivateKeyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_private_key", @@ -3261,7 +3261,7 @@ export const initImportWallet = (input: TInitImportWalletInput) => */ export const signInitImportWallet = ( input: TInitImportWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_import_wallet", @@ -3307,7 +3307,7 @@ export const initOtp = (input: TInitOtpInput) => */ export const signInitOtp = ( input: TInitOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp", @@ -3353,7 +3353,7 @@ export const initOtpAuth = (input: TInitOtpAuthInput) => */ export const signInitOtpAuth = ( input: TInitOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_otp_auth", @@ -3405,7 +3405,7 @@ export const initUserEmailRecovery = (input: TInitUserEmailRecoveryInput) => */ export const signInitUserEmailRecovery = ( input: TInitUserEmailRecoveryInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/init_user_email_recovery", @@ -3451,7 +3451,7 @@ export const oauth = (input: TOauthInput) => */ export const signOauth = ( input: TOauthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth", @@ -3497,7 +3497,7 @@ export const oauthLogin = (input: TOauthLoginInput) => */ export const signOauthLogin = ( input: TOauthLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/oauth_login", @@ -3543,7 +3543,7 @@ export const otpAuth = (input: TOtpAuthInput) => */ export const signOtpAuth = ( input: TOtpAuthInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_auth", @@ -3589,7 +3589,7 @@ export const otpLogin = (input: TOtpLoginInput) => */ export const signOtpLogin = ( input: TOtpLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/otp_login", @@ -3635,7 +3635,7 @@ export const recoverUser = (input: TRecoverUserInput) => */ export const signRecoverUser = ( input: TRecoverUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/recover_user", @@ -3681,7 +3681,7 @@ export const rejectActivity = (input: TRejectActivityInput) => */ export const signRejectActivity = ( input: TRejectActivityInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/reject_activity", @@ -3716,7 +3716,7 @@ export type TRemoveOrganizationFeatureBody = * `POST /public/v1/submit/remove_organization_feature` */ export const removeOrganizationFeature = ( - input: TRemoveOrganizationFeatureInput + input: TRemoveOrganizationFeatureInput, ) => request< TRemoveOrganizationFeatureResponse, @@ -3737,7 +3737,7 @@ export const removeOrganizationFeature = ( */ export const signRemoveOrganizationFeature = ( input: TRemoveOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/remove_organization_feature", @@ -3791,7 +3791,7 @@ export const setOrganizationFeature = (input: TSetOrganizationFeatureInput) => */ export const signSetOrganizationFeature = ( input: TSetOrganizationFeatureInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/set_organization_feature", @@ -3837,7 +3837,7 @@ export const signRawPayload = (input: TSignRawPayloadInput) => */ export const signSignRawPayload = ( input: TSignRawPayloadInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payload", @@ -3883,7 +3883,7 @@ export const signRawPayloads = (input: TSignRawPayloadsInput) => */ export const signSignRawPayloads = ( input: TSignRawPayloadsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_raw_payloads", @@ -3929,7 +3929,7 @@ export const signTransaction = (input: TSignTransactionInput) => */ export const signSignTransaction = ( input: TSignTransactionInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/sign_transaction", @@ -3975,7 +3975,7 @@ export const stampLogin = (input: TStampLoginInput) => */ export const signStampLogin = ( input: TStampLoginInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/stamp_login", @@ -4021,7 +4021,7 @@ export const updatePolicy = (input: TUpdatePolicyInput) => */ export const signUpdatePolicy = ( input: TUpdatePolicyInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_policy", @@ -4073,7 +4073,7 @@ export const updatePrivateKeyTag = (input: TUpdatePrivateKeyTagInput) => */ export const signUpdatePrivateKeyTag = ( input: TUpdatePrivateKeyTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_private_key_tag", @@ -4125,7 +4125,7 @@ export const updateRootQuorum = (input: TUpdateRootQuorumInput) => */ export const signUpdateRootQuorum = ( input: TUpdateRootQuorumInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_root_quorum", @@ -4171,7 +4171,7 @@ export const updateUser = (input: TUpdateUserInput) => */ export const signUpdateUser = ( input: TUpdateUserInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user", @@ -4217,7 +4217,7 @@ export const updateUserEmail = (input: TUpdateUserEmailInput) => */ export const signUpdateUserEmail = ( input: TUpdateUserEmailInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_email", @@ -4263,7 +4263,7 @@ export const updateUserName = (input: TUpdateUserNameInput) => */ export const signUpdateUserName = ( input: TUpdateUserNameInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_name", @@ -4315,7 +4315,7 @@ export const updateUserPhoneNumber = (input: TUpdateUserPhoneNumberInput) => */ export const signUpdateUserPhoneNumber = ( input: TUpdateUserPhoneNumberInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_phone_number", @@ -4361,7 +4361,7 @@ export const updateUserTag = (input: TUpdateUserTagInput) => */ export const signUpdateUserTag = ( input: TUpdateUserTagInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_user_tag", @@ -4407,7 +4407,7 @@ export const updateWallet = (input: TUpdateWalletInput) => */ export const signUpdateWallet = ( input: TUpdateWalletInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/update_wallet", @@ -4453,7 +4453,7 @@ export const verifyOtp = (input: TVerifyOtpInput) => */ export const signVerifyOtp = ( input: TVerifyOtpInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/public/v1/submit/verify_otp", @@ -4524,7 +4524,7 @@ export const testRateLimits = (input: TTestRateLimitsInput) => */ export const signTestRateLimits = ( input: TTestRateLimitsInput, - options?: TurnkeyCredentialRequestOptions + options?: TurnkeyCredentialRequestOptions, ) => signedRequest({ uri: "/tkhq/api/v1/test_rate_limits", diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 714980d61..2f01b9397 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -1,10 +1,20 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; @@ -14,7 +24,6 @@ import { StorageKeys, getStorageValue } from "../storage"; import { parseSession } from "../utils"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -29,27 +38,27 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); var headers: Record = { - "X-Client-Version": VERSION - } + "X-Client-Version": VERSION, + }; if (this.stamper) { const stamp = await this.stamper.stamp(stringifiedBody); - headers[stamp.stampHeaderName] = stamp.stampHeaderValue + headers[stamp.stampHeaderName] = stamp.stampHeaderValue; } - if (this.config.readOnlySession){ - headers["X-Session"] = this.config.readOnlySession + if (this.config.readOnlySession) { + headers["X-Session"] = this.config.readOnlySession; } const response = await fetch(fullUrl, { method: "POST", headers: headers, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -70,12 +79,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -83,7 +93,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -94,15 +104,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -110,9 +124,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -121,28 +142,33 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -154,20 +180,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -179,20 +210,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -204,20 +240,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -229,24 +270,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,24 +301,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -279,24 +332,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -304,24 +363,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -329,24 +394,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -354,20 +425,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -379,20 +455,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -404,24 +485,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + getSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + stampGetSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -429,20 +516,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -454,20 +546,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -479,24 +576,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -504,20 +607,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -529,20 +637,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -554,24 +667,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -579,24 +698,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -604,24 +729,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + getSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + stampGetSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -629,20 +761,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -654,20 +791,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -679,20 +821,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -704,24 +851,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -729,24 +882,30 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -754,20 +913,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -779,20 +943,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -804,28 +973,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -833,28 +1005,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -862,28 +1044,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -891,28 +1083,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -920,28 +1122,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -949,28 +1161,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -978,28 +1200,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1007,24 +1239,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1036,28 +1277,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1065,28 +1316,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1094,28 +1355,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1123,28 +1394,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1152,28 +1433,39 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + createSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" - }, "createSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/create_smart_contract_interface", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + }, + "createSmartContractInterfaceResult", + ); + }; - stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + stampCreateSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1181,28 +1473,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1210,28 +1512,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1239,24 +1551,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1268,24 +1589,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1297,28 +1627,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1326,28 +1666,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1355,28 +1705,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1384,28 +1744,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1413,28 +1783,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1442,24 +1822,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1471,28 +1860,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1500,28 +1899,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1529,28 +1938,39 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + deleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" - }, "deleteSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/delete_smart_contract_interface", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", + }, + "deleteSmartContractInterfaceResult", + ); + }; - stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + stampDeleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1558,28 +1978,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1587,28 +2017,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1616,24 +2056,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1645,24 +2094,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1674,24 +2132,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1703,28 +2170,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1732,24 +2209,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1761,28 +2247,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1790,28 +2286,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1819,24 +2325,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1848,28 +2363,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1877,28 +2402,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1906,28 +2441,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1935,24 +2480,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1964,24 +2518,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1993,28 +2556,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2022,24 +2595,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2051,24 +2633,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2080,24 +2671,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2109,24 +2709,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2138,24 +2747,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2167,28 +2785,31 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: + organizationId ?? session?.organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2196,28 +2817,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2225,28 +2856,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2254,28 +2895,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2283,28 +2934,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2312,28 +2973,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2341,24 +3012,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2370,24 +3050,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2399,28 +3088,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2428,28 +3127,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2457,24 +3166,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2486,28 +3204,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2515,28 +3243,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2544,28 +3282,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2573,28 +3321,38 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2602,24 +3360,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2631,24 +3398,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? (session?.organizationId ?? this.config.organizationId), - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: + organizationId ?? + session?.organizationId ?? + this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2660,20 +3436,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { let session = await getStorageValue(StorageKeys.Session); session = parseSession(session!); return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? session?.organizationId ?? this.config.organizationId + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, }); - } + }; - - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2685,6 +3466,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index 777abe97b..e1ad0eedd 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -2,558 +2,976 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = + operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; +export type TGetSmartContractInterfaceInput = { + body: TGetSmartContractInterfaceBody; +}; -export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit< + operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = + operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; +export type TGetSmartContractInterfacesInput = { + body: TGetSmartContractInterfacesBody; +}; -export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit< + operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = + operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; +export type TCreateSmartContractInterfaceInput = { + body: TCreateSmartContractInterfaceBody; +}; -export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSmartContractInterfaceBody = + operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = + operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; +export type TDeleteSmartContractInterfaceInput = { + body: TDeleteSmartContractInterfaceBody; +}; -export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = + operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 80ce13532..984a47e5d 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -1,16 +1,25 @@ /* @generated by codegen. DO NOT EDIT BY HAND */ -import { TERMINAL_ACTIVITY_STATUSES, TActivityResponse, TActivityStatus, TSignedRequest } from "@turnkey/http"; +import { + TERMINAL_ACTIVITY_STATUSES, + TActivityResponse, + TActivityStatus, + TSignedRequest, +} from "@turnkey/http"; import type { definitions } from "../__inputs__/public_api.types"; -import { GrpcStatus, TStamper, TurnkeyRequestError, TurnkeySDKClientConfig } from "../__types__/base"; +import { + GrpcStatus, + TStamper, + TurnkeyRequestError, + TurnkeySDKClientConfig, +} from "../__types__/base"; import { VERSION } from "../__generated__/version"; import type * as SdkApiTypes from "./sdk_api_types"; - export class TurnkeySDKClientBase { config: TurnkeySDKClientConfig; @@ -23,7 +32,7 @@ export class TurnkeySDKClientBase { async request( url: string, - body: TBodyType + body: TBodyType, ): Promise { const fullUrl = this.config.apiBaseUrl + url; const stringifiedBody = JSON.stringify(body); @@ -33,10 +42,10 @@ export class TurnkeySDKClientBase { method: "POST", headers: { [stamp.stampHeaderName]: stamp.stampHeaderValue, - "X-Client-Version": VERSION + "X-Client-Version": VERSION, }, body: stringifiedBody, - redirect: "follow" + redirect: "follow", }); if (!response.ok) { @@ -57,12 +66,13 @@ export class TurnkeySDKClientBase { async command( url: string, body: TBodyType, - resultKey: string + resultKey: string, ): Promise { const pollingDuration = this.config.activityPoller?.intervalMs ?? 1000; const maxRetries = this.config.activityPoller?.numRetries ?? 3; - const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + const sleep = (ms: number) => + new Promise((resolve) => setTimeout(resolve, ms)); const handleResponse = (activityData: TActivityResponse): TResponseType => { const { result, status } = activityData.activity; @@ -70,7 +80,7 @@ export class TurnkeySDKClientBase { if (status === "ACTIVITY_STATUS_COMPLETED") { return { ...result[`${resultKey}` as keyof definitions["v1Result"]], - ...activityData + ...activityData, } as TResponseType; } @@ -81,15 +91,19 @@ export class TurnkeySDKClientBase { const pollStatus = async (activityId: string): Promise => { const pollBody = { activityId }; - const pollData = await this.getActivity(pollBody) as TActivityResponse; + const pollData = (await this.getActivity(pollBody)) as TActivityResponse; if (attempts > maxRetries) { return handleResponse(pollData); } attempts += 1; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(pollData.activity.status as TActivityStatus)) { + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + pollData.activity.status as TActivityStatus, + ) + ) { await sleep(pollingDuration); return pollStatus(activityId); } @@ -97,9 +111,16 @@ export class TurnkeySDKClientBase { return handleResponse(pollData); }; - const responseData = await this.request(url, body) as TActivityResponse; - - if (!TERMINAL_ACTIVITY_STATUSES.includes(responseData.activity.status as TActivityStatus)) { + const responseData = (await this.request( + url, + body, + )) as TActivityResponse; + + if ( + !TERMINAL_ACTIVITY_STATUSES.includes( + responseData.activity.status as TActivityStatus, + ) + ) { return pollStatus(responseData.activity.id); } @@ -108,26 +129,28 @@ export class TurnkeySDKClientBase { async activityDecision( url: string, - body: TBodyType + body: TBodyType, ): Promise { - const activityData = await this.request(url, body) as TActivityResponse; + const activityData = (await this.request(url, body)) as TActivityResponse; return { ...activityData["activity"]["result"], - ...activityData + ...activityData, } as TResponseType; } - - getActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + getActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { return this.request("/public/v1/query/get_activity", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivity = async (input: SdkApiTypes.TGetActivityBody): Promise => { + stampGetActivity = async ( + input: SdkApiTypes.TGetActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -139,18 +162,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + getApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { return this.request("/public/v1/query/get_api_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKey = async (input: SdkApiTypes.TGetApiKeyBody): Promise => { + stampGetApiKey = async ( + input: SdkApiTypes.TGetApiKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -162,18 +187,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getApiKeys = async (input: SdkApiTypes.TGetApiKeysBody = {}): Promise => { + getApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/get_api_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetApiKeys = async (input: SdkApiTypes.TGetApiKeysBody): Promise => { + stampGetApiKeys = async ( + input: SdkApiTypes.TGetApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -185,18 +212,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + getAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { return this.request("/public/v1/query/get_attestation", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAttestationDocument = async (input: SdkApiTypes.TGetAttestationDocumentBody): Promise => { + stampGetAttestationDocument = async ( + input: SdkApiTypes.TGetAttestationDocumentBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -208,22 +237,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + getAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { return this.request("/public/v1/query/get_authenticator", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticator = async (input: SdkApiTypes.TGetAuthenticatorBody): Promise => { + stampGetAuthenticator = async ( + input: SdkApiTypes.TGetAuthenticatorBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticator"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -231,22 +263,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + getAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { return this.request("/public/v1/query/get_authenticators", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetAuthenticators = async (input: SdkApiTypes.TGetAuthenticatorsBody): Promise => { + stampGetAuthenticators = async ( + input: SdkApiTypes.TGetAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -254,22 +289,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + getOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { return this.request("/public/v1/query/get_oauth_providers", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOauthProviders = async (input: SdkApiTypes.TGetOauthProvidersBody): Promise => { + stampGetOauthProviders = async ( + input: SdkApiTypes.TGetOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -277,22 +315,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganization = async (input: SdkApiTypes.TGetOrganizationBody = {}): Promise => { + getOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody = {}, + ): Promise => { return this.request("/public/v1/query/get_organization", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganization = async (input: SdkApiTypes.TGetOrganizationBody): Promise => { + stampGetOrganization = async ( + input: SdkApiTypes.TGetOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -300,22 +341,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + getOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { return this.request("/public/v1/query/get_organization_configs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetOrganizationConfigs = async (input: SdkApiTypes.TGetOrganizationConfigsBody): Promise => { + stampGetOrganizationConfigs = async ( + input: SdkApiTypes.TGetOrganizationConfigsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_organization_configs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -323,18 +367,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + getPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { return this.request("/public/v1/query/get_policy", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicy = async (input: SdkApiTypes.TGetPolicyBody): Promise => { + stampGetPolicy = async ( + input: SdkApiTypes.TGetPolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -346,18 +392,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + getPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { return this.request("/public/v1/query/get_private_key", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKey = async (input: SdkApiTypes.TGetPrivateKeyBody): Promise => { + stampGetPrivateKey = async ( + input: SdkApiTypes.TGetPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -369,22 +417,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + getSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { return this.request("/public/v1/query/get_smart_contract_interface", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSmartContractInterface = async (input: SdkApiTypes.TGetSmartContractInterfaceBody): Promise => { + stampGetSmartContractInterface = async ( + input: SdkApiTypes.TGetSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -392,18 +443,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + getUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { return this.request("/public/v1/query/get_user", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUser = async (input: SdkApiTypes.TGetUserBody): Promise => { + stampGetUser = async ( + input: SdkApiTypes.TGetUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -415,18 +468,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + getWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { return this.request("/public/v1/query/get_wallet", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallet = async (input: SdkApiTypes.TGetWalletBody): Promise => { + stampGetWallet = async ( + input: SdkApiTypes.TGetWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -438,22 +493,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + getWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { return this.request("/public/v1/query/get_wallet_account", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccount = async (input: SdkApiTypes.TGetWalletAccountBody): Promise => { + stampGetWalletAccount = async ( + input: SdkApiTypes.TGetWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -461,18 +519,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getActivities = async (input: SdkApiTypes.TGetActivitiesBody = {}): Promise => { + getActivities = async ( + input: SdkApiTypes.TGetActivitiesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_activities", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetActivities = async (input: SdkApiTypes.TGetActivitiesBody): Promise => { + stampGetActivities = async ( + input: SdkApiTypes.TGetActivitiesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -484,18 +544,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPolicies = async (input: SdkApiTypes.TGetPoliciesBody = {}): Promise => { + getPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody = {}, + ): Promise => { return this.request("/public/v1/query/list_policies", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPolicies = async (input: SdkApiTypes.TGetPoliciesBody): Promise => { + stampGetPolicies = async ( + input: SdkApiTypes.TGetPoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -507,22 +569,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + listPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { return this.request("/public/v1/query/list_private_key_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListPrivateKeyTags = async (input: SdkApiTypes.TListPrivateKeyTagsBody): Promise => { + stampListPrivateKeyTags = async ( + input: SdkApiTypes.TListPrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -530,22 +595,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody = {}): Promise => { + getPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody = {}, + ): Promise => { return this.request("/public/v1/query/list_private_keys", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetPrivateKeys = async (input: SdkApiTypes.TGetPrivateKeysBody): Promise => { + stampGetPrivateKeys = async ( + input: SdkApiTypes.TGetPrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -553,22 +621,26 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + getSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { return this.request("/public/v1/query/list_smart_contract_interfaces", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSmartContractInterfaces = async (input: SdkApiTypes.TGetSmartContractInterfacesBody): Promise => { + stampGetSmartContractInterfaces = async ( + input: SdkApiTypes.TGetSmartContractInterfacesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_smart_contract_interfaces"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/query/list_smart_contract_interfaces"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -576,18 +648,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody = {}): Promise => { + getSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetSubOrgIds = async (input: SdkApiTypes.TGetSubOrgIdsBody): Promise => { + stampGetSubOrgIds = async ( + input: SdkApiTypes.TGetSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -599,18 +673,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - listUserTags = async (input: SdkApiTypes.TListUserTagsBody = {}): Promise => { + listUserTags = async ( + input: SdkApiTypes.TListUserTagsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_user_tags", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampListUserTags = async (input: SdkApiTypes.TListUserTagsBody): Promise => { + stampListUserTags = async ( + input: SdkApiTypes.TListUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -622,18 +698,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getUsers = async (input: SdkApiTypes.TGetUsersBody = {}): Promise => { + getUsers = async ( + input: SdkApiTypes.TGetUsersBody = {}, + ): Promise => { return this.request("/public/v1/query/list_users", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetUsers = async (input: SdkApiTypes.TGetUsersBody): Promise => { + stampGetUsers = async ( + input: SdkApiTypes.TGetUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -645,22 +723,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + getVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { return this.request("/public/v1/query/list_verified_suborgs", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetVerifiedSubOrgIds = async (input: SdkApiTypes.TGetVerifiedSubOrgIdsBody): Promise => { + stampGetVerifiedSubOrgIds = async ( + input: SdkApiTypes.TGetVerifiedSubOrgIdsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_verified_suborgs"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -668,22 +749,25 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + getWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { return this.request("/public/v1/query/list_wallet_accounts", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWalletAccounts = async (input: SdkApiTypes.TGetWalletAccountsBody): Promise => { + stampGetWalletAccounts = async ( + input: SdkApiTypes.TGetWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/list_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -691,18 +775,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWallets = async (input: SdkApiTypes.TGetWalletsBody = {}): Promise => { + getWallets = async ( + input: SdkApiTypes.TGetWalletsBody = {}, + ): Promise => { return this.request("/public/v1/query/list_wallets", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWallets = async (input: SdkApiTypes.TGetWalletsBody): Promise => { + stampGetWallets = async ( + input: SdkApiTypes.TGetWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -714,18 +800,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - getWhoami = async (input: SdkApiTypes.TGetWhoamiBody = {}): Promise => { + getWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody = {}, + ): Promise => { return this.request("/public/v1/query/whoami", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampGetWhoami = async (input: SdkApiTypes.TGetWhoamiBody): Promise => { + stampGetWhoami = async ( + input: SdkApiTypes.TGetWhoamiBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -737,26 +825,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - approveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + approveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/approve_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_APPROVE_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/approve_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_APPROVE_ACTIVITY", + }); + }; - stampApproveActivity = async (input: SdkApiTypes.TApproveActivityBody): Promise => { + stampApproveActivity = async ( + input: SdkApiTypes.TApproveActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/approve_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -764,25 +854,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + createApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2" - }, "createApiKeysResult"); - } - + return this.command( + "/public/v1/submit/create_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_KEYS_V2", + }, + "createApiKeysResult", + ); + }; - stampCreateApiKeys = async (input: SdkApiTypes.TCreateApiKeysBody): Promise => { + stampCreateApiKeys = async ( + input: SdkApiTypes.TCreateApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -790,25 +887,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + createApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_api_only_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" - }, "createApiOnlyUsersResult"); - } - + return this.command( + "/public/v1/submit/create_api_only_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_API_ONLY_USERS", + }, + "createApiOnlyUsersResult", + ); + }; - stampCreateApiOnlyUsers = async (input: SdkApiTypes.TCreateApiOnlyUsersBody): Promise => { + stampCreateApiOnlyUsers = async ( + input: SdkApiTypes.TCreateApiOnlyUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_api_only_users"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -816,25 +920,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + createAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" - }, "createAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/create_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2", + }, + "createAuthenticatorsResult", + ); + }; - stampCreateAuthenticators = async (input: SdkApiTypes.TCreateAuthenticatorsBody): Promise => { + stampCreateAuthenticators = async ( + input: SdkApiTypes.TCreateAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -842,25 +953,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + createInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_invitations", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_INVITATIONS" - }, "createInvitationsResult"); - } - + return this.command( + "/public/v1/submit/create_invitations", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_INVITATIONS", + }, + "createInvitationsResult", + ); + }; - stampCreateInvitations = async (input: SdkApiTypes.TCreateInvitationsBody): Promise => { + stampCreateInvitations = async ( + input: SdkApiTypes.TCreateInvitationsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_invitations"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -868,25 +986,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + createOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" - }, "createOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/create_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS", + }, + "createOauthProvidersResult", + ); + }; - stampCreateOauthProviders = async (input: SdkApiTypes.TCreateOauthProvidersBody): Promise => { + stampCreateOauthProviders = async ( + input: SdkApiTypes.TCreateOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -894,25 +1019,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + createPolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policies", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICIES" - }, "createPoliciesResult"); - } - + return this.command( + "/public/v1/submit/create_policies", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICIES", + }, + "createPoliciesResult", + ); + }; - stampCreatePolicies = async (input: SdkApiTypes.TCreatePoliciesBody): Promise => { + stampCreatePolicies = async ( + input: SdkApiTypes.TCreatePoliciesBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_policies"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_policies"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -920,21 +1052,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + createPolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_POLICY_V3" - }, "createPolicyResult"); - } - + return this.command( + "/public/v1/submit/create_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_POLICY_V3", + }, + "createPolicyResult", + ); + }; - stampCreatePolicy = async (input: SdkApiTypes.TCreatePolicyBody): Promise => { + stampCreatePolicy = async ( + input: SdkApiTypes.TCreatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -946,25 +1084,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + createPrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" - }, "createPrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/create_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG", + }, + "createPrivateKeyTagResult", + ); + }; - stampCreatePrivateKeyTag = async (input: SdkApiTypes.TCreatePrivateKeyTagBody): Promise => { + stampCreatePrivateKeyTag = async ( + input: SdkApiTypes.TCreatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -972,25 +1117,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createPrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + createPrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" - }, "createPrivateKeysResultV2"); - } - + return this.command( + "/public/v1/submit/create_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2", + }, + "createPrivateKeysResultV2", + ); + }; - stampCreatePrivateKeys = async (input: SdkApiTypes.TCreatePrivateKeysBody): Promise => { + stampCreatePrivateKeys = async ( + input: SdkApiTypes.TCreatePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -998,25 +1150,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + createReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_only_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" - }, "createReadOnlySessionResult"); - } - + return this.command( + "/public/v1/submit/create_read_only_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION", + }, + "createReadOnlySessionResult", + ); + }; - stampCreateReadOnlySession = async (input: SdkApiTypes.TCreateReadOnlySessionBody): Promise => { + stampCreateReadOnlySession = async ( + input: SdkApiTypes.TCreateReadOnlySessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_only_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1024,25 +1183,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + createReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_read_write_session", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" - }, "createReadWriteSessionResultV2"); - } - + return this.command( + "/public/v1/submit/create_read_write_session", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2", + }, + "createReadWriteSessionResultV2", + ); + }; - stampCreateReadWriteSession = async (input: SdkApiTypes.TCreateReadWriteSessionBody): Promise => { + stampCreateReadWriteSession = async ( + input: SdkApiTypes.TCreateReadWriteSessionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_read_write_session"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1050,25 +1216,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + createSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" - }, "createSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/create_smart_contract_interface", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE", + }, + "createSmartContractInterfaceResult", + ); + }; - stampCreateSmartContractInterface = async (input: SdkApiTypes.TCreateSmartContractInterfaceBody): Promise => { + stampCreateSmartContractInterface = async ( + input: SdkApiTypes.TCreateSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/create_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1076,25 +1250,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + createSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" - }, "createSubOrganizationResultV7"); - } - + return this.command( + "/public/v1/submit/create_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7", + }, + "createSubOrganizationResultV7", + ); + }; - stampCreateSubOrganization = async (input: SdkApiTypes.TCreateSubOrganizationBody): Promise => { + stampCreateSubOrganization = async ( + input: SdkApiTypes.TCreateSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1102,25 +1283,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + createUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USER_TAG" - }, "createUserTagResult"); - } - + return this.command( + "/public/v1/submit/create_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USER_TAG", + }, + "createUserTagResult", + ); + }; - stampCreateUserTag = async (input: SdkApiTypes.TCreateUserTagBody): Promise => { + stampCreateUserTag = async ( + input: SdkApiTypes.TCreateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1128,21 +1316,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + createUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_USERS_V3" - }, "createUsersResult"); - } - + return this.command( + "/public/v1/submit/create_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_USERS_V3", + }, + "createUsersResult", + ); + }; - stampCreateUsers = async (input: SdkApiTypes.TCreateUsersBody): Promise => { + stampCreateUsers = async ( + input: SdkApiTypes.TCreateUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1154,21 +1348,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + createWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET" - }, "createWalletResult"); - } - + return this.command( + "/public/v1/submit/create_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET", + }, + "createWalletResult", + ); + }; - stampCreateWallet = async (input: SdkApiTypes.TCreateWalletBody): Promise => { + stampCreateWallet = async ( + input: SdkApiTypes.TCreateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1180,25 +1380,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - createWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + createWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/create_wallet_accounts", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" - }, "createWalletAccountsResult"); - } - + return this.command( + "/public/v1/submit/create_wallet_accounts", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS", + }, + "createWalletAccountsResult", + ); + }; - stampCreateWalletAccounts = async (input: SdkApiTypes.TCreateWalletAccountsBody): Promise => { + stampCreateWalletAccounts = async ( + input: SdkApiTypes.TCreateWalletAccountsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/create_wallet_accounts"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1206,25 +1413,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + deleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_api_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_API_KEYS" - }, "deleteApiKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_api_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_API_KEYS", + }, + "deleteApiKeysResult", + ); + }; - stampDeleteApiKeys = async (input: SdkApiTypes.TDeleteApiKeysBody): Promise => { + stampDeleteApiKeys = async ( + input: SdkApiTypes.TDeleteApiKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_api_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1232,25 +1446,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + deleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_authenticators", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" - }, "deleteAuthenticatorsResult"); - } - + return this.command( + "/public/v1/submit/delete_authenticators", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_AUTHENTICATORS", + }, + "deleteAuthenticatorsResult", + ); + }; - stampDeleteAuthenticators = async (input: SdkApiTypes.TDeleteAuthenticatorsBody): Promise => { + stampDeleteAuthenticators = async ( + input: SdkApiTypes.TDeleteAuthenticatorsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_authenticators"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1258,25 +1479,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + deleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_invitation", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_INVITATION" - }, "deleteInvitationResult"); - } - + return this.command( + "/public/v1/submit/delete_invitation", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_INVITATION", + }, + "deleteInvitationResult", + ); + }; - stampDeleteInvitation = async (input: SdkApiTypes.TDeleteInvitationBody): Promise => { + stampDeleteInvitation = async ( + input: SdkApiTypes.TDeleteInvitationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_invitation"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1284,25 +1512,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + deleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_oauth_providers", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" - }, "deleteOauthProvidersResult"); - } - + return this.command( + "/public/v1/submit/delete_oauth_providers", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS", + }, + "deleteOauthProvidersResult", + ); + }; - stampDeleteOauthProviders = async (input: SdkApiTypes.TDeleteOauthProvidersBody): Promise => { + stampDeleteOauthProviders = async ( + input: SdkApiTypes.TDeleteOauthProvidersBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_oauth_providers"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1310,21 +1545,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + deletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_POLICY" - }, "deletePolicyResult"); - } - + return this.command( + "/public/v1/submit/delete_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_POLICY", + }, + "deletePolicyResult", + ); + }; - stampDeletePolicy = async (input: SdkApiTypes.TDeletePolicyBody): Promise => { + stampDeletePolicy = async ( + input: SdkApiTypes.TDeletePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1336,25 +1577,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + deletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_key_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" - }, "deletePrivateKeyTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_private_key_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS", + }, + "deletePrivateKeyTagsResult", + ); + }; - stampDeletePrivateKeyTags = async (input: SdkApiTypes.TDeletePrivateKeyTagsBody): Promise => { + stampDeletePrivateKeyTags = async ( + input: SdkApiTypes.TDeletePrivateKeyTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_key_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1362,25 +1610,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + deletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_private_keys", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" - }, "deletePrivateKeysResult"); - } - + return this.command( + "/public/v1/submit/delete_private_keys", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS", + }, + "deletePrivateKeysResult", + ); + }; - stampDeletePrivateKeys = async (input: SdkApiTypes.TDeletePrivateKeysBody): Promise => { + stampDeletePrivateKeys = async ( + input: SdkApiTypes.TDeletePrivateKeysBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_private_keys"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1388,25 +1643,33 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + deleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_smart_contract_interface", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" - }, "deleteSmartContractInterfaceResult"); - } - + return this.command( + "/public/v1/submit/delete_smart_contract_interface", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE", + }, + "deleteSmartContractInterfaceResult", + ); + }; - stampDeleteSmartContractInterface = async (input: SdkApiTypes.TDeleteSmartContractInterfaceBody): Promise => { + stampDeleteSmartContractInterface = async ( + input: SdkApiTypes.TDeleteSmartContractInterfaceBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_smart_contract_interface"; + const fullUrl = + this.config.apiBaseUrl + + "/public/v1/submit/delete_smart_contract_interface"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1414,25 +1677,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + deleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_sub_organization", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" - }, "deleteSubOrganizationResult"); - } - + return this.command( + "/public/v1/submit/delete_sub_organization", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION", + }, + "deleteSubOrganizationResult", + ); + }; - stampDeleteSubOrganization = async (input: SdkApiTypes.TDeleteSubOrganizationBody): Promise => { + stampDeleteSubOrganization = async ( + input: SdkApiTypes.TDeleteSubOrganizationBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_sub_organization"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1440,25 +1710,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - deleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + deleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_user_tags", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USER_TAGS" - }, "deleteUserTagsResult"); - } - + return this.command( + "/public/v1/submit/delete_user_tags", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USER_TAGS", + }, + "deleteUserTagsResult", + ); + }; - stampDeleteUserTags = async (input: SdkApiTypes.TDeleteUserTagsBody): Promise => { + stampDeleteUserTags = async ( + input: SdkApiTypes.TDeleteUserTagsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/delete_user_tags"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1466,21 +1743,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + deleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_users", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_USERS" - }, "deleteUsersResult"); - } - + return this.command( + "/public/v1/submit/delete_users", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_USERS", + }, + "deleteUsersResult", + ); + }; - stampDeleteUsers = async (input: SdkApiTypes.TDeleteUsersBody): Promise => { + stampDeleteUsers = async ( + input: SdkApiTypes.TDeleteUsersBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1492,21 +1775,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - deleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + deleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/delete_wallets", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_DELETE_WALLETS" - }, "deleteWalletsResult"); - } - + return this.command( + "/public/v1/submit/delete_wallets", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_DELETE_WALLETS", + }, + "deleteWalletsResult", + ); + }; - stampDeleteWallets = async (input: SdkApiTypes.TDeleteWalletsBody): Promise => { + stampDeleteWallets = async ( + input: SdkApiTypes.TDeleteWalletsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1518,21 +1807,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - emailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + emailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/email_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EMAIL_AUTH_V2" - }, "emailAuthResult"); - } - + return this.command( + "/public/v1/submit/email_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EMAIL_AUTH_V2", + }, + "emailAuthResult", + ); + }; - stampEmailAuth = async (input: SdkApiTypes.TEmailAuthBody): Promise => { + stampEmailAuth = async ( + input: SdkApiTypes.TEmailAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1544,25 +1839,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - exportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + exportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" - }, "exportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/export_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY", + }, + "exportPrivateKeyResult", + ); + }; - stampExportPrivateKey = async (input: SdkApiTypes.TExportPrivateKeyBody): Promise => { + stampExportPrivateKey = async ( + input: SdkApiTypes.TExportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1570,21 +1872,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + exportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET" - }, "exportWalletResult"); - } - + return this.command( + "/public/v1/submit/export_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET", + }, + "exportWalletResult", + ); + }; - stampExportWallet = async (input: SdkApiTypes.TExportWalletBody): Promise => { + stampExportWallet = async ( + input: SdkApiTypes.TExportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1596,25 +1904,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - exportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + exportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/export_wallet_account", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" - }, "exportWalletAccountResult"); - } - + return this.command( + "/public/v1/submit/export_wallet_account", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT", + }, + "exportWalletAccountResult", + ); + }; - stampExportWalletAccount = async (input: SdkApiTypes.TExportWalletAccountBody): Promise => { + stampExportWalletAccount = async ( + input: SdkApiTypes.TExportWalletAccountBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/export_wallet_account"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1622,25 +1937,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + importPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" - }, "importPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY", + }, + "importPrivateKeyResult", + ); + }; - stampImportPrivateKey = async (input: SdkApiTypes.TImportPrivateKeyBody): Promise => { + stampImportPrivateKey = async ( + input: SdkApiTypes.TImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1648,21 +1970,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - importWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + importWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_IMPORT_WALLET" - }, "importWalletResult"); - } - + return this.command( + "/public/v1/submit/import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_IMPORT_WALLET", + }, + "importWalletResult", + ); + }; - stampImportWallet = async (input: SdkApiTypes.TImportWalletBody): Promise => { + stampImportWallet = async ( + input: SdkApiTypes.TImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1674,25 +2002,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + initFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_fiat_on_ramp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" - }, "initFiatOnRampResult"); - } - + return this.command( + "/public/v1/submit/init_fiat_on_ramp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP", + }, + "initFiatOnRampResult", + ); + }; - stampInitFiatOnRamp = async (input: SdkApiTypes.TInitFiatOnRampBody): Promise => { + stampInitFiatOnRamp = async ( + input: SdkApiTypes.TInitFiatOnRampBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_fiat_on_ramp"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1700,25 +2035,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + initImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_private_key", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" - }, "initImportPrivateKeyResult"); - } - + return this.command( + "/public/v1/submit/init_import_private_key", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY", + }, + "initImportPrivateKeyResult", + ); + }; - stampInitImportPrivateKey = async (input: SdkApiTypes.TInitImportPrivateKeyBody): Promise => { + stampInitImportPrivateKey = async ( + input: SdkApiTypes.TInitImportPrivateKeyBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_private_key"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1726,25 +2068,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + initImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_import_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET" - }, "initImportWalletResult"); - } - + return this.command( + "/public/v1/submit/init_import_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_IMPORT_WALLET", + }, + "initImportWalletResult", + ); + }; - stampInitImportWallet = async (input: SdkApiTypes.TInitImportWalletBody): Promise => { + stampInitImportWallet = async ( + input: SdkApiTypes.TInitImportWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_import_wallet"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1752,21 +2101,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - initOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + initOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP" - }, "initOtpResult"); - } - + return this.command( + "/public/v1/submit/init_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP", + }, + "initOtpResult", + ); + }; - stampInitOtp = async (input: SdkApiTypes.TInitOtpBody): Promise => { + stampInitOtp = async ( + input: SdkApiTypes.TInitOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1778,21 +2133,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + initOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" - }, "initOtpAuthResultV2"); - } - + return this.command( + "/public/v1/submit/init_otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2", + }, + "initOtpAuthResultV2", + ); + }; - stampInitOtpAuth = async (input: SdkApiTypes.TInitOtpAuthBody): Promise => { + stampInitOtpAuth = async ( + input: SdkApiTypes.TInitOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1804,25 +2165,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } + }; - - initUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + initUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/init_user_email_recovery", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" - }, "initUserEmailRecoveryResult"); - } - + return this.command( + "/public/v1/submit/init_user_email_recovery", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY", + }, + "initUserEmailRecoveryResult", + ); + }; - stampInitUserEmailRecovery = async (input: SdkApiTypes.TInitUserEmailRecoveryBody): Promise => { + stampInitUserEmailRecovery = async ( + input: SdkApiTypes.TInitUserEmailRecoveryBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/init_user_email_recovery"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1830,21 +2198,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauth = async (input: SdkApiTypes.TOauthBody): Promise => { + oauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH" - }, "oauthResult"); - } - + return this.command( + "/public/v1/submit/oauth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH", + }, + "oauthResult", + ); + }; - stampOauth = async (input: SdkApiTypes.TOauthBody): Promise => { + stampOauth = async ( + input: SdkApiTypes.TOauthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1856,21 +2230,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - oauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + oauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/oauth_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OAUTH_LOGIN" - }, "oauthLoginResult"); - } - + return this.command( + "/public/v1/submit/oauth_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OAUTH_LOGIN", + }, + "oauthLoginResult", + ); + }; - stampOauthLogin = async (input: SdkApiTypes.TOauthLoginBody): Promise => { + stampOauthLogin = async ( + input: SdkApiTypes.TOauthLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1882,21 +2262,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + otpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_auth", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_AUTH" - }, "otpAuthResult"); - } - + return this.command( + "/public/v1/submit/otp_auth", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_AUTH", + }, + "otpAuthResult", + ); + }; - stampOtpAuth = async (input: SdkApiTypes.TOtpAuthBody): Promise => { + stampOtpAuth = async ( + input: SdkApiTypes.TOtpAuthBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1908,21 +2294,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - otpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + otpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/otp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_OTP_LOGIN" - }, "otpLoginResult"); - } - + return this.command( + "/public/v1/submit/otp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_OTP_LOGIN", + }, + "otpLoginResult", + ); + }; - stampOtpLogin = async (input: SdkApiTypes.TOtpLoginBody): Promise => { + stampOtpLogin = async ( + input: SdkApiTypes.TOtpLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1934,21 +2326,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - recoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + recoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/recover_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_RECOVER_USER" - }, "recoverUserResult"); - } - + return this.command( + "/public/v1/submit/recover_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_RECOVER_USER", + }, + "recoverUserResult", + ); + }; - stampRecoverUser = async (input: SdkApiTypes.TRecoverUserBody): Promise => { + stampRecoverUser = async ( + input: SdkApiTypes.TRecoverUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -1960,26 +2358,28 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - rejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + rejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.activityDecision("/public/v1/submit/reject_activity", - { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REJECT_ACTIVITY" - }); - } - + return this.activityDecision("/public/v1/submit/reject_activity", { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REJECT_ACTIVITY", + }); + }; - stampRejectActivity = async (input: SdkApiTypes.TRejectActivityBody): Promise => { + stampRejectActivity = async ( + input: SdkApiTypes.TRejectActivityBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/reject_activity"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -1987,25 +2387,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - removeOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + removeOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/remove_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" - }, "removeOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/remove_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE", + }, + "removeOrganizationFeatureResult", + ); + }; - stampRemoveOrganizationFeature = async (input: SdkApiTypes.TRemoveOrganizationFeatureBody): Promise => { + stampRemoveOrganizationFeature = async ( + input: SdkApiTypes.TRemoveOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/remove_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2013,25 +2420,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - setOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + setOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/set_organization_feature", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" - }, "setOrganizationFeatureResult"); - } - + return this.command( + "/public/v1/submit/set_organization_feature", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE", + }, + "setOrganizationFeatureResult", + ); + }; - stampSetOrganizationFeature = async (input: SdkApiTypes.TSetOrganizationFeatureBody): Promise => { + stampSetOrganizationFeature = async ( + input: SdkApiTypes.TSetOrganizationFeatureBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/set_organization_feature"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2039,25 +2453,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + signRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payload", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" - }, "signRawPayloadResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payload", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2", + }, + "signRawPayloadResult", + ); + }; - stampSignRawPayload = async (input: SdkApiTypes.TSignRawPayloadBody): Promise => { + stampSignRawPayload = async ( + input: SdkApiTypes.TSignRawPayloadBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payload"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2065,25 +2486,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + signRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_raw_payloads", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" - }, "signRawPayloadsResult"); - } - + return this.command( + "/public/v1/submit/sign_raw_payloads", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS", + }, + "signRawPayloadsResult", + ); + }; - stampSignRawPayloads = async (input: SdkApiTypes.TSignRawPayloadsBody): Promise => { + stampSignRawPayloads = async ( + input: SdkApiTypes.TSignRawPayloadsBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_raw_payloads"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2091,25 +2519,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - signTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + signTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/sign_transaction", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" - }, "signTransactionResult"); - } - + return this.command( + "/public/v1/submit/sign_transaction", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_SIGN_TRANSACTION_V2", + }, + "signTransactionResult", + ); + }; - stampSignTransaction = async (input: SdkApiTypes.TSignTransactionBody): Promise => { + stampSignTransaction = async ( + input: SdkApiTypes.TSignTransactionBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/sign_transaction"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2117,21 +2552,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - stampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/stamp_login", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_STAMP_LOGIN" - }, "stampLoginResult"); - } - + return this.command( + "/public/v1/submit/stamp_login", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_STAMP_LOGIN", + }, + "stampLoginResult", + ); + }; - stampStampLogin = async (input: SdkApiTypes.TStampLoginBody): Promise => { + stampStampLogin = async ( + input: SdkApiTypes.TStampLoginBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2143,21 +2584,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + updatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_policy", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_POLICY_V2" - }, "updatePolicyResultV2"); - } - + return this.command( + "/public/v1/submit/update_policy", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_POLICY_V2", + }, + "updatePolicyResultV2", + ); + }; - stampUpdatePolicy = async (input: SdkApiTypes.TUpdatePolicyBody): Promise => { + stampUpdatePolicy = async ( + input: SdkApiTypes.TUpdatePolicyBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2169,25 +2616,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + updatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_private_key_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" - }, "updatePrivateKeyTagResult"); - } - + return this.command( + "/public/v1/submit/update_private_key_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG", + }, + "updatePrivateKeyTagResult", + ); + }; - stampUpdatePrivateKeyTag = async (input: SdkApiTypes.TUpdatePrivateKeyTagBody): Promise => { + stampUpdatePrivateKeyTag = async ( + input: SdkApiTypes.TUpdatePrivateKeyTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_private_key_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2195,25 +2649,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + updateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_root_quorum", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" - }, "updateRootQuorumResult"); - } - + return this.command( + "/public/v1/submit/update_root_quorum", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM", + }, + "updateRootQuorumResult", + ); + }; - stampUpdateRootQuorum = async (input: SdkApiTypes.TUpdateRootQuorumBody): Promise => { + stampUpdateRootQuorum = async ( + input: SdkApiTypes.TUpdateRootQuorumBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_root_quorum"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2221,21 +2682,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + updateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER" - }, "updateUserResult"); - } - + return this.command( + "/public/v1/submit/update_user", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER", + }, + "updateUserResult", + ); + }; - stampUpdateUser = async (input: SdkApiTypes.TUpdateUserBody): Promise => { + stampUpdateUser = async ( + input: SdkApiTypes.TUpdateUserBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2247,25 +2714,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + updateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_email", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL" - }, "updateUserEmailResult"); - } - + return this.command( + "/public/v1/submit/update_user_email", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_EMAIL", + }, + "updateUserEmailResult", + ); + }; - stampUpdateUserEmail = async (input: SdkApiTypes.TUpdateUserEmailBody): Promise => { + stampUpdateUserEmail = async ( + input: SdkApiTypes.TUpdateUserEmailBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_email"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2273,25 +2747,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + updateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_name", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_NAME" - }, "updateUserNameResult"); - } - + return this.command( + "/public/v1/submit/update_user_name", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_NAME", + }, + "updateUserNameResult", + ); + }; - stampUpdateUserName = async (input: SdkApiTypes.TUpdateUserNameBody): Promise => { + stampUpdateUserName = async ( + input: SdkApiTypes.TUpdateUserNameBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_name"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2299,25 +2780,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + updateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_phone_number", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" - }, "updateUserPhoneNumberResult"); - } - + return this.command( + "/public/v1/submit/update_user_phone_number", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER", + }, + "updateUserPhoneNumberResult", + ); + }; - stampUpdateUserPhoneNumber = async (input: SdkApiTypes.TUpdateUserPhoneNumberBody): Promise => { + stampUpdateUserPhoneNumber = async ( + input: SdkApiTypes.TUpdateUserPhoneNumberBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_phone_number"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2325,25 +2813,32 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + updateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_user_tag", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_USER_TAG" - }, "updateUserTagResult"); - } - + return this.command( + "/public/v1/submit/update_user_tag", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_USER_TAG", + }, + "updateUserTagResult", + ); + }; - stampUpdateUserTag = async (input: SdkApiTypes.TUpdateUserTagBody): Promise => { + stampUpdateUserTag = async ( + input: SdkApiTypes.TUpdateUserTagBody, + ): Promise => { if (!this.stamper) { return undefined; } - const fullUrl = this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; + const fullUrl = + this.config.apiBaseUrl + "/public/v1/submit/update_user_tag"; const body = JSON.stringify(input); const stamp = await this.stamper.stamp(body); return { @@ -2351,21 +2846,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - updateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + updateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/update_wallet", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_UPDATE_WALLET" - }, "updateWalletResult"); - } - + return this.command( + "/public/v1/submit/update_wallet", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_UPDATE_WALLET", + }, + "updateWalletResult", + ); + }; - stampUpdateWallet = async (input: SdkApiTypes.TUpdateWalletBody): Promise => { + stampUpdateWallet = async ( + input: SdkApiTypes.TUpdateWalletBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2377,21 +2878,27 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - verifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + verifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { const { organizationId, timestampMs, ...rest } = input; - return this.command("/public/v1/submit/verify_otp", { - parameters: rest, - organizationId: organizationId ?? this.config.organizationId, - timestampMs: timestampMs ?? String(Date.now()), - type: "ACTIVITY_TYPE_VERIFY_OTP" - }, "verifyOtpResult"); - } - + return this.command( + "/public/v1/submit/verify_otp", + { + parameters: rest, + organizationId: organizationId ?? this.config.organizationId, + timestampMs: timestampMs ?? String(Date.now()), + type: "ACTIVITY_TYPE_VERIFY_OTP", + }, + "verifyOtpResult", + ); + }; - stampVerifyOtp = async (input: SdkApiTypes.TVerifyOtpBody): Promise => { + stampVerifyOtp = async ( + input: SdkApiTypes.TVerifyOtpBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2403,18 +2910,20 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - + }; - testRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + testRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { return this.request("/tkhq/api/v1/test_rate_limits", { ...input, - organizationId: input.organizationId ?? this.config.organizationId + organizationId: input.organizationId ?? this.config.organizationId, }); - } - + }; - stampTestRateLimits = async (input: SdkApiTypes.TTestRateLimitsBody): Promise => { + stampTestRateLimits = async ( + input: SdkApiTypes.TTestRateLimitsBody, + ): Promise => { if (!this.stamper) { return undefined; } @@ -2426,6 +2935,5 @@ export class TurnkeySDKClientBase { stamp: stamp, url: fullUrl, }; - } - -} \ No newline at end of file + }; +} diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index 777abe97b..e1ad0eedd 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -2,558 +2,976 @@ import type { operations, definitions } from "../__inputs__/public_api.types"; -import type { queryOverrideParams, commandOverrideParams } from "../__types__/base"; +import type { + queryOverrideParams, + commandOverrideParams, +} from "../__types__/base"; -export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; +export type TGetActivityResponse = + operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"]; export type TGetActivityInput = { body: TGetActivityBody }; -export type TGetActivityBody = Omit & queryOverrideParams; +export type TGetActivityBody = Omit< + operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; +export type TGetApiKeyResponse = + operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"]; export type TGetApiKeyInput = { body: TGetApiKeyBody }; -export type TGetApiKeyBody = Omit & queryOverrideParams; +export type TGetApiKeyBody = Omit< + operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; +export type TGetApiKeysResponse = + operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"]; export type TGetApiKeysInput = { body: TGetApiKeysBody }; -export type TGetApiKeysBody = Omit & queryOverrideParams; +export type TGetApiKeysBody = Omit< + operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAttestationDocumentResponse = operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; +export type TGetAttestationDocumentResponse = + operations["PublicApiService_GetAttestationDocument"]["responses"]["200"]["schema"]; -export type TGetAttestationDocumentInput = { body: TGetAttestationDocumentBody }; +export type TGetAttestationDocumentInput = { + body: TGetAttestationDocumentBody; +}; -export type TGetAttestationDocumentBody = Omit & queryOverrideParams; +export type TGetAttestationDocumentBody = Omit< + operations["PublicApiService_GetAttestationDocument"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorResponse = + operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"]; export type TGetAuthenticatorInput = { body: TGetAuthenticatorBody }; -export type TGetAuthenticatorBody = Omit & queryOverrideParams; +export type TGetAuthenticatorBody = Omit< + operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; +export type TGetAuthenticatorsResponse = + operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"]; export type TGetAuthenticatorsInput = { body: TGetAuthenticatorsBody }; -export type TGetAuthenticatorsBody = Omit & queryOverrideParams; +export type TGetAuthenticatorsBody = Omit< + operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOauthProvidersResponse = operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; +export type TGetOauthProvidersResponse = + operations["PublicApiService_GetOauthProviders"]["responses"]["200"]["schema"]; export type TGetOauthProvidersInput = { body: TGetOauthProvidersBody }; -export type TGetOauthProvidersBody = Omit & queryOverrideParams; +export type TGetOauthProvidersBody = Omit< + operations["PublicApiService_GetOauthProviders"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; +export type TGetOrganizationResponse = + operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"]; export type TGetOrganizationInput = { body: TGetOrganizationBody }; -export type TGetOrganizationBody = Omit & queryOverrideParams; +export type TGetOrganizationBody = Omit< + operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetOrganizationConfigsResponse = operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; +export type TGetOrganizationConfigsResponse = + operations["PublicApiService_GetOrganizationConfigs"]["responses"]["200"]["schema"]; -export type TGetOrganizationConfigsInput = { body: TGetOrganizationConfigsBody }; +export type TGetOrganizationConfigsInput = { + body: TGetOrganizationConfigsBody; +}; -export type TGetOrganizationConfigsBody = Omit & queryOverrideParams; +export type TGetOrganizationConfigsBody = Omit< + operations["PublicApiService_GetOrganizationConfigs"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; +export type TGetPolicyResponse = + operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"]; export type TGetPolicyInput = { body: TGetPolicyBody }; -export type TGetPolicyBody = Omit & queryOverrideParams; +export type TGetPolicyBody = Omit< + operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; +export type TGetPrivateKeyResponse = + operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; export type TGetPrivateKeyInput = { body: TGetPrivateKeyBody }; -export type TGetPrivateKeyBody = Omit & queryOverrideParams; +export type TGetPrivateKeyBody = Omit< + operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfaceResponse = operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfaceResponse = + operations["PublicApiService_GetSmartContractInterface"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfaceInput = { body: TGetSmartContractInterfaceBody }; +export type TGetSmartContractInterfaceInput = { + body: TGetSmartContractInterfaceBody; +}; -export type TGetSmartContractInterfaceBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfaceBody = Omit< + operations["PublicApiService_GetSmartContractInterface"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; +export type TGetUserResponse = + operations["PublicApiService_GetUser"]["responses"]["200"]["schema"]; export type TGetUserInput = { body: TGetUserBody }; -export type TGetUserBody = Omit & queryOverrideParams; +export type TGetUserBody = Omit< + operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; +export type TGetWalletResponse = + operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"]; export type TGetWalletInput = { body: TGetWalletBody }; -export type TGetWalletBody = Omit & queryOverrideParams; +export type TGetWalletBody = Omit< + operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountResponse = operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; +export type TGetWalletAccountResponse = + operations["PublicApiService_GetWalletAccount"]["responses"]["200"]["schema"]; export type TGetWalletAccountInput = { body: TGetWalletAccountBody }; -export type TGetWalletAccountBody = Omit & queryOverrideParams; +export type TGetWalletAccountBody = Omit< + operations["PublicApiService_GetWalletAccount"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; +export type TGetActivitiesResponse = + operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"]; export type TGetActivitiesInput = { body: TGetActivitiesBody }; -export type TGetActivitiesBody = Omit & queryOverrideParams; +export type TGetActivitiesBody = Omit< + operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; +export type TGetPoliciesResponse = + operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"]; export type TGetPoliciesInput = { body: TGetPoliciesBody }; -export type TGetPoliciesBody = Omit & queryOverrideParams; +export type TGetPoliciesBody = Omit< + operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; +export type TListPrivateKeyTagsResponse = + operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"]; export type TListPrivateKeyTagsInput = { body: TListPrivateKeyTagsBody }; -export type TListPrivateKeyTagsBody = Omit & queryOverrideParams; +export type TListPrivateKeyTagsBody = Omit< + operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; +export type TGetPrivateKeysResponse = + operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"]; export type TGetPrivateKeysInput = { body: TGetPrivateKeysBody }; -export type TGetPrivateKeysBody = Omit & queryOverrideParams; +export type TGetPrivateKeysBody = Omit< + operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSmartContractInterfacesResponse = operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; +export type TGetSmartContractInterfacesResponse = + operations["PublicApiService_GetSmartContractInterfaces"]["responses"]["200"]["schema"]; -export type TGetSmartContractInterfacesInput = { body: TGetSmartContractInterfacesBody }; +export type TGetSmartContractInterfacesInput = { + body: TGetSmartContractInterfacesBody; +}; -export type TGetSmartContractInterfacesBody = Omit & queryOverrideParams; +export type TGetSmartContractInterfacesBody = Omit< + operations["PublicApiService_GetSmartContractInterfaces"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetSubOrgIdsResponse = + operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"]; export type TGetSubOrgIdsInput = { body: TGetSubOrgIdsBody }; -export type TGetSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetSubOrgIdsBody = Omit< + operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; +export type TListUserTagsResponse = + operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"]; export type TListUserTagsInput = { body: TListUserTagsBody }; -export type TListUserTagsBody = Omit & queryOverrideParams; +export type TListUserTagsBody = Omit< + operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; +export type TGetUsersResponse = + operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"]; export type TGetUsersInput = { body: TGetUsersBody }; -export type TGetUsersBody = Omit & queryOverrideParams; +export type TGetUsersBody = Omit< + operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetVerifiedSubOrgIdsResponse = operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; +export type TGetVerifiedSubOrgIdsResponse = + operations["PublicApiService_GetVerifiedSubOrgIds"]["responses"]["200"]["schema"]; export type TGetVerifiedSubOrgIdsInput = { body: TGetVerifiedSubOrgIdsBody }; -export type TGetVerifiedSubOrgIdsBody = Omit & queryOverrideParams; +export type TGetVerifiedSubOrgIdsBody = Omit< + operations["PublicApiService_GetVerifiedSubOrgIds"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; +export type TGetWalletAccountsResponse = + operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"]; export type TGetWalletAccountsInput = { body: TGetWalletAccountsBody }; -export type TGetWalletAccountsBody = Omit & queryOverrideParams; +export type TGetWalletAccountsBody = Omit< + operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; +export type TGetWalletsResponse = + operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"]; export type TGetWalletsInput = { body: TGetWalletsBody }; -export type TGetWalletsBody = Omit & queryOverrideParams; +export type TGetWalletsBody = Omit< + operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; +export type TGetWhoamiResponse = + operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"]; export type TGetWhoamiInput = { body: TGetWhoamiBody }; -export type TGetWhoamiBody = Omit & queryOverrideParams; +export type TGetWhoamiBody = Omit< + operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; -export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TApproveActivityResponse = + operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TApproveActivityInput = { body: TApproveActivityBody }; -export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TApproveActivityBody = + operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiKeysResponse = + operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiKeysInput = { body: TCreateApiKeysBody }; -export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiKeysBody = + operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateApiOnlyUsersResponse = + operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateApiOnlyUsersInput = { body: TCreateApiOnlyUsersBody }; -export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateApiOnlyUsersBody = + operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TCreateAuthenticatorsResponse = + operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TCreateAuthenticatorsInput = { body: TCreateAuthenticatorsBody }; -export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateAuthenticatorsBody = + operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & definitions["v1ActivityResponse"]; +export type TCreateInvitationsResponse = + operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & + definitions["v1ActivityResponse"]; export type TCreateInvitationsInput = { body: TCreateInvitationsBody }; -export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateInvitationsBody = + operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateOauthProvidersResponse = operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TCreateOauthProvidersResponse = + operations["PublicApiService_CreateOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["createOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TCreateOauthProvidersInput = { body: TCreateOauthProvidersBody }; -export type TCreateOauthProvidersBody = operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateOauthProvidersBody = + operations["PublicApiService_CreateOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & definitions["v1ActivityResponse"]; +export type TCreatePoliciesResponse = + operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & + definitions["v1ActivityResponse"]; export type TCreatePoliciesInput = { body: TCreatePoliciesBody }; -export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePoliciesBody = + operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & definitions["v1ActivityResponse"]; +export type TCreatePolicyResponse = + operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & + definitions["v1ActivityResponse"]; export type TCreatePolicyInput = { body: TCreatePolicyBody }; -export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePolicyBody = + operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeyTagResponse = + operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeyTagInput = { body: TCreatePrivateKeyTagBody }; -export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeyTagBody = + operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & definitions["v1ActivityResponse"]; +export type TCreatePrivateKeysResponse = + operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & + definitions["v1ActivityResponse"]; export type TCreatePrivateKeysInput = { body: TCreatePrivateKeysBody }; -export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreatePrivateKeysBody = + operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & definitions["v1ActivityResponse"]; +export type TCreateReadOnlySessionResponse = + operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & + definitions["v1ActivityResponse"]; export type TCreateReadOnlySessionInput = { body: TCreateReadOnlySessionBody }; -export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadOnlySessionBody = + operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateReadWriteSessionResponse = operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & definitions["v1ActivityResponse"]; +export type TCreateReadWriteSessionResponse = + operations["PublicApiService_CreateReadWriteSession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadWriteSessionResultV2"] & + definitions["v1ActivityResponse"]; -export type TCreateReadWriteSessionInput = { body: TCreateReadWriteSessionBody }; +export type TCreateReadWriteSessionInput = { + body: TCreateReadWriteSessionBody; +}; -export type TCreateReadWriteSessionBody = operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateReadWriteSessionBody = + operations["PublicApiService_CreateReadWriteSession"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSmartContractInterfaceResponse = operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TCreateSmartContractInterfaceResponse = + operations["PublicApiService_CreateSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["createSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TCreateSmartContractInterfaceInput = { body: TCreateSmartContractInterfaceBody }; +export type TCreateSmartContractInterfaceInput = { + body: TCreateSmartContractInterfaceBody; +}; -export type TCreateSmartContractInterfaceBody = operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSmartContractInterfaceBody = + operations["PublicApiService_CreateSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & definitions["v1ActivityResponse"]; +export type TCreateSubOrganizationResponse = + operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV7"] & + definitions["v1ActivityResponse"]; export type TCreateSubOrganizationInput = { body: TCreateSubOrganizationBody }; -export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateSubOrganizationBody = + operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & definitions["v1ActivityResponse"]; +export type TCreateUserTagResponse = + operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & + definitions["v1ActivityResponse"]; export type TCreateUserTagInput = { body: TCreateUserTagBody }; -export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUserTagBody = + operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & definitions["v1ActivityResponse"]; +export type TCreateUsersResponse = + operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & + definitions["v1ActivityResponse"]; export type TCreateUsersInput = { body: TCreateUsersBody }; -export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateUsersBody = + operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletResponse = + operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletInput = { body: TCreateWalletBody }; -export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletBody = + operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & definitions["v1ActivityResponse"]; +export type TCreateWalletAccountsResponse = + operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & + definitions["v1ActivityResponse"]; export type TCreateWalletAccountsInput = { body: TCreateWalletAccountsBody }; -export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TCreateWalletAccountsBody = + operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeleteApiKeysResponse = + operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeleteApiKeysInput = { body: TDeleteApiKeysBody }; -export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteApiKeysBody = + operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteAuthenticatorsResponse = + operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteAuthenticatorsInput = { body: TDeleteAuthenticatorsBody }; -export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteAuthenticatorsBody = + operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteInvitationResponse = + operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteInvitationInput = { body: TDeleteInvitationBody }; -export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteInvitationBody = + operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteOauthProvidersResponse = operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteOauthProvidersResponse = + operations["PublicApiService_DeleteOauthProviders"]["responses"]["200"]["schema"]["activity"]["result"]["deleteOauthProvidersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteOauthProvidersInput = { body: TDeleteOauthProvidersBody }; -export type TDeleteOauthProvidersBody = operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteOauthProvidersBody = + operations["PublicApiService_DeleteOauthProviders"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & definitions["v1ActivityResponse"]; +export type TDeletePolicyResponse = + operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & + definitions["v1ActivityResponse"]; export type TDeletePolicyInput = { body: TDeletePolicyBody }; -export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePolicyBody = + operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeyTagsResponse = + operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeyTagsInput = { body: TDeletePrivateKeyTagsBody }; -export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeyTagsBody = + operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeletePrivateKeysResponse = operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & definitions["v1ActivityResponse"]; +export type TDeletePrivateKeysResponse = + operations["PublicApiService_DeletePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeysResult"] & + definitions["v1ActivityResponse"]; export type TDeletePrivateKeysInput = { body: TDeletePrivateKeysBody }; -export type TDeletePrivateKeysBody = operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeletePrivateKeysBody = + operations["PublicApiService_DeletePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSmartContractInterfaceResponse = operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSmartContractInterfaceResponse = + operations["PublicApiService_DeleteSmartContractInterface"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSmartContractInterfaceResult"] & + definitions["v1ActivityResponse"]; -export type TDeleteSmartContractInterfaceInput = { body: TDeleteSmartContractInterfaceBody }; +export type TDeleteSmartContractInterfaceInput = { + body: TDeleteSmartContractInterfaceBody; +}; -export type TDeleteSmartContractInterfaceBody = operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSmartContractInterfaceBody = + operations["PublicApiService_DeleteSmartContractInterface"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteSubOrganizationResponse = operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & definitions["v1ActivityResponse"]; +export type TDeleteSubOrganizationResponse = + operations["PublicApiService_DeleteSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["deleteSubOrganizationResult"] & + definitions["v1ActivityResponse"]; export type TDeleteSubOrganizationInput = { body: TDeleteSubOrganizationBody }; -export type TDeleteSubOrganizationBody = operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteSubOrganizationBody = + operations["PublicApiService_DeleteSubOrganization"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUserTagsResponse = + operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUserTagsInput = { body: TDeleteUserTagsBody }; -export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUserTagsBody = + operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & definitions["v1ActivityResponse"]; +export type TDeleteUsersResponse = + operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & + definitions["v1ActivityResponse"]; export type TDeleteUsersInput = { body: TDeleteUsersBody }; -export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteUsersBody = + operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TDeleteWalletsResponse = operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & definitions["v1ActivityResponse"]; +export type TDeleteWalletsResponse = + operations["PublicApiService_DeleteWallets"]["responses"]["200"]["schema"]["activity"]["result"]["deleteWalletsResult"] & + definitions["v1ActivityResponse"]; export type TDeleteWalletsInput = { body: TDeleteWalletsBody }; -export type TDeleteWalletsBody = operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TDeleteWalletsBody = + operations["PublicApiService_DeleteWallets"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & definitions["v1ActivityResponse"]; +export type TEmailAuthResponse = + operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & + definitions["v1ActivityResponse"]; export type TEmailAuthInput = { body: TEmailAuthBody }; -export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TEmailAuthBody = + operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TExportPrivateKeyResponse = + operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TExportPrivateKeyInput = { body: TExportPrivateKeyBody }; -export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportPrivateKeyBody = + operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletResponse = + operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletInput = { body: TExportWalletBody }; -export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletBody = + operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & definitions["v1ActivityResponse"]; +export type TExportWalletAccountResponse = + operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & + definitions["v1ActivityResponse"]; export type TExportWalletAccountInput = { body: TExportWalletAccountBody }; -export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TExportWalletAccountBody = + operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TImportPrivateKeyResponse = + operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TImportPrivateKeyInput = { body: TImportPrivateKeyBody }; -export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportPrivateKeyBody = + operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & definitions["v1ActivityResponse"]; +export type TImportWalletResponse = + operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & + definitions["v1ActivityResponse"]; export type TImportWalletInput = { body: TImportWalletBody }; -export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TImportWalletBody = + operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitFiatOnRampResponse = operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & definitions["v1ActivityResponse"]; +export type TInitFiatOnRampResponse = + operations["PublicApiService_InitFiatOnRamp"]["responses"]["200"]["schema"]["activity"]["result"]["initFiatOnRampResult"] & + definitions["v1ActivityResponse"]; export type TInitFiatOnRampInput = { body: TInitFiatOnRampBody }; -export type TInitFiatOnRampBody = operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitFiatOnRampBody = + operations["PublicApiService_InitFiatOnRamp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & definitions["v1ActivityResponse"]; +export type TInitImportPrivateKeyResponse = + operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & + definitions["v1ActivityResponse"]; export type TInitImportPrivateKeyInput = { body: TInitImportPrivateKeyBody }; -export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportPrivateKeyBody = + operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & definitions["v1ActivityResponse"]; +export type TInitImportWalletResponse = + operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & + definitions["v1ActivityResponse"]; export type TInitImportWalletInput = { body: TInitImportWalletBody }; -export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitImportWalletBody = + operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpResponse = operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & definitions["v1ActivityResponse"]; +export type TInitOtpResponse = + operations["PublicApiService_InitOtp"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpResult"] & + definitions["v1ActivityResponse"]; export type TInitOtpInput = { body: TInitOtpBody }; -export type TInitOtpBody = operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpBody = + operations["PublicApiService_InitOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitOtpAuthResponse = operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & definitions["v1ActivityResponse"]; +export type TInitOtpAuthResponse = + operations["PublicApiService_InitOtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["initOtpAuthResultV2"] & + definitions["v1ActivityResponse"]; export type TInitOtpAuthInput = { body: TInitOtpAuthBody }; -export type TInitOtpAuthBody = operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitOtpAuthBody = + operations["PublicApiService_InitOtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & definitions["v1ActivityResponse"]; +export type TInitUserEmailRecoveryResponse = + operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & + definitions["v1ActivityResponse"]; export type TInitUserEmailRecoveryInput = { body: TInitUserEmailRecoveryBody }; -export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TInitUserEmailRecoveryBody = + operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthResponse = operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & definitions["v1ActivityResponse"]; +export type TOauthResponse = + operations["PublicApiService_Oauth"]["responses"]["200"]["schema"]["activity"]["result"]["oauthResult"] & + definitions["v1ActivityResponse"]; export type TOauthInput = { body: TOauthBody }; -export type TOauthBody = operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthBody = + operations["PublicApiService_Oauth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOauthLoginResponse = operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & definitions["v1ActivityResponse"]; +export type TOauthLoginResponse = + operations["PublicApiService_OauthLogin"]["responses"]["200"]["schema"]["activity"]["result"]["oauthLoginResult"] & + definitions["v1ActivityResponse"]; export type TOauthLoginInput = { body: TOauthLoginBody }; -export type TOauthLoginBody = operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOauthLoginBody = + operations["PublicApiService_OauthLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpAuthResponse = operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & definitions["v1ActivityResponse"]; +export type TOtpAuthResponse = + operations["PublicApiService_OtpAuth"]["responses"]["200"]["schema"]["activity"]["result"]["otpAuthResult"] & + definitions["v1ActivityResponse"]; export type TOtpAuthInput = { body: TOtpAuthBody }; -export type TOtpAuthBody = operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpAuthBody = + operations["PublicApiService_OtpAuth"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TOtpLoginResponse = operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & definitions["v1ActivityResponse"]; +export type TOtpLoginResponse = + operations["PublicApiService_OtpLogin"]["responses"]["200"]["schema"]["activity"]["result"]["otpLoginResult"] & + definitions["v1ActivityResponse"]; export type TOtpLoginInput = { body: TOtpLoginBody }; -export type TOtpLoginBody = operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TOtpLoginBody = + operations["PublicApiService_OtpLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & definitions["v1ActivityResponse"]; +export type TRecoverUserResponse = + operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & + definitions["v1ActivityResponse"]; export type TRecoverUserInput = { body: TRecoverUserBody }; -export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRecoverUserBody = + operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & definitions["v1ActivityResponse"]; +export type TRejectActivityResponse = + operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & + definitions["v1ActivityResponse"]; export type TRejectActivityInput = { body: TRejectActivityBody }; -export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRejectActivityBody = + operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TRemoveOrganizationFeatureResponse = + operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TRemoveOrganizationFeatureInput = { body: TRemoveOrganizationFeatureBody }; +export type TRemoveOrganizationFeatureInput = { + body: TRemoveOrganizationFeatureBody; +}; -export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TRemoveOrganizationFeatureBody = + operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & definitions["v1ActivityResponse"]; +export type TSetOrganizationFeatureResponse = + operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & + definitions["v1ActivityResponse"]; -export type TSetOrganizationFeatureInput = { body: TSetOrganizationFeatureBody }; +export type TSetOrganizationFeatureInput = { + body: TSetOrganizationFeatureBody; +}; -export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSetOrganizationFeatureBody = + operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadResponse = + operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadInput = { body: TSignRawPayloadBody }; -export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadBody = + operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & definitions["v1ActivityResponse"]; +export type TSignRawPayloadsResponse = + operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & + definitions["v1ActivityResponse"]; export type TSignRawPayloadsInput = { body: TSignRawPayloadsBody }; -export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignRawPayloadsBody = + operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & definitions["v1ActivityResponse"]; +export type TSignTransactionResponse = + operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & + definitions["v1ActivityResponse"]; export type TSignTransactionInput = { body: TSignTransactionBody }; -export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TSignTransactionBody = + operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TStampLoginResponse = operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & definitions["v1ActivityResponse"]; +export type TStampLoginResponse = + operations["PublicApiService_StampLogin"]["responses"]["200"]["schema"]["activity"]["result"]["stampLoginResult"] & + definitions["v1ActivityResponse"]; export type TStampLoginInput = { body: TStampLoginBody }; -export type TStampLoginBody = operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TStampLoginBody = + operations["PublicApiService_StampLogin"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & definitions["v1ActivityResponse"]; +export type TUpdatePolicyResponse = + operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResultV2"] & + definitions["v1ActivityResponse"]; export type TUpdatePolicyInput = { body: TUpdatePolicyBody }; -export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePolicyBody = + operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdatePrivateKeyTagResponse = + operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdatePrivateKeyTagInput = { body: TUpdatePrivateKeyTagBody }; -export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdatePrivateKeyTagBody = + operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & definitions["v1ActivityResponse"]; +export type TUpdateRootQuorumResponse = + operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & + definitions["v1ActivityResponse"]; export type TUpdateRootQuorumInput = { body: TUpdateRootQuorumBody }; -export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateRootQuorumBody = + operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserResponse = + operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserInput = { body: TUpdateUserBody }; -export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserBody = + operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserEmailResponse = operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserEmailResponse = + operations["PublicApiService_UpdateUserEmail"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserEmailResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserEmailInput = { body: TUpdateUserEmailBody }; -export type TUpdateUserEmailBody = operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserEmailBody = + operations["PublicApiService_UpdateUserEmail"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserNameResponse = operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserNameResponse = + operations["PublicApiService_UpdateUserName"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserNameResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserNameInput = { body: TUpdateUserNameBody }; -export type TUpdateUserNameBody = operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserNameBody = + operations["PublicApiService_UpdateUserName"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserPhoneNumberResponse = operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserPhoneNumberResponse = + operations["PublicApiService_UpdateUserPhoneNumber"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserPhoneNumberResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserPhoneNumberInput = { body: TUpdateUserPhoneNumberBody }; -export type TUpdateUserPhoneNumberBody = operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserPhoneNumberBody = + operations["PublicApiService_UpdateUserPhoneNumber"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & definitions["v1ActivityResponse"]; +export type TUpdateUserTagResponse = + operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & + definitions["v1ActivityResponse"]; export type TUpdateUserTagInput = { body: TUpdateUserTagBody }; -export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateUserTagBody = + operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TUpdateWalletResponse = operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & definitions["v1ActivityResponse"]; +export type TUpdateWalletResponse = + operations["PublicApiService_UpdateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["updateWalletResult"] & + definitions["v1ActivityResponse"]; export type TUpdateWalletInput = { body: TUpdateWalletBody }; -export type TUpdateWalletBody = operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TUpdateWalletBody = + operations["PublicApiService_UpdateWallet"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TVerifyOtpResponse = operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & definitions["v1ActivityResponse"]; +export type TVerifyOtpResponse = + operations["PublicApiService_VerifyOtp"]["responses"]["200"]["schema"]["activity"]["result"]["verifyOtpResult"] & + definitions["v1ActivityResponse"]; export type TVerifyOtpInput = { body: TVerifyOtpBody }; -export type TVerifyOtpBody = operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams; +export type TVerifyOtpBody = + operations["PublicApiService_VerifyOtp"]["parameters"]["body"]["body"]["parameters"] & + commandOverrideParams; -export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; +export type TNOOPCodegenAnchorResponse = + operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"]; -export type TTestRateLimitsResponse = operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; +export type TTestRateLimitsResponse = + operations["PublicApiService_TestRateLimits"]["responses"]["200"]["schema"]; export type TTestRateLimitsInput = { body: TTestRateLimitsBody }; -export type TTestRateLimitsBody = Omit & queryOverrideParams; \ No newline at end of file +export type TTestRateLimitsBody = Omit< + operations["PublicApiService_TestRateLimits"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; From b43c76855ffde924a2a3bb3acdcdedb7ee688172 Mon Sep 17 00:00:00 2001 From: Mohammad Cheikh Date: Thu, 10 Jul 2025 16:24:36 -0400 Subject: [PATCH 39/42] updated example --- .../public/images/moonpay.jpg | Bin 6413 -> 1520 bytes .../src/app/dashboard/OnRamp.tsx | 81 ++++++++++++++---- .../src/app/dashboard/dashboard.css | 53 ++---------- .../src/app/dashboard/page.tsx | 6 +- 4 files changed, 76 insertions(+), 64 deletions(-) diff --git a/examples/react-components/public/images/moonpay.jpg b/examples/react-components/public/images/moonpay.jpg index 496d3d0234ef18ec75a3cb4ff068c9a09c8fd71b..6f56b7a818b5318dd461efced4d8e58766addf92 100644 GIT binary patch literal 1520 zcmVat5VQ9hz=bbGKoXf z(h7EQXe$&&FjNJrQ<{DWZG0ptQgIVkDfk~)!C7#yh*WTKa1cZX5#5|RDY$5O-j`I` zBHqX4{WzR+xm>^-P#G)s0x0R0kxay-wbZ)gdxM9bQ>tdNsG=+i{{6e_^U?L*Pl#Df zyLJ%SPh6MIE|+$m0#kqeUDcn-ni~Dz)Ip6I7T}SIm2Ha&-X$I}Xer{V;JnMng3~Ua zJD!zfocNYl(h6#ZxJfLhJM?@9mx^VrwS(B+pVe2F#T@EU%wZEI7>ZC)fdmENfBe&q zKaMSOS71;sj{+>pL`e}7vc&VypY?`La=`luFqi^{?NiPd)$u1T9HKK~#7FtyfQIoJAD>y_wz3Uw1cFi#9^Pv=9YB zQv?rsh}DZX<3aSItryW)+8jhMf-#^V#KRUvq#oLy6i<5vODwk{oZ@?-kUdsn3(Z4vI=Sn(350n!hk%$WP@EQ z5=_AuT7=M-C6f7EVWb#GFSQe3V$bOM8BKI@moNqlU64Y~vmpiCjRDqUCZ5xT8FT?* zkRy?pkBSIIkbBywO9sY6Pe27p@_1M@#Que8Z)2jjr60%pJdu;&MO8MPje9i7|T=E&@uc zIdloF1g1Yrv&Y7fTL>ZX_W3mG+oDxo`>wo&J$p9qBsxM!^)l~v#qR9!lp|5ASXtdF zPISU@3k81)ZJ{0K`lg1=lrjEP83!M!Vyj+3xf0kT5*lB;S#n8ev}OZih5L70w&_*;w}SVdTY)Sez{o%vuOC{%^toXq z`v~Vwm657tf@2BCB%MC|AD12`q9oQg4L6#0b`!n#-#Y$E<&=tq3$%giJ52+ae+((gmKRjPAWYwwZ0 zf4-hw#l0i(bHEO-!rsfAXct3NBAXF-Yy3K2D*BE_Sn_Ls74h9y!>%#K0?`G_?aENV z&xI>C++K(9+5;;*WK`YnW++GaTYe3*Py0v@D}+pWp^)(BogIyZQ{Ign-`Quvgaw!4 zdP(8v6I*!U-3&&LCgIl&{``Im-+rtxUG`o zd7q0T!T*$8DYlN|<@^pkk7Qdsl8qIc3TmQFb=Ir13a(~}G``i1>{>c720I8*>sRlqG0003$!2Ww^ zfu@RzwE<3FO;hL0Ap@G^Zs*|x7X<(hPhW4Gx-#aRnK=gdTeG$E!7CXU==_cJFSs#u zU>yM72p!n^7xRC*rLcGKu>%K41`5jB;k|u9j0Le?fG_?4CxMvG&e_%;#Kj;!;SCND z#IFzN7k=W|1MKt@e?P$9#yAxKfKq}Oxm!g=>cA#jvaW#1D61A zP{Rpu26az>R6oE6Z~%KpknR9}+(8Mj{mK2GoccIQ9M}Uxrqlue#LWKwx*!0M<^aHM z%>Mq5qW%5dTL1tX0f6STKl)y2U^n_e}txxdH%nPyWy@lmI|Im}90%ysfwG zp&uA{g*rL{z?a(qKxGC1XfW4DEdH|kI z6bgeJMDSN5A%%bgCWC@p7I3A3%)fKt2ndV>O1l3Rpaiv`NEi~F$N1~S^I^aA|Ip9t$>-zBF1jv{@JaFF8b+e1hib z5Tj&tGjNvvaV>5mgOl(#Q!pk@0Vy7#fzV+!C_N-iJm_S519z$g%YG-hS`d5oJ~M>8rnsK*cerSLP5= zChoCyVV^H;TVWby*k9I`x4H(OPK>Vkjnd13Bc0Ig29r&4S$ALZ-kQ+3)Oz0A*&V(_x$x6HA1Mt#rIc3)Z*Tz_1(6+R`HYID!o=dS!Vdv!sZqB zmkjzl$$RR%<9I2XLkb!9a(?v$lC3B6mjD2C%seJ8>rq#8JvBHWLi!6n_-$I-FjirI z%fO@uHG5%a3;W7MsLYZN-Cae z{Z3ccC8%(o{n8Y2tSpW?sp>{#MXL1-+?dT@o`YrjdYPueq6o{)}S!Tv+)KXtSb(nJ5GV{m0$>ejF`{TXDS8IZBqWLpTvue^dV?UKyT>5rX7SRJ z6Crifah<7Z5gMK|`~umk9;&XF#XFzdJuThHwPXtYx=|!0?~stvWiKAQ4cFD|dO&&(I72b?r4!<%RNf8n1^Z?*fNUAR`6Lo^(!ozjKj z`iGu?q}y}*3=xC``p#_9U@O2u#sai;DLscaZVc2Pq)*t8CiE|3~1u@;QaJEEN@|zSqUjzh4}Ur!gqxr z-8^fkn&&2E0)t1MCGC^?pqSdH`lGY%W&)cHmpk2;Pm2V_Xv8!0@_5(f2Ss=9qN-my zexwP~RjjWXowE`Sp|-jSo$lr@`#)Y;m4R_+sJ@i(IGHF2ww42ZvZ)YgGE4OrJL zF)?{hQZ4Hn!0~I-OPJLVu*;RD$50z3ck`IQjf20D3t0&|i}e&OHD} z(Ta*;II&1BaV0dKPTBBq?!juS2-#)sFIrcg=4V}-Ij?=)`CFoLba?M&2BQoGh7Y6f z$Axb!MEMeB^5)LQyTwRtvFsKezust3bh0?vy6?4Y3$fm>5S@P~eoEhef{*^hTobii zc!!Gg{jPkHdHqFcNQdh7u>5DdgzD@E$H509Qw_4ZrHQOw<2%x+vodp*8ft@$b35dz zD(+*v>Am460z1UhWfkyeN@v%mHIbn%)AkEMo}j!}-95W@=j4aFp)C?0UP*V1TY`{Wco;MEAm%L=t~s_u z_<3g$f+oH*yoDffkoIlT=<(_vfAJ&pl-GJm%*<~XKU~>F zGsh`p3B0pXBqy+>P2$QJ;;2O69SWrwO{o@$>y+cDaNp7;;ssci>x}Qo<7pSESC2yH z>1RxvvNd#b^1Pm^1m|Sd!M@ExN@DRSIV}nD+ER7FB(ndl_f)N1UyUnCZorcNT*{@ZFVbRTGx=1cVcuOG73ErWPg#sR6aoOUVTg_^ z{k5y@`@lCW6c+Y1aqO1-{1FQ}>p+SVN`qp=OpoGbG)=NKI5&!54T3^R;1u8)=ki5JQ z|Jl*onn6X%%_q;)77OsMQH%Pq$hhCOO3oe@fh>Hb><4zZx7S8>F3W7PhoAm>i7l-z zo@ik?3Iln4Esutdbvr<-dn(SHf0&Bl^!y>i=P!L%1NTZ3o#=m8V5O#cI*;IV{vHXm z;qho`=8qf>Onhe|>7006p`Oe*rS1*nN`P^P`WTMpvVf$Pd5x!XZ}RNREC{RlHC=rd zvl*yCN(oCCl9hO;bdT9jGaE?oRQK7FdGMvY6j&R)>GO|gYgE6`0{;3EfH?&sdHKC|)Ne+q5EUCr8qOljXb9I|KPj1$Rp+8MW zYPHuekax+JnV+wj<{%&7TkR5=%;$_O{!wzt?xvUdS&5m*K((_p_fKv(4C#8s?6yij zGmalV=}20b=+Gu$nw%esj$kv5d=#S1{`PV4!d-a%us2+2(5jZ6HAI~<$G`0fJG=1b@5U6bD#N%@ZO2P7<&Lg~StA03TDsCRCYmA?T{@P&%ST)Dz1Q*GwlOS* zT2Y-a<2dQ%d+GgjubLWD6kp=6pD5jOw~1Qsne|FwR5lqki7EJS6WH+U&^qx}E%2pI z*3DGjk4G}pMn04-oShR-B;3H=i>e&BJjd~fx%`w~0XEU`T3UX4S^L#F7`GY2Ud&?g%N?1c%LO4d$Ai1!zr4PAkll1%9hA49GC5OMz+vu_kG-xk< zq`e+`caQmoeQ0sM34KoVr;6xt&Fb35NBo-M00VV1nXIl>qw?gj?bU|%ZJ1s;m3T9> z%NfDSOItZ3G5O%TK`EmXnZ@8T+AdYTY=;m|#R9`?ei{b^1n$>9v7#rpyCL>)ebaeK zK$ORH@L0}_FVl}P_ndjH#I%CR3L(mtP28%-gRRLLrW7Lli*+k4$+F6XXg8 zoW-RJ%z?wuA&KY1wLNi_tAw)8LQ<{w1x?p;gKtw+O}VF7rKy~JqN1mM)0@@p(L~VI zkdtXr?oFnxV^^0?7y_3^Je{5E7Qb}aKNB^thj!Kd!^bG{=oRg1_f3+TFLFKCI`uebs*R6)V=%6C5d6|twDPtBTy=NPi1D9TJS+lNK z-(%tC6N1V2a(@{sK|8uo$YUa!sBP;TJ=)2cTrsHS&q*DaEzXdqv4D-lsWRZYlfAZm z4@;7~4;I7I!-8ROAXVB}YP~MPOu;yG&E18&?aEQh%jO;(_l*m24c)wteJbU*vR=)U zE9n-r-&^`Dgp+gj$K>M1`o4Twg}zKv?UvomZ<#vIud*_^DlmyjynCbBLhM<(YfSI^ zfN^H^8x40oM=7ajU>;qZ>crsCtC9gW*fuWP4I>XGRy_L=vy@0#e1^BPa7xC9Ui@Y1 ztM}7oFW&P6;9seacZEyxJg=dd=+BDxTdhj};rI#P4WZ z7V{kM+ExT>?BQG0;Tt7#z4z4r(^p~VUyiL%D&$1F_KhD~8{S8~iG! z!l&wTyf%Lg`~5xunt)FIx(7wq4oRn0c|ccQZ>D;g4~HZ4dr+X*+CAU(mlQsKjDvO*W!l((TmH`ia3|(L9h4>* z4DtKb8Z1p>O5phjb8tEWD-+@8etU2lL~h9Fn)hdBLj?82H=k5TjPe5#9S#cHN70Fb zw_=KpS_f$i?V747rj-x(oTE3dR$JJ9XQ!-%Ll{YThGk?`ZZDqUS?JxC6@SXxDj=e4 zG3^(xYBrj-GL^hui&=jn<#AMmkDE+{d6iE`dUR0cvMhup7zYfO6KI|wLnan?G^Yy5 z&^mi`5K=nQ?sG0h@6;;~P7?xP3;>K2e4+XE_W%Syaf*s584|(^v9^7f_G*1xL4rOyqDV*Url_)}i4J9Ls8m$`yQZE6zTC`nM6_h!`DW5uY8s_z zE+54w5l%!Symj!NGCtxC@8a;)@-R#cvMbha|Zjs@e0q$0&(bU_{U>=e8D}h zCZI2!&zh19k;9|ZB#}BP`vA}5ww92>rtI{|4&#P5xTolPTqWsg3c>Cxqi&wpI-$=g z+JloU-Djr+veUP#g3ER9&zpXfQvvKeAB|S3(opnlYZrKz3RVTnw%5RhuzMebBo@Ln zBb28v&Bm}HtbJ&(8+<^nC{En^i2;8xBdOYzUfG&JQzCz~=wW#POSPbU{{5xQ6t*nL}ts*gqTo=Abm zbcuFRy|ci!y-I2kPjVk!h=|Mx{bL5%foh&1-jXwz&Sh06*X2^Zwp&BWR`83Z1b@xo zms^#x)Z#V?LJuiJCj=EnEN)|V8T~eP`aIy}W*W0qTngNrFBsa$iLGyL5g3!H)*@03 zJHu68HnR-uG8^Xpa4_c&Vpp|k@IY4(lC>^IiMF~ts96|4GfPsSqLm9#A4j)fZdm(^ zj7|05dpk0KVRA1z$wR>Be94}F7^w;{d^nJjDxh%AZY#jm2NVT2ic`D0eTA8 z+U0A}pOI4M9K{r%weRqpMq#nvT~8j-2%D8A%Q@wnnGVHZGh)9OW9eB@a>9rgN0!-T zldjikYA&nHz57;rg@Dx2FRW)35Q%D|c>RMNiN{rQ3~Faa4n1A=BfK51u`vkT2hNf! zifMDQCF{wp+v&{!3A5j)g{4wdQiU=0eoI{Gyqak-dUC93LXEmV$VYvb0IyXgj0(_WEZlCin>9``{oz+{$()k|4% z4uubRr&v)|!q+sg7(JlqnT~K3)oUADx?!be)cNw*o`+^)Mp_PXm#Pt0d#eLoQGU1o zZIS*P;KKBvbWct3&2)#7Oi|W!OzgF|5?D(+)8rJjec5s61hFulIN2ydJgPM?lid7T ztCPxYO1-NH`%hOjh|l%`ixs^BZLQq9FK8oG8?p`DoLA@F4c1KSBQ4oXn%)V198qFX r(;ZWP5Ac3el0?3nWCmaaI#H-d22n5!Mo#N4ZCVe}vVI31Zb$zM@QNLV diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index c342b1568..8c41d3d2a 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -1,12 +1,17 @@ -import { useEffect } from "react"; +import { useState } from "react"; import { useTurnkey } from "@turnkey/sdk-react"; +import { Box, Modal, Typography } from "@mui/material"; -type OnRampProps = { +interface OnRampProps { ethAddress: string; -}; +} export const OnRamp = ({ ethAddress }: OnRampProps) => { const { turnkey, indexedDbClient } = useTurnkey(); + const [isSignModalOpen, setSignModalOpen] = useState(false); + + const handleModalOpen = () => setSignModalOpen(true); + const handleModalClose = () => setSignModalOpen(false); const generateCoinbaseUrl = async () => { try { @@ -61,19 +66,63 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { }; return ( -
-
-
Funding
-
Add funds via Coinbase or MoonPay.
-
- - -
+ + + +
+ × +
+ + Add Funds to your wallet + + + Your crypto will be deposited directly into your Turnkey wallet + +
+ + +
+
+
+ ); }; diff --git a/examples/react-components/src/app/dashboard/dashboard.css b/examples/react-components/src/app/dashboard/dashboard.css index 1b16dcdba..97be96b64 100644 --- a/examples/react-components/src/app/dashboard/dashboard.css +++ b/examples/react-components/src/app/dashboard/dashboard.css @@ -215,6 +215,13 @@ body { margin-bottom: 12px; /* margin-top: 24px; */ } + + +.signMessage { + margin-bottom: 12px; + /* margin-top: 24px; */ +} + .exportImportGroup { margin-top: 12px; display: flex; @@ -466,43 +473,10 @@ button:hover { pointer-events: auto; } -.onRamp { +.purchaseButtons { display: flex; - min-height: 36.02px; - padding: 24px; flex-direction: column; - align-items: flex-start; - gap: 16px; - align-self: stretch; - border-radius: 8px; - background: #fff; - background: color(display-p3 1 1 1); - box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0px 2px 4px 0px color(display-p3 0 0 0 / 0.1); -} - -.fundingText { - display: flex; - flex-direction: column; - align-items: flex-start; - gap: 4px; -} -.fundingTitle { - color: #000; - color: color(display-p3 0 0 0); - font-family: Inter; - font-size: 16px; - font-style: normal; - font-weight: 700; -} - -.fundingSub { - color: #6d7681; - color: color(display-p3 0.4351 0.4613 0.5033); - font-family: Inter; - font-size: 16px; - font-style: normal; - font-weight: 400; + gap: 12px; } .whiteButton { @@ -537,12 +511,3 @@ button:hover { border-color: var(--button-disabled-border); cursor: default; } - -.onRampContainer { - display: flex; - flex-direction: column; - margin-top: 24px; - padding-top: 16px; - padding-bottom: 16px; - border-top: 1px solid var(--Greyscale-200, #ebedf2); -} diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index ac429600c..4eceac8e3 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -718,7 +718,9 @@ export default function Dashboard() { +
+
@@ -733,10 +735,6 @@ export default function Dashboard() { />
-
- {" "} - -
From 91c7d6962724efdf19a1c690e3b5e1fc2db030fa Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 11 Jul 2025 12:37:39 -0400 Subject: [PATCH 40/42] use sandboxMode --- .../src/app/dashboard/OnRamp.tsx | 39 ++++++++++++------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 8c41d3d2a..47dc5c736 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -26,13 +26,14 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", countryCode: "US", countrySubdivisionCode: "ME", + sandboxMode: true, }); if (response?.onRampUrl) { window.open( response.onRampUrl, "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes", + "popup,width=500,height=700,scrollbars=yes,resizable=yes" ); } } catch (error) { @@ -51,13 +52,14 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { network: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM", cryptoCurrencyCode: "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH", fiatCurrencyCode: "FIAT_ON_RAMP_CURRENCY_USD", + sandboxMode: true, }); if (response?.onRampUrl) { window.open( response.onRampUrl, "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes", + "popup,width=500,height=700,scrollbars=yes,resizable=yes" ); } } catch (error) { @@ -68,9 +70,18 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { return ( <> @@ -111,15 +122,15 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { Your crypto will be deposited directly into your Turnkey wallet -
- - +
+ +
From 147d77c7ea34d97adea2a109185798b3244dde09 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 11 Jul 2025 12:49:13 -0400 Subject: [PATCH 41/42] add sandboxMode --- examples/react-components/src/app/dashboard/OnRamp.tsx | 4 ++-- examples/react-components/src/app/dashboard/dashboard.css | 1 - examples/react-components/src/app/dashboard/page.tsx | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/examples/react-components/src/app/dashboard/OnRamp.tsx b/examples/react-components/src/app/dashboard/OnRamp.tsx index 47dc5c736..6f2e5b721 100644 --- a/examples/react-components/src/app/dashboard/OnRamp.tsx +++ b/examples/react-components/src/app/dashboard/OnRamp.tsx @@ -33,7 +33,7 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { window.open( response.onRampUrl, "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes" + "popup,width=500,height=700,scrollbars=yes,resizable=yes", ); } } catch (error) { @@ -59,7 +59,7 @@ export const OnRamp = ({ ethAddress }: OnRampProps) => { window.open( response.onRampUrl, "_blank", - "popup,width=500,height=700,scrollbars=yes,resizable=yes" + "popup,width=500,height=700,scrollbars=yes,resizable=yes", ); } } catch (error) { diff --git a/examples/react-components/src/app/dashboard/dashboard.css b/examples/react-components/src/app/dashboard/dashboard.css index 97be96b64..144e0ef28 100644 --- a/examples/react-components/src/app/dashboard/dashboard.css +++ b/examples/react-components/src/app/dashboard/dashboard.css @@ -216,7 +216,6 @@ body { /* margin-top: 24px; */ } - .signMessage { margin-bottom: 12px; /* margin-top: 24px; */ diff --git a/examples/react-components/src/app/dashboard/page.tsx b/examples/react-components/src/app/dashboard/page.tsx index 4eceac8e3..7a8977760 100644 --- a/examples/react-components/src/app/dashboard/page.tsx +++ b/examples/react-components/src/app/dashboard/page.tsx @@ -718,7 +718,6 @@ export default function Dashboard() { -
@@ -735,7 +734,6 @@ export default function Dashboard() { />
-
From 4eb2db02b61fffeb76f3cb223b2b91b648aaf62a Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Wed, 16 Jul 2025 10:28:38 -0400 Subject: [PATCH 42/42] codegen --- .../public/v1/public_api.client.ts | 36 +++ .../public/v1/public_api.fetcher.ts | 52 ++++ .../public/v1/public_api.swagger.json | 225 ++++++++++++++---- .../coordinator/public/v1/public_api.types.ts | 96 ++++++-- .../src/__generated__/sdk-client-base.ts | 31 +++ .../src/__generated__/sdk_api_types.ts | 11 + .../src/__inputs__/public_api.swagger.json | 225 ++++++++++++++---- .../src/__inputs__/public_api.types.ts | 96 ++++++-- .../src/__generated__/sdk-client-base.ts | 26 ++ .../src/__generated__/sdk_api_types.ts | 11 + .../src/__inputs__/public_api.swagger.json | 225 ++++++++++++++---- .../src/__inputs__/public_api.types.ts | 96 ++++++-- 12 files changed, 914 insertions(+), 216 deletions(-) diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts index a77aba152..e58b05290 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.client.ts @@ -43,6 +43,10 @@ import type { TGetOrganizationConfigsResponse, } from "./public_api.fetcher"; import type { TGetPolicyBody, TGetPolicyResponse } from "./public_api.fetcher"; +import type { + TGetPolicyEvaluationsBody, + TGetPolicyEvaluationsResponse, +} from "./public_api.fetcher"; import type { TGetPrivateKeyBody, TGetPrivateKeyResponse, @@ -688,6 +692,38 @@ export class TurnkeyClient { }; }; + /** + * Get the policy evaluations for an Activity + * + * Sign the provided `TGetPolicyEvaluationsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_policy_evaluations). + * + * See also {@link stampGetPolicyEvaluations}. + */ + getPolicyEvaluations = async ( + input: TGetPolicyEvaluationsBody, + ): Promise => { + return this.request("/public/v1/query/get_policy_evaluations", input); + }; + + /** + * Produce a `SignedRequest` from `TGetPolicyEvaluationsBody` by using the client's `stamp` function. + * + * See also {@link GetPolicyEvaluations}. + */ + stampGetPolicyEvaluations = async ( + input: TGetPolicyEvaluationsBody, + ): Promise => { + const fullUrl = + this.config.baseUrl + "/public/v1/query/get_policy_evaluations"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + /** * Get details about a Private Key * diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts index fcc5eba26..9b825b1cf 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts @@ -501,6 +501,58 @@ export const signGetPolicy = ( options, }); +/** + * `POST /public/v1/query/get_policy_evaluations` + */ +export type TGetPolicyEvaluationsResponse = + operations["PublicApiService_GetPolicyEvaluations"]["responses"]["200"]["schema"]; + +/** + * `POST /public/v1/query/get_policy_evaluations` + */ +export type TGetPolicyEvaluationsInput = { body: TGetPolicyEvaluationsBody }; + +/** + * `POST /public/v1/query/get_policy_evaluations` + */ +export type TGetPolicyEvaluationsBody = + operations["PublicApiService_GetPolicyEvaluations"]["parameters"]["body"]["body"]; + +/** + * Get Policy Evaluations + * + * Get the policy evaluations for an Activity + * + * `POST /public/v1/query/get_policy_evaluations` + */ +export const getPolicyEvaluations = (input: TGetPolicyEvaluationsInput) => + request< + TGetPolicyEvaluationsResponse, + TGetPolicyEvaluationsBody, + never, + never, + never + >({ + uri: "/public/v1/query/get_policy_evaluations", + method: "POST", + body: input.body, + }); + +/** + * Request a WebAuthn assertion and return a signed `GetPolicyEvaluations` request, ready to be POSTed to Turnkey. + * + * See {@link GetPolicyEvaluations} + */ +export const signGetPolicyEvaluations = ( + input: TGetPolicyEvaluationsInput, + options?: TurnkeyCredentialRequestOptions, +) => + signedRequest({ + uri: "/public/v1/query/get_policy_evaluations", + body: input.body, + options, + }); + /** * `POST /public/v1/query/get_private_key` */ diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json index 939120b01..22923d202 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json @@ -388,6 +388,38 @@ "tags": ["Policies"] } }, + "/public/v1/query/get_policy_evaluations": { + "post": { + "summary": "Get Policy Evaluations", + "description": "Get the policy evaluations for an Activity", + "operationId": "PublicApiService_GetPolicyEvaluations", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsRequest" + } + } + ], + "tags": ["Activities"] + } + }, "/public/v1/query/get_private_key": { "post": { "summary": "Get Private Key", @@ -3188,6 +3220,46 @@ }, "required": ["tagId", "tagName", "tagType", "createdAt", "updatedAt"] }, + "externalactivityv1PolicyEvaluation": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Unique identifier for a given policy evaluation." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for the Organization the Activity belongs to." + }, + "voteId": { + "type": "string", + "description": "Unique identifier for the Vote associated with this policy evaluation." + }, + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/privateumpv1PolicyEvaluation" + }, + "description": "Detailed evaluation result for each Policy that was run." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "id", + "activityId", + "organizationId", + "voteId", + "policyEvaluations", + "createdAt" + ] + }, "externaldatav1Address": { "type": "object", "properties": { @@ -3230,6 +3302,56 @@ }, "required": ["threshold", "userIds"] }, + "externaldatav1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "smartContractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "smartContractInterface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "smartContractAddress", + "smartContractInterface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, "externaldatav1Timestamp": { "type": "object", "properties": { @@ -3253,6 +3375,17 @@ } } }, + "privateumpv1PolicyEvaluation": { + "type": "object", + "properties": { + "policyId": { + "type": "string" + }, + "outcome": { + "$ref": "#/definitions/v1Outcome" + } + } + }, "protobufAny": { "type": "object", "properties": { @@ -6677,6 +6810,33 @@ }, "required": ["policies"] }, + "v1GetPolicyEvaluationsRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + } + }, + "required": ["organizationId", "activityId"] + }, + "v1GetPolicyEvaluationsResponse": { + "type": "object", + "properties": { + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/externalactivityv1PolicyEvaluation" + } + } + }, + "required": ["policyEvaluations"] + }, "v1GetPolicyRequest": { "type": "object", "properties": { @@ -6767,7 +6927,7 @@ "type": "object", "properties": { "smartContractInterface": { - "$ref": "#/definitions/v1SmartContractInterface", + "$ref": "#/definitions/externaldatav1SmartContractInterface", "description": "Object to be used in conjunction with Policies to guard transaction signing." } }, @@ -6790,7 +6950,7 @@ "type": "array", "items": { "type": "object", - "$ref": "#/definitions/v1SmartContractInterface" + "$ref": "#/definitions/externaldatav1SmartContractInterface" }, "description": "A list of Smart Contract Interfaces." } @@ -8469,6 +8629,17 @@ }, "required": ["session"] }, + "v1Outcome": { + "type": "string", + "enum": [ + "OUTCOME_ALLOW", + "OUTCOME_DENY_EXPLICIT", + "OUTCOME_DENY_IMPLICIT", + "OUTCOME_REQUIRES_CONSENSUS", + "OUTCOME_REJECTED", + "OUTCOME_ERROR" + ] + }, "v1Pagination": { "type": "object", "properties": { @@ -9493,56 +9664,6 @@ } } }, - "v1SmartContractInterface": { - "type": "object", - "properties": { - "organizationId": { - "type": "string", - "description": "The Organization the Smart Contract Interface belongs to." - }, - "smartContractInterfaceId": { - "type": "string", - "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." - }, - "smartContractAddress": { - "type": "string", - "description": "The address corresponding to the Smart Contract or Program." - }, - "smartContractInterface": { - "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." - }, - "type": { - "type": "string", - "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "label": { - "type": "string", - "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "notes": { - "type": "string", - "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "createdAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - }, - "updatedAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - } - }, - "required": [ - "organizationId", - "smartContractInterfaceId", - "smartContractAddress", - "smartContractInterface", - "type", - "label", - "notes", - "createdAt", - "updatedAt" - ] - }, "v1SmartContractInterfaceReference": { "type": "object", "properties": { diff --git a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts index 1148df59e..2c4d0fa02 100644 --- a/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts +++ b/packages/http/src/__generated__/services/coordinator/public/v1/public_api.types.ts @@ -44,6 +44,10 @@ export type paths = { /** Get details about a Policy */ post: operations["PublicApiService_GetPolicy"]; }; + "/public/v1/query/get_policy_evaluations": { + /** Get the policy evaluations for an Activity */ + post: operations["PublicApiService_GetPolicyEvaluations"]; + }; "/public/v1/query/get_private_key": { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; @@ -441,6 +445,19 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + externalactivityv1PolicyEvaluation: { + /** @description Unique identifier for a given policy evaluation. */ + id: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + /** @description Unique identifier for the Organization the Activity belongs to. */ + organizationId: string; + /** @description Unique identifier for the Vote associated with this policy evaluation. */ + voteId: string; + /** @description Detailed evaluation result for each Policy that was run. */ + policyEvaluations: definitions["privateumpv1PolicyEvaluation"][]; + createdAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Address: { format?: definitions["v1AddressFormat"]; address?: string; @@ -459,6 +476,24 @@ export type definitions = { /** @description Unique identifiers of quorum set members. */ userIds: string[]; }; + externaldatav1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Timestamp: { seconds: string; nanos: string; @@ -467,6 +502,10 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + privateumpv1PolicyEvaluation: { + policyId?: string; + outcome?: definitions["v1Outcome"]; + }; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -1933,6 +1972,15 @@ export type definitions = { /** @description A list of Policies. */ policies: definitions["v1Policy"][]; }; + v1GetPolicyEvaluationsRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + }; + v1GetPolicyEvaluationsResponse: { + policyEvaluations: definitions["externalactivityv1PolicyEvaluation"][]; + }; v1GetPolicyRequest: { /** @description Unique identifier for a given Organization. */ organizationId: string; @@ -1969,7 +2017,7 @@ export type definitions = { }; v1GetSmartContractInterfaceResponse: { /** @description Object to be used in conjunction with Policies to guard transaction signing. */ - smartContractInterface: definitions["v1SmartContractInterface"]; + smartContractInterface: definitions["externaldatav1SmartContractInterface"]; }; v1GetSmartContractInterfacesRequest: { /** @description Unique identifier for a given Organization. */ @@ -1977,7 +2025,7 @@ export type definitions = { }; v1GetSmartContractInterfacesResponse: { /** @description A list of Smart Contract Interfaces. */ - smartContractInterfaces: definitions["v1SmartContractInterface"][]; + smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][]; }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ @@ -2648,6 +2696,14 @@ export type definitions = { /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */ session: string; }; + /** @enum {string} */ + v1Outcome: + | "OUTCOME_ALLOW" + | "OUTCOME_DENY_EXPLICIT" + | "OUTCOME_DENY_IMPLICIT" + | "OUTCOME_REQUIRES_CONSENSUS" + | "OUTCOME_REJECTED" + | "OUTCOME_ERROR"; v1Pagination: { /** @description A limit of the number of object to be returned, between 1 and 100. Defaults to 10. */ limit?: string; @@ -3020,24 +3076,6 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; - v1SmartContractInterface: { - /** @description The Organization the Smart Contract Interface belongs to. */ - organizationId: string; - /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ - smartContractInterfaceId: string; - /** @description The address corresponding to the Smart Contract or Program. */ - smartContractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ - smartContractInterface: string; - /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - type: string; - /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - label: string; - /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - notes: string; - createdAt: definitions["externaldatav1Timestamp"]; - updatedAt: definitions["externaldatav1Timestamp"]; - }; v1SmartContractInterfaceReference: { smartContractInterfaceId?: string; smartContractAddress?: string; @@ -3668,6 +3706,24 @@ export type operations = { }; }; }; + /** Get the policy evaluations for an Activity */ + PublicApiService_GetPolicyEvaluations: { + parameters: { + body: { + body: definitions["v1GetPolicyEvaluationsRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetPolicyEvaluationsResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a Private Key */ PublicApiService_GetPrivateKey: { parameters: { diff --git a/packages/sdk-browser/src/__generated__/sdk-client-base.ts b/packages/sdk-browser/src/__generated__/sdk-client-base.ts index 2f01b9397..b3fabb647 100644 --- a/packages/sdk-browser/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-browser/src/__generated__/sdk-client-base.ts @@ -457,6 +457,37 @@ export class TurnkeySDKClientBase { }; }; + getPolicyEvaluations = async ( + input: SdkApiTypes.TGetPolicyEvaluationsBody, + ): Promise => { + let session = await getStorageValue(StorageKeys.Session); + session = parseSession(session!); + return this.request("/public/v1/query/get_policy_evaluations", { + ...input, + organizationId: + input.organizationId ?? + session?.organizationId ?? + this.config.organizationId, + }); + }; + + stampGetPolicyEvaluations = async ( + input: SdkApiTypes.TGetPolicyEvaluationsBody, + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_policy_evaluations"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + getPrivateKey = async ( input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { diff --git a/packages/sdk-browser/src/__generated__/sdk_api_types.ts b/packages/sdk-browser/src/__generated__/sdk_api_types.ts index e1ad0eedd..b6ff8b9ce 100644 --- a/packages/sdk-browser/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-browser/src/__generated__/sdk_api_types.ts @@ -121,6 +121,17 @@ export type TGetPolicyBody = Omit< > & queryOverrideParams; +export type TGetPolicyEvaluationsResponse = + operations["PublicApiService_GetPolicyEvaluations"]["responses"]["200"]["schema"]; + +export type TGetPolicyEvaluationsInput = { body: TGetPolicyEvaluationsBody }; + +export type TGetPolicyEvaluationsBody = Omit< + operations["PublicApiService_GetPolicyEvaluations"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; + export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; diff --git a/packages/sdk-browser/src/__inputs__/public_api.swagger.json b/packages/sdk-browser/src/__inputs__/public_api.swagger.json index 939120b01..22923d202 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-browser/src/__inputs__/public_api.swagger.json @@ -388,6 +388,38 @@ "tags": ["Policies"] } }, + "/public/v1/query/get_policy_evaluations": { + "post": { + "summary": "Get Policy Evaluations", + "description": "Get the policy evaluations for an Activity", + "operationId": "PublicApiService_GetPolicyEvaluations", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsRequest" + } + } + ], + "tags": ["Activities"] + } + }, "/public/v1/query/get_private_key": { "post": { "summary": "Get Private Key", @@ -3188,6 +3220,46 @@ }, "required": ["tagId", "tagName", "tagType", "createdAt", "updatedAt"] }, + "externalactivityv1PolicyEvaluation": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Unique identifier for a given policy evaluation." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for the Organization the Activity belongs to." + }, + "voteId": { + "type": "string", + "description": "Unique identifier for the Vote associated with this policy evaluation." + }, + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/privateumpv1PolicyEvaluation" + }, + "description": "Detailed evaluation result for each Policy that was run." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "id", + "activityId", + "organizationId", + "voteId", + "policyEvaluations", + "createdAt" + ] + }, "externaldatav1Address": { "type": "object", "properties": { @@ -3230,6 +3302,56 @@ }, "required": ["threshold", "userIds"] }, + "externaldatav1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "smartContractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "smartContractInterface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "smartContractAddress", + "smartContractInterface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, "externaldatav1Timestamp": { "type": "object", "properties": { @@ -3253,6 +3375,17 @@ } } }, + "privateumpv1PolicyEvaluation": { + "type": "object", + "properties": { + "policyId": { + "type": "string" + }, + "outcome": { + "$ref": "#/definitions/v1Outcome" + } + } + }, "protobufAny": { "type": "object", "properties": { @@ -6677,6 +6810,33 @@ }, "required": ["policies"] }, + "v1GetPolicyEvaluationsRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + } + }, + "required": ["organizationId", "activityId"] + }, + "v1GetPolicyEvaluationsResponse": { + "type": "object", + "properties": { + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/externalactivityv1PolicyEvaluation" + } + } + }, + "required": ["policyEvaluations"] + }, "v1GetPolicyRequest": { "type": "object", "properties": { @@ -6767,7 +6927,7 @@ "type": "object", "properties": { "smartContractInterface": { - "$ref": "#/definitions/v1SmartContractInterface", + "$ref": "#/definitions/externaldatav1SmartContractInterface", "description": "Object to be used in conjunction with Policies to guard transaction signing." } }, @@ -6790,7 +6950,7 @@ "type": "array", "items": { "type": "object", - "$ref": "#/definitions/v1SmartContractInterface" + "$ref": "#/definitions/externaldatav1SmartContractInterface" }, "description": "A list of Smart Contract Interfaces." } @@ -8469,6 +8629,17 @@ }, "required": ["session"] }, + "v1Outcome": { + "type": "string", + "enum": [ + "OUTCOME_ALLOW", + "OUTCOME_DENY_EXPLICIT", + "OUTCOME_DENY_IMPLICIT", + "OUTCOME_REQUIRES_CONSENSUS", + "OUTCOME_REJECTED", + "OUTCOME_ERROR" + ] + }, "v1Pagination": { "type": "object", "properties": { @@ -9493,56 +9664,6 @@ } } }, - "v1SmartContractInterface": { - "type": "object", - "properties": { - "organizationId": { - "type": "string", - "description": "The Organization the Smart Contract Interface belongs to." - }, - "smartContractInterfaceId": { - "type": "string", - "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." - }, - "smartContractAddress": { - "type": "string", - "description": "The address corresponding to the Smart Contract or Program." - }, - "smartContractInterface": { - "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." - }, - "type": { - "type": "string", - "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "label": { - "type": "string", - "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "notes": { - "type": "string", - "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "createdAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - }, - "updatedAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - } - }, - "required": [ - "organizationId", - "smartContractInterfaceId", - "smartContractAddress", - "smartContractInterface", - "type", - "label", - "notes", - "createdAt", - "updatedAt" - ] - }, "v1SmartContractInterfaceReference": { "type": "object", "properties": { diff --git a/packages/sdk-browser/src/__inputs__/public_api.types.ts b/packages/sdk-browser/src/__inputs__/public_api.types.ts index 1148df59e..2c4d0fa02 100644 --- a/packages/sdk-browser/src/__inputs__/public_api.types.ts +++ b/packages/sdk-browser/src/__inputs__/public_api.types.ts @@ -44,6 +44,10 @@ export type paths = { /** Get details about a Policy */ post: operations["PublicApiService_GetPolicy"]; }; + "/public/v1/query/get_policy_evaluations": { + /** Get the policy evaluations for an Activity */ + post: operations["PublicApiService_GetPolicyEvaluations"]; + }; "/public/v1/query/get_private_key": { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; @@ -441,6 +445,19 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + externalactivityv1PolicyEvaluation: { + /** @description Unique identifier for a given policy evaluation. */ + id: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + /** @description Unique identifier for the Organization the Activity belongs to. */ + organizationId: string; + /** @description Unique identifier for the Vote associated with this policy evaluation. */ + voteId: string; + /** @description Detailed evaluation result for each Policy that was run. */ + policyEvaluations: definitions["privateumpv1PolicyEvaluation"][]; + createdAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Address: { format?: definitions["v1AddressFormat"]; address?: string; @@ -459,6 +476,24 @@ export type definitions = { /** @description Unique identifiers of quorum set members. */ userIds: string[]; }; + externaldatav1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Timestamp: { seconds: string; nanos: string; @@ -467,6 +502,10 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + privateumpv1PolicyEvaluation: { + policyId?: string; + outcome?: definitions["v1Outcome"]; + }; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -1933,6 +1972,15 @@ export type definitions = { /** @description A list of Policies. */ policies: definitions["v1Policy"][]; }; + v1GetPolicyEvaluationsRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + }; + v1GetPolicyEvaluationsResponse: { + policyEvaluations: definitions["externalactivityv1PolicyEvaluation"][]; + }; v1GetPolicyRequest: { /** @description Unique identifier for a given Organization. */ organizationId: string; @@ -1969,7 +2017,7 @@ export type definitions = { }; v1GetSmartContractInterfaceResponse: { /** @description Object to be used in conjunction with Policies to guard transaction signing. */ - smartContractInterface: definitions["v1SmartContractInterface"]; + smartContractInterface: definitions["externaldatav1SmartContractInterface"]; }; v1GetSmartContractInterfacesRequest: { /** @description Unique identifier for a given Organization. */ @@ -1977,7 +2025,7 @@ export type definitions = { }; v1GetSmartContractInterfacesResponse: { /** @description A list of Smart Contract Interfaces. */ - smartContractInterfaces: definitions["v1SmartContractInterface"][]; + smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][]; }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ @@ -2648,6 +2696,14 @@ export type definitions = { /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */ session: string; }; + /** @enum {string} */ + v1Outcome: + | "OUTCOME_ALLOW" + | "OUTCOME_DENY_EXPLICIT" + | "OUTCOME_DENY_IMPLICIT" + | "OUTCOME_REQUIRES_CONSENSUS" + | "OUTCOME_REJECTED" + | "OUTCOME_ERROR"; v1Pagination: { /** @description A limit of the number of object to be returned, between 1 and 100. Defaults to 10. */ limit?: string; @@ -3020,24 +3076,6 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; - v1SmartContractInterface: { - /** @description The Organization the Smart Contract Interface belongs to. */ - organizationId: string; - /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ - smartContractInterfaceId: string; - /** @description The address corresponding to the Smart Contract or Program. */ - smartContractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ - smartContractInterface: string; - /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - type: string; - /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - label: string; - /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - notes: string; - createdAt: definitions["externaldatav1Timestamp"]; - updatedAt: definitions["externaldatav1Timestamp"]; - }; v1SmartContractInterfaceReference: { smartContractInterfaceId?: string; smartContractAddress?: string; @@ -3668,6 +3706,24 @@ export type operations = { }; }; }; + /** Get the policy evaluations for an Activity */ + PublicApiService_GetPolicyEvaluations: { + parameters: { + body: { + body: definitions["v1GetPolicyEvaluationsRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetPolicyEvaluationsResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a Private Key */ PublicApiService_GetPrivateKey: { parameters: { diff --git a/packages/sdk-server/src/__generated__/sdk-client-base.ts b/packages/sdk-server/src/__generated__/sdk-client-base.ts index 984a47e5d..ecf64ea06 100644 --- a/packages/sdk-server/src/__generated__/sdk-client-base.ts +++ b/packages/sdk-server/src/__generated__/sdk-client-base.ts @@ -394,6 +394,32 @@ export class TurnkeySDKClientBase { }; }; + getPolicyEvaluations = async ( + input: SdkApiTypes.TGetPolicyEvaluationsBody, + ): Promise => { + return this.request("/public/v1/query/get_policy_evaluations", { + ...input, + organizationId: input.organizationId ?? this.config.organizationId, + }); + }; + + stampGetPolicyEvaluations = async ( + input: SdkApiTypes.TGetPolicyEvaluationsBody, + ): Promise => { + if (!this.stamper) { + return undefined; + } + const fullUrl = + this.config.apiBaseUrl + "/public/v1/query/get_policy_evaluations"; + const body = JSON.stringify(input); + const stamp = await this.stamper.stamp(body); + return { + body: body, + stamp: stamp, + url: fullUrl, + }; + }; + getPrivateKey = async ( input: SdkApiTypes.TGetPrivateKeyBody, ): Promise => { diff --git a/packages/sdk-server/src/__generated__/sdk_api_types.ts b/packages/sdk-server/src/__generated__/sdk_api_types.ts index e1ad0eedd..b6ff8b9ce 100644 --- a/packages/sdk-server/src/__generated__/sdk_api_types.ts +++ b/packages/sdk-server/src/__generated__/sdk_api_types.ts @@ -121,6 +121,17 @@ export type TGetPolicyBody = Omit< > & queryOverrideParams; +export type TGetPolicyEvaluationsResponse = + operations["PublicApiService_GetPolicyEvaluations"]["responses"]["200"]["schema"]; + +export type TGetPolicyEvaluationsInput = { body: TGetPolicyEvaluationsBody }; + +export type TGetPolicyEvaluationsBody = Omit< + operations["PublicApiService_GetPolicyEvaluations"]["parameters"]["body"]["body"], + "organizationId" +> & + queryOverrideParams; + export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"]; diff --git a/packages/sdk-server/src/__inputs__/public_api.swagger.json b/packages/sdk-server/src/__inputs__/public_api.swagger.json index 939120b01..22923d202 100644 --- a/packages/sdk-server/src/__inputs__/public_api.swagger.json +++ b/packages/sdk-server/src/__inputs__/public_api.swagger.json @@ -388,6 +388,38 @@ "tags": ["Policies"] } }, + "/public/v1/query/get_policy_evaluations": { + "post": { + "summary": "Get Policy Evaluations", + "description": "Get the policy evaluations for an Activity", + "operationId": "PublicApiService_GetPolicyEvaluations", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/rpcStatus" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1GetPolicyEvaluationsRequest" + } + } + ], + "tags": ["Activities"] + } + }, "/public/v1/query/get_private_key": { "post": { "summary": "Get Private Key", @@ -3188,6 +3220,46 @@ }, "required": ["tagId", "tagName", "tagType", "createdAt", "updatedAt"] }, + "externalactivityv1PolicyEvaluation": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Unique identifier for a given policy evaluation." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + }, + "organizationId": { + "type": "string", + "description": "Unique identifier for the Organization the Activity belongs to." + }, + "voteId": { + "type": "string", + "description": "Unique identifier for the Vote associated with this policy evaluation." + }, + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/privateumpv1PolicyEvaluation" + }, + "description": "Detailed evaluation result for each Policy that was run." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "id", + "activityId", + "organizationId", + "voteId", + "policyEvaluations", + "createdAt" + ] + }, "externaldatav1Address": { "type": "object", "properties": { @@ -3230,6 +3302,56 @@ }, "required": ["threshold", "userIds"] }, + "externaldatav1SmartContractInterface": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "The Organization the Smart Contract Interface belongs to." + }, + "smartContractInterfaceId": { + "type": "string", + "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." + }, + "smartContractAddress": { + "type": "string", + "description": "The address corresponding to the Smart Contract or Program." + }, + "smartContractInterface": { + "type": "string", + "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." + }, + "type": { + "type": "string", + "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "label": { + "type": "string", + "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "notes": { + "type": "string", + "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." + }, + "createdAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + }, + "updatedAt": { + "$ref": "#/definitions/externaldatav1Timestamp" + } + }, + "required": [ + "organizationId", + "smartContractInterfaceId", + "smartContractAddress", + "smartContractInterface", + "type", + "label", + "notes", + "createdAt", + "updatedAt" + ] + }, "externaldatav1Timestamp": { "type": "object", "properties": { @@ -3253,6 +3375,17 @@ } } }, + "privateumpv1PolicyEvaluation": { + "type": "object", + "properties": { + "policyId": { + "type": "string" + }, + "outcome": { + "$ref": "#/definitions/v1Outcome" + } + } + }, "protobufAny": { "type": "object", "properties": { @@ -6677,6 +6810,33 @@ }, "required": ["policies"] }, + "v1GetPolicyEvaluationsRequest": { + "type": "object", + "properties": { + "organizationId": { + "type": "string", + "description": "Unique identifier for a given Organization." + }, + "activityId": { + "type": "string", + "description": "Unique identifier for a given Activity." + } + }, + "required": ["organizationId", "activityId"] + }, + "v1GetPolicyEvaluationsResponse": { + "type": "object", + "properties": { + "policyEvaluations": { + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/externalactivityv1PolicyEvaluation" + } + } + }, + "required": ["policyEvaluations"] + }, "v1GetPolicyRequest": { "type": "object", "properties": { @@ -6767,7 +6927,7 @@ "type": "object", "properties": { "smartContractInterface": { - "$ref": "#/definitions/v1SmartContractInterface", + "$ref": "#/definitions/externaldatav1SmartContractInterface", "description": "Object to be used in conjunction with Policies to guard transaction signing." } }, @@ -6790,7 +6950,7 @@ "type": "array", "items": { "type": "object", - "$ref": "#/definitions/v1SmartContractInterface" + "$ref": "#/definitions/externaldatav1SmartContractInterface" }, "description": "A list of Smart Contract Interfaces." } @@ -8469,6 +8629,17 @@ }, "required": ["session"] }, + "v1Outcome": { + "type": "string", + "enum": [ + "OUTCOME_ALLOW", + "OUTCOME_DENY_EXPLICIT", + "OUTCOME_DENY_IMPLICIT", + "OUTCOME_REQUIRES_CONSENSUS", + "OUTCOME_REJECTED", + "OUTCOME_ERROR" + ] + }, "v1Pagination": { "type": "object", "properties": { @@ -9493,56 +9664,6 @@ } } }, - "v1SmartContractInterface": { - "type": "object", - "properties": { - "organizationId": { - "type": "string", - "description": "The Organization the Smart Contract Interface belongs to." - }, - "smartContractInterfaceId": { - "type": "string", - "description": "Unique identifier for a given Smart Contract Interface (ABI or IDL)." - }, - "smartContractAddress": { - "type": "string", - "description": "The address corresponding to the Smart Contract or Program." - }, - "smartContractInterface": { - "type": "string", - "description": "The JSON corresponding to the Smart Contract Interface (ABI or IDL)." - }, - "type": { - "type": "string", - "description": "The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "label": { - "type": "string", - "description": "The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "notes": { - "type": "string", - "description": "The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA)." - }, - "createdAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - }, - "updatedAt": { - "$ref": "#/definitions/externaldatav1Timestamp" - } - }, - "required": [ - "organizationId", - "smartContractInterfaceId", - "smartContractAddress", - "smartContractInterface", - "type", - "label", - "notes", - "createdAt", - "updatedAt" - ] - }, "v1SmartContractInterfaceReference": { "type": "object", "properties": { diff --git a/packages/sdk-server/src/__inputs__/public_api.types.ts b/packages/sdk-server/src/__inputs__/public_api.types.ts index 1148df59e..2c4d0fa02 100644 --- a/packages/sdk-server/src/__inputs__/public_api.types.ts +++ b/packages/sdk-server/src/__inputs__/public_api.types.ts @@ -44,6 +44,10 @@ export type paths = { /** Get details about a Policy */ post: operations["PublicApiService_GetPolicy"]; }; + "/public/v1/query/get_policy_evaluations": { + /** Get the policy evaluations for an Activity */ + post: operations["PublicApiService_GetPolicyEvaluations"]; + }; "/public/v1/query/get_private_key": { /** Get details about a Private Key */ post: operations["PublicApiService_GetPrivateKey"]; @@ -441,6 +445,19 @@ export type definitions = { createdAt: definitions["externaldatav1Timestamp"]; updatedAt: definitions["externaldatav1Timestamp"]; }; + externalactivityv1PolicyEvaluation: { + /** @description Unique identifier for a given policy evaluation. */ + id: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + /** @description Unique identifier for the Organization the Activity belongs to. */ + organizationId: string; + /** @description Unique identifier for the Vote associated with this policy evaluation. */ + voteId: string; + /** @description Detailed evaluation result for each Policy that was run. */ + policyEvaluations: definitions["privateumpv1PolicyEvaluation"][]; + createdAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Address: { format?: definitions["v1AddressFormat"]; address?: string; @@ -459,6 +476,24 @@ export type definitions = { /** @description Unique identifiers of quorum set members. */ userIds: string[]; }; + externaldatav1SmartContractInterface: { + /** @description The Organization the Smart Contract Interface belongs to. */ + organizationId: string; + /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ + smartContractInterfaceId: string; + /** @description The address corresponding to the Smart Contract or Program. */ + smartContractAddress: string; + /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ + smartContractInterface: string; + /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + type: string; + /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + label: string; + /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ + notes: string; + createdAt: definitions["externaldatav1Timestamp"]; + updatedAt: definitions["externaldatav1Timestamp"]; + }; externaldatav1Timestamp: { seconds: string; nanos: string; @@ -467,6 +502,10 @@ export type definitions = { format?: definitions["v1AddressFormat"]; address?: string; }; + privateumpv1PolicyEvaluation: { + policyId?: string; + outcome?: definitions["v1Outcome"]; + }; protobufAny: { "@type"?: string; } & { [key: string]: unknown }; @@ -1933,6 +1972,15 @@ export type definitions = { /** @description A list of Policies. */ policies: definitions["v1Policy"][]; }; + v1GetPolicyEvaluationsRequest: { + /** @description Unique identifier for a given Organization. */ + organizationId: string; + /** @description Unique identifier for a given Activity. */ + activityId: string; + }; + v1GetPolicyEvaluationsResponse: { + policyEvaluations: definitions["externalactivityv1PolicyEvaluation"][]; + }; v1GetPolicyRequest: { /** @description Unique identifier for a given Organization. */ organizationId: string; @@ -1969,7 +2017,7 @@ export type definitions = { }; v1GetSmartContractInterfaceResponse: { /** @description Object to be used in conjunction with Policies to guard transaction signing. */ - smartContractInterface: definitions["v1SmartContractInterface"]; + smartContractInterface: definitions["externaldatav1SmartContractInterface"]; }; v1GetSmartContractInterfacesRequest: { /** @description Unique identifier for a given Organization. */ @@ -1977,7 +2025,7 @@ export type definitions = { }; v1GetSmartContractInterfacesResponse: { /** @description A list of Smart Contract Interfaces. */ - smartContractInterfaces: definitions["v1SmartContractInterface"][]; + smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][]; }; v1GetSubOrgIdsRequest: { /** @description Unique identifier for the parent Organization. This is used to find sub-organizations within it. */ @@ -2648,6 +2696,14 @@ export type definitions = { /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */ session: string; }; + /** @enum {string} */ + v1Outcome: + | "OUTCOME_ALLOW" + | "OUTCOME_DENY_EXPLICIT" + | "OUTCOME_DENY_IMPLICIT" + | "OUTCOME_REQUIRES_CONSENSUS" + | "OUTCOME_REJECTED" + | "OUTCOME_ERROR"; v1Pagination: { /** @description A limit of the number of object to be returned, between 1 and 100. Defaults to 10. */ limit?: string; @@ -3020,24 +3076,6 @@ export type definitions = { appidExclude?: boolean; credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"]; }; - v1SmartContractInterface: { - /** @description The Organization the Smart Contract Interface belongs to. */ - organizationId: string; - /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */ - smartContractInterfaceId: string; - /** @description The address corresponding to the Smart Contract or Program. */ - smartContractAddress: string; - /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */ - smartContractInterface: string; - /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - type: string; - /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - label: string; - /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */ - notes: string; - createdAt: definitions["externaldatav1Timestamp"]; - updatedAt: definitions["externaldatav1Timestamp"]; - }; v1SmartContractInterfaceReference: { smartContractInterfaceId?: string; smartContractAddress?: string; @@ -3668,6 +3706,24 @@ export type operations = { }; }; }; + /** Get the policy evaluations for an Activity */ + PublicApiService_GetPolicyEvaluations: { + parameters: { + body: { + body: definitions["v1GetPolicyEvaluationsRequest"]; + }; + }; + responses: { + /** A successful response. */ + 200: { + schema: definitions["v1GetPolicyEvaluationsResponse"]; + }; + /** An unexpected error response. */ + default: { + schema: definitions["rpcStatus"]; + }; + }; + }; /** Get details about a Private Key */ PublicApiService_GetPrivateKey: { parameters: {