@funkit/connect 9.4.1 → 9.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist/__generated__/default_configs.d.ts +222 -12
  3. package/dist/__generated__/default_feature_gates.d.ts +1 -0
  4. package/dist/{chunk-BSF2AKBC.js → chunk-O35RTEEF.js} +1 -1
  5. package/dist/{chunk-IZC4ZKKQ.js → chunk-S65TG73G.js} +1 -1
  6. package/dist/{chunk-DBRUJYOQ.js → chunk-VLAOBEJN.js} +1 -1
  7. package/dist/clients/fanatics.css +4572 -4545
  8. package/dist/clients/fanatics.js +2 -2
  9. package/dist/components/Box/Box.d.ts +15 -15
  10. package/dist/components/Dropdown/BaseDropdown.css.d.ts +0 -2
  11. package/dist/components/Dropdown/BaseDropdown.d.ts +1 -0
  12. package/dist/components/Dropdown/ChainDropdown.d.ts +5 -2
  13. package/dist/components/Dropdown/TokenAndChainDropdown.d.ts +7 -1
  14. package/dist/components/Dropdown/TokenDropdown.d.ts +3 -1
  15. package/dist/components/ModalHeightAnimationLayer/WithdrawalModalHeightAnimationWrapper.d.ts +1 -1
  16. package/dist/components/NewTokenDepositAlert/NewTokenDepositAlert.d.ts +1 -1
  17. package/dist/css/sprinkles.css.d.ts +15 -15
  18. package/dist/hooks/statsig/useFeatureGate.d.ts +3 -6
  19. package/dist/hooks/useBluvo.d.ts +1215 -5
  20. package/dist/hooks/useSupportedAssets.d.ts +9 -0
  21. package/dist/hooks/{useTokenChain.d.ts → useTokenAndChainDropdown.d.ts} +8 -2
  22. package/dist/hooks/useTokenTransfer.d.ts +1 -0
  23. package/dist/hooks/useTokenTransferConfig.d.ts +2 -0
  24. package/dist/index.css +4611 -4582
  25. package/dist/index.js +1926 -1088
  26. package/dist/modals/CheckoutModal/Brokerage/SelectBrokerage.d.ts +1 -1
  27. package/dist/modals/CheckoutModal/SelectAsset/SelectAsset.d.ts +1 -1
  28. package/dist/modals/CheckoutModal/SelectAsset/SelectAssetInfoSection.d.ts +1 -1
  29. package/dist/modals/CheckoutModal/SourceChange/FormOfPaymentsListLoading.d.ts +6 -0
  30. package/dist/modals/CheckoutModal/SwappedIframe/SwappedErrorMessage.d.ts +6 -0
  31. package/dist/modals/CheckoutModal/SwappedIframe/SwappedIframeContainer.d.ts +3 -1
  32. package/dist/modals/CheckoutModal/TransferToken/TransferToken.d.ts +1 -1
  33. package/dist/modals/CheckoutModal/stepTransition.d.ts +4 -1
  34. package/dist/themes/baseTheme.js +1 -1
  35. package/dist/themes/darkTheme.js +2 -2
  36. package/dist/themes/lightTheme.js +2 -2
  37. package/dist/utils/bluvo.d.ts +99 -1
  38. package/dist/utils/swapped.d.ts +1 -0
  39. package/dist/utils/tokenTransfer/disabledList.d.ts +14 -0
  40. package/dist/utils/tokenTransfer/types.d.ts +26 -0
  41. package/dist/wallets/walletConnectors/index.js +46 -46
  42. package/package.json +10 -10
  43. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/WithdrawalCallbackSuccess.d.ts +0 -0
  44. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/WithdrawalContent.d.ts +0 -0
  45. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/WithdrawalModal.d.ts +0 -0
  46. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/WithdrawalSuccess.d.ts +0 -0
  47. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/types.d.ts +0 -0
  48. /package/dist/modals/{WithdrwalModal → WithdrawalModal}/useWithdrawal.d.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { BluvoExchangeType } from '../../../consts/bluvo';
