@repobit/dex-data-layer 0.1.1 → 0.2.1

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 ADDED
@@ -0,0 +1,42 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.2.1](https://github.com/bitdefender/dex-core/compare/@repobit/dex-data-layer@0.2.0...@repobit/dex-data-layer@0.2.1) (2025-03-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **DEX-21085:** add files to package json ([d1fa71f](https://github.com/bitdefender/dex-core/commit/d1fa71f4b89812fa306b7ec0104af52505e87491))
12
+
13
+
14
+
15
+ ## [0.2.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-data-layer@0.1.1...@repobit/dex-data-layer@0.2.0) (2025-03-26)
16
+
17
+
18
+ ### Features
19
+
20
+ * **DEX-21820:** added syntasa integration ([a2fb875](https://github.com/bitdefender/dex-core/commit/a2fb8756362b6affbf10b0c8affb390749c8a9df))
21
+
22
+
23
+
24
+ ## [0.1.1](https://github.com/bitdefender/dex-core/compare/@repobit/dex-data-layer@0.1.0...@repobit/dex-data-layer@0.1.1) (2025-03-25)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * **DEX-21811:** add missing deepmerge ([631baa5](https://github.com/bitdefender/dex-core/commit/631baa5ede63631ba07b2cd37d7c2f027176f359))
30
+
31
+
32
+
33
+ ## 0.1.0 (2025-03-25)
34
+
35
+
36
+ ### Features
37
+
38
+ * **DEX-22225:** added all dataLayer classes ([9afb463](https://github.com/bitdefender/dex-core/commit/9afb4631cba0d3731396182098e07a7df790b4c2))
39
+ * **DEX-22225:** created data layer package ([36d6d05](https://github.com/bitdefender/dex-core/commit/36d6d054998460cca8e2978820874b34cbf7409f))
40
+ * **DEX-22225:** created the data layer and updated target class ([390f327](https://github.com/bitdefender/dex-core/commit/390f327af376e8c70e37d14c5ffd699f60a17275))
41
+ * **DEX-22225:** finalised OptionInfo ([b1b210f](https://github.com/bitdefender/dex-core/commit/b1b210fe28e73ebbd684ecde62ecbb29bdfc6855))
42
+ * **DEX-22225:** restructured the code and added tests ([e29eb2a](https://github.com/bitdefender/dex-core/commit/e29eb2a48fe8c470fbd6609bca37da1a782e5f5f))
@@ -1,4 +1,4 @@
1
1
  export type CdpEventParameters = {
2
- auds: string;
3
- [key: string]: string;
2
+ auds?: string;
3
+ [key: string]: string | undefined;
4
4
  };
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@repobit/dex-data-layer",
3
- "version": "0.1.1",
3
+ "version": "0.2.1",
4
4
  "description": "Client for Adobe Data Layer",
5
5
  "author": "Constantin Ioan Mihai <iconstantin@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/index.js",
9
9
  "files": [
10
- "dist/src"
10
+ "dist/src",
11
+ "README.md",
12
+ "CHANGELOG.md",
13
+ "LICENSE"
11
14
  ],
12
15
  "publishConfig": {
13
16
  "access": "public"
@@ -28,11 +31,11 @@
28
31
  "types": "dist/src/index.d.ts",
29
32
  "dependencies": {
30
33
  "@repobit/dex-store": "0.2.0",
31
- "@repobit/dex-utils": "0.5.1",
34
+ "@repobit/dex-utils": "0.6.1",
32
35
  "deepmerge": "^4.3.1"
33
36
  },
34
37
  "volta": {
35
38
  "node": "22.14.0"
36
39
  },
37
- "gitHead": "33d90bc644458a14640ef570406767b12c8242f5"
40
+ "gitHead": "64dd7dca1e451796a1fafe016b7a8d361523754f"
38
41
  }