@wix/bex-utils 2.16.0 → 2.18.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/dist/cjs/bex-bundled-mini-essentials.js +43 -18
- package/@wix/bex-bundled-mini-essentials/dist/cjs/bex-bundled-mini-essentials.js.map +1 -1
- package/@wix/bex-bundled-mini-essentials/dist/cjs/exports/http-client/testkit/client.js +1 -0
- package/@wix/bex-bundled-mini-essentials/dist/cjs/exports/http-client/testkit/client.js.map +1 -1
- package/@wix/bex-bundled-mini-essentials/dist/cjs/exports/testkit/index.js +1 -0
- package/@wix/bex-bundled-mini-essentials/dist/cjs/exports/testkit/index.js.map +1 -1
- package/@wix/bex-bundled-mini-essentials/dist/esm/bex-bundled-mini-essentials.js +43 -19
- package/@wix/bex-bundled-mini-essentials/dist/esm/bex-bundled-mini-essentials.js.map +1 -1
- package/@wix/bex-bundled-mini-essentials/dist/tsconfig.tsbuildinfo +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/index.js +6 -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 +6 -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 +190 -18
- 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 +6 -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 +95 -37
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/index.js +6 -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 +6 -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 +190 -18
- 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 +6 -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 +64 -8
- 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 +4 -2
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +43 -7
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +43 -7
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +43 -7
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +61 -9
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/index.ts +10 -2
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +49 -7
- package/@wix/bi-logger-os-data/src/testkit/common.ts +221 -19
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +49 -7
- package/@wix/bi-logger-os-data/src/types.ts +85 -15
- package/@wix/bi-logger-os-data/src/v2/index.ts +67 -9
- package/@wix/wix-i18n-config/dist/tsconfig.tsbuildinfo +1 -1
- package/@wix/wix-i18n-config/package.json +3 -3
- package/package.json +3 -3
|
@@ -67,6 +67,44 @@ export class BiTestkit {
|
|
|
67
67
|
}>(this.util.getRawEvents, 144, 1, this.validate);
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
get wixPatternsPageInteractiveSrc144Evid1000() {
|
|
71
|
+
return new EventsFilter<{
|
|
72
|
+
artifactId: string;
|
|
73
|
+
csid: GUID;
|
|
74
|
+
url: Url;
|
|
75
|
+
cairoVersion: string;
|
|
76
|
+
domain: string;
|
|
77
|
+
componentName: string;
|
|
78
|
+
componentType: string;
|
|
79
|
+
resource: string;
|
|
80
|
+
loadingTime: number;
|
|
81
|
+
appId: string;
|
|
82
|
+
product: string;
|
|
83
|
+
route: string;
|
|
84
|
+
hostingPlatformContextId: string;
|
|
85
|
+
routerUsage: boolean;
|
|
86
|
+
}>(this.util.getRawEvents, 144, 1000, this.validate);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
get wixPatternsFullPageLoadCompletedSrc144Evid1001() {
|
|
90
|
+
return new EventsFilter<{
|
|
91
|
+
artifactId: string;
|
|
92
|
+
csid: GUID;
|
|
93
|
+
url: Url;
|
|
94
|
+
cairoVersion: string;
|
|
95
|
+
domain: string;
|
|
96
|
+
componentName: string;
|
|
97
|
+
componentType: string;
|
|
98
|
+
resource: string;
|
|
99
|
+
loadingTime: number;
|
|
100
|
+
appId: string;
|
|
101
|
+
product: string;
|
|
102
|
+
route: string;
|
|
103
|
+
hostingPlatformContextId: string;
|
|
104
|
+
routerUsage: boolean;
|
|
105
|
+
}>(this.util.getRawEvents, 144, 1001, this.validate);
|
|
106
|
+
}
|
|
107
|
+
|
|
70
108
|
get pickerModalUsability() {
|
|
71
109
|
return new EventsFilter<{
|
|
72
110
|
artifactId: string;
|
|
@@ -1847,6 +1885,8 @@ export class BiTestkit {
|
|
|
1847
1885
|
appId: string;
|
|
1848
1886
|
components: string;
|
|
1849
1887
|
pageType: string;
|
|
1888
|
+
componentId: string;
|
|
1889
|
+
isSinglePage: boolean;
|
|
1850
1890
|
}>(this.util.getRawEvents, 144, 5, this.validate);
|
|
1851
1891
|
}
|
|
1852
1892
|
|
|
@@ -1875,18 +1915,17 @@ export class BiTestkit {
|
|
|
1875
1915
|
artifact_id: string;
|
|
1876
1916
|
hosting_platform: string;
|
|
1877
1917
|
app_id: string;
|
|
1878
|
-
initial_page_id: string;
|
|
1879
|
-
active_page_id: string;
|
|
1880
1918
|
error_code: number;
|
|
1881
|
-
application_error: string;
|
|
1882
|
-
message: string;
|
|
1883
1919
|
is_override_error: string;
|
|
1884
1920
|
is_override_error_state_function: string;
|
|
1885
|
-
msid: string;
|
|
1886
|
-
project: string;
|
|
1887
|
-
owner: string;
|
|
1888
1921
|
action: string;
|
|
1889
1922
|
error_json: string;
|
|
1923
|
+
translated_message: string;
|
|
1924
|
+
error_message: string;
|
|
1925
|
+
exception_message: string;
|
|
1926
|
+
client_error_code: string;
|
|
1927
|
+
error_type: string;
|
|
1928
|
+
is_consumer_resolved_error: boolean;
|
|
1890
1929
|
}>(this.util.getRawEvents, 176, 404, this.validate);
|
|
1891
1930
|
}
|
|
1892
1931
|
|
|
@@ -15178,6 +15217,7 @@ export class BiTestkit {
|
|
|
15178
15217
|
is_internal_page: boolean;
|
|
15179
15218
|
hosting_platform_context_id: string;
|
|
15180
15219
|
internal_route: string;
|
|
15220
|
+
prevRoute: string;
|
|
15181
15221
|
}>(this.util.getRawEvents, 5, 9001, this.validate);
|
|
15182
15222
|
}
|
|
15183
15223
|
|
|
@@ -15202,6 +15242,7 @@ export class BiTestkit {
|
|
|
15202
15242
|
internal_route: string;
|
|
15203
15243
|
loading_time_from_first_feedback: number;
|
|
15204
15244
|
loading_time: number;
|
|
15245
|
+
prevRoute: string;
|
|
15205
15246
|
}>(this.util.getRawEvents, 5, 9002, this.validate);
|
|
15206
15247
|
}
|
|
15207
15248
|
|
|
@@ -15382,6 +15423,7 @@ export class BiTestkit {
|
|
|
15382
15423
|
hosting_platform_context_id: string;
|
|
15383
15424
|
internal_route: string;
|
|
15384
15425
|
loading_time: number;
|
|
15426
|
+
prevRoute: string;
|
|
15385
15427
|
}>(this.util.getRawEvents, 5, 9029, this.validate);
|
|
15386
15428
|
}
|
|
15387
15429
|
|
|
@@ -49230,6 +49230,12 @@ const schemaObj: SchemaObj = [
|
|
|
49230
49230
|
"type": "STRING",
|
|
49231
49231
|
"mandatory": false
|
|
49232
49232
|
}
|
|
49233
|
+
,
|
|
49234
|
+
{
|
|
49235
|
+
"inputName": "prevRoute",
|
|
49236
|
+
"type": "STRING",
|
|
49237
|
+
"mandatory": false
|
|
49238
|
+
}
|
|
49233
49239
|
]
|
|
49234
49240
|
} as BiEventSchema,
|
|
49235
49241
|
{
|
|
@@ -49349,6 +49355,12 @@ const schemaObj: SchemaObj = [
|
|
|
49349
49355
|
"type": "NUMERIC",
|
|
49350
49356
|
"mandatory": false
|
|
49351
49357
|
}
|
|
49358
|
+
,
|
|
49359
|
+
{
|
|
49360
|
+
"inputName": "prevRoute",
|
|
49361
|
+
"type": "STRING",
|
|
49362
|
+
"mandatory": false
|
|
49363
|
+
}
|
|
49352
49364
|
]
|
|
49353
49365
|
} as BiEventSchema,
|
|
49354
49366
|
{
|
|
@@ -50029,6 +50041,12 @@ const schemaObj: SchemaObj = [
|
|
|
50029
50041
|
"type": "NUMERIC",
|
|
50030
50042
|
"mandatory": false
|
|
50031
50043
|
}
|
|
50044
|
+
,
|
|
50045
|
+
{
|
|
50046
|
+
"inputName": "prevRoute",
|
|
50047
|
+
"type": "STRING",
|
|
50048
|
+
"mandatory": false
|
|
50049
|
+
}
|
|
50032
50050
|
]
|
|
50033
50051
|
} as BiEventSchema,
|
|
50034
50052
|
{
|
|
@@ -56904,6 +56922,184 @@ const schemaObj: SchemaObj = [
|
|
|
56904
56922
|
}
|
|
56905
56923
|
]
|
|
56906
56924
|
} as BiEventSchema,
|
|
56925
|
+
{
|
|
56926
|
+
"event_id": 1000,
|
|
56927
|
+
"name": "Wix Patterns - Page Interactive ",
|
|
56928
|
+
"fields": [
|
|
56929
|
+
{
|
|
56930
|
+
"inputName": "artifactId",
|
|
56931
|
+
"type": "STRING",
|
|
56932
|
+
"mandatory": false
|
|
56933
|
+
}
|
|
56934
|
+
,
|
|
56935
|
+
{
|
|
56936
|
+
"inputName": "csid",
|
|
56937
|
+
"type": "GUID",
|
|
56938
|
+
"mandatory": false
|
|
56939
|
+
}
|
|
56940
|
+
,
|
|
56941
|
+
{
|
|
56942
|
+
"inputName": "url",
|
|
56943
|
+
"type": "URL",
|
|
56944
|
+
"mandatory": false
|
|
56945
|
+
}
|
|
56946
|
+
,
|
|
56947
|
+
{
|
|
56948
|
+
"inputName": "cairoVersion",
|
|
56949
|
+
"type": "STRING",
|
|
56950
|
+
"mandatory": false
|
|
56951
|
+
}
|
|
56952
|
+
,
|
|
56953
|
+
{
|
|
56954
|
+
"inputName": "domain",
|
|
56955
|
+
"type": "STRING",
|
|
56956
|
+
"mandatory": false
|
|
56957
|
+
}
|
|
56958
|
+
,
|
|
56959
|
+
{
|
|
56960
|
+
"inputName": "componentName",
|
|
56961
|
+
"type": "STRING",
|
|
56962
|
+
"mandatory": false
|
|
56963
|
+
}
|
|
56964
|
+
,
|
|
56965
|
+
{
|
|
56966
|
+
"inputName": "componentType",
|
|
56967
|
+
"type": "STRING",
|
|
56968
|
+
"mandatory": false
|
|
56969
|
+
}
|
|
56970
|
+
,
|
|
56971
|
+
{
|
|
56972
|
+
"inputName": "resource",
|
|
56973
|
+
"type": "STRING",
|
|
56974
|
+
"mandatory": false
|
|
56975
|
+
}
|
|
56976
|
+
,
|
|
56977
|
+
{
|
|
56978
|
+
"inputName": "loadingTime",
|
|
56979
|
+
"type": "NUMERIC",
|
|
56980
|
+
"mandatory": false
|
|
56981
|
+
}
|
|
56982
|
+
,
|
|
56983
|
+
{
|
|
56984
|
+
"inputName": "appId",
|
|
56985
|
+
"type": "STRING",
|
|
56986
|
+
"mandatory": false
|
|
56987
|
+
}
|
|
56988
|
+
,
|
|
56989
|
+
{
|
|
56990
|
+
"inputName": "product",
|
|
56991
|
+
"type": "STRING",
|
|
56992
|
+
"mandatory": false
|
|
56993
|
+
}
|
|
56994
|
+
,
|
|
56995
|
+
{
|
|
56996
|
+
"inputName": "route",
|
|
56997
|
+
"type": "STRING",
|
|
56998
|
+
"mandatory": false
|
|
56999
|
+
}
|
|
57000
|
+
,
|
|
57001
|
+
{
|
|
57002
|
+
"inputName": "hostingPlatformContextId",
|
|
57003
|
+
"type": "STRING",
|
|
57004
|
+
"mandatory": false
|
|
57005
|
+
}
|
|
57006
|
+
,
|
|
57007
|
+
{
|
|
57008
|
+
"inputName": "routerUsage",
|
|
57009
|
+
"type": "BOOL",
|
|
57010
|
+
"mandatory": false
|
|
57011
|
+
}
|
|
57012
|
+
]
|
|
57013
|
+
} as BiEventSchema,
|
|
57014
|
+
{
|
|
57015
|
+
"event_id": 1001,
|
|
57016
|
+
"name": "Wix Patterns - Full Page Load Completed",
|
|
57017
|
+
"fields": [
|
|
57018
|
+
{
|
|
57019
|
+
"inputName": "artifactId",
|
|
57020
|
+
"type": "STRING",
|
|
57021
|
+
"mandatory": false
|
|
57022
|
+
}
|
|
57023
|
+
,
|
|
57024
|
+
{
|
|
57025
|
+
"inputName": "csid",
|
|
57026
|
+
"type": "GUID",
|
|
57027
|
+
"mandatory": false
|
|
57028
|
+
}
|
|
57029
|
+
,
|
|
57030
|
+
{
|
|
57031
|
+
"inputName": "url",
|
|
57032
|
+
"type": "URL",
|
|
57033
|
+
"mandatory": false
|
|
57034
|
+
}
|
|
57035
|
+
,
|
|
57036
|
+
{
|
|
57037
|
+
"inputName": "cairoVersion",
|
|
57038
|
+
"type": "STRING",
|
|
57039
|
+
"mandatory": false
|
|
57040
|
+
}
|
|
57041
|
+
,
|
|
57042
|
+
{
|
|
57043
|
+
"inputName": "domain",
|
|
57044
|
+
"type": "STRING",
|
|
57045
|
+
"mandatory": false
|
|
57046
|
+
}
|
|
57047
|
+
,
|
|
57048
|
+
{
|
|
57049
|
+
"inputName": "componentName",
|
|
57050
|
+
"type": "STRING",
|
|
57051
|
+
"mandatory": false
|
|
57052
|
+
}
|
|
57053
|
+
,
|
|
57054
|
+
{
|
|
57055
|
+
"inputName": "componentType",
|
|
57056
|
+
"type": "STRING",
|
|
57057
|
+
"mandatory": false
|
|
57058
|
+
}
|
|
57059
|
+
,
|
|
57060
|
+
{
|
|
57061
|
+
"inputName": "resource",
|
|
57062
|
+
"type": "STRING",
|
|
57063
|
+
"mandatory": false
|
|
57064
|
+
}
|
|
57065
|
+
,
|
|
57066
|
+
{
|
|
57067
|
+
"inputName": "loadingTime",
|
|
57068
|
+
"type": "NUMERIC",
|
|
57069
|
+
"mandatory": false
|
|
57070
|
+
}
|
|
57071
|
+
,
|
|
57072
|
+
{
|
|
57073
|
+
"inputName": "appId",
|
|
57074
|
+
"type": "STRING",
|
|
57075
|
+
"mandatory": false
|
|
57076
|
+
}
|
|
57077
|
+
,
|
|
57078
|
+
{
|
|
57079
|
+
"inputName": "product",
|
|
57080
|
+
"type": "STRING",
|
|
57081
|
+
"mandatory": false
|
|
57082
|
+
}
|
|
57083
|
+
,
|
|
57084
|
+
{
|
|
57085
|
+
"inputName": "route",
|
|
57086
|
+
"type": "STRING",
|
|
57087
|
+
"mandatory": false
|
|
57088
|
+
}
|
|
57089
|
+
,
|
|
57090
|
+
{
|
|
57091
|
+
"inputName": "hostingPlatformContextId",
|
|
57092
|
+
"type": "STRING",
|
|
57093
|
+
"mandatory": false
|
|
57094
|
+
}
|
|
57095
|
+
,
|
|
57096
|
+
{
|
|
57097
|
+
"inputName": "routerUsage",
|
|
57098
|
+
"type": "BOOL",
|
|
57099
|
+
"mandatory": false
|
|
57100
|
+
}
|
|
57101
|
+
]
|
|
57102
|
+
} as BiEventSchema,
|
|
56907
57103
|
{
|
|
56908
57104
|
"event_id": 103,
|
|
56909
57105
|
"name": "Picker - Usability",
|
|
@@ -65600,6 +65796,18 @@ const schemaObj: SchemaObj = [
|
|
|
65600
65796
|
"type": "STRING",
|
|
65601
65797
|
"mandatory": false
|
|
65602
65798
|
}
|
|
65799
|
+
,
|
|
65800
|
+
{
|
|
65801
|
+
"inputName": "componentId",
|
|
65802
|
+
"type": "STRING",
|
|
65803
|
+
"mandatory": false
|
|
65804
|
+
}
|
|
65805
|
+
,
|
|
65806
|
+
{
|
|
65807
|
+
"inputName": "isSinglePage",
|
|
65808
|
+
"type": "BOOL",
|
|
65809
|
+
"mandatory": false
|
|
65810
|
+
}
|
|
65603
65811
|
]
|
|
65604
65812
|
} as BiEventSchema,
|
|
65605
65813
|
{
|
|
@@ -65725,74 +65933,68 @@ const schemaObj: SchemaObj = [
|
|
|
65725
65933
|
}
|
|
65726
65934
|
,
|
|
65727
65935
|
{
|
|
65728
|
-
"inputName": "
|
|
65729
|
-
"type": "
|
|
65936
|
+
"inputName": "error_code",
|
|
65937
|
+
"type": "NUMERIC",
|
|
65730
65938
|
"mandatory": false
|
|
65731
65939
|
}
|
|
65732
65940
|
,
|
|
65733
65941
|
{
|
|
65734
|
-
"inputName": "
|
|
65942
|
+
"inputName": "is_override_error",
|
|
65735
65943
|
"type": "STRING",
|
|
65736
65944
|
"mandatory": false
|
|
65737
65945
|
}
|
|
65738
65946
|
,
|
|
65739
65947
|
{
|
|
65740
|
-
"inputName": "
|
|
65741
|
-
"type": "NUMERIC",
|
|
65742
|
-
"mandatory": false
|
|
65743
|
-
}
|
|
65744
|
-
,
|
|
65745
|
-
{
|
|
65746
|
-
"inputName": "application_error",
|
|
65948
|
+
"inputName": "is_override_error_state_function",
|
|
65747
65949
|
"type": "STRING",
|
|
65748
65950
|
"mandatory": false
|
|
65749
65951
|
}
|
|
65750
65952
|
,
|
|
65751
65953
|
{
|
|
65752
|
-
"inputName": "
|
|
65954
|
+
"inputName": "action",
|
|
65753
65955
|
"type": "STRING",
|
|
65754
65956
|
"mandatory": false
|
|
65755
65957
|
}
|
|
65756
65958
|
,
|
|
65757
65959
|
{
|
|
65758
|
-
"inputName": "
|
|
65960
|
+
"inputName": "error_json",
|
|
65759
65961
|
"type": "STRING",
|
|
65760
65962
|
"mandatory": false
|
|
65761
65963
|
}
|
|
65762
65964
|
,
|
|
65763
65965
|
{
|
|
65764
|
-
"inputName": "
|
|
65966
|
+
"inputName": "translated_message",
|
|
65765
65967
|
"type": "STRING",
|
|
65766
65968
|
"mandatory": false
|
|
65767
65969
|
}
|
|
65768
65970
|
,
|
|
65769
65971
|
{
|
|
65770
|
-
"inputName": "
|
|
65972
|
+
"inputName": "error_message",
|
|
65771
65973
|
"type": "STRING",
|
|
65772
65974
|
"mandatory": false
|
|
65773
65975
|
}
|
|
65774
65976
|
,
|
|
65775
65977
|
{
|
|
65776
|
-
"inputName": "
|
|
65978
|
+
"inputName": "exception_message",
|
|
65777
65979
|
"type": "STRING",
|
|
65778
65980
|
"mandatory": false
|
|
65779
65981
|
}
|
|
65780
65982
|
,
|
|
65781
65983
|
{
|
|
65782
|
-
"inputName": "
|
|
65984
|
+
"inputName": "client_error_code",
|
|
65783
65985
|
"type": "STRING",
|
|
65784
65986
|
"mandatory": false
|
|
65785
65987
|
}
|
|
65786
65988
|
,
|
|
65787
65989
|
{
|
|
65788
|
-
"inputName": "
|
|
65990
|
+
"inputName": "error_type",
|
|
65789
65991
|
"type": "STRING",
|
|
65790
65992
|
"mandatory": false
|
|
65791
65993
|
}
|
|
65792
65994
|
,
|
|
65793
65995
|
{
|
|
65794
|
-
"inputName": "
|
|
65795
|
-
"type": "
|
|
65996
|
+
"inputName": "is_consumer_resolved_error",
|
|
65997
|
+
"type": "BOOL",
|
|
65796
65998
|
"mandatory": false
|
|
65797
65999
|
}
|
|
65798
66000
|
]
|
|
@@ -77,6 +77,44 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
77
77
|
}>(this.util.getRawEvents, 144, 1, this.validate);
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
+
get wixPatternsPageInteractiveSrc144Evid1000() {
|
|
81
|
+
return new EventsFilter<{
|
|
82
|
+
artifactId: string;
|
|
83
|
+
csid: GUID;
|
|
84
|
+
url: Url;
|
|
85
|
+
cairoVersion: string;
|
|
86
|
+
domain: string;
|
|
87
|
+
componentName: string;
|
|
88
|
+
componentType: string;
|
|
89
|
+
resource: string;
|
|
90
|
+
loadingTime: number;
|
|
91
|
+
appId: string;
|
|
92
|
+
product: string;
|
|
93
|
+
route: string;
|
|
94
|
+
hostingPlatformContextId: string;
|
|
95
|
+
routerUsage: boolean;
|
|
96
|
+
}>(this.util.getRawEvents, 144, 1000, this.validate);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
get wixPatternsFullPageLoadCompletedSrc144Evid1001() {
|
|
100
|
+
return new EventsFilter<{
|
|
101
|
+
artifactId: string;
|
|
102
|
+
csid: GUID;
|
|
103
|
+
url: Url;
|
|
104
|
+
cairoVersion: string;
|
|
105
|
+
domain: string;
|
|
106
|
+
componentName: string;
|
|
107
|
+
componentType: string;
|
|
108
|
+
resource: string;
|
|
109
|
+
loadingTime: number;
|
|
110
|
+
appId: string;
|
|
111
|
+
product: string;
|
|
112
|
+
route: string;
|
|
113
|
+
hostingPlatformContextId: string;
|
|
114
|
+
routerUsage: boolean;
|
|
115
|
+
}>(this.util.getRawEvents, 144, 1001, this.validate);
|
|
116
|
+
}
|
|
117
|
+
|
|
80
118
|
get pickerModalUsability() {
|
|
81
119
|
return new EventsFilter<{
|
|
82
120
|
artifactId: string;
|
|
@@ -1857,6 +1895,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1857
1895
|
appId: string;
|
|
1858
1896
|
components: string;
|
|
1859
1897
|
pageType: string;
|
|
1898
|
+
componentId: string;
|
|
1899
|
+
isSinglePage: boolean;
|
|
1860
1900
|
}>(this.util.getRawEvents, 144, 5, this.validate);
|
|
1861
1901
|
}
|
|
1862
1902
|
|
|
@@ -1885,18 +1925,17 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1885
1925
|
artifact_id: string;
|
|
1886
1926
|
hosting_platform: string;
|
|
1887
1927
|
app_id: string;
|
|
1888
|
-
initial_page_id: string;
|
|
1889
|
-
active_page_id: string;
|
|
1890
1928
|
error_code: number;
|
|
1891
|
-
application_error: string;
|
|
1892
|
-
message: string;
|
|
1893
1929
|
is_override_error: string;
|
|
1894
1930
|
is_override_error_state_function: string;
|
|
1895
|
-
msid: string;
|
|
1896
|
-
project: string;
|
|
1897
|
-
owner: string;
|
|
1898
1931
|
action: string;
|
|
1899
1932
|
error_json: string;
|
|
1933
|
+
translated_message: string;
|
|
1934
|
+
error_message: string;
|
|
1935
|
+
exception_message: string;
|
|
1936
|
+
client_error_code: string;
|
|
1937
|
+
error_type: string;
|
|
1938
|
+
is_consumer_resolved_error: boolean;
|
|
1900
1939
|
}>(this.util.getRawEvents, 176, 404, this.validate);
|
|
1901
1940
|
}
|
|
1902
1941
|
|
|
@@ -15188,6 +15227,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15188
15227
|
is_internal_page: boolean;
|
|
15189
15228
|
hosting_platform_context_id: string;
|
|
15190
15229
|
internal_route: string;
|
|
15230
|
+
prevRoute: string;
|
|
15191
15231
|
}>(this.util.getRawEvents, 5, 9001, this.validate);
|
|
15192
15232
|
}
|
|
15193
15233
|
|
|
@@ -15212,6 +15252,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15212
15252
|
internal_route: string;
|
|
15213
15253
|
loading_time_from_first_feedback: number;
|
|
15214
15254
|
loading_time: number;
|
|
15255
|
+
prevRoute: string;
|
|
15215
15256
|
}>(this.util.getRawEvents, 5, 9002, this.validate);
|
|
15216
15257
|
}
|
|
15217
15258
|
|
|
@@ -15392,6 +15433,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15392
15433
|
hosting_platform_context_id: string;
|
|
15393
15434
|
internal_route: string;
|
|
15394
15435
|
loading_time: number;
|
|
15436
|
+
prevRoute: string;
|
|
15395
15437
|
}>(this.util.getRawEvents, 5, 9029, this.validate);
|
|
15396
15438
|
}
|
|
15397
15439
|
|
|
@@ -48,6 +48,68 @@ export type wixPatternsSummaryBarIsShownSrc144Evid1Params = {
|
|
|
48
48
|
//
|
|
49
49
|
hostingPlatformContextId?: string;
|
|
50
50
|
};
|
|
51
|
+
export type wixPatternsPageInteractiveSrc144Evid1000Params = {
|
|
52
|
+
// Artifact that owns the component
|
|
53
|
+
artifactId?: string;
|
|
54
|
+
// csid
|
|
55
|
+
csid?: GUID;
|
|
56
|
+
// The page's url (new from 03/2023)
|
|
57
|
+
url?: Url;
|
|
58
|
+
// Wix Patterns_version(cairo_version)
|
|
59
|
+
cairoVersion?: string;
|
|
60
|
+
// (Optional) Domain name from FQDN (crm, stores, etc.)
|
|
61
|
+
domain?: string;
|
|
62
|
+
// (Optional) Component name, if there are two components of the same type per artifact
|
|
63
|
+
componentName?: string;
|
|
64
|
+
// Entity page / Collection
|
|
65
|
+
componentType?: string;
|
|
66
|
+
// Singular form of the resource name from FQDN, "goal" of component (order, contact, etc.)
|
|
67
|
+
resource?: string;
|
|
68
|
+
// Page loading time will be measured from the start of the page loading process (5:9002, FPP)
|
|
69
|
+
loadingTime?: number;
|
|
70
|
+
// app_id
|
|
71
|
+
appId?: string;
|
|
72
|
+
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
73
|
+
product?: string;
|
|
74
|
+
// the page's route
|
|
75
|
+
route?: string;
|
|
76
|
+
// the id of the context entity that the user view or edit (app/account/site)
|
|
77
|
+
//
|
|
78
|
+
hostingPlatformContextId?: string;
|
|
79
|
+
// returns true if Wix Patterns router is being used, else false
|
|
80
|
+
routerUsage?: boolean;
|
|
81
|
+
};
|
|
82
|
+
export type wixPatternsFullPageLoadCompletedSrc144Evid1001Params = {
|
|
83
|
+
// Artifact that owns the component
|
|
84
|
+
artifactId?: string;
|
|
85
|
+
// csid
|
|
86
|
+
csid?: GUID;
|
|
87
|
+
// The page's url (new from 03/2023)
|
|
88
|
+
url?: Url;
|
|
89
|
+
// Wix Patterns_version(cairo_version)
|
|
90
|
+
cairoVersion?: string;
|
|
91
|
+
// (Optional) Domain name from FQDN (crm, stores, etc.)
|
|
92
|
+
domain?: string;
|
|
93
|
+
// (Optional) Component name, if there are two components of the same type per artifact
|
|
94
|
+
componentName?: string;
|
|
95
|
+
// Entity page / Collection
|
|
96
|
+
componentType?: string;
|
|
97
|
+
// Singular form of the resource name from FQDN, "goal" of component (order, contact, etc.)
|
|
98
|
+
resource?: string;
|
|
99
|
+
// Page loading time will be measured from the start of the page loading process (5:9002, FPP)
|
|
100
|
+
loadingTime?: number;
|
|
101
|
+
// app_id
|
|
102
|
+
appId?: string;
|
|
103
|
+
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
104
|
+
product?: string;
|
|
105
|
+
// the page's route
|
|
106
|
+
route?: string;
|
|
107
|
+
// the id of the context entity that the user view or edit (app/account/site)
|
|
108
|
+
//
|
|
109
|
+
hostingPlatformContextId?: string;
|
|
110
|
+
// returns true if Wix Patterns router is being used, else false
|
|
111
|
+
routerUsage?: boolean;
|
|
112
|
+
};
|
|
51
113
|
export type pickerModalUsabilityParams = {
|
|
52
114
|
// Artifact that owns the component
|
|
53
115
|
artifactId?: string;
|
|
@@ -2989,6 +3051,10 @@ export type wixPatternsMappingPagesSrc144Evid5Params = {
|
|
|
2989
3051
|
components?: string;
|
|
2990
3052
|
// type of page (collection page / entity / settings)
|
|
2991
3053
|
pageType?: string;
|
|
3054
|
+
// component id
|
|
3055
|
+
componentId?: string;
|
|
3056
|
+
// Returns True if it is a single page
|
|
3057
|
+
isSinglePage?: boolean;
|
|
2992
3058
|
};
|
|
2993
3059
|
export type wixPatternsSelectAProviderSrc144Evid6Params = {
|
|
2994
3060
|
// Artifact that owns the component
|
|
@@ -3029,30 +3095,28 @@ export type httpClientErrorSrc176Evid404Params = {
|
|
|
3029
3095
|
hosting_platform?: string;
|
|
3030
3096
|
// app_id
|
|
3031
3097
|
app_id?: string;
|
|
3032
|
-
//
|
|
3033
|
-
initial_page_id?: string;
|
|
3034
|
-
// the active page where the message appeared
|
|
3035
|
-
active_page_id?: string;
|
|
3036
|
-
// the error status code
|
|
3098
|
+
// http status code for ex: 404
|
|
3037
3099
|
error_code?: number;
|
|
3038
|
-
// application_error
|
|
3039
|
-
application_error?: string;
|
|
3040
|
-
// the message of the error
|
|
3041
|
-
message?: string;
|
|
3042
3100
|
// Has override errors object
|
|
3043
3101
|
is_override_error?: string;
|
|
3044
3102
|
// is_override_error_state_function
|
|
3045
3103
|
is_override_error_state_function?: string;
|
|
3046
|
-
// msid
|
|
3047
|
-
msid?: string;
|
|
3048
|
-
// project
|
|
3049
|
-
project?: string;
|
|
3050
|
-
// owner
|
|
3051
|
-
owner?: string;
|
|
3052
3104
|
// action
|
|
3053
3105
|
action?: string;
|
|
3054
3106
|
// the full error json
|
|
3055
3107
|
error_json?: string;
|
|
3108
|
+
// the translated message
|
|
3109
|
+
translated_message?: string;
|
|
3110
|
+
// the error message from the json
|
|
3111
|
+
error_message?: string;
|
|
3112
|
+
// exception message
|
|
3113
|
+
exception_message?: string;
|
|
3114
|
+
// client error code (browser code)
|
|
3115
|
+
client_error_code?: string;
|
|
3116
|
+
// the error type (application/validation/system)
|
|
3117
|
+
error_type?: string;
|
|
3118
|
+
// dev provided error message
|
|
3119
|
+
is_consumer_resolved_error?: boolean;
|
|
3056
3120
|
};
|
|
3057
3121
|
export type pingMarketingConsentUnsubscribeClickSrc19Evid10001Params = {
|
|
3058
3122
|
// msid
|
|
@@ -20197,6 +20261,8 @@ export type gizaPageStartLoading9001Params = {
|
|
|
20197
20261
|
hosting_platform_context_id?: string;
|
|
20198
20262
|
// in case of internal page- in this field we will get the additional part of the route
|
|
20199
20263
|
internal_route?: string;
|
|
20264
|
+
// the previous route
|
|
20265
|
+
prevRoute?: string;
|
|
20200
20266
|
};
|
|
20201
20267
|
export type gizaPageFinishLoading9002Params = {
|
|
20202
20268
|
// accountmanagr/bizmanagr/devcenter/etc.
|
|
@@ -20237,6 +20303,8 @@ export type gizaPageFinishLoading9002Params = {
|
|
|
20237
20303
|
loading_time_from_first_feedback?: number;
|
|
20238
20304
|
// loading time from the moment the loader of the page is shown (in milliseconds)
|
|
20239
20305
|
loading_time?: number;
|
|
20306
|
+
// the previous route
|
|
20307
|
+
prevRoute?: string;
|
|
20240
20308
|
};
|
|
20241
20309
|
export type formBuildrUouSubmitFormSuccessParams = {
|
|
20242
20310
|
// used as honeypot indicator true=suspected bot, null or false=not suspected
|
|
@@ -20469,6 +20537,8 @@ export type allPageLoadersAreDown9029Params = {
|
|
|
20469
20537
|
internal_route?: string;
|
|
20470
20538
|
// loading time from event 9001 (page start load) until all the loaders are down (in milliseconds)
|
|
20471
20539
|
loading_time?: number;
|
|
20540
|
+
// the previous route
|
|
20541
|
+
prevRoute?: string;
|
|
20472
20542
|
};
|
|
20473
20543
|
export type formBuilderManageFieldsAddNewFieldCompletedParams = {
|
|
20474
20544
|
// form type = {'form-builder'/'get-subscribers'/'registration-form'}
|