@repobit/dex-target 1.8.5 → 1.8.6

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.8.6](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.8.5...@repobit/dex-target@1.8.6) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @repobit/dex-target
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.8.5](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.8.4...@repobit/dex-target@1.8.5) (2025-04-10)
7
15
 
8
16
  **Note:** Version bump only for package @repobit/dex-target
package/README.md CHANGED
@@ -72,6 +72,7 @@ The `Config mbox` contains information regarding promotions, buy link and produc
72
72
  ```typescript
73
73
  export type ConfigMbox = Partial<{
74
74
  promotion: string,
75
+ provider: 'init' | 'vlaicu',
75
76
  products: {
76
77
  [key: string]: {
77
78
  [key: `${number}-${number}`]: Partial<{
@@ -16,6 +16,7 @@ export default abstract class Target {
16
16
  private static getUrlParameters;
17
17
  static get configMbox(): Promise<Partial<{
18
18
  promotion: string;
19
+ provider: "init" | "vlaicu";
19
20
  products: {
20
21
  [key: string]: {
21
22
  [key: `${number}-${number}`]: Partial<{
@@ -108,6 +108,7 @@ export type AlloyFunction = {
108
108
  };
109
109
  export type ConfigMbox = Partial<{
110
110
  promotion: string;
111
+ provider: 'init' | 'vlaicu';
111
112
  products: {
112
113
  [key: string]: {
113
114
  [key: `${number}-${number}`]: Partial<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-target",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "description": "Client for Adobe Target",
5
5
  "author": "Constantin Ioan Mihai <iconstantin@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
@@ -36,5 +36,5 @@
36
36
  "volta": {
37
37
  "node": "22.14.0"
38
38
  },
39
- "gitHead": "45bf75c4df42e42927241ea1f3750e61de4e06b4"
39
+ "gitHead": "e4218c07c9e9902d2937d7b5c2c030aec3641ccc"
40
40
  }