File tree 7 files changed +72
-0
lines changed
7 files changed +72
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " wagmi " : patch
3
+ " @wagmi/vue " : patch
4
+ ---
5
+
6
+ Added experimental actions entrypoint.
Original file line number Diff line number Diff line change 42
42
"types" : " ./dist/types/exports/actions.d.ts" ,
43
43
"default" : " ./dist/esm/exports/actions.js"
44
44
},
45
+ "./actions/experimental" : {
46
+ "types" : " ./dist/types/exports/actions.experimental.d.ts" ,
47
+ "default" : " ./dist/esm/exports/actions.experimental.js"
48
+ },
45
49
"./chains" : {
46
50
"types" : " ./dist/types/exports/chains.d.ts" ,
47
51
"default" : " ./dist/esm/exports/chains.js"
Original file line number Diff line number Diff line change
1
+ import { expect , test } from 'vitest'
2
+
3
+ import * as experimentalActions from './actions.experimental.js'
4
+
5
+ test ( 'exports' , ( ) => {
6
+ expect ( Object . keys ( experimentalActions ) ) . toMatchInlineSnapshot ( `
7
+ [
8
+ "getCallsStatus",
9
+ "getCapabilities",
10
+ "sendCalls",
11
+ "showCallsStatus",
12
+ "writeContracts",
13
+ "getCallsStatusQueryOptions",
14
+ "getCallsStatusQueryKey",
15
+ "getCapabilitiesQueryOptions",
16
+ "getCapabilitiesQueryKey",
17
+ "sendCallsMutationOptions",
18
+ "showCallsStatusMutationOptions",
19
+ "writeContractsMutationOptions",
20
+ ]
21
+ ` )
22
+ } )
Original file line number Diff line number Diff line change
1
+ ////////////////////////////////////////////////////////////////////////////////
2
+ // @wagmi /core/experimental
3
+ ////////////////////////////////////////////////////////////////////////////////
4
+
5
+ // biome-ignore lint/performance/noBarrelFile: entrypoint module
6
+ // biome-ignore lint/performance/noReExportAll: entrypoint module
7
+ export * from '@wagmi/core/experimental'
Original file line number Diff line number Diff line change 41
41
"types" : " ./dist/types/exports/actions.d.ts" ,
42
42
"default" : " ./dist/esm/exports/actions.js"
43
43
},
44
+ "./actions/experimental" : {
45
+ "types" : " ./dist/types/exports/actions.experimental.d.ts" ,
46
+ "default" : " ./dist/esm/exports/actions.experimental.js"
47
+ },
44
48
"./chains" : {
45
49
"types" : " ./dist/types/exports/chains.d.ts" ,
46
50
"default" : " ./dist/esm/exports/chains.js"
Original file line number Diff line number Diff line change
1
+ import { expect , test } from 'vitest'
2
+
3
+ import * as experimentalActions from './actions.experimental.js'
4
+
5
+ test ( 'exports' , ( ) => {
6
+ expect ( Object . keys ( experimentalActions ) ) . toMatchInlineSnapshot ( `
7
+ [
8
+ "getCallsStatus",
9
+ "getCapabilities",
10
+ "sendCalls",
11
+ "showCallsStatus",
12
+ "writeContracts",
13
+ "getCallsStatusQueryOptions",
14
+ "getCallsStatusQueryKey",
15
+ "getCapabilitiesQueryOptions",
16
+ "getCapabilitiesQueryKey",
17
+ "sendCallsMutationOptions",
18
+ "showCallsStatusMutationOptions",
19
+ "writeContractsMutationOptions",
20
+ ]
21
+ ` )
22
+ } )
Original file line number Diff line number Diff line change
1
+ ////////////////////////////////////////////////////////////////////////////////
2
+ // @wagmi /core/experimental
3
+ ////////////////////////////////////////////////////////////////////////////////
4
+
5
+ // biome-ignore lint/performance/noBarrelFile: entrypoint module
6
+ // biome-ignore lint/performance/noReExportAll: entrypoint module
7
+ export * from '@wagmi/core/experimental'
You can’t perform that action at this time.
0 commit comments