@wix/bex-utils 2.68.0 → 2.70.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/@wix/bex-bundled-mini-essentials/CHANGELOG.md +8 -0
- package/@wix/bex-bundled-mini-essentials/package.json +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/testkit/client-testkit.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/testkit/common.js +15 -0
- package/@wix/bi-logger-os-data/dist/cjs/testkit/common.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/testkit/node-testkit.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js +3 -0
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/testkit/client-testkit.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/testkit/common.js +15 -0
- package/@wix/bi-logger-os-data/dist/esm/testkit/common.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/testkit/node-testkit.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/v2/index.js +3 -0
- package/@wix/bi-logger-os-data/dist/esm/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +3 -0
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +3 -0
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +3 -0
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +3 -0
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +3 -0
- package/@wix/bi-logger-os-data/src/testkit/common.ts +18 -0
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +3 -0
- package/@wix/bi-logger-os-data/src/types.ts +6 -0
- package/@wix/bi-logger-os-data/src/v2/index.ts +3 -0
- package/package.json +3 -3
|
@@ -27,6 +27,9 @@ export declare class BiTestkit {
|
|
|
27
27
|
panel_name: string;
|
|
28
28
|
builderType: string;
|
|
29
29
|
isAiSiteCreation: boolean;
|
|
30
|
+
inputMethod: string;
|
|
31
|
+
resolvedComponentId: string;
|
|
32
|
+
resolvedComponentType: string;
|
|
30
33
|
}>;
|
|
31
34
|
get dpKbMcpServerCallSrc11Evid1992(): EventsFilter<{
|
|
32
35
|
service_status: string;
|
|
@@ -30,6 +30,9 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
30
30
|
panel_name: string;
|
|
31
31
|
builderType: string;
|
|
32
32
|
isAiSiteCreation: boolean;
|
|
33
|
+
inputMethod: string;
|
|
34
|
+
resolvedComponentId: string;
|
|
35
|
+
resolvedComponentType: string;
|
|
33
36
|
}>;
|
|
34
37
|
get dpKbMcpServerCallSrc11Evid1992(): EventsFilter<{
|
|
35
38
|
service_status: string;
|
|
@@ -27,6 +27,9 @@ export type bmOverEditorPanelClickSrc110Evid122Params = {
|
|
|
27
27
|
panel_name?: string;
|
|
28
28
|
builderType?: string;
|
|
29
29
|
isAiSiteCreation?: boolean;
|
|
30
|
+
inputMethod?: string;
|
|
31
|
+
resolvedComponentId?: string;
|
|
32
|
+
resolvedComponentType?: string;
|
|
30
33
|
};
|
|
31
34
|
export type dpKbMcpServerCallSrc11Evid1992Params = {
|
|
32
35
|
service_status?: string;
|
|
@@ -12,6 +12,9 @@ import { LogObject, accountDialogClickItemParams, accountManagerClickOnBackInSid
|
|
|
12
12
|
* @property {string} panel_name - the name of the panel
|
|
13
13
|
* @property {string} builderType - builder type - relevant for BM over editor
|
|
14
14
|
* @property {boolean} isAiSiteCreation - true - user created site using AI Site Creation flow; false- site was created by templates flow
|
|
15
|
+
* @property {string} inputMethod - Defines how the user performed the action (mouse / keyboard)
|
|
16
|
+
* @property {string} resolvedComponentId - Populated only for events firing in InternalContainer context. Equals the component_id that would be emitted if the event was fired directly on that section/header/footer.
|
|
17
|
+
* @property {string} resolvedComponentType - Description: Populated only for events firing in InternalContainer context. Equals the component_type that would be emitted if the event was fired directly on that section/header/footer.
|
|
15
18
|
* @return {LogObject<bmOverEditorPanelClickSrc110Evid122Params>} LogObject<bmOverEditorPanelClickSrc110Evid122Params>
|
|
16
19
|
*/
|
|
17
20
|
export declare function bmOverEditorPanelClickSrc110Evid122(params: bmOverEditorPanelClickSrc110Evid122Params): LogObject<bmOverEditorPanelClickSrc110Evid122Params>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/bi-logger-os-data",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.313.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "schema-logger-generator",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"artifactId": "bi-logger-os-data"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
-
"falconPackageHash": "
|
|
44
|
+
"falconPackageHash": "b0c486f6ec4496fdd43657e4eba34117cf65f5d810eb4662f6302d97",
|
|
45
45
|
"repository": {
|
|
46
46
|
"type": "git",
|
|
47
47
|
"url": "https://github.com/wix-private/bi-schema-loggers.git",
|
|
@@ -58317,6 +58317,24 @@ const schemaObj: SchemaObj = [
|
|
|
58317
58317
|
"type": "BOOL",
|
|
58318
58318
|
"mandatory": false
|
|
58319
58319
|
}
|
|
58320
|
+
,
|
|
58321
|
+
{
|
|
58322
|
+
"inputName": "inputMethod",
|
|
58323
|
+
"type": "STRING",
|
|
58324
|
+
"mandatory": false
|
|
58325
|
+
}
|
|
58326
|
+
,
|
|
58327
|
+
{
|
|
58328
|
+
"inputName": "resolvedComponentId",
|
|
58329
|
+
"type": "STRING",
|
|
58330
|
+
"mandatory": false
|
|
58331
|
+
}
|
|
58332
|
+
,
|
|
58333
|
+
{
|
|
58334
|
+
"inputName": "resolvedComponentType",
|
|
58335
|
+
"type": "STRING",
|
|
58336
|
+
"mandatory": false
|
|
58337
|
+
}
|
|
58320
58338
|
]
|
|
58321
58339
|
} as BiEventSchema
|
|
58322
58340
|
]
|
|
@@ -69,6 +69,9 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
69
69
|
panel_name: string;
|
|
70
70
|
builderType: string;
|
|
71
71
|
isAiSiteCreation: boolean;
|
|
72
|
+
inputMethod: string;
|
|
73
|
+
resolvedComponentId: string;
|
|
74
|
+
resolvedComponentType: string;
|
|
72
75
|
}>(this.util.getRawEvents, 110, 122, this.validate);
|
|
73
76
|
}
|
|
74
77
|
|
|
@@ -36,6 +36,12 @@ export type bmOverEditorPanelClickSrc110Evid122Params = {
|
|
|
36
36
|
builderType?: string;
|
|
37
37
|
// true - user created site using AI Site Creation flow; false- site was created by templates flow
|
|
38
38
|
isAiSiteCreation?: boolean;
|
|
39
|
+
// Defines how the user performed the action (mouse / keyboard)
|
|
40
|
+
inputMethod?: string;
|
|
41
|
+
// Populated only for events firing in InternalContainer context. Equals the component_id that would be emitted if the event was fired directly on that section/header/footer.
|
|
42
|
+
resolvedComponentId?: string;
|
|
43
|
+
// Description: Populated only for events firing in InternalContainer context. Equals the component_type that would be emitted if the event was fired directly on that section/header/footer.
|
|
44
|
+
resolvedComponentType?: string;
|
|
39
45
|
};
|
|
40
46
|
export type dpKbMcpServerCallSrc11Evid1992Params = {
|
|
41
47
|
// the request status
|
|
@@ -13,6 +13,9 @@ import { LogObject, accountDialogClickItemParams, accountManagerClickOnBackInSid
|
|
|
13
13
|
* @property {string} panel_name - the name of the panel
|
|
14
14
|
* @property {string} builderType - builder type - relevant for BM over editor
|
|
15
15
|
* @property {boolean} isAiSiteCreation - true - user created site using AI Site Creation flow; false- site was created by templates flow
|
|
16
|
+
* @property {string} inputMethod - Defines how the user performed the action (mouse / keyboard)
|
|
17
|
+
* @property {string} resolvedComponentId - Populated only for events firing in InternalContainer context. Equals the component_id that would be emitted if the event was fired directly on that section/header/footer.
|
|
18
|
+
* @property {string} resolvedComponentType - Description: Populated only for events firing in InternalContainer context. Equals the component_type that would be emitted if the event was fired directly on that section/header/footer.
|
|
16
19
|
* @return {LogObject<bmOverEditorPanelClickSrc110Evid122Params>} LogObject<bmOverEditorPanelClickSrc110Evid122Params>
|
|
17
20
|
*/
|
|
18
21
|
export function bmOverEditorPanelClickSrc110Evid122(params: bmOverEditorPanelClickSrc110Evid122Params): LogObject<bmOverEditorPanelClickSrc110Evid122Params> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/bex-utils",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.70.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kobi",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@wix/ambassador-items-selection-spi-host-v1-provider": "^1.0.91",
|
|
59
59
|
"@wix/ambassador-media-site-media-v1-file-descriptor": "^1.0.127",
|
|
60
60
|
"@wix/ambassador-os-tags-v1-tag": "^1.0.24",
|
|
61
|
-
"@wix/bex-bundled-mini-essentials": "2.
|
|
61
|
+
"@wix/bex-bundled-mini-essentials": "2.32.0",
|
|
62
62
|
"@wix/bi-logger-os-data": "^1.310.0",
|
|
63
63
|
"@wix/eslint-config-yoshi": "^6.74.0",
|
|
64
64
|
"@wix/jest-yoshi-preset-base": "^6.74.0",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"wallaby": {
|
|
153
153
|
"autoDetect": true
|
|
154
154
|
},
|
|
155
|
-
"falconPackageHash": "
|
|
155
|
+
"falconPackageHash": "41be600d926616a4df370fb022c7d58e8288ba5fd36987933e097606"
|
|
156
156
|
}
|