2
+ import type { BluvoExchangeType } from '../../../consts/bluvo';
3
3
  import { type PaymentMethodBrokerageInfo } from '../../../domains/paymentMethods';
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
5
5
  export type SelectBrokerageState = CheckoutModalCommonState;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { type PaymentMethodAccountInfo, type PaymentMethodBrokerageInfo } from '../../../domains/paymentMethods';
3
- import type { TransferTokenDefault } from '../../../hooks/useTokenChain';
3
+ import type { TransferTokenDefault } from '../../../hooks/useTokenAndChainDropdown';
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
5
5
  export type SelectAssetState = CheckoutModalCommonState & {
6
6
  paymentMethodInfo: PaymentMethodBrokerageInfo | PaymentMethodAccountInfo;
@@ -1,6 +1,6 @@
1
1
  import { type FC } from 'react';
2
2
  import type { PaymentMethodInfo } from '../../../domains/paymentMethods';
3
- import type { TransferTokenDefault } from '../../../hooks/useTokenChain';
3
+ import type { TransferTokenDefault } from '../../../hooks/useTokenAndChainDropdown';
4
4
  interface SelectAssetInfoSectionProps {
5
5
  totalBalance: number;
6
6
  paymentMethodInfo: PaymentMethodInfo;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const FormOfPaymentsListLoading: ({ className, count, enableSourceGroupLabels, }: {
3
+ className: string;
4
+ count?: number;
5
+ enableSourceGroupLabels: boolean;
6
+ }) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { type BoxProps } from '../../../components/Box/Box';
3
+ export declare function SwappedErrorMessage({ minHeight, paddingBottom, }: {
4
+ minHeight: number;
5
+ paddingBottom?: BoxProps['paddingBottom'];
6
+ }): React.JSX.Element;
@@ -7,9 +7,11 @@ export type SwappedIframeState = CheckoutModalCommonState & {
7
7
  selectedPaymentOption: SwappedFormOfPayment;
8
8
  /** Payment method type filter to restore when returning to SOURCE_CHANGE */
9
9
  paymentMethodTypeFilter?: PaymentMethodType;
10
+ /** Set to true when an error occurs (iframe error or load timeout) */
11
+ error?: boolean;
10
12
  };
11
13
  export type SwappedIframeNext = {
12
14
  success?: boolean;
13
15
  };
14
16
  export declare const SwappedIframeInfo: ModalStepInfo<FunCheckoutStep.SWAPPED_IFRAME>;
15
- export declare function SwappedIframeContainer({ modalState, onNext, onBack, onClose, }: ModalStepComponentProps<FunCheckoutStep.SWAPPED_IFRAME>): React.JSX.Element;
17
+ export declare function SwappedIframeContainer({ modalState, onNext, onBack, onClose, setModalState, }: ModalStepComponentProps<FunCheckoutStep.SWAPPED_IFRAME>): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { type TransferTokenDefault } from '../../../hooks/useTokenChain';
2
+ import { type TransferTokenDefault } from '../../../hooks/useTokenAndChainDropdown';
3
3
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
4
4
  export type TransferTokenState = CheckoutModalCommonState & {
5
5
  transferToken?: TransferTokenDefault;
@@ -58,7 +58,9 @@ export type ModalStepInfo<S extends FunCheckoutStep> = {
58
58
  /** Hides the close button in the Dialog Title element */
59
59
  hideClose?: (startingStep?: FunCheckoutStartingStep) => boolean;
60
60
  /** Hides the entire topbar including back button, close button, and title */
61
- hideTopbar?: () => boolean;
61
+ hideTopbar?: (state: CheckoutModalState<S>) => boolean;
62
+ /** Hides the bottom section (portal target for bottom bar content) */
63
+ hideBottomSection?: (state: CheckoutModalState<S>) => boolean;
62
64
  onBack?(state: CheckoutModalState<S>, prevState: CheckoutModalState): CheckoutModalState;
63
65
  onNext(state: CheckoutModalState<S>, payload: NextPayload<S>): CheckoutModalState;
64
66
  showFullHeight?: boolean;
@@ -150,6 +152,7 @@ export declare function useTitleConfig<S extends FunCheckoutStep>(checkoutItem:
150
152
  disableBack: boolean;
151
153
  hideClose: boolean;
152
154
  hideTopbar: boolean;
155
+ hideBottomSection: boolean;
153
156
  showFullHeight: boolean;
154
157
  title: string;
155
158
  };
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  baseTheme,
4
4
  systemFontStack
5
- } from "../chunk-BSF2AKBC.js";
5
+ } from "../chunk-O35RTEEF.js";
6
6
  export {
7
7
  baseTheme,
8
8
  systemFontStack
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-IZC4ZKKQ.js";
5
- import "../chunk-BSF2AKBC.js";
4
+ } from "../chunk-S65TG73G.js";
5
+ import "../chunk-O35RTEEF.js";
6
6
  export {
7
7
  darkTheme
8
8
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-DBRUJYOQ.js";
5
- import "../chunk-BSF2AKBC.js";
4
+ } from "../chunk-VLAOBEJN.js";
5
+ import "../chunk-O35RTEEF.js";
6
6
  export {
7
7
  lightTheme
8
8
  };
@@ -52,6 +52,104 @@ export declare function getBluvoError<OriginalBluvoError extends {
52
52
  * @throws - {@link BluvoWithdrawalError} if the response is invalid or if the withdrawal fails
53
53
  *
54
54
  */
55
- export declare const normalizeWithdrawalResponse: (response: BluvoExecuteWithdrawalResponse) => unknown;
55
+ export declare const normalizeWithdrawalResponse: (response: BluvoExecuteWithdrawalResponse) => {
56
+ [key: string]: unknown;
57
+ transactionId: string;
58
+ } | {
59
+ [key: string]: unknown;
60
+ bizNo: string;
61
+ steps: Array<{
62
+ type: import("@bluvo/sdk-ts").TypeEnum3;
63
+ status: import("@bluvo/sdk-ts").StatusEnum4;
64
+ required: boolean;
65
+ metadata?: {
66
+ email?: string;
67
+ emailSent?: boolean;
68
+ qrCodeUrl?: string;
69
+ qrCodeValidSeconds?: number;
70
+ [key: string]: unknown | string | boolean | number | undefined;
71
+ };
72
+ [key: string]: unknown | import("@bluvo/sdk-ts").TypeEnum3 | import("@bluvo/sdk-ts").StatusEnum4 | boolean | {
73
+ email?: string;
74
+ emailSent?: boolean;
75
+ qrCodeUrl?: string;
76
+ qrCodeValidSeconds?: number;
77
+ [key: string]: unknown | string | boolean | number | undefined;
78
+ } | undefined;
79
+ }>;
80
+ relation: import("@bluvo/sdk-ts").RelationEnum;
81
+ mfa?: {
82
+ bizNo?: string;
83
+ verified: {
84
+ EMAIL?: boolean;
85
+ SMS?: boolean;
86
+ GOOGLE?: boolean;
87
+ FACE?: boolean;
88
+ };
89
+ attempts?: Array<{
90
+ method: import("@bluvo/sdk-ts").TypeEnum3;
91
+ status: import("@bluvo/sdk-ts").StatusEnum4;
92
+ createdAt: number;
93
+ validatedAt?: number;
94
+ expiresAt?: number;
95
+ success: boolean;
96
+ }>;
97
+ methods?: Array<{
98
+ method: "EMAIL";
99
+ email: string;
100
+ } | {
101
+ method: "SMS";
102
+ phoneNumber: string;
103
+ } | {
104
+ method: "GOOGLE";
105
+ } | {
106
+ method: "FACE";
107
+ viaMobile: boolean;
108
+ }>;
109
+ };
110
+ } | {
111
+ [key: string]: unknown;
112
+ bizNo?: string;
113
+ steps?: Array<{
114
+ type: string;
115
+ status: import("@bluvo/sdk-ts").StatusEnum4;
116
+ error?: string;
117
+ [key: string]: unknown | string | import("@bluvo/sdk-ts").StatusEnum4 | undefined;
118
+ }>;
119
+ mfa?: {
120
+ bizNo?: string;
121
+ verified: {
122
+ EMAIL?: boolean;
123
+ SMS?: boolean;
124
+ GOOGLE?: boolean;
125
+ FACE?: boolean;
126
+ };
127
+ attempts?: Array<{
128
+ method: import("@bluvo/sdk-ts").TypeEnum3;
129
+ status: import("@bluvo/sdk-ts").StatusEnum4;
130
+ createdAt: number;
131
+ validatedAt?: number;
132
+ expiresAt?: number;
133
+ success: boolean;
134
+ }>;
135
+ methods?: Array<{
136
+ method: "EMAIL";
137
+ email: string;
138
+ } | {
139
+ method: "SMS";
140
+ phoneNumber: string;
141
+ } | {
142
+ method: "GOOGLE";
143
+ } | {
144
+ method: "FACE";
145
+ viaMobile: boolean;
146
+ }>;
147
+ };
148
+ } | {
149
+ [key: string]: unknown;
150
+ valid2FAMethods: Array<string>;
151
+ } | {
152
+ [key: string]: unknown;
153
+ } | undefined;
56
154
  export declare const isBluvoWithdrawalError: (error: unknown) => error is BluvoWithdrawalError;
57
155
  export {};
@@ -19,6 +19,7 @@ export interface SwappedTheme {
19
19
  baseFont?: string;
20
20
  secondaryFont?: string;
21
21
  topbarIconColor?: string;
22
+ topbarIconHoverColor?: string;
22
23
  headerIconWrapperSize?: string;
23
24
  headerIconSize?: string;
24
25
  topbarTextFontSize?: string;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Keys are chainId strings. Values are arrays of token addresses,
3
+ * or ["*"] to disable the entire chain.
4
+ */
5
+ export type DisabledChainsAndAssets = Record<string, string[]>;
6
+ /** Returns true if an entire chain is disabled (has ["*"]). */
7
+ export declare function isChainDisabled(disabledConfig: DisabledChainsAndAssets, chainId: number | string): boolean;
8
+ /**
9
+ * Returns true if a specific chain + asset combination is disabled.
10
+ * - If the chain has ["*"], the entire chain (and all its assets) is disabled.
11
+ * - If the chain has specific addresses, only those tokens are disabled.
12
+ * - Address comparison is case-insensitive.
13
+ */
14
+ export declare function isAssetDisabled(disabledConfig: DisabledChainsAndAssets, chainId: number | string, tokenAddress: string): boolean;
@@ -0,0 +1,26 @@
1
+ import type { GetSupportedAssetsResponse } from '@funkit/api-base';
2
+ /** Raw asset entry from the Statsig tokentransferconfig */
3
+ export interface TokenTransferAssetConfig {
4
+ address: string;
5
+ }
6
+ /** Raw chain entry from the Statsig tokentransferconfig */
7
+ export interface TokenTransferChainConfig {
8
+ readonly chainId: number;
9
+ readonly isDefault?: boolean;
10
+ readonly assets: readonly TokenTransferAssetConfig[];
11
+ }
12
+ /** The full output of useTokenTransferConfig */
13
+ export interface TokenTransferConfig {
14
+ /** Supported assets filtered by config, keyed by [chainId][address] */
15
+ supportedAssets: GetSupportedAssetsResponse;
16
+ /** Backward-compatible Record<number, string[]> (chainId -> symbol[]) */
17
+ symbolsByChainId: Record<number, string[]>;
18
+ /** Chain IDs in config display order */
19
+ chainIdSortOrder: number[];
20
+ /** Default chain ID (from isDefault on chain entry) */
21
+ defaultChainId: number | undefined;
22
+ /** Token symbols to prioritize at the top of the dropdown */
23
+ priorityTokenSymbols: string[];
24
+ /** True while /assets/supported is still loading */
25
+ isLoading: boolean;
26
+ }
@@ -1,25 +1,19 @@
1
1
  "use client";
2
2
  import {
3
- zealWallet
4
- } from "./chunk-HE2LMIPD.js";
5
- import {
6
- zerionWallet
7
- } from "./chunk-TTHM3WUR.js";
3
+ trustWallet
4
+ } from "./chunk-KO56HCTI.js";
8
5
  import {
9
- talismanWallet
10
- } from "./chunk-6MFOL6EB.js";
6
+ kresusWallet
7
+ } from "./chunk-G4V5B6YC.js";
11
8
  import {
12
9
  tokenPocketWallet
13
10
  } from "./chunk-4C7ER452.js";
14
- import {
15
- subWallet
16
- } from "./chunk-XBLHZICW.js";
17
11
  import {
18
12
  tokenaryWallet
19
13
  } from "./chunk-34LO6Q7A.js";
20
14
  import {
21
- trustWallet
22
- } from "./chunk-KO56HCTI.js";
15
+ safepalWallet
16
+ } from "./chunk-IICWJWGZ.js";
23
17
  import {
24
18
  uniswapWallet
25
19
  } from "./chunk-NHLG5PVD.js";
@@ -30,35 +24,38 @@ import {
30
24
  xdefiWallet
31
25
  } from "./chunk-O7RSASRH.js";
32
26
  import {
33
- rainbowWallet
34
- } from "./chunk-GSHSWVEG.js";
27
+ zealWallet
28
+ } from "./chunk-HE2LMIPD.js";
35
29
  import {
36
- rabbyWallet
37
- } from "./chunk-WFNPWKU3.js";
30
+ zerionWallet
31
+ } from "./chunk-TTHM3WUR.js";
38
32
  import {
39
33
  ramperWallet
40
34
  } from "./chunk-R4S234FL.js";
