@pexip-engage-public/plugin 1.1.8-canary-20250408140418 → 1.1.8
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,10 +1,14 @@
|
|
|
1
1
|
# @pexip-engage-public/plugin
|
|
2
2
|
|
|
3
|
-
## 1.1.8
|
|
3
|
+
## 1.1.8
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 43c862d: Add support to prefill subject questions through configuration
|
|
8
|
+
- d9eac37: fix(deps): update all non-major dependencies
|
|
9
|
+
- Updated dependencies [d9eac37]
|
|
10
|
+
- @pexip-engage-public/graphql@1.0.70
|
|
11
|
+
- @pexip-engage/utils@0.1.38
|
|
8
12
|
|
|
9
13
|
## 1.1.7
|
|
10
14
|
|
|
@@ -152,7 +152,7 @@ export interface JSConfig {
|
|
|
152
152
|
type?: "id" | "externalId" | null;
|
|
153
153
|
};
|
|
154
154
|
/** Used to prefill subject questions. `value` will depend on the question type:
|
|
155
|
-
* - `BOOLEAN` : "on"
|
|
155
|
+
* - `BOOLEAN` : "on"
|
|
156
156
|
* - `EMAIL`: string
|
|
157
157
|
* - `LONG_TEXT`: string
|
|
158
158
|
* - `MULTI_SELECT`: AnswerOptionId[] [`externalId`]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip-engage-public/plugin",
|
|
3
|
-
"version": "1.1.8
|
|
3
|
+
"version": "1.1.8",
|
|
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"
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"iframe-resizer": "4.3.11",
|
|
39
39
|
"skedify-uri-encoding": "^2.1.2",
|
|
40
|
-
"zod": "^3.24.
|
|
41
|
-
"@pexip-engage-public/graphql": "1.0.
|
|
42
|
-
"@pexip-engage/utils": "0.1.
|
|
40
|
+
"zod": "^3.24.3",
|
|
41
|
+
"@pexip-engage-public/graphql": "1.0.70",
|
|
42
|
+
"@pexip-engage/utils": "0.1.38"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
46
46
|
"happy-dom": "^17.4.4",
|
|
47
|
-
"vitest": "^3.1.
|
|
47
|
+
"vitest": "^3.1.2",
|
|
48
48
|
"@pexip-engage/tsconfig": "0.1.1",
|
|
49
|
-
"eslint-config-pexip-engage": "1.1.
|
|
49
|
+
"eslint-config-pexip-engage": "1.1.14"
|
|
50
50
|
},
|
|
51
51
|
"volta": {
|
|
52
52
|
"extends": "../../../../package.json"
|
|
@@ -374,7 +374,7 @@ export interface JSConfig {
|
|
|
374
374
|
type?: "id" | "externalId" | null;
|
|
375
375
|
};
|
|
376
376
|
/** Used to prefill subject questions. `value` will depend on the question type:
|
|
377
|
-
* - `BOOLEAN` : "on"
|
|
377
|
+
* - `BOOLEAN` : "on"
|
|
378
378
|
* - `EMAIL`: string
|
|
379
379
|
* - `LONG_TEXT`: string
|
|
380
380
|
* - `MULTI_SELECT`: AnswerOptionId[] [`externalId`]
|