@halliday-sdk/payments 2.8.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/dist/paymentsApiClient/index.cjs.min.js +1 -1
- package/dist/paymentsApiClient/index.cjs.min.js.map +1 -1
- package/dist/paymentsApiClient/index.d.ts +3432 -1105
- package/dist/paymentsApiClient/index.esm.min.js +1 -1
- package/dist/paymentsApiClient/index.esm.min.js.map +1 -1
- package/dist/paymentsWidget/ethers/index.d.ts +1 -3
- package/dist/paymentsWidget/index.cjs.min.js +15 -1
- package/dist/paymentsWidget/index.cjs.min.js.map +1 -1
- package/dist/paymentsWidget/index.d.ts +110 -274
- package/dist/paymentsWidget/index.esm.min.js +15 -1
- package/dist/paymentsWidget/index.esm.min.js.map +1 -1
- package/dist/paymentsWidget/index.umd.min.js +15 -1
- package/dist/paymentsWidget/index.umd.min.js.map +1 -1
- package/dist/paymentsWidget/viem/index.d.ts +1 -3
- package/package.json +2 -1
|
@@ -42,9 +42,7 @@ declare const EVMChainConfig: z.ZodObject<{
|
|
|
42
42
|
}, z.core.$strip>;
|
|
43
43
|
type EVMChainConfig = z.infer<typeof EVMChainConfig>;
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
type TypedData = z.infer<typeof TypedData>;
|
|
47
|
-
|
|
45
|
+
type TypedData = string;
|
|
48
46
|
type SignMessage = (input: {
|
|
49
47
|
message: string;
|
|
50
48
|
ownerAddress?: Address;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halliday-sdk/payments",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"require": "./dist/paymentsWidget/index.cjs.min.js",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"viem": "^2.27.2"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
|
+
"typecheck": "npx tsc -p tsconfig.check.json 2>&1 | grep -v 'HallidayLib/' | grep 'error TS' && exit 1 || exit 0",
|
|
57
58
|
"test": "yarn test:node && yarn test:web",
|
|
58
59
|
"test:node": "npx jest --config jest.node.config.js",
|
|
59
60
|
"test:web": "npx jest --config jest.web.config.js",
|