41
- import {
42
- safeWallet
43
- } from "./chunk-YKVWTGU7.js";
44
35
  import {
45
36
  roninWallet
46
37
  } from "./chunk-PKMAPNN6.js";
38
+ import {
39
+ oneKeyWallet
40
+ } from "./chunk-HE5J5T7X.js";
41
+ import {
42
+ safeWallet
43
+ } from "./chunk-YKVWTGU7.js";
47
44
  import {
48
45
  safeheronWallet
49
46
  } from "./chunk-4R4AARTG.js";
50
47
  import {
51
- safepalWallet
52
- } from "./chunk-IICWJWGZ.js";
48
+ subWallet
49
+ } from "./chunk-XBLHZICW.js";
53
50
  import {
54
51
  tahoWallet
55
52
  } from "./chunk-4BMUFNMT.js";
53
+ import {
54
+ talismanWallet
55
+ } from "./chunk-6MFOL6EB.js";
56
56
  import {
57
57
  mewWallet
58
58
  } from "./chunk-HKVDCVCG.js";
59
- import {
60
- ledgerWallet
61
- } from "./chunk-WKCCLGHJ.js";
62
59
  import {
63
60
  oktoWallet
64
61
  } from "./chunk-BVX22N7L.js";
@@ -71,18 +68,18 @@ import {
71
68
  import {
72
69
  oneInchWallet
73
70
  } from "./chunk-RVWLP4IM.js";
74
- import {
75
- oneKeyWallet
76
- } from "./chunk-HE5J5T7X.js";
77
71
  import {
78
72
  phantomWallet
79
73
  } from "./chunk-XMNVOYSJ.js";
74
+ import {
75
+ rabbyWallet
76
+ } from "./chunk-WFNPWKU3.js";
77
+ import {
78
+ rainbowWallet
79
+ } from "./chunk-GSHSWVEG.js";
80
80
  import {
81
81
  foxWallet
82
82
  } from "./chunk-53VYSPXK.js";
83
- import {
84
- frameWallet
85
- } from "./chunk-WDTNOIMF.js";
86
83
  import {
87
84
  frontierWallet
88
85
  } from "./chunk-CJJT7LMT.js";
@@ -93,17 +90,20 @@ import {
93
90
  imTokenWallet
94
91
  } from "./chunk-IUVO4IN3.js";
95
92
  import {
96
- kresusWallet
97
- } from "./chunk-G4V5B6YC.js";
93
+ frameWallet
94
+ } from "./chunk-WDTNOIMF.js";
98
95
  import {
99
96
  injectedWallet
100
97
  } from "./chunk-W6MXINYY.js";
