@wix/bex-utils 2.41.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 +21 -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 +21 -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 +376 -19
- 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 +21 -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 +183 -33
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/index.js +21 -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 +21 -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 +376 -19
- 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 +21 -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 +148 -5
- 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 +9 -2
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +81 -4
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +81 -4
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +81 -4
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +135 -6
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/index.ts +30 -2
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +100 -4
- package/@wix/bi-logger-os-data/src/testkit/common.ts +435 -22
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +100 -4
- package/@wix/bi-logger-os-data/src/types.ts +149 -8
- package/@wix/bi-logger-os-data/src/v2/index.ts +156 -6
- 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;
|
|
@@ -223,6 +225,8 @@ export declare class BiTestkit {
|
|
|
223
225
|
product: string;
|
|
224
226
|
hostingPlatformContextId: string;
|
|
225
227
|
theme: string;
|
|
228
|
+
consumerId: string;
|
|
229
|
+
consumerArtifactId: string;
|
|
226
230
|
routerUsage: boolean;
|
|
227
231
|
isCurrentViewCustomMade: boolean;
|
|
228
232
|
artifactIdNew: string;
|
|
@@ -254,6 +258,9 @@ export declare class BiTestkit {
|
|
|
254
258
|
product: string;
|
|
255
259
|
hostingPlatformContextId: string;
|
|
256
260
|
theme: string;
|
|
261
|
+
consumerId: string;
|
|
262
|
+
consumerArtifactId: string;
|
|
263
|
+
route: string;
|
|
257
264
|
routerUsage: boolean;
|
|
258
265
|
isCurrentViewCustomMade: boolean;
|
|
259
266
|
artifactIdNew: string;
|
|
@@ -393,6 +400,8 @@ export declare class BiTestkit {
|
|
|
393
400
|
product: string;
|
|
394
401
|
filterType: string;
|
|
395
402
|
isCustomField: boolean;
|
|
403
|
+
loadingTime: number;
|
|
404
|
+
isOriginComponentLoaded: boolean;
|
|
396
405
|
}>;
|
|
397
406
|
get cairoAllFiltersCleared(): EventsFilter<{
|
|
398
407
|
artifactId: string;
|
|
@@ -1464,6 +1473,7 @@ export declare class BiTestkit {
|
|
|
1464
1473
|
itemId: string;
|
|
1465
1474
|
appId: string;
|
|
1466
1475
|
product: string;
|
|
1476
|
+
theme: string;
|
|
1467
1477
|
}>;
|
|
1468
1478
|
get cairoTagsWidgetClickOnCta(): EventsFilter<{
|
|
1469
1479
|
artifactId: string;
|
|
@@ -1480,6 +1490,7 @@ export declare class BiTestkit {
|
|
|
1480
1490
|
itemId: string;
|
|
1481
1491
|
appId: string;
|
|
1482
1492
|
product: string;
|
|
1493
|
+
theme: string;
|
|
1483
1494
|
}>;
|
|
1484
1495
|
get cairoTagsAssignTag(): EventsFilter<{
|
|
1485
1496
|
artifactId: string;
|
|
@@ -1500,6 +1511,7 @@ export declare class BiTestkit {
|
|
|
1500
1511
|
appId: string;
|
|
1501
1512
|
isFromSearch: boolean;
|
|
1502
1513
|
product: string;
|
|
1514
|
+
theme: string;
|
|
1503
1515
|
}>;
|
|
1504
1516
|
get cairoPageDiscardChangesBeforeSave(): EventsFilter<{
|
|
1505
1517
|
artifactId: string;
|
|
@@ -1685,6 +1697,7 @@ export declare class BiTestkit {
|
|
|
1685
1697
|
}>;
|
|
1686
1698
|
get getResolvedErrorSrc176Evid101(): EventsFilter<{
|
|
1687
1699
|
session_id: string;
|
|
1700
|
+
isEn: boolean;
|
|
1688
1701
|
mapped_error_not_available: string;
|
|
1689
1702
|
translated_message: string;
|
|
1690
1703
|
action_text: string;
|
|
@@ -1693,10 +1706,14 @@ export declare class BiTestkit {
|
|
|
1693
1706
|
}>;
|
|
1694
1707
|
get showErrorSrc176Evid102(): EventsFilter<{
|
|
1695
1708
|
session_id: string;
|
|
1709
|
+
isEn: boolean;
|
|
1696
1710
|
displayed_message: string;
|
|
1697
1711
|
displayed_action: string;
|
|
1698
1712
|
action_was_provided: string;
|
|
1699
1713
|
}>;
|
|
1714
|
+
get retryErrorSrc176Evid103(): EventsFilter<{
|
|
1715
|
+
session_id: string;
|
|
1716
|
+
}>;
|
|
1700
1717
|
get httpClientErrorSrc176Evid404(): EventsFilter<{
|
|
1701
1718
|
request_id: string;
|
|
1702
1719
|
panorama_guid: string;
|
|
@@ -1708,6 +1725,7 @@ export declare class BiTestkit {
|
|
|
1708
1725
|
is_override_error_state_function: string;
|
|
1709
1726
|
error_json: string;
|
|
1710
1727
|
translated_message: string;
|
|
1728
|
+
method: string;
|
|
1711
1729
|
error_message: string;
|
|
1712
1730
|
exception_message: string;
|
|
1713
1731
|
client_error_code: string;
|
|
@@ -1985,6 +2003,8 @@ export declare class BiTestkit {
|
|
|
1985
2003
|
score: number;
|
|
1986
2004
|
url: Url;
|
|
1987
2005
|
previewUrl: string;
|
|
2006
|
+
isPatternsPage: boolean;
|
|
2007
|
+
fullRoute: string;
|
|
1988
2008
|
}>;
|
|
1989
2009
|
get dashboardDeleteAndRestoreSiteRestoreSiteClick(): EventsFilter<{
|
|
1990
2010
|
view_type: string;
|
|
@@ -4812,7 +4832,6 @@ export declare class BiTestkit {
|
|
|
4812
4832
|
number_of_invalid_emails: number;
|
|
4813
4833
|
invite_role_ids: string;
|
|
4814
4834
|
assignment_type: string;
|
|
4815
|
-
number_of_existing_emails: number;
|
|
4816
4835
|
origin: string;
|
|
4817
4836
|
invite_id: GUID;
|
|
4818
4837
|
num_sites: number;
|
|
@@ -4821,6 +4840,7 @@ export declare class BiTestkit {
|
|
|
4821
4840
|
number_of_valid_emails: number;
|
|
4822
4841
|
num_folders: number;
|
|
4823
4842
|
contributors_quota: number;
|
|
4843
|
+
invite_role_names: string;
|
|
4824
4844
|
contributors_count: number;
|
|
4825
4845
|
app_id: string;
|
|
4826
4846
|
Has_ai_assistant: boolean;
|
|
@@ -4873,14 +4893,12 @@ export declare class BiTestkit {
|
|
|
4873
4893
|
role_id: string;
|
|
4874
4894
|
role_type: string;
|
|
4875
4895
|
origin: string;
|
|
4876
|
-
platform: string;
|
|
4877
|
-
msid: GUID;
|
|
4878
4896
|
}>;
|
|
4879
4897
|
get teamManagementManageRolesEditCustomRole(): EventsFilter<{
|
|
4880
4898
|
context: string;
|
|
4881
4899
|
role_id: string;
|
|
4882
|
-
platform: string;
|
|
4883
4900
|
msid: GUID;
|
|
4901
|
+
origin: string;
|
|
4884
4902
|
}>;
|
|
4885
4903
|
get teamManagementManageRolesUpdateRole(): EventsFilter<{
|
|
4886
4904
|
num_scopes: number;
|
|
@@ -7001,12 +7019,68 @@ export declare class BiTestkit {
|
|
|
7001
7019
|
invite_role: string;
|
|
7002
7020
|
platform: string;
|
|
7003
7021
|
}>;
|
|
7022
|
+
get leavingWithoutSavingModalOpenedSrc5Evid1858(): EventsFilter<{
|
|
7023
|
+
hosting_platform: string;
|
|
7024
|
+
page_id: string;
|
|
7025
|
+
page_name: string;
|
|
7026
|
+
route: string;
|
|
7027
|
+
hosting_platform_context_id: string;
|
|
7028
|
+
internal_route: string;
|
|
7029
|
+
displayMode: string;
|
|
7030
|
+
}>;
|
|
7004
7031
|
get dashboardContributorsClickOnMangeRolesAndPermissions(): EventsFilter<{
|
|
7005
7032
|
view_type: string;
|
|
7006
7033
|
platform: string;
|
|
7007
7034
|
hosting: string;
|
|
7008
7035
|
msid: GUID;
|
|
7009
7036
|
}>;
|
|
7037
|
+
get rolesAndPermissionsManageRolesEditRoleSrc5Evid1871(): EventsFilter<{
|
|
7038
|
+
context: string;
|
|
7039
|
+
role_id: string;
|
|
7040
|
+
role_type: string;
|
|
7041
|
+
origin: string;
|
|
7042
|
+
platform: string;
|
|
7043
|
+
role_name: string;
|
|
7044
|
+
Has_ai_assistant: boolean;
|
|
7045
|
+
}>;
|
|
7046
|
+
get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874(): EventsFilter<{
|
|
7047
|
+
context: string;
|
|
7048
|
+
origin: string;
|
|
7049
|
+
invite_id: GUID;
|
|
7050
|
+
number_of_valid_emails: number;
|
|
7051
|
+
role_ids: string;
|
|
7052
|
+
app_id: string;
|
|
7053
|
+
Has_ai_assistant: boolean;
|
|
7054
|
+
}>;
|
|
7055
|
+
get restoreSiteModalOpenedSrc5Evid1875(): EventsFilter<{
|
|
7056
|
+
hosting_platform: string;
|
|
7057
|
+
page_id: string;
|
|
7058
|
+
page_name: string;
|
|
7059
|
+
route: string;
|
|
7060
|
+
hosting_platform_context_id: string;
|
|
7061
|
+
internal_route: string;
|
|
7062
|
+
origin: string;
|
|
7063
|
+
}>;
|
|
7064
|
+
get restoreSiteModalCtaClickedSrc5Evid1876(): EventsFilter<{
|
|
7065
|
+
hosting_platform: string;
|
|
7066
|
+
page_id: string;
|
|
7067
|
+
page_name: string;
|
|
7068
|
+
route: string;
|
|
7069
|
+
hosting_platform_context_id: string;
|
|
7070
|
+
internal_route: string;
|
|
7071
|
+
cta: string;
|
|
7072
|
+
origin: string;
|
|
7073
|
+
}>;
|
|
7074
|
+
get leavingWithoutSavingModalCtaClickedSrc5Evid1878(): EventsFilter<{
|
|
7075
|
+
hosting_platform: string;
|
|
7076
|
+
page_id: string;
|
|
7077
|
+
page_name: string;
|
|
7078
|
+
route: string;
|
|
7079
|
+
hosting_platform_context_id: string;
|
|
7080
|
+
internal_route: string;
|
|
7081
|
+
cta: string;
|
|
7082
|
+
displayMode: string;
|
|
7083
|
+
}>;
|
|
7010
7084
|
get ascendHoverOnUpgradeAscend(): EventsFilter<{
|
|
7011
7085
|
appName: string;
|
|
7012
7086
|
uuid: GUID;
|
|
@@ -7260,6 +7334,7 @@ export declare class BiTestkit {
|
|
|
7260
7334
|
favoritesName: string;
|
|
7261
7335
|
wasSuccess: boolean;
|
|
7262
7336
|
hostingPlatformContextId: string;
|
|
7337
|
+
origin: string;
|
|
7263
7338
|
}>;
|
|
7264
7339
|
get dashboardSettingsUpdate(): EventsFilter<{
|
|
7265
7340
|
name: string;
|
|
@@ -10647,11 +10722,13 @@ export declare class BiTestkit {
|
|
|
10647
10722
|
url: Url;
|
|
10648
10723
|
origin: string;
|
|
10649
10724
|
action: string;
|
|
10725
|
+
esi: string;
|
|
10650
10726
|
}>;
|
|
10651
10727
|
get cookiesBannerSettingsWindowCta(): EventsFilter<{
|
|
10652
10728
|
url: Url;
|
|
10653
10729
|
toggle: boolean;
|
|
10654
10730
|
action: string;
|
|
10731
|
+
esi: string;
|
|
10655
10732
|
}>;
|
|
10656
10733
|
get cookiesBannerPrivacyPolicyClicked(): EventsFilter<{
|
|
10657
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;
|
|
@@ -226,6 +228,8 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
226
228
|
product: string;
|
|
227
229
|
hostingPlatformContextId: string;
|
|
228
230
|
theme: string;
|
|
231
|
+
consumerId: string;
|
|
232
|
+
consumerArtifactId: string;
|
|
229
233
|
routerUsage: boolean;
|
|
230
234
|
isCurrentViewCustomMade: boolean;
|
|
231
235
|
artifactIdNew: string;
|
|
@@ -257,6 +261,9 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
257
261
|
product: string;
|
|
258
262
|
hostingPlatformContextId: string;
|
|
259
263
|
theme: string;
|
|
264
|
+
consumerId: string;
|
|
265
|
+
consumerArtifactId: string;
|
|
266
|
+
route: string;
|
|
260
267
|
routerUsage: boolean;
|
|
261
268
|
isCurrentViewCustomMade: boolean;
|
|
262
269
|
artifactIdNew: string;
|
|
@@ -396,6 +403,8 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
396
403
|
product: string;
|
|
397
404
|
filterType: string;
|
|
398
405
|
isCustomField: boolean;
|
|
406
|
+
loadingTime: number;
|
|
407
|
+
isOriginComponentLoaded: boolean;
|
|
399
408
|
}>;
|
|
400
409
|
get cairoAllFiltersCleared(): EventsFilter<{
|
|
401
410
|
artifactId: string;
|
|
@@ -1467,6 +1476,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1467
1476
|
itemId: string;
|
|
1468
1477
|
appId: string;
|
|
1469
1478
|
product: string;
|
|
1479
|
+
theme: string;
|
|
1470
1480
|
}>;
|
|
1471
1481
|
get cairoTagsWidgetClickOnCta(): EventsFilter<{
|
|
1472
1482
|
artifactId: string;
|
|
@@ -1483,6 +1493,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1483
1493
|
itemId: string;
|
|
1484
1494
|
appId: string;
|
|
1485
1495
|
product: string;
|
|
1496
|
+
theme: string;
|
|
1486
1497
|
}>;
|
|
1487
1498
|
get cairoTagsAssignTag(): EventsFilter<{
|
|
1488
1499
|
artifactId: string;
|
|
@@ -1503,6 +1514,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1503
1514
|
appId: string;
|
|
1504
1515
|
isFromSearch: boolean;
|
|
1505
1516
|
product: string;
|
|
1517
|
+
theme: string;
|
|
1506
1518
|
}>;
|
|
1507
1519
|
get cairoPageDiscardChangesBeforeSave(): EventsFilter<{
|
|
1508
1520
|
artifactId: string;
|
|
@@ -1688,6 +1700,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1688
1700
|
}>;
|
|
1689
1701
|
get getResolvedErrorSrc176Evid101(): EventsFilter<{
|
|
1690
1702
|
session_id: string;
|
|
1703
|
+
isEn: boolean;
|
|
1691
1704
|
mapped_error_not_available: string;
|
|
1692
1705
|
translated_message: string;
|
|
1693
1706
|
action_text: string;
|
|
@@ -1696,10 +1709,14 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1696
1709
|
}>;
|
|
1697
1710
|
get showErrorSrc176Evid102(): EventsFilter<{
|
|
1698
1711
|
session_id: string;
|
|
1712
|
+
isEn: boolean;
|
|
1699
1713
|
displayed_message: string;
|
|
1700
1714
|
displayed_action: string;
|
|
1701
1715
|
action_was_provided: string;
|
|
1702
1716
|
}>;
|
|
1717
|
+
get retryErrorSrc176Evid103(): EventsFilter<{
|
|
1718
|
+
session_id: string;
|
|
1719
|
+
}>;
|
|
1703
1720
|
get httpClientErrorSrc176Evid404(): EventsFilter<{
|
|
1704
1721
|
request_id: string;
|
|
1705
1722
|
panorama_guid: string;
|
|
@@ -1711,6 +1728,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1711
1728
|
is_override_error_state_function: string;
|
|
1712
1729
|
error_json: string;
|
|
1713
1730
|
translated_message: string;
|
|
1731
|
+
method: string;
|
|
1714
1732
|
error_message: string;
|
|
1715
1733
|
exception_message: string;
|
|
1716
1734
|
client_error_code: string;
|
|
@@ -1988,6 +2006,8 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1988
2006
|
score: number;
|
|
1989
2007
|
url: Url;
|
|
1990
2008
|
previewUrl: string;
|
|
2009
|
+
isPatternsPage: boolean;
|
|
2010
|
+
fullRoute: string;
|
|
1991
2011
|
}>;
|
|
1992
2012
|
get dashboardDeleteAndRestoreSiteRestoreSiteClick(): EventsFilter<{
|
|
1993
2013
|
view_type: string;
|
|
@@ -4815,7 +4835,6 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
4815
4835
|
number_of_invalid_emails: number;
|
|
4816
4836
|
invite_role_ids: string;
|
|
4817
4837
|
assignment_type: string;
|
|
4818
|
-
number_of_existing_emails: number;
|
|
4819
4838
|
origin: string;
|
|
4820
4839
|
invite_id: GUID;
|
|
4821
4840
|
num_sites: number;
|
|
@@ -4824,6 +4843,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
4824
4843
|
number_of_valid_emails: number;
|
|
4825
4844
|
num_folders: number;
|
|
4826
4845
|
contributors_quota: number;
|
|
4846
|
+
invite_role_names: string;
|
|
4827
4847
|
contributors_count: number;
|
|
4828
4848
|
app_id: string;
|
|
4829
4849
|
Has_ai_assistant: boolean;
|
|
@@ -4876,14 +4896,12 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
4876
4896
|
role_id: string;
|
|
4877
4897
|
role_type: string;
|
|
4878
4898
|
origin: string;
|
|
4879
|
-
platform: string;
|
|
4880
|
-
msid: GUID;
|
|
4881
4899
|
}>;
|
|
4882
4900
|
get teamManagementManageRolesEditCustomRole(): EventsFilter<{
|
|
4883
4901
|
context: string;
|
|
4884
4902
|
role_id: string;
|
|
4885
|
-
platform: string;
|
|
4886
4903
|
msid: GUID;
|
|
4904
|
+
origin: string;
|
|
4887
4905
|
}>;
|
|
4888
4906
|
get teamManagementManageRolesUpdateRole(): EventsFilter<{
|
|
4889
4907
|
num_scopes: number;
|
|
@@ -7004,12 +7022,68 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
7004
7022
|
invite_role: string;
|
|
7005
7023
|
platform: string;
|
|
7006
7024
|
}>;
|
|
7025
|
+
get leavingWithoutSavingModalOpenedSrc5Evid1858(): EventsFilter<{
|
|
7026
|
+
hosting_platform: string;
|
|
7027
|
+
page_id: string;
|
|
7028
|
+
page_name: string;
|
|
7029
|
+
route: string;
|
|
7030
|
+
hosting_platform_context_id: string;
|
|
7031
|
+
internal_route: string;
|
|
7032
|
+
displayMode: string;
|
|
7033
|
+
}>;
|
|
7007
7034
|
get dashboardContributorsClickOnMangeRolesAndPermissions(): EventsFilter<{
|
|
7008
7035
|
view_type: string;
|
|
7009
7036
|
platform: string;
|
|
7010
7037
|
hosting: string;
|
|
7011
7038
|
msid: GUID;
|
|
7012
7039
|
}>;
|
|
7040
|
+
get rolesAndPermissionsManageRolesEditRoleSrc5Evid1871(): EventsFilter<{
|
|
7041
|
+
context: string;
|
|
7042
|
+
role_id: string;
|
|
7043
|
+
role_type: string;
|
|
7044
|
+
origin: string;
|
|
7045
|
+
platform: string;
|
|
7046
|
+
role_name: string;
|
|
7047
|
+
Has_ai_assistant: boolean;
|
|
7048
|
+
}>;
|
|
7049
|
+
get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874(): EventsFilter<{
|
|
7050
|
+
context: string;
|
|
7051
|
+
origin: string;
|
|
7052
|
+
invite_id: GUID;
|
|
7053
|
+
number_of_valid_emails: number;
|
|
7054
|
+
role_ids: string;
|
|
7055
|
+
app_id: string;
|
|
7056
|
+
Has_ai_assistant: boolean;
|
|
7057
|
+
}>;
|
|
7058
|
+
get restoreSiteModalOpenedSrc5Evid1875(): EventsFilter<{
|
|
7059
|
+
hosting_platform: string;
|
|
7060
|
+
page_id: string;
|
|
7061
|
+
page_name: string;
|
|
7062
|
+
route: string;
|
|
7063
|
+
hosting_platform_context_id: string;
|
|
7064
|
+
internal_route: string;
|
|
7065
|
+
origin: string;
|
|
7066
|
+
}>;
|
|
7067
|
+
get restoreSiteModalCtaClickedSrc5Evid1876(): EventsFilter<{
|
|
7068
|
+
hosting_platform: string;
|
|
7069
|
+
page_id: string;
|
|
7070
|
+
page_name: string;
|
|
7071
|
+
route: string;
|
|
7072
|
+
hosting_platform_context_id: string;
|
|
7073
|
+
internal_route: string;
|
|
7074
|
+
cta: string;
|
|
7075
|
+
origin: string;
|
|
7076
|
+
}>;
|
|
7077
|
+
get leavingWithoutSavingModalCtaClickedSrc5Evid1878(): EventsFilter<{
|
|
7078
|
+
hosting_platform: string;
|
|
7079
|
+
page_id: string;
|
|
7080
|
+
page_name: string;
|
|
7081
|
+
route: string;
|
|
7082
|
+
hosting_platform_context_id: string;
|
|
7083
|
+
internal_route: string;
|
|
7084
|
+
cta: string;
|
|
7085
|
+
displayMode: string;
|
|
7086
|
+
}>;
|
|
7013
7087
|
get ascendHoverOnUpgradeAscend(): EventsFilter<{
|
|
7014
7088
|
appName: string;
|
|
7015
7089
|
uuid: GUID;
|
|
@@ -7263,6 +7337,7 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
7263
7337
|
favoritesName: string;
|
|
7264
7338
|
wasSuccess: boolean;
|
|
7265
7339
|
hostingPlatformContextId: string;
|
|
7340
|
+
origin: string;
|
|
7266
7341
|
}>;
|
|
7267
7342
|
get dashboardSettingsUpdate(): EventsFilter<{
|
|
7268
7343
|
name: string;
|
|
@@ -10650,11 +10725,13 @@ export declare class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
10650
10725
|
url: Url;
|
|
10651
10726
|
origin: string;
|
|
10652
10727
|
action: string;
|
|
10728
|
+
esi: string;
|
|
10653
10729
|
}>;
|
|
10654
10730
|
get cookiesBannerSettingsWindowCta(): EventsFilter<{
|
|
10655
10731
|
url: Url;
|
|
10656
10732
|
toggle: boolean;
|
|
10657
10733
|
action: string;
|
|
10734
|
+
esi: string;
|
|
10658
10735
|
}>;
|
|
10659
10736
|
get cookiesBannerPrivacyPolicyClicked(): EventsFilter<{
|
|
10660
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;
|
|
@@ -223,6 +225,8 @@ export type loadStartParams = {
|
|
|
223
225
|
product?: string;
|
|
224
226
|
hostingPlatformContextId?: string;
|
|
225
227
|
theme?: string;
|
|
228
|
+
consumerId?: string;
|
|
229
|
+
consumerArtifactId?: string;
|
|
226
230
|
routerUsage?: boolean;
|
|
227
231
|
isCurrentViewCustomMade?: boolean;
|
|
228
232
|
artifactIdNew?: string;
|
|
@@ -254,6 +258,9 @@ export type loadEndParams = {
|
|
|
254
258
|
product?: string;
|
|
255
259
|
hostingPlatformContextId?: string;
|
|
256
260
|
theme?: string;
|
|
261
|
+
consumerId?: string;
|
|
262
|
+
consumerArtifactId?: string;
|
|
263
|
+
route?: string;
|
|
257
264
|
routerUsage?: boolean;
|
|
258
265
|
isCurrentViewCustomMade?: boolean;
|
|
259
266
|
artifactIdNew?: string;
|
|
@@ -393,6 +400,8 @@ export type cairoFilterToggledParams = {
|
|
|
393
400
|
product?: string;
|
|
394
401
|
filterType?: string;
|
|
395
402
|
isCustomField?: boolean;
|
|
403
|
+
loadingTime?: number;
|
|
404
|
+
isOriginComponentLoaded?: boolean;
|
|
396
405
|
};
|
|
397
406
|
export type cairoAllFiltersClearedParams = {
|
|
398
407
|
artifactId?: string;
|
|
@@ -1464,6 +1473,7 @@ export type cairoTagsWidgetLoadedParams = {
|
|
|
1464
1473
|
itemId?: string;
|
|
1465
1474
|
appId?: string;
|
|
1466
1475
|
product?: string;
|
|
1476
|
+
theme?: string;
|
|
1467
1477
|
};
|
|
1468
1478
|
export type cairoTagsWidgetClickOnCtaParams = {
|
|
1469
1479
|
artifactId?: string;
|
|
@@ -1480,6 +1490,7 @@ export type cairoTagsWidgetClickOnCtaParams = {
|
|
|
1480
1490
|
itemId?: string;
|
|
1481
1491
|
appId?: string;
|
|
1482
1492
|
product?: string;
|
|
1493
|
+
theme?: string;
|
|
1483
1494
|
};
|
|
1484
1495
|
export type cairoTagsAssignTagParams = {
|
|
1485
1496
|
artifactId?: string;
|
|
@@ -1500,6 +1511,7 @@ export type cairoTagsAssignTagParams = {
|
|
|
1500
1511
|
appId?: string;
|
|
1501
1512
|
isFromSearch?: boolean;
|
|
1502
1513
|
product?: string;
|
|
1514
|
+
theme?: string;
|
|
1503
1515
|
};
|
|
1504
1516
|
export type cairoPageDiscardChangesBeforeSaveParams = {
|
|
1505
1517
|
artifactId?: string;
|
|
@@ -1685,6 +1697,7 @@ export type httpClientErrorMappingSrc176Evid100Params = {
|
|
|
1685
1697
|
};
|
|
1686
1698
|
export type getResolvedErrorSrc176Evid101Params = {
|
|
1687
1699
|
session_id?: string;
|
|
1700
|
+
isEn?: boolean;
|
|
1688
1701
|
mapped_error_not_available?: string;
|
|
1689
1702
|
translated_message?: string;
|
|
1690
1703
|
action_text?: string;
|
|
@@ -1693,10 +1706,14 @@ export type getResolvedErrorSrc176Evid101Params = {
|
|
|
1693
1706
|
};
|
|
1694
1707
|
export type showErrorSrc176Evid102Params = {
|
|
1695
1708
|
session_id?: string;
|
|
1709
|
+
isEn?: boolean;
|
|
1696
1710
|
displayed_message?: string;
|
|
1697
1711
|
displayed_action?: string;
|
|
1698
1712
|
action_was_provided?: string;
|
|
1699
1713
|
};
|
|
1714
|
+
export type retryErrorSrc176Evid103Params = {
|
|
1715
|
+
session_id?: string;
|
|
1716
|
+
};
|
|
1700
1717
|
export type httpClientErrorSrc176Evid404Params = {
|
|
1701
1718
|
request_id?: string;
|
|
1702
1719
|
panorama_guid?: string;
|
|
@@ -1708,6 +1725,7 @@ export type httpClientErrorSrc176Evid404Params = {
|
|
|
1708
1725
|
is_override_error_state_function?: string;
|
|
1709
1726
|
error_json?: string;
|
|
1710
1727
|
translated_message?: string;
|
|
1728
|
+
method?: string;
|
|
1711
1729
|
error_message?: string;
|
|
1712
1730
|
exception_message?: string;
|
|
1713
1731
|
client_error_code?: string;
|
|
@@ -1985,6 +2003,8 @@ export type pageClassifierSrc5Evid10000Params = {
|
|
|
1985
2003
|
score?: number;
|
|
1986
2004
|
url?: Url;
|
|
1987
2005
|
previewUrl?: string;
|
|
2006
|
+
isPatternsPage?: boolean;
|
|
2007
|
+
fullRoute?: string;
|
|
1988
2008
|
};
|
|
1989
2009
|
export type dashboardDeleteAndRestoreSiteRestoreSiteClickParams = {
|
|
1990
2010
|
view_type?: string;
|
|
@@ -4812,7 +4832,6 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
4812
4832
|
number_of_invalid_emails?: number;
|
|
4813
4833
|
invite_role_ids?: string;
|
|
4814
4834
|
assignment_type?: string;
|
|
4815
|
-
number_of_existing_emails?: number;
|
|
4816
4835
|
origin?: string;
|
|
4817
4836
|
invite_id?: GUID;
|
|
4818
4837
|
num_sites?: number;
|
|
@@ -4821,6 +4840,7 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
4821
4840
|
number_of_valid_emails?: number;
|
|
4822
4841
|
num_folders?: number;
|
|
4823
4842
|
contributors_quota?: number;
|
|
4843
|
+
invite_role_names?: string;
|
|
4824
4844
|
contributors_count?: number;
|
|
4825
4845
|
app_id?: string;
|
|
4826
4846
|
Has_ai_assistant?: boolean;
|
|
@@ -4873,14 +4893,12 @@ export type teamManagementManageRolesDuplicateAndEditRoleParams = {
|
|
|
4873
4893
|
role_id?: string;
|
|
4874
4894
|
role_type?: string;
|
|
4875
4895
|
origin?: string;
|
|
4876
|
-
platform?: string;
|
|
4877
|
-
msid?: GUID;
|
|
4878
4896
|
};
|
|
4879
4897
|
export type teamManagementManageRolesEditCustomRoleParams = {
|
|
4880
4898
|
context?: string;
|
|
4881
4899
|
role_id?: string;
|
|
4882
|
-
platform?: string;
|
|
4883
4900
|
msid?: GUID;
|
|
4901
|
+
origin?: string;
|
|
4884
4902
|
};
|
|
4885
4903
|
export type teamManagementManageRolesUpdateRoleParams = {
|
|
4886
4904
|
num_scopes?: number;
|
|
@@ -7001,12 +7019,68 @@ export type teamManagementResendInviteClickParams = {
|
|
|
7001
7019
|
invite_role?: string;
|
|
7002
7020
|
platform?: string;
|
|
7003
7021
|
};
|
|
7022
|
+
export type leavingWithoutSavingModalOpenedSrc5Evid1858Params = {
|
|
7023
|
+
hosting_platform?: string;
|
|
7024
|
+
page_id?: string;
|
|
7025
|
+
page_name?: string;
|
|
7026
|
+
route?: string;
|
|
7027
|
+
hosting_platform_context_id?: string;
|
|
7028
|
+
internal_route?: string;
|
|
7029
|
+
displayMode?: string;
|
|
7030
|
+
};
|
|
7004
7031
|
export type dashboardContributorsClickOnMangeRolesAndPermissionsParams = {
|
|
7005
7032
|
view_type?: string;
|
|
7006
7033
|
platform?: string;
|
|
7007
7034
|
hosting?: string;
|
|
7008
7035
|
msid?: GUID;
|
|
7009
7036
|
};
|
|
7037
|
+
export type rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params = {
|
|
7038
|
+
context?: string;
|
|
7039
|
+
role_id?: string;
|
|
7040
|
+
role_type?: string;
|
|
7041
|
+
origin?: string;
|
|
7042
|
+
platform?: string;
|
|
7043
|
+
role_name?: string;
|
|
7044
|
+
Has_ai_assistant?: boolean;
|
|
7045
|
+
};
|
|
7046
|
+
export type rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params = {
|
|
7047
|
+
context?: string;
|
|
7048
|
+
origin?: string;
|
|
7049
|
+
invite_id?: GUID;
|
|
7050
|
+
number_of_valid_emails?: number;
|
|
7051
|
+
role_ids?: string;
|
|
7052
|
+
app_id?: string;
|
|
7053
|
+
Has_ai_assistant?: boolean;
|
|
7054
|
+
};
|
|
7055
|
+
export type restoreSiteModalOpenedSrc5Evid1875Params = {
|
|
7056
|
+
hosting_platform?: string;
|
|
7057
|
+
page_id?: string;
|
|
7058
|
+
page_name?: string;
|
|
7059
|
+
route?: string;
|
|
7060
|
+
hosting_platform_context_id?: string;
|
|
7061
|
+
internal_route?: string;
|
|
7062
|
+
origin?: string;
|
|
7063
|
+
};
|
|
7064
|
+
export type restoreSiteModalCtaClickedSrc5Evid1876Params = {
|
|
7065
|
+
hosting_platform?: string;
|
|
7066
|
+
page_id?: string;
|
|
7067
|
+
page_name?: string;
|
|
7068
|
+
route?: string;
|
|
7069
|
+
hosting_platform_context_id?: string;
|
|
7070
|
+
internal_route?: string;
|
|
7071
|
+
cta?: string;
|
|
7072
|
+
origin?: string;
|
|
7073
|
+
};
|
|
7074
|
+
export type leavingWithoutSavingModalCtaClickedSrc5Evid1878Params = {
|
|
7075
|
+
hosting_platform?: string;
|
|
7076
|
+
page_id?: string;
|
|
7077
|
+
page_name?: string;
|
|
7078
|
+
route?: string;
|
|
7079
|
+
hosting_platform_context_id?: string;
|
|
7080
|
+
internal_route?: string;
|
|
7081
|
+
cta?: string;
|
|
7082
|
+
displayMode?: string;
|
|
7083
|
+
};
|
|
7010
7084
|
export type ascendHoverOnUpgradeAscendParams = {
|
|
7011
7085
|
appName?: string;
|
|
7012
7086
|
uuid?: GUID;
|
|
@@ -7260,6 +7334,7 @@ export type osFavoritesPagesEditParams = {
|
|
|
7260
7334
|
favoritesName?: string;
|
|
7261
7335
|
wasSuccess?: boolean;
|
|
7262
7336
|
hostingPlatformContextId?: string;
|
|
7337
|
+
origin?: string;
|
|
7263
7338
|
};
|
|
7264
7339
|
export type dashboardSettingsUpdateParams = {
|
|
7265
7340
|
name?: string;
|
|
@@ -10647,11 +10722,13 @@ export type cookiesBannerCtaParams = {
|
|
|
10647
10722
|
url?: Url;
|
|
10648
10723
|
origin?: string;
|
|
10649
10724
|
action?: string;
|
|
10725
|
+
esi?: string;
|
|
10650
10726
|
};
|
|
10651
10727
|
export type cookiesBannerSettingsWindowCtaParams = {
|
|
10652
10728
|
url?: Url;
|
|
10653
10729
|
toggle?: boolean;
|
|
10654
10730
|
action?: string;
|
|
10731
|
+
esi?: string;
|
|
10655
10732
|
};
|
|
10656
10733
|
export type cookiesBannerPrivacyPolicyClickedParams = {
|
|
10657
10734
|
url?: Url;
|