@telia-ace/alliance-internal-node-utilities 1.0.3-next.4 → 1.0.4-next.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/CHANGELOG.md +16 -0
- package/dist/index.cjs +442 -251
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +127 -0
- package/dist/index.d.ts +126 -8
- package/dist/{index.mjs → index.js} +403 -208
- package/dist/index.js.map +1 -0
- package/package.json +23 -23
- package/dist/auth/auth.middleware.d.ts +0 -14
- package/dist/auth/index.d.ts +0 -2
- package/dist/auth/tokens.d.ts +0 -19
- package/dist/constants/config.d.ts +0 -10
- package/dist/constants/headers.d.ts +0 -5
- package/dist/constants/index.d.ts +0 -2
- package/dist/distribution/cookie-policy.d.ts +0 -2
- package/dist/distribution/create-public-files.d.ts +0 -1
- package/dist/distribution/index.d.ts +0 -1
- package/dist/distribution/json-schemas.d.ts +0 -7
- package/dist/distribution/pkg-json.d.ts +0 -13
- package/dist/exceptions/alliance-gql.exception.d.ts +0 -7
- package/dist/exceptions/alliance.exception.d.ts +0 -7
- package/dist/exceptions/codes.d.ts +0 -35
- package/dist/exceptions/exception.filter.d.ts +0 -5
- package/dist/exceptions/index.d.ts +0 -4
- package/dist/get-app-manifests.d.ts +0 -2
- package/dist/logging/index.d.ts +0 -2
- package/dist/logging/logging.module.d.ts +0 -9
- package/dist/logging/logging.service.d.ts +0 -12
- package/dist/slugify.d.ts +0 -1
- package/dist/types.d.ts +0 -1
- package/dist/vite-css-import.plugin.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @telia-ace/alliance-internal-node-utilities
|
|
2
2
|
|
|
3
|
+
## 1.0.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cd44395: Replace Vite with Tsup when building packages.
|
|
8
|
+
|
|
9
|
+
## 1.0.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0f20a09: Change to unformatted JSON logs.
|
|
14
|
+
- ba11e1f: Remove unused error codes.
|
|
15
|
+
- f2aafe4: Store user session in Redis cache to avoid hitting cookie size limits (https://github.com/telia-company/ace-alliance-sdk/issues/377).
|
|
16
|
+
- 828548a: Add error code for missing database record.
|
|
17
|
+
- c9b1488: Add `REDIS_PASSWORD` environment variable.
|
|
18
|
+
|
|
3
19
|
## 1.0.3-next.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|