98
+ import {
99
+ ledgerWallet
100
+ } from "./chunk-WKCCLGHJ.js";
101
101
  import {
102
102
  metaMaskWallet
103
103
  } from "./chunk-HETS3KKI.js";
104
104
  import {
105
- bybitWallet
106
- } from "./chunk-6UCI7GM6.js";
105
+ clvWallet
106
+ } from "./chunk-GVOQTORD.js";
107
107
  import {
108
108
  coin98Wallet
109
109
  } from "./chunk-6YO27XOM.js";
@@ -111,26 +111,26 @@ import {
111
111
  coinbaseWallet
112
112
  } from "./chunk-RZXMOPIV.js";
113
113
  import {
114
- clvWallet
115
- } from "./chunk-GVOQTORD.js";
116
- import {
117
- dawnWallet
118
- } from "./chunk-TFVCCI2D.js";
114
+ bitgetWallet
115
+ } from "./chunk-HOPH3TQ3.js";
119
116
  import {
120
117
  coreWallet
121
118
  } from "./chunk-GH4M6FTK.js";
122
119
  import {
123
120
  desigWallet
124
121
  } from "./chunk-JYVLYSH3.js";
122
+ import {
123
+ dawnWallet
124
+ } from "./chunk-TFVCCI2D.js";
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-W6TXXLCO.js";
128
- import {
129
- argentWallet
130
- } from "./chunk-VUOAIUZE.js";
131
128
  import {
132
129
  bifrostWallet
133
130
  } from "./chunk-EKJHJFRN.js";
