@wix/bex-utils 2.42.0 → 2.43.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/bi-logger-os-data/dist/cjs/index.js +3 -0
- package/@wix/bi-logger-os-data/dist/cjs/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/testkit/client-testkit.js +3 -0
- 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 +72 -41
- 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 +3 -0
- 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 +55 -45
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/index.js +3 -0
- package/@wix/bi-logger-os-data/dist/esm/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/testkit/client-testkit.js +3 -0
- 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 +72 -41
- 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 +3 -0
- 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 +26 -17
- package/@wix/bi-logger-os-data/dist/esm/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/types/index.d.ts +3 -2
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +16 -9
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +16 -9
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +16 -9
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +25 -18
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/index.ts +6 -2
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +17 -9
- package/@wix/bi-logger-os-data/src/testkit/common.ts +84 -49
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +17 -9
- package/@wix/bi-logger-os-data/src/types.ts +31 -19
- package/@wix/bi-logger-os-data/src/v2/index.ts +28 -18
- package/package.json +3 -3
|
@@ -149,6 +149,7 @@ export declare class BiTestkit {
|
|
|
149
149
|
appId: string;
|
|
150
150
|
filteredListSize: number;
|
|
151
151
|
product: string;
|
|
152
|
+
consumerArtifactId: string;
|
|
152
153
|
}>;
|
|
153
154
|
get newItemCreationEnd(): EventsFilter<{
|
|
154
155
|
resultType: string;
|
|
@@ -175,6 +176,7 @@ export declare class BiTestkit {
|
|
|
175
176
|
appId: string;
|
|
176
177
|
filteredListSize: number;
|
|
177
178
|
product: string;
|
|
179
|
+
consumerArtifactId: string;
|
|
178
180
|
}>;
|
|
179
181
|
get pikachuCategoriesDropdownButtonClicked(): EventsFilter<{
|
|
180
182
|
artifactId: string;
|
|
@@ -224,6 +226,7 @@ export declare class BiTestkit {
|
|
|
224
226
|
hostingPlatformContextId: string;
|
|
225
227
|
theme: string;
|
|
226
228
|
consumerId: string;
|
|
229
|
+
consumerArtifactId: string;
|
|
227
230
|
routerUsage: boolean;
|
|
228
231
|
isCurrentViewCustomMade: boolean;
|
|
229
232
|
artifactIdNew: string;
|
|
@@ -256,6 +259,8 @@ export declare class BiTestkit {
|
|
|
256
259
|
hostingPlatformContextId: string;
|
|
257
260
|
theme: string;
|
|
258
261
|
consumerId: string;
|
|
262
|
+
consumerArtifactId: string;
|
|
263
|
+
route: string;
|
|
259
264
|
routerUsage: boolean;
|
|
260
265
|
isCurrentViewCustomMade: boolean;
|
|
261
266
|
artifactIdNew: string;
|
|
@@ -395,6 +400,8 @@ export declare class BiTestkit {
|
|
|
395
400
|
product: string;
|
|
396
401
|
filterType: string;
|
|
397
402
|
isCustomField: boolean;
|
|
403
|
+
loadingTime: number;
|
|
404
|
+
isOriginComponentLoaded: boolean;
|
|
398
405
|
}>;
|
|
399
406
|
get cairoAllFiltersCleared(): EventsFilter<{
|
|
400
407
|
artifactId: string;
|
|
@@ -1704,6 +1711,9 @@ export declare class BiTestkit {
|
|
|
1704
1711
|
displayed_action: string;
|
|
1705
1712
|
action_was_provided: string;
|
|
1706
1713
|
}>;
|
|
1714
|
+
get retryErrorSrc176Evid103(): EventsFilter<{
|
|
1715
|
+
session_id: string;
|
|
1716
|
+
}>;
|
|
1707
1717
|
get httpClientErrorSrc176Evid404(): EventsFilter<{
|
|
1708
1718
|
request_id: string;
|
|
1709
1719
|
panorama_guid: string;
|
|
@@ -1715,6 +1725,7 @@ export declare class BiTestkit {
|
|
|
1715
1725
|
is_override_error_state_function: string;
|
|
1716
1726
|
error_json: string;
|
|
1717
1727
|
translated_message: string;
|
|
1728
|
+
method: string;
|
|
1718
1729
|
error_message: string;
|
|
1719
1730
|
exception_message: string;
|
|
1720
1731
|
client_error_code: string;
|
|
@@ -1993,6 +2004,7 @@ export declare class BiTestkit {
|
|
|
1993
2004
|
url: Url;
|
|
1994
2005
|
previewUrl: string;
|
|
1995
2006
|
isPatternsPage: boolean;
|
|
2007
|
+
fullRoute: string;
|
|
1996
2008
|
}>;
|
|
1997
2009
|
get dashboardDeleteAndRestoreSiteRestoreSiteClick(): EventsFilter<{
|
|
1998
2010
|
view_type: string;
|
|
@@ -4820,7 +4832,6 @@ export declare class BiTestkit {
|
|
|
4820
4832
|
number_of_invalid_emails: number;
|
|
4821
4833
|
invite_role_ids: string;
|
|
4822
4834
|
assignment_type: string;
|
|
4823
|
-
number_of_existing_emails: number;
|
|
4824
4835
|
origin: string;
|
|
4825
4836
|
invite_id: GUID;
|
|
4826
4837
|
num_sites: number;
|
|
@@ -4830,8 +4841,6 @@ export declare class BiTestkit {
|
|
|
4830
4841
|
num_folders: number;
|
|
4831
4842
|
contributors_quota: number;
|
|
4832
4843
|
invite_role_names: string;
|
|
4833
|
-
Invite_predefined_role_ids: string;
|
|
4834
|
-
invite_custom_role_ids: string;
|
|
4835
4844
|
contributors_count: number;
|
|
4836
4845
|
app_id: string;
|
|
4837
4846
|
Has_ai_assistant: boolean;
|
|
@@ -7036,15 +7045,10 @@ export declare class BiTestkit {
|
|
|
7036
7045
|
}>;
|
|
7037
7046
|
get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874(): EventsFilter<{
|
|
7038
7047
|
context: string;
|
|
7039
|
-
number_of_invalid_emails: number;
|
|
7040
|
-
invite_custom_role_ids: string;
|
|
7041
|
-
assignment_type: string;
|
|
7042
|
-
number_of_existing_emails: number;
|
|
7043
7048
|
origin: string;
|
|
7044
7049
|
invite_id: GUID;
|
|
7045
|
-
platform: string;
|
|
7046
7050
|
number_of_valid_emails: number;
|
|
7047
|
-
|
|
7051
|
+
role_ids: string;
|
|
7048
7052
|
app_id: string;
|
|
7049
7053
|
Has_ai_assistant: boolean;
|
|
7050
7054
|
}>;
|
|
@@ -7330,6 +7334,7 @@ export declare class BiTestkit {
|
|
|
7330
7334
|
favoritesName: string;
|
|
7331
7335
|
wasSuccess: boolean;
|
|
7332
7336
|
hostingPlatformContextId: string;
|
|
7337
|
+
origin: string;
|
|
7333
7338
|
}>;
|
|
7334
7339
|
get dashboardSettingsUpdate(): EventsFilter<{
|
|
7335
7340
|
name: string;
|
|
@@ -10717,11 +10722,13 @@ export declare class BiTestkit {
|
|
|
10717
10722
|
url: Url;
|
|
10718
10723
|
origin: string;
|
|
10719
10724
|
action: string;
|
|
10725
|
+
esi: string;
|
|
10720
10726
|
}>;
|
|
10721
10727
|
get cookiesBannerSettingsWindowCta(): EventsFilter<{
|
|
10722
10728
|
url: Url;
|
|
10723
10729
|
toggle: boolean;
|
|
10724
10730
|
action: string;
|
|
10731
|
+
esi: string;
|
|
10725
10732
|
}>;
|
|
10726
10733
|
get cookiesBannerPrivacyPolicyClicked(): EventsFilter<{
|
|
10727
10734
|
url: Url;
|
|
@@ -152,6 +152,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
152
152
|
appId: string;
|
|
153
153
|
filteredListSize: number;
|
|
154
154
|
product: string;
|
|
155
|
+
consumerArtifactId: string;
|
|
155
156
|
}>;
|
|
156
157
|
get newItemCreationEnd(): EventsFilter<{
|
|
157
158
|
resultType: string;
|
|
@@ -178,6 +179,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
178
179
|
appId: string;
|
|
179
180
|
filteredListSize: number;
|
|
180
181
|
product: string;
|
|
182
|
+
consumerArtifactId: string;
|
|
181
183
|
}>;
|
|
182
184
|
get pikachuCategoriesDropdownButtonClicked(): EventsFilter<{
|
|
183
185
|
artifactId: string;
|
|
@@ -227,6 +229,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
227
229
|
hostingPlatformContextId: string;
|
|
228
230
|
theme: string;
|
|
229
231
|
consumerId: string;
|
|
232
|
+
consumerArtifactId: string;
|
|
230
233
|
routerUsage: boolean;
|
|
231
234
|
isCurrentViewCustomMade: boolean;
|
|
232
235
|
artifactIdNew: string;
|
|
@@ -259,6 +262,8 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
259
262
|
hostingPlatformContextId: string;
|
|
260
263
|
theme: string;
|
|
261
264
|
consumerId: string;
|
|
265
|
+
consumerArtifactId: string;
|
|
266
|
+
route: string;
|
|
262
267
|
routerUsage: boolean;
|
|
263
268
|
isCurrentViewCustomMade: boolean;
|
|
264
269
|
artifactIdNew: string;
|
|
@@ -398,6 +403,8 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
398
403
|
product: string;
|
|
399
404
|
filterType: string;
|
|
400
405
|
isCustomField: boolean;
|
|
406
|
+
loadingTime: number;
|
|
407
|
+
isOriginComponentLoaded: boolean;
|
|
401
408
|
}>;
|
|
402
409
|
get cairoAllFiltersCleared(): EventsFilter<{
|
|
403
410
|
artifactId: string;
|
|
@@ -1707,6 +1714,9 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1707
1714
|
displayed_action: string;
|
|
1708
1715
|
action_was_provided: string;
|
|
1709
1716
|
}>;
|
|
1717
|
+
get retryErrorSrc176Evid103(): EventsFilter<{
|
|
1718
|
+
session_id: string;
|
|
1719
|
+
}>;
|
|
1710
1720
|
get httpClientErrorSrc176Evid404(): EventsFilter<{
|
|
1711
1721
|
request_id: string;
|
|
1712
1722
|
panorama_guid: string;
|
|
@@ -1718,6 +1728,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1718
1728
|
is_override_error_state_function: string;
|
|
1719
1729
|
error_json: string;
|
|
1720
1730
|
translated_message: string;
|
|
1731
|
+
method: string;
|
|
1721
1732
|
error_message: string;
|
|
1722
1733
|
exception_message: string;
|
|
1723
1734
|
client_error_code: string;
|
|
@@ -1996,6 +2007,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1996
2007
|
url: Url;
|
|
1997
2008
|
previewUrl: string;
|
|
1998
2009
|
isPatternsPage: boolean;
|
|
2010
|
+
fullRoute: string;
|
|
1999
2011
|
}>;
|
|
2000
2012
|
get dashboardDeleteAndRestoreSiteRestoreSiteClick(): EventsFilter<{
|
|
2001
2013
|
view_type: string;
|
|
@@ -4823,7 +4835,6 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
4823
4835
|
number_of_invalid_emails: number;
|
|
4824
4836
|
invite_role_ids: string;
|
|
4825
4837
|
assignment_type: string;
|
|
4826
|
-
number_of_existing_emails: number;
|
|
4827
4838
|
origin: string;
|
|
4828
4839
|
invite_id: GUID;
|
|
4829
4840
|
num_sites: number;
|
|
@@ -4833,8 +4844,6 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
4833
4844
|
num_folders: number;
|
|
4834
4845
|
contributors_quota: number;
|
|
4835
4846
|
invite_role_names: string;
|
|
4836
|
-
Invite_predefined_role_ids: string;
|
|
4837
|
-
invite_custom_role_ids: string;
|
|
4838
4847
|
contributors_count: number;
|
|
4839
4848
|
app_id: string;
|
|
4840
4849
|
Has_ai_assistant: boolean;
|
|
@@ -7039,15 +7048,10 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
7039
7048
|
}>;
|
|
7040
7049
|
get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874(): EventsFilter<{
|
|
7041
7050
|
context: string;
|
|
7042
|
-
number_of_invalid_emails: number;
|
|
7043
|
-
invite_custom_role_ids: string;
|
|
7044
|
-
assignment_type: string;
|
|
7045
|
-
number_of_existing_emails: number;
|
|
7046
7051
|
origin: string;
|
|
7047
7052
|
invite_id: GUID;
|
|
7048
|
-
platform: string;
|
|
7049
7053
|
number_of_valid_emails: number;
|
|
7050
|
-
|
|
7054
|
+
role_ids: string;
|
|
7051
7055
|
app_id: string;
|
|
7052
7056
|
Has_ai_assistant: boolean;
|
|
7053
7057
|
}>;
|
|
@@ -7333,6 +7337,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
7333
7337
|
favoritesName: string;
|
|
7334
7338
|
wasSuccess: boolean;
|
|
7335
7339
|
hostingPlatformContextId: string;
|
|
7340
|
+
origin: string;
|
|
7336
7341
|
}>;
|
|
7337
7342
|
get dashboardSettingsUpdate(): EventsFilter<{
|
|
7338
7343
|
name: string;
|
|
@@ -10720,11 +10725,13 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
10720
10725
|
url: Url;
|
|
10721
10726
|
origin: string;
|
|
10722
10727
|
action: string;
|
|
10728
|
+
esi: string;
|
|
10723
10729
|
}>;
|
|
10724
10730
|
get cookiesBannerSettingsWindowCta(): EventsFilter<{
|
|
10725
10731
|
url: Url;
|
|
10726
10732
|
toggle: boolean;
|
|
10727
10733
|
action: string;
|
|
10734
|
+
esi: string;
|
|
10728
10735
|
}>;
|
|
10729
10736
|
get cookiesBannerPrivacyPolicyClicked(): EventsFilter<{
|
|
10730
10737
|
url: Url;
|
|
@@ -149,6 +149,7 @@ export type newItemCreationStartParams = {
|
|
|
149
149
|
appId?: string;
|
|
150
150
|
filteredListSize?: number;
|
|
151
151
|
product?: string;
|
|
152
|
+
consumerArtifactId?: string;
|
|
152
153
|
};
|
|
153
154
|
export type newItemCreationEndParams = {
|
|
154
155
|
resultType?: string;
|
|
@@ -175,6 +176,7 @@ export type newItemCreationEndParams = {
|
|
|
175
176
|
appId?: string;
|
|
176
177
|
filteredListSize?: number;
|
|
177
178
|
product?: string;
|
|
179
|
+
consumerArtifactId?: string;
|
|
178
180
|
};
|
|
179
181
|
export type pikachuCategoriesDropdownButtonClickedParams = {
|
|
180
182
|
artifactId?: string;
|
|
@@ -224,6 +226,7 @@ export type loadStartParams = {
|
|
|
224
226
|
hostingPlatformContextId?: string;
|
|
225
227
|
theme?: string;
|
|
226
228
|
consumerId?: string;
|
|
229
|
+
consumerArtifactId?: string;
|
|
227
230
|
routerUsage?: boolean;
|
|
228
231
|
isCurrentViewCustomMade?: boolean;
|
|
229
232
|
artifactIdNew?: string;
|
|
@@ -256,6 +259,8 @@ export type loadEndParams = {
|
|
|
256
259
|
hostingPlatformContextId?: string;
|
|
257
260
|
theme?: string;
|
|
258
261
|
consumerId?: string;
|
|
262
|
+
consumerArtifactId?: string;
|
|
263
|
+
route?: string;
|
|
259
264
|
routerUsage?: boolean;
|
|
260
265
|
isCurrentViewCustomMade?: boolean;
|
|
261
266
|
artifactIdNew?: string;
|
|
@@ -395,6 +400,8 @@ export type cairoFilterToggledParams = {
|
|
|
395
400
|
product?: string;
|
|
396
401
|
filterType?: string;
|
|
397
402
|
isCustomField?: boolean;
|
|
403
|
+
loadingTime?: number;
|
|
404
|
+
isOriginComponentLoaded?: boolean;
|
|
398
405
|
};
|
|
399
406
|
export type cairoAllFiltersClearedParams = {
|
|
400
407
|
artifactId?: string;
|
|
@@ -1704,6 +1711,9 @@ export type showErrorSrc176Evid102Params = {
|
|
|
1704
1711
|
displayed_action?: string;
|
|
1705
1712
|
action_was_provided?: string;
|
|
1706
1713
|
};
|
|
1714
|
+
export type retryErrorSrc176Evid103Params = {
|
|
1715
|
+
session_id?: string;
|
|
1716
|
+
};
|
|
1707
1717
|
export type httpClientErrorSrc176Evid404Params = {
|
|
1708
1718
|
request_id?: string;
|
|
1709
1719
|
panorama_guid?: string;
|
|
@@ -1715,6 +1725,7 @@ export type httpClientErrorSrc176Evid404Params = {
|
|
|
1715
1725
|
is_override_error_state_function?: string;
|
|
1716
1726
|
error_json?: string;
|
|
1717
1727
|
translated_message?: string;
|
|
1728
|
+
method?: string;
|
|
1718
1729
|
error_message?: string;
|
|
1719
1730
|
exception_message?: string;
|
|
1720
1731
|
client_error_code?: string;
|
|
@@ -1993,6 +2004,7 @@ export type pageClassifierSrc5Evid10000Params = {
|
|
|
1993
2004
|
url?: Url;
|
|
1994
2005
|
previewUrl?: string;
|
|
1995
2006
|
isPatternsPage?: boolean;
|
|
2007
|
+
fullRoute?: string;
|
|
1996
2008
|
};
|
|
1997
2009
|
export type dashboardDeleteAndRestoreSiteRestoreSiteClickParams = {
|
|
1998
2010
|
view_type?: string;
|
|
@@ -4820,7 +4832,6 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
4820
4832
|
number_of_invalid_emails?: number;
|
|
4821
4833
|
invite_role_ids?: string;
|
|
4822
4834
|
assignment_type?: string;
|
|
4823
|
-
number_of_existing_emails?: number;
|
|
4824
4835
|
origin?: string;
|
|
4825
4836
|
invite_id?: GUID;
|
|
4826
4837
|
num_sites?: number;
|
|
@@ -4830,8 +4841,6 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
4830
4841
|
num_folders?: number;
|
|
4831
4842
|
contributors_quota?: number;
|
|
4832
4843
|
invite_role_names?: string;
|
|
4833
|
-
Invite_predefined_role_ids?: string;
|
|
4834
|
-
invite_custom_role_ids?: string;
|
|
4835
4844
|
contributors_count?: number;
|
|
4836
4845
|
app_id?: string;
|
|
4837
4846
|
Has_ai_assistant?: boolean;
|
|
@@ -7036,15 +7045,10 @@ export type rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params = {
|
|
|
7036
7045
|
};
|
|
7037
7046
|
export type rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params = {
|
|
7038
7047
|
context?: string;
|
|
7039
|
-
number_of_invalid_emails?: number;
|
|
7040
|
-
invite_custom_role_ids?: string;
|
|
7041
|
-
assignment_type?: string;
|
|
7042
|
-
number_of_existing_emails?: number;
|
|
7043
7048
|
origin?: string;
|
|
7044
7049
|
invite_id?: GUID;
|
|
7045
|
-
platform?: string;
|
|
7046
7050
|
number_of_valid_emails?: number;
|
|
7047
|
-
|
|
7051
|
+
role_ids?: string;
|
|
7048
7052
|
app_id?: string;
|
|
7049
7053
|
Has_ai_assistant?: boolean;
|
|
7050
7054
|
};
|
|
@@ -7330,6 +7334,7 @@ export type osFavoritesPagesEditParams = {
|
|
|
7330
7334
|
favoritesName?: string;
|
|
7331
7335
|
wasSuccess?: boolean;
|
|
7332
7336
|
hostingPlatformContextId?: string;
|
|
7337
|
+
origin?: string;
|
|
7333
7338
|
};
|
|
7334
7339
|
export type dashboardSettingsUpdateParams = {
|
|
7335
7340
|
name?: string;
|
|
@@ -10717,11 +10722,13 @@ export type cookiesBannerCtaParams = {
|
|
|
10717
10722
|
url?: Url;
|
|
10718
10723
|
origin?: string;
|
|
10719
10724
|
action?: string;
|
|
10725
|
+
esi?: string;
|
|
10720
10726
|
};
|
|
10721
10727
|
export type cookiesBannerSettingsWindowCtaParams = {
|
|
10722
10728
|
url?: Url;
|
|
10723
10729
|
toggle?: boolean;
|
|
10724
10730
|
action?: string;
|
|
10731
|
+
esi?: string;
|
|
10725
10732
|
};
|
|
10726
10733
|
export type cookiesBannerPrivacyPolicyClickedParams = {
|
|
10727
10734
|
url?: Url;
|