@lowdefy/connection-stripe 4.0.0-alpha.9 → 4.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connections/Stripe/Stripe.js +1 -1
- package/dist/connections/Stripe/StripeRequest/StripeRequest.js +1 -1
- package/dist/connections/Stripe/StripeRequest/schema.js +2 -2
- package/dist/connections/Stripe/schema.js +1 -1
- package/dist/connections.js +1 -1
- package/dist/types.js +2 -3
- package/package.json +14 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2023 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|
|
67
67
|
]
|
|
68
68
|
}
|
|
69
69
|
},
|
package/dist/connections.js
CHANGED
package/dist/types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable import/namespace */ /*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2023 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -15,6 +15,5 @@
|
|
|
15
15
|
*/ import * as connections from './connections.js';
|
|
16
16
|
export default {
|
|
17
17
|
connections: Object.keys(connections),
|
|
18
|
-
requests: Object.keys(connections).map((connection)=>Object.keys(connections[connection].requests)
|
|
19
|
-
).flat()
|
|
18
|
+
requests: Object.keys(connections).map((connection)=>Object.keys(connections[connection].requests)).flat()
|
|
20
19
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/connection-stripe",
|
|
3
|
-
"version": "4.0.0-
|
|
4
|
-
"
|
|
3
|
+
"version": "4.0.0-rc.1",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
7
7
|
"keywords": [
|
|
@@ -35,26 +35,25 @@
|
|
|
35
35
|
"dist/*"
|
|
36
36
|
],
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "
|
|
38
|
+
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
|
|
39
39
|
"clean": "rm -rf dist",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"test": "jest --coverage",
|
|
43
|
-
"s": "swc"
|
|
40
|
+
"prepublishOnly": "pnpm build",
|
|
41
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
44
42
|
},
|
|
45
43
|
"dependencies": {
|
|
46
|
-
"@lowdefy/helpers": "4.0.0-
|
|
47
|
-
"stripe": "
|
|
44
|
+
"@lowdefy/helpers": "4.0.0-rc.1",
|
|
45
|
+
"stripe": "11.5.0"
|
|
48
46
|
},
|
|
49
47
|
"devDependencies": {
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@swc/
|
|
53
|
-
"@swc/
|
|
54
|
-
"jest": "
|
|
48
|
+
"@jest/globals": "28.1.0",
|
|
49
|
+
"@lowdefy/ajv": "4.0.0-rc.1",
|
|
50
|
+
"@swc/cli": "0.1.59",
|
|
51
|
+
"@swc/core": "1.3.24",
|
|
52
|
+
"@swc/jest": "0.2.24",
|
|
53
|
+
"jest": "28.1.0"
|
|
55
54
|
},
|
|
56
55
|
"publishConfig": {
|
|
57
56
|
"access": "public"
|
|
58
57
|
},
|
|
59
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "ecc4f16c19eede929eda177db524cf13a8053379"
|
|
60
59
|
}
|