131
+ import {
132
+ argentWallet
133
+ } from "./chunk-VUOAIUZE.js";
134
134
  import {
135
135
  bitskiWallet
136
136
  } from "./chunk-A7FNGC4A.js";
@@ -140,13 +140,13 @@ import {
140
140
  import {
141
141
  bloomWallet
142
142
  } from "./chunk-UB2SSFH7.js";
143
- import {
144
- bitgetWallet
145
- } from "./chunk-HOPH3TQ3.js";
146
- import "./chunk-MAPXJUOO.js";
147
143
  import {
148
144
  braveWallet
149
145
  } from "./chunk-ZRNBHLUU.js";
146
+ import {
147
+ bybitWallet
148
+ } from "./chunk-6UCI7GM6.js";
149
+ import "./chunk-MAPXJUOO.js";
150
150
  import "./chunk-BAVE62IL.js";
151
151
  import "./chunk-KV4HGYM3.js";
152
152
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "9.4.1",
3
+ "version": "9.4.3",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -81,8 +81,8 @@
81
81
  "wagmi": "2.17.2"
82
82
  },
83
83
  "dependencies": {
84
- "@bluvo/react": "2.1.3",
85
- "@bluvo/sdk-ts": "2.1.3",
84
+ "@bluvo/react": "3.0.0-beta.1",
85
+ "@bluvo/sdk-ts": "3.0.0-beta.1",
86
86
  "@datadog/browser-logs": "5.22.0",
87
87
  "@number-flow/react": "^0.5.5",
88
88
  "@radix-ui/react-dropdown-menu": "^2.1.7",
@@ -103,10 +103,10 @@
103
103
  "ua-parser-js": "^1.0.37",
104
104
  "use-debounce": "^10.0.5",
105
105
  "uuid": "^9.0.1",
106
- "@funkit/api-base": "3.0.3",
107
- "@funkit/fun-relay": "2.6.4",
108
- "@funkit/utils": "1.2.5",
109
- "@funkit/chains": "1.1.1"
106
+ "@funkit/api-base": "3.0.4",
107
+ "@funkit/chains": "1.1.2",
108
+ "@funkit/fun-relay": "2.6.5",
109
+ "@funkit/utils": "1.2.6"
110
110
  },
111
111
  "repository": {
112
112
  "type": "git",
@@ -121,9 +121,9 @@
121
121
  "predev": "pnpm statsig:generate",
122
122
  "dev": "pnpm build:watch & pnpm typegen:watch",
123
123
  "prebuild": "pnpm statsig:generate && pnpm typegen",
124
- "typecheck": "pnpm tsc --project tsconfig.test.json --noEmit",
125
- "typegen": "tsc --emitDeclarationOnly && tsc-alias || true",
126
- "typegen:watch": "tsc --emitDeclarationOnly --watch",
124
+ "typecheck": "pnpm tsc --noEmit",
125
+ "typegen": "tsc --project tsconfig.build.json --emitDeclarationOnly && tsc-alias",
126
+ "typegen:watch": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch",
127
127
  "lint": "biome check",
128
128
  "lint:fix": "biome check --fix",
129
129
  "test": "vitest",