@commercelayer/cli-plugin-triggers 4.9.1 → 4.10.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 +232 -0
- package/lib/commands/adyen_payment/authorize.d.ts +9 -0
- package/lib/commands/adyen_payment/authorize.js +22 -0
- package/lib/commands/cleanup/index.d.ts +9 -0
- package/lib/commands/cleanup/index.js +40 -0
- package/lib/commands/cleanup/interrupt.d.ts +9 -0
- package/lib/commands/cleanup/interrupt.js +22 -0
- package/lib/commands/export/index.d.ts +9 -0
- package/lib/commands/export/index.js +40 -0
- package/lib/commands/export/interrupt.d.ts +9 -0
- package/lib/commands/export/interrupt.js +22 -0
- package/lib/commands/import/index.d.ts +9 -0
- package/lib/commands/import/index.js +40 -0
- package/lib/commands/import/interrupt.d.ts +9 -0
- package/lib/commands/import/interrupt.js +22 -0
- package/lib/commands/order/fix_payment_source.d.ts +9 -0
- package/lib/commands/order/fix_payment_source.js +22 -0
- package/lib/commands/vertex_account/index.d.ts +9 -0
- package/lib/commands/vertex_account/index.js +40 -0
- package/lib/commands/vertex_account/refresh_token.d.ts +9 -0
- package/lib/commands/vertex_account/refresh_token.js +22 -0
- package/lib/triggers/adyen_payments.d.ts +1 -1
- package/lib/triggers/adyen_payments.js +5 -0
- package/lib/triggers/cleanups.d.ts +3 -0
- package/lib/triggers/cleanups.js +10 -0
- package/lib/triggers/exports.d.ts +3 -0
- package/lib/triggers/exports.js +10 -0
- package/lib/triggers/imports.d.ts +3 -0
- package/lib/triggers/imports.js +10 -0
- package/lib/triggers/orders.d.ts +1 -1
- package/lib/triggers/orders.js +5 -0
- package/lib/triggers/vertex_accounts.d.ts +3 -0
- package/lib/triggers/vertex_accounts.js +10 -0
- package/oclif.manifest.json +981 -101
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercelayer/cli-plugin-triggers",
|
|
3
3
|
"description": "Commerce Layer CLI Triggers plugin",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.10.0",
|
|
5
5
|
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
|
|
6
6
|
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-triggers",
|
|
7
7
|
"repository": "commercelayer/commercelayer-cli-plugin-triggers",
|
|
@@ -50,13 +50,14 @@
|
|
|
50
50
|
"readme": "cl-cli-dev readme --plugin --bin=commercelayer && git add README.md",
|
|
51
51
|
"generate": "tsx gen/generator.ts",
|
|
52
52
|
"lint": "eslint src --ext .ts --config .eslintrc",
|
|
53
|
-
"lint:fix": "eslint src --fix"
|
|
53
|
+
"lint:fix": "eslint src --fix",
|
|
54
|
+
"release": "pnpm upgrade && pnpm generate && pnpm prepack && pnpm postpack"
|
|
54
55
|
},
|
|
55
56
|
"types": "lib/index.d.ts",
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@commercelayer/cli-dev": "^3.0.
|
|
58
|
+
"@commercelayer/cli-dev": "^3.0.7",
|
|
58
59
|
"@commercelayer/eslint-config-ts": "^1.4.5",
|
|
59
|
-
"@oclif/plugin-help": "^6.2.
|
|
60
|
+
"@oclif/plugin-help": "^6.2.25",
|
|
60
61
|
"@oclif/test": "^3.2.15",
|
|
61
62
|
"@semantic-release/changelog": "^6.0.3",
|
|
62
63
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -64,21 +65,21 @@
|
|
|
64
65
|
"@types/inquirer": "^8.2.10",
|
|
65
66
|
"@types/lodash.snakecase": "^4.1.9",
|
|
66
67
|
"@types/mocha": "^10.0.10",
|
|
67
|
-
"@types/node": "^22.
|
|
68
|
+
"@types/node": "^22.13.4",
|
|
68
69
|
"chai": "^4.5.0",
|
|
69
70
|
"eslint": "^8.57.1",
|
|
70
71
|
"inflector-js": "^1.0.1",
|
|
71
72
|
"lodash.snakecase": "^4.1.1",
|
|
72
73
|
"mocha": "^10.8.2",
|
|
73
74
|
"nyc": "^15.1.0",
|
|
74
|
-
"oclif": "^4.
|
|
75
|
-
"semantic-release": "^24.2.
|
|
75
|
+
"oclif": "^4.17.30",
|
|
76
|
+
"semantic-release": "^24.2.3",
|
|
76
77
|
"tsx": "^4.19.2",
|
|
77
78
|
"typescript": "5.5.4"
|
|
78
79
|
},
|
|
79
80
|
"dependencies": {
|
|
80
81
|
"@commercelayer/cli-core": "beta",
|
|
81
|
-
"@commercelayer/sdk": "^6.
|
|
82
|
+
"@commercelayer/sdk": "^6.32.0",
|
|
82
83
|
"@oclif/core": "^3.27.0",
|
|
83
84
|
"inquirer": "^8.2.6",
|
|
84
85
|
"tslib": "^2.8.1"
|