cloudcommerce 2.49.2 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/action.yml +25 -1
  3. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
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
+
13
+ ## [2.49.3](https://github.com/ecomplus/cloud-commerce/compare/v2.49.2...v2.49.3) (2025-09-08)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **deps:** Update non-major dependencies ([#621](https://github.com/ecomplus/cloud-commerce/issues/621)) ([57e2040](https://github.com/ecomplus/cloud-commerce/commit/57e204087705f4a049f2a3e6ac1c80735b395b67))
19
+ * **paghiper:** Properly detecting Pix webhooks to handle notification ([31bfad7](https://github.com/ecomplus/cloud-commerce/commit/31bfad7ec8cd505fc83a5ea895616d3f2f888c98))
20
+
5
21
  ## [2.49.2](https://github.com/ecomplus/cloud-commerce/compare/v2.49.1...v2.49.2) (2025-09-07)
6
22
 
7
23
  ## [2.49.1](https://github.com/ecomplus/cloud-commerce/compare/v2.49.0...v2.49.1) (2025-09-07)
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 API token'
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.2",
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>",
@@ -28,21 +28,21 @@
28
28
  "@commitlint/cli": "^19.8.1",
29
29
  "@commitlint/config-conventional": "^19.8.1",
30
30
  "@commitlint/rules": "^19.8.1",
31
- "@types/node": "^20.19.11",
32
- "commit-and-tag-version": "^12.5.2",
33
- "dotenv": "^17.2.1",
31
+ "@types/node": "^20.19.13",
32
+ "commit-and-tag-version": "^12.6.0",
33
+ "dotenv": "^17.2.2",
34
34
  "eslint": "^8.57.1",
35
35
  "husky": "^9.1.7",
36
- "lint-staged": "^16.1.5",
36
+ "lint-staged": "^16.1.6",
37
37
  "tailwindcss": "^3.4.17",
38
38
  "ts-node": "^10.9.2",
39
39
  "turbo": "^2.5.6",
40
40
  "typescript": "~5.9.2",
41
41
  "uglify-js": "^3.19.3",
42
- "vite": "^5.4.19",
42
+ "vite": "^5.4.20",
43
43
  "vitest": "^2.1.9",
44
44
  "zx": "^8.8.1",
45
- "@cloudcommerce/eslint": "2.49.2"
45
+ "@cloudcommerce/eslint": "2.49.4"
46
46
  },
47
47
  "scripts": {
48
48
  "fix-install": "bash scripts/pre-install.sh && pnpm i",