@pexip-engage-public/plugin 1.1.32 → 1.1.34

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,23 @@
1
1
  # @pexip-engage-public/plugin
2
2
 
3
+ ## 1.1.34
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b4c98c3]
8
+ - @pexip-engage-public/graphql@1.3.0
9
+ - @pexip-engage-public/utils@0.1.48
10
+
11
+ ## 1.1.33
12
+
13
+ ### Patch Changes
14
+
15
+ - 971251e: chore(deps): update dependency happy-dom to v20 [security]
16
+ - c979bae: chore(deps): update dependency vitest to v4
17
+ - Updated dependencies [c979bae]
18
+ - @pexip-engage-public/utils@0.1.48
19
+ - @pexip-engage-public/graphql@1.2.1
20
+
3
21
  ## 1.1.32
4
22
 
5
23
  ### Patch Changes
@@ -4,7 +4,7 @@ export function createFakeHash(obj) {
4
4
  return `#skedify${values}`;
5
5
  }
6
6
  export function createFakeElement(attributes) {
7
- const element = global.window.document.createElement("div");
7
+ const element = window.document.createElement("div");
8
8
  Object.entries(attributes).forEach(([key, value]) => element.setAttribute(key, value));
9
9
  return element;
10
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"test-utils.js","sourceRoot":"","sources":["../../../src/configuration-parser-legacy/tests/test-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,UAAU,cAAc,CAAC,GAAmC;IAChE,MAAM,MAAM,GAAG,mBAAmB,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IAE9C,OAAO,WAAW,MAAM,EAAE,CAAC;AAC7B,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAkC;IAClE,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;IAEvF,OAAO,OAAO,CAAC;AACjB,CAAC"}
1
+ {"version":3,"file":"test-utils.js","sourceRoot":"","sources":["../../../src/configuration-parser-legacy/tests/test-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,UAAU,cAAc,CAAC,GAAmC;IAChE,MAAM,MAAM,GAAG,mBAAmB,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IAE9C,OAAO,WAAW,MAAM,EAAE,CAAC;AAC7B,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAkC;IAClE,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACrD,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;IAEvF,OAAO,OAAO,CAAC;AACjB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/plugin",
3
- "version": "1.1.32",
3
+ "version": "1.1.34",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/booking-plugin/packages/plugin-public#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -39,15 +39,15 @@
39
39
  "dependencies": {
40
40
  "skedify-uri-encoding": "^2.1.2",
41
41
  "zod": "^3.25.76",
42
- "@pexip-engage-public/graphql": "1.2.0",
43
- "@pexip-engage-public/utils": "0.1.47"
42
+ "@pexip-engage-public/graphql": "1.3.0",
43
+ "@pexip-engage-public/utils": "0.1.48"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@total-typescript/ts-reset": "^0.6.1",
47
- "happy-dom": "^19.0.2",
48
- "vitest": "^3.2.4",
47
+ "happy-dom": "^20.0.10",
48
+ "vitest": "^4.0.8",
49
49
  "@pexip-engage/tsconfig": "0.1.1",
50
- "eslint-config-pexip-engage": "1.1.36"
50
+ "eslint-config-pexip-engage": "1.2.0"
51
51
  },
52
52
  "volta": {
53
53
  "extends": "../../../../package.json"
@@ -9,7 +9,7 @@ export function createFakeHash(obj?: LegacyPluginHashConfiguration) {
9
9
  }
10
10
 
11
11
  export function createFakeElement(attributes: Record<string, string>) {
12
- const element = global.window.document.createElement("div");
12
+ const element = window.document.createElement("div");
13
13
  Object.entries(attributes).forEach(([key, value]) => element.setAttribute(key, value));
14
14
 
15
15
  return element;