@adobe/aio-commerce-lib-app 1.0.1 → 1.0.2

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @adobe/aio-commerce-lib-app
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#318](https://github.com/adobe/aio-commerce-sdk/pull/318) [`dac677f`](https://github.com/adobe/aio-commerce-sdk/commit/dac677f2ebb7841f78a11919af8f145de57024bf) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Fix an issue where a not-needed input causes installation errors.
8
+
9
+ - Updated dependencies [[`452dc94`](https://github.com/adobe/aio-commerce-sdk/commit/452dc940a6f9ea48b63260dfb80830b7bee0ec79)]:
10
+ - @adobe/aio-commerce-lib-config@1.0.2
11
+
3
12
  ## 1.0.1
4
13
 
5
14
  ### Patch Changes
@@ -267,7 +267,6 @@ async function loadAppManifest() {
267
267
  //#region source/commands/generate/actions/config.ts
268
268
  /** The list of Commerce variables that are required for the runtime actions */
269
269
  const COMMERCE_VARIABLES = [
270
- "AIO_COMMERCE_API_BASE_URL",
271
270
  "AIO_COMMERCE_AUTH_IMS_CLIENT_ID",
272
271
  "AIO_COMMERCE_AUTH_IMS_CLIENT_SECRETS",
273
272
  "AIO_COMMERCE_AUTH_IMS_TECHNICAL_ACCOUNT_ID",
@@ -260,7 +260,6 @@ async function loadAppManifest() {
260
260
  //#region source/commands/generate/actions/config.ts
261
261
  /** The list of Commerce variables that are required for the runtime actions */
262
262
  const COMMERCE_VARIABLES = [
263
- "AIO_COMMERCE_API_BASE_URL",
264
263
  "AIO_COMMERCE_AUTH_IMS_CLIENT_ID",
265
264
  "AIO_COMMERCE_AUTH_IMS_CLIENT_SECRETS",
266
265
  "AIO_COMMERCE_AUTH_IMS_TECHNICAL_ACCOUNT_ID",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@adobe/aio-commerce-lib-app",
3
3
  "type": "module",
4
4
  "author": "Adobe Inc.",
5
- "version": "1.0.1",
5
+ "version": "1.0.2",
6
6
  "private": false,
7
7
  "engines": {
8
8
  "node": ">=20 <=24"
@@ -95,18 +95,18 @@
95
95
  "yaml": "^2.8.1",
96
96
  "@adobe/aio-commerce-lib-api": "1.0.0",
97
97
  "@adobe/aio-commerce-lib-auth": "1.0.0",
98
- "@adobe/aio-commerce-lib-config": "1.0.1",
98
+ "@adobe/aio-commerce-lib-config": "1.0.2",
99
99
  "@adobe/aio-commerce-lib-core": "1.0.0",
100
100
  "@adobe/aio-commerce-lib-events": "1.0.0"
101
101
  },
102
102
  "devDependencies": {
103
103
  "typescript": "^5.9.2",
104
- "@aio-commerce-sdk/common-utils": "0.2.2",
104
+ "@aio-commerce-sdk/config-tsdown": "1.0.1",
105
105
  "@aio-commerce-sdk/config-typedoc": "1.0.0",
106
106
  "@aio-commerce-sdk/config-typescript": "1.0.0",
107
- "@aio-commerce-sdk/config-tsdown": "1.0.1",
108
107
  "@aio-commerce-sdk/config-vitest": "1.0.0",
109
108
  "@aio-commerce-sdk/scripting-utils": "0.3.0",
109
+ "@aio-commerce-sdk/common-utils": "0.2.2",
110
110
  "@aio-commerce-sdk/scripts": "0.1.0"
111
111
  },
112
112
  "sideEffects": false,