@wix/bex-utils 2.16.0 → 2.17.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 +227 -15
- 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 +106 -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 +227 -15
- 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 +75 -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 +51 -7
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +51 -7
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +51 -7
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +72 -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 +57 -7
- package/@wix/bi-logger-os-data/src/testkit/common.ts +265 -15
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +57 -7
- package/@wix/bi-logger-os-data/src/types.ts +104 -15
- package/@wix/bi-logger-os-data/src/v2/index.ts +78 -9
- package/@wix/wix-i18n-config/dist/tsconfig.tsbuildinfo +1 -1
- package/@wix/wix-i18n-config/package.json +3 -3
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -246,6 +284,7 @@ export class BiTestkit {
|
|
|
246
284
|
hostingPlatformContextId: string;
|
|
247
285
|
routerUsage: boolean;
|
|
248
286
|
isCurrentViewCustomMade: boolean;
|
|
287
|
+
artifactIdNew: string;
|
|
249
288
|
}>(this.util.getRawEvents, 144, 110, this.validate);
|
|
250
289
|
}
|
|
251
290
|
|
|
@@ -275,6 +314,7 @@ export class BiTestkit {
|
|
|
275
314
|
hostingPlatformContextId: string;
|
|
276
315
|
routerUsage: boolean;
|
|
277
316
|
isCurrentViewCustomMade: boolean;
|
|
317
|
+
artifactIdNew: string;
|
|
278
318
|
}>(this.util.getRawEvents, 144, 111, this.validate);
|
|
279
319
|
}
|
|
280
320
|
|
|
@@ -1847,6 +1887,8 @@ export class BiTestkit {
|
|
|
1847
1887
|
appId: string;
|
|
1848
1888
|
components: string;
|
|
1849
1889
|
pageType: string;
|
|
1890
|
+
componentId: string;
|
|
1891
|
+
isSinglePage: boolean;
|
|
1850
1892
|
}>(this.util.getRawEvents, 144, 5, this.validate);
|
|
1851
1893
|
}
|
|
1852
1894
|
|
|
@@ -1875,18 +1917,18 @@ export class BiTestkit {
|
|
|
1875
1917
|
artifact_id: string;
|
|
1876
1918
|
hosting_platform: string;
|
|
1877
1919
|
app_id: string;
|
|
1878
|
-
initial_page_id: string;
|
|
1879
|
-
active_page_id: string;
|
|
1880
1920
|
error_code: number;
|
|
1881
|
-
application_error: string;
|
|
1882
|
-
message: string;
|
|
1883
1921
|
is_override_error: string;
|
|
1884
1922
|
is_override_error_state_function: string;
|
|
1885
|
-
msid: string;
|
|
1886
|
-
project: string;
|
|
1887
|
-
owner: string;
|
|
1888
1923
|
action: string;
|
|
1889
1924
|
error_json: string;
|
|
1925
|
+
translated_message: string;
|
|
1926
|
+
error_message: string;
|
|
1927
|
+
exception_message: string;
|
|
1928
|
+
client_error_code: string;
|
|
1929
|
+
error_type: string;
|
|
1930
|
+
is_consumer_resolved_error: boolean;
|
|
1931
|
+
full_artifact_id: string;
|
|
1890
1932
|
}>(this.util.getRawEvents, 176, 404, this.validate);
|
|
1891
1933
|
}
|
|
1892
1934
|
|
|
@@ -5970,6 +6012,8 @@ export class BiTestkit {
|
|
|
5970
6012
|
platform: string;
|
|
5971
6013
|
msid: GUID;
|
|
5972
6014
|
app_id: string;
|
|
6015
|
+
contributors_quota: number;
|
|
6016
|
+
contributors_count: number;
|
|
5973
6017
|
}>(this.util.getRawEvents, 5, 1401, this.validate);
|
|
5974
6018
|
}
|
|
5975
6019
|
|
|
@@ -6083,6 +6127,7 @@ export class BiTestkit {
|
|
|
6083
6127
|
contributors_quota: number;
|
|
6084
6128
|
contributors_count: number;
|
|
6085
6129
|
app_id: string;
|
|
6130
|
+
Has_ai_assistant: boolean;
|
|
6086
6131
|
}>(this.util.getRawEvents, 5, 1410, this.validate);
|
|
6087
6132
|
}
|
|
6088
6133
|
|
|
@@ -6103,6 +6148,7 @@ export class BiTestkit {
|
|
|
6103
6148
|
contributors_quota: number;
|
|
6104
6149
|
contributors_count: number;
|
|
6105
6150
|
app_id: string;
|
|
6151
|
+
Has_ai_assistant: boolean;
|
|
6106
6152
|
}>(this.util.getRawEvents, 5, 1411, this.validate);
|
|
6107
6153
|
}
|
|
6108
6154
|
|
|
@@ -6205,6 +6251,7 @@ export class BiTestkit {
|
|
|
6205
6251
|
origin: string;
|
|
6206
6252
|
platform: string;
|
|
6207
6253
|
msid: GUID;
|
|
6254
|
+
Has_ai_assistant: boolean;
|
|
6208
6255
|
}>(this.util.getRawEvents, 5, 1421, this.validate);
|
|
6209
6256
|
}
|
|
6210
6257
|
|
|
@@ -15178,6 +15225,7 @@ export class BiTestkit {
|
|
|
15178
15225
|
is_internal_page: boolean;
|
|
15179
15226
|
hosting_platform_context_id: string;
|
|
15180
15227
|
internal_route: string;
|
|
15228
|
+
prevRoute: string;
|
|
15181
15229
|
}>(this.util.getRawEvents, 5, 9001, this.validate);
|
|
15182
15230
|
}
|
|
15183
15231
|
|
|
@@ -15202,6 +15250,7 @@ export class BiTestkit {
|
|
|
15202
15250
|
internal_route: string;
|
|
15203
15251
|
loading_time_from_first_feedback: number;
|
|
15204
15252
|
loading_time: number;
|
|
15253
|
+
prevRoute: string;
|
|
15205
15254
|
}>(this.util.getRawEvents, 5, 9002, this.validate);
|
|
15206
15255
|
}
|
|
15207
15256
|
|
|
@@ -15382,6 +15431,7 @@ export class BiTestkit {
|
|
|
15382
15431
|
hosting_platform_context_id: string;
|
|
15383
15432
|
internal_route: string;
|
|
15384
15433
|
loading_time: number;
|
|
15434
|
+
prevRoute: string;
|
|
15385
15435
|
}>(this.util.getRawEvents, 5, 9029, this.validate);
|
|
15386
15436
|
}
|
|
15387
15437
|
|
|
@@ -14319,6 +14319,18 @@ const schemaObj: SchemaObj = [
|
|
|
14319
14319
|
"type": "STRING",
|
|
14320
14320
|
"mandatory": false
|
|
14321
14321
|
}
|
|
14322
|
+
,
|
|
14323
|
+
{
|
|
14324
|
+
"inputName": "contributors_quota",
|
|
14325
|
+
"type": "NUMERIC",
|
|
14326
|
+
"mandatory": false
|
|
14327
|
+
}
|
|
14328
|
+
,
|
|
14329
|
+
{
|
|
14330
|
+
"inputName": "contributors_count",
|
|
14331
|
+
"type": "NUMERIC",
|
|
14332
|
+
"mandatory": false
|
|
14333
|
+
}
|
|
14322
14334
|
]
|
|
14323
14335
|
} as BiEventSchema,
|
|
14324
14336
|
{
|
|
@@ -14747,6 +14759,12 @@ const schemaObj: SchemaObj = [
|
|
|
14747
14759
|
"type": "STRING",
|
|
14748
14760
|
"mandatory": false
|
|
14749
14761
|
}
|
|
14762
|
+
,
|
|
14763
|
+
{
|
|
14764
|
+
"inputName": "Has_ai_assistant",
|
|
14765
|
+
"type": "BOOL",
|
|
14766
|
+
"mandatory": false
|
|
14767
|
+
}
|
|
14750
14768
|
]
|
|
14751
14769
|
} as BiEventSchema,
|
|
14752
14770
|
{
|
|
@@ -14842,6 +14860,12 @@ const schemaObj: SchemaObj = [
|
|
|
14842
14860
|
"type": "STRING",
|
|
14843
14861
|
"mandatory": false
|
|
14844
14862
|
}
|
|
14863
|
+
,
|
|
14864
|
+
{
|
|
14865
|
+
"inputName": "Has_ai_assistant",
|
|
14866
|
+
"type": "BOOL",
|
|
14867
|
+
"mandatory": false
|
|
14868
|
+
}
|
|
14845
14869
|
]
|
|
14846
14870
|
} as BiEventSchema,
|
|
14847
14871
|
{
|
|
@@ -15204,6 +15228,12 @@ const schemaObj: SchemaObj = [
|
|
|
15204
15228
|
"type": "GUID",
|
|
15205
15229
|
"mandatory": false
|
|
15206
15230
|
}
|
|
15231
|
+
,
|
|
15232
|
+
{
|
|
15233
|
+
"inputName": "Has_ai_assistant",
|
|
15234
|
+
"type": "BOOL",
|
|
15235
|
+
"mandatory": false
|
|
15236
|
+
}
|
|
15207
15237
|
]
|
|
15208
15238
|
} as BiEventSchema,
|
|
15209
15239
|
{
|
|
@@ -49230,6 +49260,12 @@ const schemaObj: SchemaObj = [
|
|
|
49230
49260
|
"type": "STRING",
|
|
49231
49261
|
"mandatory": false
|
|
49232
49262
|
}
|
|
49263
|
+
,
|
|
49264
|
+
{
|
|
49265
|
+
"inputName": "prevRoute",
|
|
49266
|
+
"type": "STRING",
|
|
49267
|
+
"mandatory": false
|
|
49268
|
+
}
|
|
49233
49269
|
]
|
|
49234
49270
|
} as BiEventSchema,
|
|
49235
49271
|
{
|
|
@@ -49349,6 +49385,12 @@ const schemaObj: SchemaObj = [
|
|
|
49349
49385
|
"type": "NUMERIC",
|
|
49350
49386
|
"mandatory": false
|
|
49351
49387
|
}
|
|
49388
|
+
,
|
|
49389
|
+
{
|
|
49390
|
+
"inputName": "prevRoute",
|
|
49391
|
+
"type": "STRING",
|
|
49392
|
+
"mandatory": false
|
|
49393
|
+
}
|
|
49352
49394
|
]
|
|
49353
49395
|
} as BiEventSchema,
|
|
49354
49396
|
{
|
|
@@ -50029,6 +50071,12 @@ const schemaObj: SchemaObj = [
|
|
|
50029
50071
|
"type": "NUMERIC",
|
|
50030
50072
|
"mandatory": false
|
|
50031
50073
|
}
|
|
50074
|
+
,
|
|
50075
|
+
{
|
|
50076
|
+
"inputName": "prevRoute",
|
|
50077
|
+
"type": "STRING",
|
|
50078
|
+
"mandatory": false
|
|
50079
|
+
}
|
|
50032
50080
|
]
|
|
50033
50081
|
} as BiEventSchema,
|
|
50034
50082
|
{
|
|
@@ -56904,6 +56952,184 @@ const schemaObj: SchemaObj = [
|
|
|
56904
56952
|
}
|
|
56905
56953
|
]
|
|
56906
56954
|
} as BiEventSchema,
|
|
56955
|
+
{
|
|
56956
|
+
"event_id": 1000,
|
|
56957
|
+
"name": "Wix Patterns - Page Interactive ",
|
|
56958
|
+
"fields": [
|
|
56959
|
+
{
|
|
56960
|
+
"inputName": "artifactId",
|
|
56961
|
+
"type": "STRING",
|
|
56962
|
+
"mandatory": false
|
|
56963
|
+
}
|
|
56964
|
+
,
|
|
56965
|
+
{
|
|
56966
|
+
"inputName": "csid",
|
|
56967
|
+
"type": "GUID",
|
|
56968
|
+
"mandatory": false
|
|
56969
|
+
}
|
|
56970
|
+
,
|
|
56971
|
+
{
|
|
56972
|
+
"inputName": "url",
|
|
56973
|
+
"type": "URL",
|
|
56974
|
+
"mandatory": false
|
|
56975
|
+
}
|
|
56976
|
+
,
|
|
56977
|
+
{
|
|
56978
|
+
"inputName": "cairoVersion",
|
|
56979
|
+
"type": "STRING",
|
|
56980
|
+
"mandatory": false
|
|
56981
|
+
}
|
|
56982
|
+
,
|
|
56983
|
+
{
|
|
56984
|
+
"inputName": "domain",
|
|
56985
|
+
"type": "STRING",
|
|
56986
|
+
"mandatory": false
|
|
56987
|
+
}
|
|
56988
|
+
,
|
|
56989
|
+
{
|
|
56990
|
+
"inputName": "componentName",
|
|
56991
|
+
"type": "STRING",
|
|
56992
|
+
"mandatory": false
|
|
56993
|
+
}
|
|
56994
|
+
,
|
|
56995
|
+
{
|
|
56996
|
+
"inputName": "componentType",
|
|
56997
|
+
"type": "STRING",
|
|
56998
|
+
"mandatory": false
|
|
56999
|
+
}
|
|
57000
|
+
,
|
|
57001
|
+
{
|
|
57002
|
+
"inputName": "resource",
|
|
57003
|
+
"type": "STRING",
|
|
57004
|
+
"mandatory": false
|
|
57005
|
+
}
|
|
57006
|
+
,
|
|
57007
|
+
{
|
|
57008
|
+
"inputName": "loadingTime",
|
|
57009
|
+
"type": "NUMERIC",
|
|
57010
|
+
"mandatory": false
|
|
57011
|
+
}
|
|
57012
|
+
,
|
|
57013
|
+
{
|
|
57014
|
+
"inputName": "appId",
|
|
57015
|
+
"type": "STRING",
|
|
57016
|
+
"mandatory": false
|
|
57017
|
+
}
|
|
57018
|
+
,
|
|
57019
|
+
{
|
|
57020
|
+
"inputName": "product",
|
|
57021
|
+
"type": "STRING",
|
|
57022
|
+
"mandatory": false
|
|
57023
|
+
}
|
|
57024
|
+
,
|
|
57025
|
+
{
|
|
57026
|
+
"inputName": "route",
|
|
57027
|
+
"type": "STRING",
|
|
57028
|
+
"mandatory": false
|
|
57029
|
+
}
|
|
57030
|
+
,
|
|
57031
|
+
{
|
|
57032
|
+
"inputName": "hostingPlatformContextId",
|
|
57033
|
+
"type": "STRING",
|
|
57034
|
+
"mandatory": false
|
|
57035
|
+
}
|
|
57036
|
+
,
|
|
57037
|
+
{
|
|
57038
|
+
"inputName": "routerUsage",
|
|
57039
|
+
"type": "BOOL",
|
|
57040
|
+
"mandatory": false
|
|
57041
|
+
}
|
|
57042
|
+
]
|
|
57043
|
+
} as BiEventSchema,
|
|
57044
|
+
{
|
|
57045
|
+
"event_id": 1001,
|
|
57046
|
+
"name": "Wix Patterns - Full Page Load Completed",
|
|
57047
|
+
"fields": [
|
|
57048
|
+
{
|
|
57049
|
+
"inputName": "artifactId",
|
|
57050
|
+
"type": "STRING",
|
|
57051
|
+
"mandatory": false
|
|
57052
|
+
}
|
|
57053
|
+
,
|
|
57054
|
+
{
|
|
57055
|
+
"inputName": "csid",
|
|
57056
|
+
"type": "GUID",
|
|
57057
|
+
"mandatory": false
|
|
57058
|
+
}
|
|
57059
|
+
,
|
|
57060
|
+
{
|
|
57061
|
+
"inputName": "url",
|
|
57062
|
+
"type": "URL",
|
|
57063
|
+
"mandatory": false
|
|
57064
|
+
}
|
|
57065
|
+
,
|
|
57066
|
+
{
|
|
57067
|
+
"inputName": "cairoVersion",
|
|
57068
|
+
"type": "STRING",
|
|
57069
|
+
"mandatory": false
|
|
57070
|
+
}
|
|
57071
|
+
,
|
|
57072
|
+
{
|
|
57073
|
+
"inputName": "domain",
|
|
57074
|
+
"type": "STRING",
|
|
57075
|
+
"mandatory": false
|
|
57076
|
+
}
|
|
57077
|
+
,
|
|
57078
|
+
{
|
|
57079
|
+
"inputName": "componentName",
|
|
57080
|
+
"type": "STRING",
|
|
57081
|
+
"mandatory": false
|
|
57082
|
+
}
|
|
57083
|
+
,
|
|
57084
|
+
{
|
|
57085
|
+
"inputName": "componentType",
|
|
57086
|
+
"type": "STRING",
|
|
57087
|
+
"mandatory": false
|
|
57088
|
+
}
|
|
57089
|
+
,
|
|
57090
|
+
{
|
|
57091
|
+
"inputName": "resource",
|
|
57092
|
+
"type": "STRING",
|
|
57093
|
+
"mandatory": false
|
|
57094
|
+
}
|
|
57095
|
+
,
|
|
57096
|
+
{
|
|
57097
|
+
"inputName": "loadingTime",
|
|
57098
|
+
"type": "NUMERIC",
|
|
57099
|
+
"mandatory": false
|
|
57100
|
+
}
|
|
57101
|
+
,
|
|
57102
|
+
{
|
|
57103
|
+
"inputName": "appId",
|
|
57104
|
+
"type": "STRING",
|
|
57105
|
+
"mandatory": false
|
|
57106
|
+
}
|
|
57107
|
+
,
|
|
57108
|
+
{
|
|
57109
|
+
"inputName": "product",
|
|
57110
|
+
"type": "STRING",
|
|
57111
|
+
"mandatory": false
|
|
57112
|
+
}
|
|
57113
|
+
,
|
|
57114
|
+
{
|
|
57115
|
+
"inputName": "route",
|
|
57116
|
+
"type": "STRING",
|
|
57117
|
+
"mandatory": false
|
|
57118
|
+
}
|
|
57119
|
+
,
|
|
57120
|
+
{
|
|
57121
|
+
"inputName": "hostingPlatformContextId",
|
|
57122
|
+
"type": "STRING",
|
|
57123
|
+
"mandatory": false
|
|
57124
|
+
}
|
|
57125
|
+
,
|
|
57126
|
+
{
|
|
57127
|
+
"inputName": "routerUsage",
|
|
57128
|
+
"type": "BOOL",
|
|
57129
|
+
"mandatory": false
|
|
57130
|
+
}
|
|
57131
|
+
]
|
|
57132
|
+
} as BiEventSchema,
|
|
56907
57133
|
{
|
|
56908
57134
|
"event_id": 103,
|
|
56909
57135
|
"name": "Picker - Usability",
|
|
@@ -57794,6 +58020,12 @@ const schemaObj: SchemaObj = [
|
|
|
57794
58020
|
"type": "BOOL",
|
|
57795
58021
|
"mandatory": false
|
|
57796
58022
|
}
|
|
58023
|
+
,
|
|
58024
|
+
{
|
|
58025
|
+
"inputName": "artifactIdNew",
|
|
58026
|
+
"type": "STRING",
|
|
58027
|
+
"mandatory": false
|
|
58028
|
+
}
|
|
57797
58029
|
]
|
|
57798
58030
|
} as BiEventSchema,
|
|
57799
58031
|
{
|
|
@@ -57943,6 +58175,12 @@ const schemaObj: SchemaObj = [
|
|
|
57943
58175
|
"type": "BOOL",
|
|
57944
58176
|
"mandatory": false
|
|
57945
58177
|
}
|
|
58178
|
+
,
|
|
58179
|
+
{
|
|
58180
|
+
"inputName": "artifactIdNew",
|
|
58181
|
+
"type": "STRING",
|
|
58182
|
+
"mandatory": false
|
|
58183
|
+
}
|
|
57946
58184
|
]
|
|
57947
58185
|
} as BiEventSchema,
|
|
57948
58186
|
{
|
|
@@ -65600,6 +65838,18 @@ const schemaObj: SchemaObj = [
|
|
|
65600
65838
|
"type": "STRING",
|
|
65601
65839
|
"mandatory": false
|
|
65602
65840
|
}
|
|
65841
|
+
,
|
|
65842
|
+
{
|
|
65843
|
+
"inputName": "componentId",
|
|
65844
|
+
"type": "STRING",
|
|
65845
|
+
"mandatory": false
|
|
65846
|
+
}
|
|
65847
|
+
,
|
|
65848
|
+
{
|
|
65849
|
+
"inputName": "isSinglePage",
|
|
65850
|
+
"type": "BOOL",
|
|
65851
|
+
"mandatory": false
|
|
65852
|
+
}
|
|
65603
65853
|
]
|
|
65604
65854
|
} as BiEventSchema,
|
|
65605
65855
|
{
|
|
@@ -65725,73 +65975,73 @@ const schemaObj: SchemaObj = [
|
|
|
65725
65975
|
}
|
|
65726
65976
|
,
|
|
65727
65977
|
{
|
|
65728
|
-
"inputName": "
|
|
65729
|
-
"type": "
|
|
65978
|
+
"inputName": "error_code",
|
|
65979
|
+
"type": "NUMERIC",
|
|
65730
65980
|
"mandatory": false
|
|
65731
65981
|
}
|
|
65732
65982
|
,
|
|
65733
65983
|
{
|
|
65734
|
-
"inputName": "
|
|
65984
|
+
"inputName": "is_override_error",
|
|
65735
65985
|
"type": "STRING",
|
|
65736
65986
|
"mandatory": false
|
|
65737
65987
|
}
|
|
65738
65988
|
,
|
|
65739
65989
|
{
|
|
65740
|
-
"inputName": "
|
|
65741
|
-
"type": "
|
|
65990
|
+
"inputName": "is_override_error_state_function",
|
|
65991
|
+
"type": "STRING",
|
|
65742
65992
|
"mandatory": false
|
|
65743
65993
|
}
|
|
65744
65994
|
,
|
|
65745
65995
|
{
|
|
65746
|
-
"inputName": "
|
|
65996
|
+
"inputName": "action",
|
|
65747
65997
|
"type": "STRING",
|
|
65748
65998
|
"mandatory": false
|
|
65749
65999
|
}
|
|
65750
66000
|
,
|
|
65751
66001
|
{
|
|
65752
|
-
"inputName": "
|
|
66002
|
+
"inputName": "error_json",
|
|
65753
66003
|
"type": "STRING",
|
|
65754
66004
|
"mandatory": false
|
|
65755
66005
|
}
|
|
65756
66006
|
,
|
|
65757
66007
|
{
|
|
65758
|
-
"inputName": "
|
|
66008
|
+
"inputName": "translated_message",
|
|
65759
66009
|
"type": "STRING",
|
|
65760
66010
|
"mandatory": false
|
|
65761
66011
|
}
|
|
65762
66012
|
,
|
|
65763
66013
|
{
|
|
65764
|
-
"inputName": "
|
|
66014
|
+
"inputName": "error_message",
|
|
65765
66015
|
"type": "STRING",
|
|
65766
66016
|
"mandatory": false
|
|
65767
66017
|
}
|
|
65768
66018
|
,
|
|
65769
66019
|
{
|
|
65770
|
-
"inputName": "
|
|
66020
|
+
"inputName": "exception_message",
|
|
65771
66021
|
"type": "STRING",
|
|
65772
66022
|
"mandatory": false
|
|
65773
66023
|
}
|
|
65774
66024
|
,
|
|
65775
66025
|
{
|
|
65776
|
-
"inputName": "
|
|
66026
|
+
"inputName": "client_error_code",
|
|
65777
66027
|
"type": "STRING",
|
|
65778
66028
|
"mandatory": false
|
|
65779
66029
|
}
|
|
65780
66030
|
,
|
|
65781
66031
|
{
|
|
65782
|
-
"inputName": "
|
|
66032
|
+
"inputName": "error_type",
|
|
65783
66033
|
"type": "STRING",
|
|
65784
66034
|
"mandatory": false
|
|
65785
66035
|
}
|
|
65786
66036
|
,
|
|
65787
66037
|
{
|
|
65788
|
-
"inputName": "
|
|
65789
|
-
"type": "
|
|
66038
|
+
"inputName": "is_consumer_resolved_error",
|
|
66039
|
+
"type": "BOOL",
|
|
65790
66040
|
"mandatory": false
|
|
65791
66041
|
}
|
|
65792
66042
|
,
|
|
65793
66043
|
{
|
|
65794
|
-
"inputName": "
|
|
66044
|
+
"inputName": "full_artifact_id",
|
|
65795
66045
|
"type": "STRING",
|
|
65796
66046
|
"mandatory": false
|
|
65797
66047
|
}
|
|
@@ -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;
|
|
@@ -256,6 +294,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
256
294
|
hostingPlatformContextId: string;
|
|
257
295
|
routerUsage: boolean;
|
|
258
296
|
isCurrentViewCustomMade: boolean;
|
|
297
|
+
artifactIdNew: string;
|
|
259
298
|
}>(this.util.getRawEvents, 144, 110, this.validate);
|
|
260
299
|
}
|
|
261
300
|
|
|
@@ -285,6 +324,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
285
324
|
hostingPlatformContextId: string;
|
|
286
325
|
routerUsage: boolean;
|
|
287
326
|
isCurrentViewCustomMade: boolean;
|
|
327
|
+
artifactIdNew: string;
|
|
288
328
|
}>(this.util.getRawEvents, 144, 111, this.validate);
|
|
289
329
|
}
|
|
290
330
|
|
|
@@ -1857,6 +1897,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1857
1897
|
appId: string;
|
|
1858
1898
|
components: string;
|
|
1859
1899
|
pageType: string;
|
|
1900
|
+
componentId: string;
|
|
1901
|
+
isSinglePage: boolean;
|
|
1860
1902
|
}>(this.util.getRawEvents, 144, 5, this.validate);
|
|
1861
1903
|
}
|
|
1862
1904
|
|
|
@@ -1885,18 +1927,18 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1885
1927
|
artifact_id: string;
|
|
1886
1928
|
hosting_platform: string;
|
|
1887
1929
|
app_id: string;
|
|
1888
|
-
initial_page_id: string;
|
|
1889
|
-
active_page_id: string;
|
|
1890
1930
|
error_code: number;
|
|
1891
|
-
application_error: string;
|
|
1892
|
-
message: string;
|
|
1893
1931
|
is_override_error: string;
|
|
1894
1932
|
is_override_error_state_function: string;
|
|
1895
|
-
msid: string;
|
|
1896
|
-
project: string;
|
|
1897
|
-
owner: string;
|
|
1898
1933
|
action: string;
|
|
1899
1934
|
error_json: string;
|
|
1935
|
+
translated_message: string;
|
|
1936
|
+
error_message: string;
|
|
1937
|
+
exception_message: string;
|
|
1938
|
+
client_error_code: string;
|
|
1939
|
+
error_type: string;
|
|
1940
|
+
is_consumer_resolved_error: boolean;
|
|
1941
|
+
full_artifact_id: string;
|
|
1900
1942
|
}>(this.util.getRawEvents, 176, 404, this.validate);
|
|
1901
1943
|
}
|
|
1902
1944
|
|
|
@@ -5980,6 +6022,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
5980
6022
|
platform: string;
|
|
5981
6023
|
msid: GUID;
|
|
5982
6024
|
app_id: string;
|
|
6025
|
+
contributors_quota: number;
|
|
6026
|
+
contributors_count: number;
|
|
5983
6027
|
}>(this.util.getRawEvents, 5, 1401, this.validate);
|
|
5984
6028
|
}
|
|
5985
6029
|
|
|
@@ -6093,6 +6137,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6093
6137
|
contributors_quota: number;
|
|
6094
6138
|
contributors_count: number;
|
|
6095
6139
|
app_id: string;
|
|
6140
|
+
Has_ai_assistant: boolean;
|
|
6096
6141
|
}>(this.util.getRawEvents, 5, 1410, this.validate);
|
|
6097
6142
|
}
|
|
6098
6143
|
|
|
@@ -6113,6 +6158,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6113
6158
|
contributors_quota: number;
|
|
6114
6159
|
contributors_count: number;
|
|
6115
6160
|
app_id: string;
|
|
6161
|
+
Has_ai_assistant: boolean;
|
|
6116
6162
|
}>(this.util.getRawEvents, 5, 1411, this.validate);
|
|
6117
6163
|
}
|
|
6118
6164
|
|
|
@@ -6215,6 +6261,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6215
6261
|
origin: string;
|
|
6216
6262
|
platform: string;
|
|
6217
6263
|
msid: GUID;
|
|
6264
|
+
Has_ai_assistant: boolean;
|
|
6218
6265
|
}>(this.util.getRawEvents, 5, 1421, this.validate);
|
|
6219
6266
|
}
|
|
6220
6267
|
|
|
@@ -15188,6 +15235,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15188
15235
|
is_internal_page: boolean;
|
|
15189
15236
|
hosting_platform_context_id: string;
|
|
15190
15237
|
internal_route: string;
|
|
15238
|
+
prevRoute: string;
|
|
15191
15239
|
}>(this.util.getRawEvents, 5, 9001, this.validate);
|
|
15192
15240
|
}
|
|
15193
15241
|
|
|
@@ -15212,6 +15260,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15212
15260
|
internal_route: string;
|
|
15213
15261
|
loading_time_from_first_feedback: number;
|
|
15214
15262
|
loading_time: number;
|
|
15263
|
+
prevRoute: string;
|
|
15215
15264
|
}>(this.util.getRawEvents, 5, 9002, this.validate);
|
|
15216
15265
|
}
|
|
15217
15266
|
|
|
@@ -15392,6 +15441,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
15392
15441
|
hosting_platform_context_id: string;
|
|
15393
15442
|
internal_route: string;
|
|
15394
15443
|
loading_time: number;
|
|
15444
|
+
prevRoute: string;
|
|
15395
15445
|
}>(this.util.getRawEvents, 5, 9029, this.validate);
|
|
15396
15446
|
}
|
|
15397
15447
|
|