cloudcommerce 2.49.3 → 2.49.4
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/CHANGELOG.md +8 -0
- package/action.yml +25 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.49.4](https://github.com/ecomplus/cloud-commerce/compare/v2.49.3...v2.49.4) (2025-09-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **paghiper:** Properly separate API key and token usage ([00bdcd9](https://github.com/ecomplus/cloud-commerce/commit/00bdcd9c42b5bf2cf56f74a7f37e8a29e6658cab))
|
|
11
|
+
* **storefront:** Update Vue to ^3.5.21 ([#620](https://github.com/ecomplus/cloud-commerce/issues/620)) ([d279d8d](https://github.com/ecomplus/cloud-commerce/commit/d279d8db5e6e621b22e547775c56dd95a2861c5c))
|
|
12
|
+
|
|
5
13
|
## [2.49.3](https://github.com/ecomplus/cloud-commerce/compare/v2.49.2...v2.49.3) (2025-09-08)
|
|
6
14
|
|
|
7
15
|
|
package/action.yml
CHANGED
|
@@ -78,8 +78,20 @@ inputs:
|
|
|
78
78
|
description: 'App: Pagar.me API token'
|
|
79
79
|
pagarme-partner-id:
|
|
80
80
|
description: 'App: Pagar.me partner ID'
|
|
81
|
+
paghiper-api-key:
|
|
82
|
+
description: 'App: PagHiper API key'
|
|
81
83
|
paghiper-token:
|
|
82
|
-
description: 'App: PagHiper
|
|
84
|
+
description: 'App: PagHiper token'
|
|
85
|
+
vindi-api-key:
|
|
86
|
+
description: 'App: Vindi API key'
|
|
87
|
+
vindi-public-key:
|
|
88
|
+
description: 'App: Vindi public key'
|
|
89
|
+
asaas-api-key:
|
|
90
|
+
description: 'App: Asaas API key'
|
|
91
|
+
appmax-token:
|
|
92
|
+
description: 'App: Appmax token'
|
|
93
|
+
appmax-public-key:
|
|
94
|
+
description: 'App: Appmax public key'
|
|
83
95
|
pix-credentials:
|
|
84
96
|
description: 'App: Pix credentials'
|
|
85
97
|
flashcourier-contract:
|
|
@@ -304,7 +316,13 @@ runs:
|
|
|
304
316
|
PAGARME_ENCRYPT_KEY: ${{ inputs.pagarme-encrypt-key }}
|
|
305
317
|
PAGARME_TOKEN: ${{ inputs.pagarme-token }}
|
|
306
318
|
PAGARME_PARTNER_ID: ${{ inputs.pagarme-partner-id }}
|
|
319
|
+
PAGHIPER_API_KEY: ${{ inputs.paghiper-api-key }}
|
|
307
320
|
PAGHIPER_TOKEN: ${{ inputs.paghiper-token }}
|
|
321
|
+
VINDI_API_KEY: ${{ inputs.vindi-api-key }}
|
|
322
|
+
VINDI_PUBLIC_KEY: ${{ inputs.vindi-public-key }}
|
|
323
|
+
ASAAS_API_KEY: ${{ inputs.asaas-api-key }}
|
|
324
|
+
APPMAX_TOKEN: ${{ inputs.appmax-token }}
|
|
325
|
+
APPMAX_PUBLIC_KEY: ${{ inputs.appmax-public-key }}
|
|
308
326
|
PIX_CREDENTIALS: ${{ inputs.pix-credentials }}
|
|
309
327
|
FLASHCOURIER_CONTRACT: ${{ inputs.flashcourier-contract }}
|
|
310
328
|
WEBHOOKS_TOKEN: ${{ inputs.webhooks-token }}
|
|
@@ -356,7 +374,13 @@ runs:
|
|
|
356
374
|
PAGARME_ENCRYPT_KEY=$PAGARME_ENCRYPT_KEY
|
|
357
375
|
PAGARME_TOKEN=$PAGARME_TOKEN
|
|
358
376
|
PAGARME_PARTNER_ID=$PAGARME_PARTNER_ID
|
|
377
|
+
PAGHIPER_API_KEY=$PAGHIPER_API_KEY
|
|
359
378
|
PAGHIPER_TOKEN=$PAGHIPER_TOKEN
|
|
379
|
+
VINDI_API_KEY=$VINDI_API_KEY
|
|
380
|
+
VINDI_PUBLIC_KEY=$VINDI_PUBLIC_KEY
|
|
381
|
+
ASAAS_API_KEY=$ASAAS_API_KEY
|
|
382
|
+
APPMAX_TOKEN=$APPMAX_TOKEN
|
|
383
|
+
APPMAX_PUBLIC_KEY=$APPMAX_PUBLIC_KEY
|
|
360
384
|
PIX_CREDENTIALS=$PIX_CREDENTIALS
|
|
361
385
|
FLASHCOURIER_CONTRACT=$FLASHCOURIER_CONTRACT
|
|
362
386
|
WEBHOOKS_TOKEN=$WEBHOOKS_TOKEN
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.49.
|
|
4
|
+
"version": "2.49.4",
|
|
5
5
|
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
|
|
6
6
|
"main": "packages/api/lib/index.js",
|
|
7
7
|
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"vite": "^5.4.20",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
44
|
"zx": "^8.8.1",
|
|
45
|
-
"@cloudcommerce/eslint": "2.49.
|
|
45
|
+
"@cloudcommerce/eslint": "2.49.4"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|