@wix/bex-utils 2.67.0 → 2.68.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 +33 -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 +33 -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 +711 -0
- package/@wix/bi-logger-os-data/dist/cjs/testkit/common.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/cjs/testkit/node-testkit.js +33 -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 +304 -32
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/index.js +33 -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 +33 -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 +711 -0
- package/@wix/bi-logger-os-data/dist/esm/testkit/common.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/testkit/node-testkit.js +33 -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 +263 -2
- 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 +13 -2
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +150 -0
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +150 -0
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +150 -0
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +242 -3
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/index.ts +46 -2
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +183 -0
- package/@wix/bi-logger-os-data/src/testkit/common.ts +851 -23
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +183 -0
- package/@wix/bi-logger-os-data/src/types.ts +292 -2
- package/@wix/bi-logger-os-data/src/v2/index.ts +275 -3
- package/package.json +3 -3
|
@@ -68,6 +68,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
68
68
|
current_page_id: string;
|
|
69
69
|
panel_name: string;
|
|
70
70
|
builderType: string;
|
|
71
|
+
isAiSiteCreation: boolean;
|
|
71
72
|
}>(this.util.getRawEvents, 110, 122, this.validate);
|
|
72
73
|
}
|
|
73
74
|
|
|
@@ -75,6 +76,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
75
76
|
return new EventsFilter<{
|
|
76
77
|
service_status: string;
|
|
77
78
|
mcp_query: string;
|
|
79
|
+
username: string;
|
|
78
80
|
}>(this.util.getRawEvents, 11, 1992, this.validate);
|
|
79
81
|
}
|
|
80
82
|
|
|
@@ -93,6 +95,25 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
93
95
|
}>(this.util.getRawEvents, 144, 1, this.validate);
|
|
94
96
|
}
|
|
95
97
|
|
|
98
|
+
get wixPatternsDeleteModalShownSrc144Evid10() {
|
|
99
|
+
return new EventsFilter<{
|
|
100
|
+
artifactId: string;
|
|
101
|
+
location: string;
|
|
102
|
+
csid: GUID;
|
|
103
|
+
cairoVersion: string;
|
|
104
|
+
isSelectAll: boolean;
|
|
105
|
+
isTPA: boolean;
|
|
106
|
+
componentName: string;
|
|
107
|
+
componentType: string;
|
|
108
|
+
itemId: string;
|
|
109
|
+
itemIndex: number;
|
|
110
|
+
numItems: number;
|
|
111
|
+
appId: string;
|
|
112
|
+
hostingPlatformContextId: string;
|
|
113
|
+
url: string;
|
|
114
|
+
}>(this.util.getRawEvents, 144, 10, this.validate);
|
|
115
|
+
}
|
|
116
|
+
|
|
96
117
|
get wixPatternsPageInteractiveSrc144Evid1000() {
|
|
97
118
|
return new EventsFilter<{
|
|
98
119
|
artifactId: string;
|
|
@@ -294,6 +315,26 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
294
315
|
}>(this.util.getRawEvents, 144, 109, this.validate);
|
|
295
316
|
}
|
|
296
317
|
|
|
318
|
+
get wixPatternsDeleteModalCtaClickedSrc144Evid11() {
|
|
319
|
+
return new EventsFilter<{
|
|
320
|
+
artifactId: string;
|
|
321
|
+
location: string;
|
|
322
|
+
csid: GUID;
|
|
323
|
+
cairoVersion: string;
|
|
324
|
+
isSelectAll: boolean;
|
|
325
|
+
isTPA: boolean;
|
|
326
|
+
componentName: string;
|
|
327
|
+
componentType: string;
|
|
328
|
+
ctaName: string;
|
|
329
|
+
itemId: string;
|
|
330
|
+
itemIndex: number;
|
|
331
|
+
numItems: number;
|
|
332
|
+
appId: string;
|
|
333
|
+
hostingPlatformContextId: string;
|
|
334
|
+
url: string;
|
|
335
|
+
}>(this.util.getRawEvents, 144, 11, this.validate);
|
|
336
|
+
}
|
|
337
|
+
|
|
297
338
|
get loadStart() {
|
|
298
339
|
return new EventsFilter<{
|
|
299
340
|
artifactId: string;
|
|
@@ -316,6 +357,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
316
357
|
providerId: string;
|
|
317
358
|
providerName: string;
|
|
318
359
|
referralInfo: string;
|
|
360
|
+
isAutoPatterns: boolean;
|
|
319
361
|
hostingPlatformContextId: string;
|
|
320
362
|
theme: string;
|
|
321
363
|
consumerId: string;
|
|
@@ -359,6 +401,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
359
401
|
currentKanban: string;
|
|
360
402
|
referralInfo: string;
|
|
361
403
|
sectionsOverview: string;
|
|
404
|
+
isAutoPatterns: boolean;
|
|
362
405
|
hostingPlatformContextId: string;
|
|
363
406
|
theme: string;
|
|
364
407
|
consumerId: string;
|
|
@@ -2102,6 +2145,99 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
2102
2145
|
}>(this.util.getRawEvents, 176, 404, this.validate);
|
|
2103
2146
|
}
|
|
2104
2147
|
|
|
2148
|
+
get genericUserActionSrc193Evid2() {
|
|
2149
|
+
return new EventsFilter<{
|
|
2150
|
+
actionType: string;
|
|
2151
|
+
actionIntent: string;
|
|
2152
|
+
hostingPlatform: string;
|
|
2153
|
+
origin: string;
|
|
2154
|
+
messageId: string;
|
|
2155
|
+
conversationId: string;
|
|
2156
|
+
entityType: string;
|
|
2157
|
+
entityId: string;
|
|
2158
|
+
actionName: string;
|
|
2159
|
+
requestId: string;
|
|
2160
|
+
assetId: string;
|
|
2161
|
+
projectId: string;
|
|
2162
|
+
componentId: string;
|
|
2163
|
+
assetClass: string;
|
|
2164
|
+
additionalInfo: string;
|
|
2165
|
+
}>(this.util.getRawEvents, 193, 2, this.validate);
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
get panelLoadedSrc193Evid4() {
|
|
2169
|
+
return new EventsFilter<{
|
|
2170
|
+
panelType: string;
|
|
2171
|
+
hostingPlatform: string;
|
|
2172
|
+
origin: string;
|
|
2173
|
+
duration: number;
|
|
2174
|
+
}>(this.util.getRawEvents, 193, 4, this.validate);
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
get errorSrc193Evid5() {
|
|
2178
|
+
return new EventsFilter<{
|
|
2179
|
+
errorType: string;
|
|
2180
|
+
requestId: string;
|
|
2181
|
+
errorMessage: string;
|
|
2182
|
+
errorDescription: string;
|
|
2183
|
+
errorCode: number;
|
|
2184
|
+
entityType: string;
|
|
2185
|
+
entityId: string;
|
|
2186
|
+
displayedAction: string;
|
|
2187
|
+
isDisplayed: boolean;
|
|
2188
|
+
origin: string;
|
|
2189
|
+
hostingPlatform: string;
|
|
2190
|
+
projectId: string;
|
|
2191
|
+
isFatal: boolean;
|
|
2192
|
+
}>(this.util.getRawEvents, 193, 5, this.validate);
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
get panelLoadedSrc193Evid6() {
|
|
2196
|
+
return new EventsFilter<{
|
|
2197
|
+
panelType: string;
|
|
2198
|
+
hostingPlatform: string;
|
|
2199
|
+
origin: string;
|
|
2200
|
+
duration: number;
|
|
2201
|
+
projectId: string;
|
|
2202
|
+
}>(this.util.getRawEvents, 193, 6, this.validate);
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
get panelClosedSrc193Evid7() {
|
|
2206
|
+
return new EventsFilter<{
|
|
2207
|
+
panelType: string;
|
|
2208
|
+
hostingPlatform: string;
|
|
2209
|
+
origin: string;
|
|
2210
|
+
closingButton: string;
|
|
2211
|
+
projectId: string;
|
|
2212
|
+
}>(this.util.getRawEvents, 193, 7, this.validate);
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
get searchInitiatedSrc193Evid8() {
|
|
2216
|
+
return new EventsFilter<{
|
|
2217
|
+
hostingPlatform: string;
|
|
2218
|
+
origin: string;
|
|
2219
|
+
searchTerm: string;
|
|
2220
|
+
resultsCnt: number;
|
|
2221
|
+
resultsArray: string;
|
|
2222
|
+
requestId: string;
|
|
2223
|
+
projectId: string;
|
|
2224
|
+
duration: number;
|
|
2225
|
+
}>(this.util.getRawEvents, 193, 8, this.validate);
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
get searchResultClickSrc193Evid9() {
|
|
2229
|
+
return new EventsFilter<{
|
|
2230
|
+
hostingPlatform: string;
|
|
2231
|
+
origin: string;
|
|
2232
|
+
searchTerm: string;
|
|
2233
|
+
itemIdx: number;
|
|
2234
|
+
resultName: string;
|
|
2235
|
+
resultValue: string;
|
|
2236
|
+
requestId: string;
|
|
2237
|
+
projectId: string;
|
|
2238
|
+
}>(this.util.getRawEvents, 193, 9, this.validate);
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2105
2241
|
get pingMarketingConsentUnsubscribeClickSrc19Evid10001() {
|
|
2106
2242
|
return new EventsFilter<{
|
|
2107
2243
|
msid: string;
|
|
@@ -9550,6 +9686,48 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
9550
9686
|
}>(this.util.getRawEvents, 5, 196, this.validate);
|
|
9551
9687
|
}
|
|
9552
9688
|
|
|
9689
|
+
get toolNotSupportedModalWasShownSrc5Evid1980() {
|
|
9690
|
+
return new EventsFilter<{
|
|
9691
|
+
hosting_platform: string;
|
|
9692
|
+
referral_info: string;
|
|
9693
|
+
screen_width: number;
|
|
9694
|
+
page_id: string;
|
|
9695
|
+
page_name: string;
|
|
9696
|
+
window_width: number;
|
|
9697
|
+
screen_height: number;
|
|
9698
|
+
app_id: string;
|
|
9699
|
+
route: string;
|
|
9700
|
+
window_height: number;
|
|
9701
|
+
is_internal_page: boolean;
|
|
9702
|
+
hosting_platform_context_id: string;
|
|
9703
|
+
internal_route: string;
|
|
9704
|
+
url: Url;
|
|
9705
|
+
displayMode: string;
|
|
9706
|
+
}>(this.util.getRawEvents, 5, 1980, this.validate);
|
|
9707
|
+
}
|
|
9708
|
+
|
|
9709
|
+
get toolNotSupportedModalActionSrc5Evid1981() {
|
|
9710
|
+
return new EventsFilter<{
|
|
9711
|
+
hosting_platform: string;
|
|
9712
|
+
referral_info: string;
|
|
9713
|
+
screen_width: number;
|
|
9714
|
+
page_id: string;
|
|
9715
|
+
page_name: string;
|
|
9716
|
+
window_width: number;
|
|
9717
|
+
screen_height: number;
|
|
9718
|
+
app_id: string;
|
|
9719
|
+
route: string;
|
|
9720
|
+
window_height: number;
|
|
9721
|
+
is_internal_page: boolean;
|
|
9722
|
+
hosting_platform_context_id: string;
|
|
9723
|
+
internal_route: string;
|
|
9724
|
+
url: Url;
|
|
9725
|
+
action_type: string;
|
|
9726
|
+
cta: string;
|
|
9727
|
+
displayMode: string;
|
|
9728
|
+
}>(this.util.getRawEvents, 5, 1981, this.validate);
|
|
9729
|
+
}
|
|
9730
|
+
|
|
9553
9731
|
get dashboardFetchDealerLayoutFailed() {
|
|
9554
9732
|
return new EventsFilter<{
|
|
9555
9733
|
view_type: string;
|
|
@@ -14559,6 +14737,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
14559
14737
|
msid: GUID;
|
|
14560
14738
|
trigger_entity_id: string;
|
|
14561
14739
|
toast_timeout: string;
|
|
14740
|
+
hasRequestId: boolean;
|
|
14741
|
+
toastId: string;
|
|
14562
14742
|
message: string;
|
|
14563
14743
|
app_id: string;
|
|
14564
14744
|
}>(this.util.getRawEvents, 5, 85, this.validate);
|
|
@@ -14616,6 +14796,9 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
14616
14796
|
msid: GUID;
|
|
14617
14797
|
trigger_entity_id: string;
|
|
14618
14798
|
toast_timeout: string;
|
|
14799
|
+
ctaName: string;
|
|
14800
|
+
requestId: string;
|
|
14801
|
+
toastId: string;
|
|
14619
14802
|
}>(this.util.getRawEvents, 5, 86, this.validate);
|
|
14620
14803
|
}
|
|
14621
14804
|
|
|
@@ -34,12 +34,16 @@ export type bmOverEditorPanelClickSrc110Evid122Params = {
|
|
|
34
34
|
panel_name?: string;
|
|
35
35
|
// builder type - relevant for BM over editor
|
|
36
36
|
builderType?: string;
|
|
37
|
+
// true - user created site using AI Site Creation flow; false- site was created by templates flow
|
|
38
|
+
isAiSiteCreation?: boolean;
|
|
37
39
|
};
|
|
38
40
|
export type dpKbMcpServerCallSrc11Evid1992Params = {
|
|
39
41
|
// the request status
|
|
40
42
|
service_status?: string;
|
|
41
43
|
// the mcp query
|
|
42
44
|
mcp_query?: string;
|
|
45
|
+
// username
|
|
46
|
+
username?: string;
|
|
43
47
|
};
|
|
44
48
|
export type wixPatternsSummaryBarIsShownSrc144Evid1Params = {
|
|
45
49
|
// Artifact that owns the component
|
|
@@ -64,6 +68,36 @@ export type wixPatternsSummaryBarIsShownSrc144Evid1Params = {
|
|
|
64
68
|
//
|
|
65
69
|
hostingPlatformContextId?: string;
|
|
66
70
|
};
|
|
71
|
+
export type wixPatternsDeleteModalShownSrc144Evid10Params = {
|
|
72
|
+
// Artifact that owns the component
|
|
73
|
+
artifactId?: string;
|
|
74
|
+
// CTA location: multi bulk action toolbar, bulk action toolbar, action cell, Customize columns action cell
|
|
75
|
+
location?: string;
|
|
76
|
+
// cairo sessionId
|
|
77
|
+
csid?: GUID;
|
|
78
|
+
// Wix Patterns_version(cairo_version)
|
|
79
|
+
cairoVersion?: string;
|
|
80
|
+
// Are all items in the list selected. numItems = filteredListSize ==> isSelectAll = TRUE
|
|
81
|
+
isSelectAll?: boolean;
|
|
82
|
+
// is_tpa
|
|
83
|
+
isTPA?: boolean;
|
|
84
|
+
// (Optional) Component name, if there are two components of the same type per artifact
|
|
85
|
+
componentName?: string;
|
|
86
|
+
// Picker Standalone/Picker Modal/Table/Cards
|
|
87
|
+
componentType?: string;
|
|
88
|
+
// ID of the item that the user clicked on its CTA
|
|
89
|
+
itemId?: string;
|
|
90
|
+
// Out of the list of items, what is the index of the clicked item . ** filteredListSize = X --> (1 <= itemIndex <= X)
|
|
91
|
+
itemIndex?: number;
|
|
92
|
+
// How many items have been selected
|
|
93
|
+
numItems?: number;
|
|
94
|
+
// app_id
|
|
95
|
+
appId?: string;
|
|
96
|
+
// the id of the context entity that the user view or edit (app/account/site)
|
|
97
|
+
hostingPlatformContextId?: string;
|
|
98
|
+
// Page's url
|
|
99
|
+
url?: string;
|
|
100
|
+
};
|
|
67
101
|
export type wixPatternsPageInteractiveSrc144Evid1000Params = {
|
|
68
102
|
// Artifact that owns the component
|
|
69
103
|
artifactId?: string;
|
|
@@ -396,6 +430,38 @@ export type pikachuItemCategorySelectedParams = {
|
|
|
396
430
|
// Page's url
|
|
397
431
|
url?: string;
|
|
398
432
|
};
|
|
433
|
+
export type wixPatternsDeleteModalCtaClickedSrc144Evid11Params = {
|
|
434
|
+
// Artifact that owns the component
|
|
435
|
+
artifactId?: string;
|
|
436
|
+
// CTA location: multi bulk action toolbar, bulk action toolbar, action cell, Customize columns action cell
|
|
437
|
+
location?: string;
|
|
438
|
+
// cairo sessionId
|
|
439
|
+
csid?: GUID;
|
|
440
|
+
// Wix Patterns_version(cairo_version)
|
|
441
|
+
cairoVersion?: string;
|
|
442
|
+
// Are all items in the list selected. numItems = filteredListSize ==> isSelectAll = TRUE
|
|
443
|
+
isSelectAll?: boolean;
|
|
444
|
+
// is_tpa
|
|
445
|
+
isTPA?: boolean;
|
|
446
|
+
// (Optional) Component name, if there are two components of the same type per artifact
|
|
447
|
+
componentName?: string;
|
|
448
|
+
// Picker Standalone/Picker Modal/Table/Cards
|
|
449
|
+
componentType?: string;
|
|
450
|
+
// 'X', 'Cancel' , Delete' - in english
|
|
451
|
+
ctaName?: string;
|
|
452
|
+
// ID of the item that the user clicked on its CTA
|
|
453
|
+
itemId?: string;
|
|
454
|
+
// Out of the list of items, what is the index of the clicked item . ** filteredListSize = X --> (1 <= itemIndex <= X)
|
|
455
|
+
itemIndex?: number;
|
|
456
|
+
// How many items have been selected
|
|
457
|
+
numItems?: number;
|
|
458
|
+
// app_id
|
|
459
|
+
appId?: string;
|
|
460
|
+
// the id of the context entity that the user view or edit (app/account/site)
|
|
461
|
+
hostingPlatformContextId?: string;
|
|
462
|
+
// Page's url
|
|
463
|
+
url?: string;
|
|
464
|
+
};
|
|
399
465
|
export type loadStartParams = {
|
|
400
466
|
// Artifact that owns the component
|
|
401
467
|
artifactId?: string;
|
|
@@ -437,6 +503,8 @@ export type loadStartParams = {
|
|
|
437
503
|
providerName?: string;
|
|
438
504
|
// Referral from which the component was opened (dashboard or editor)
|
|
439
505
|
referralInfo?: string;
|
|
506
|
+
// true if the page was created via auto patterns, otherwise false
|
|
507
|
+
isAutoPatterns?: boolean;
|
|
440
508
|
// the id of the context entity that the user view or edit (app/account/site)
|
|
441
509
|
//
|
|
442
510
|
hostingPlatformContextId?: string;
|
|
@@ -518,6 +586,8 @@ export type loadEndParams = {
|
|
|
518
586
|
referralInfo?: string;
|
|
519
587
|
// Relevant for components with sections: For each section, include the section name, number of items, and item IDs
|
|
520
588
|
sectionsOverview?: string;
|
|
589
|
+
// true if the page was created via auto patterns, otherwise false
|
|
590
|
+
isAutoPatterns?: boolean;
|
|
521
591
|
// the id of the context entity that the user view or edit (app/account/site)
|
|
522
592
|
//
|
|
523
593
|
hostingPlatformContextId?: string;
|
|
@@ -3393,6 +3463,148 @@ export type httpClientErrorSrc176Evid404Params = {
|
|
|
3393
3463
|
// server_artifactid
|
|
3394
3464
|
server_artifactid?: string;
|
|
3395
3465
|
};
|
|
3466
|
+
export type genericUserActionSrc193Evid2Params = {
|
|
3467
|
+
// Type of user interaction (limited to: click/drag/resize / crop / extend / rotate / drag_extend / drag_crop, or hover
|
|
3468
|
+
actionType?: string;
|
|
3469
|
+
// The specific intent of the action, restricted to selection,navigation,add,delete,edit
|
|
3470
|
+
actionIntent?: string;
|
|
3471
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3472
|
+
hostingPlatform?: string;
|
|
3473
|
+
// The source or context from which the action was triggered.
|
|
3474
|
+
// Restricted to Project Setting, Add Panel, Smart Breakdown, Top Bar, Asset Panel
|
|
3475
|
+
origin?: string;
|
|
3476
|
+
// the message id if the action was initiated from an AI Assistant
|
|
3477
|
+
messageId?: string;
|
|
3478
|
+
// the conversation id if the action was initiated from an AI Assistant
|
|
3479
|
+
conversationId?: string;
|
|
3480
|
+
// The entity associated with the action (component, asset, or project).
|
|
3481
|
+
entityType?: string;
|
|
3482
|
+
// the relevant id of the entity (project/asset/component)
|
|
3483
|
+
entityId?: string;
|
|
3484
|
+
// The call-to-action performed by the user. Usually will be the button name.
|
|
3485
|
+
actionName?: string;
|
|
3486
|
+
// The relevant request id if applicable
|
|
3487
|
+
requestId?: string;
|
|
3488
|
+
// The relevant asset id if applicable
|
|
3489
|
+
assetId?: string;
|
|
3490
|
+
// The relevant project id if applicable
|
|
3491
|
+
projectId?: string;
|
|
3492
|
+
// The relevant component id if applicable
|
|
3493
|
+
componentId?: string;
|
|
3494
|
+
// The relevant asset class if applicable (Image / Video / Logo / Events / Forms / PDF / Docs)
|
|
3495
|
+
assetClass?: string;
|
|
3496
|
+
// Used by any consumer who wants to send specific content
|
|
3497
|
+
additionalInfo?: string;
|
|
3498
|
+
};
|
|
3499
|
+
export type panelLoadedSrc193Evid4Params = {
|
|
3500
|
+
// Add Panel / Asset Panel
|
|
3501
|
+
panelType?: string;
|
|
3502
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3503
|
+
hostingPlatform?: string;
|
|
3504
|
+
// The source or context from which the action was triggered.
|
|
3505
|
+
// Restricted to Project Setting, Add Panel, Smart Breakdown, Top Bar, Asset Panel
|
|
3506
|
+
origin?: string;
|
|
3507
|
+
// time to load panel in ms
|
|
3508
|
+
duration?: number;
|
|
3509
|
+
};
|
|
3510
|
+
export type errorSrc193Evid5Params = {
|
|
3511
|
+
// Captures a system or user initiated error, system/applicatiovalidation/network
|
|
3512
|
+
errorType?: string;
|
|
3513
|
+
// The unique identifier of the request where the error happened.
|
|
3514
|
+
requestId?: string;
|
|
3515
|
+
// The message displayed to the user in the error modal.
|
|
3516
|
+
// Example: "Upload failed. Please try again.", "Cannot save changes. Check your input."
|
|
3517
|
+
errorMessage?: string;
|
|
3518
|
+
// Adescription of what went wrong.
|
|
3519
|
+
// "User input exceeded maximum length."
|
|
3520
|
+
errorDescription?: string;
|
|
3521
|
+
// A standardized code representing the error.
|
|
3522
|
+
errorCode?: number;
|
|
3523
|
+
// The entity associated with the action (component, asset, or project).
|
|
3524
|
+
entityType?: string;
|
|
3525
|
+
// the relevant id of the entity (project/asset/component)
|
|
3526
|
+
entityId?: string;
|
|
3527
|
+
// The action shown in the error modal when the error occurred.
|
|
3528
|
+
// Example: "Retry Upload", "Save Changes", "Submit Form"
|
|
3529
|
+
displayedAction?: string;
|
|
3530
|
+
// Whether the error message was actually shown to the user.
|
|
3531
|
+
isDisplayed?: boolean;
|
|
3532
|
+
// The source or context from which the action was triggered.
|
|
3533
|
+
// Restricted to Project Setting, Add Panel, Smart Breakdown, Top Bar, Asset Panel
|
|
3534
|
+
origin?: string;
|
|
3535
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3536
|
+
hostingPlatform?: string;
|
|
3537
|
+
// The relevant project id if applicable
|
|
3538
|
+
//
|
|
3539
|
+
projectId?: string;
|
|
3540
|
+
// True if Wixel crashed because of the error, false otherwise
|
|
3541
|
+
isFatal?: boolean;
|
|
3542
|
+
};
|
|
3543
|
+
export type panelLoadedSrc193Evid6Params = {
|
|
3544
|
+
// Add Panel / Asset Panel
|
|
3545
|
+
panelType?: string;
|
|
3546
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3547
|
+
hostingPlatform?: string;
|
|
3548
|
+
// The source or context from which the action was triggered.
|
|
3549
|
+
// Restricted to Project Setting, Add Panel, Smart Breakdown, Top Bar, Asset Panel
|
|
3550
|
+
origin?: string;
|
|
3551
|
+
// time to load panel in ms
|
|
3552
|
+
duration?: number;
|
|
3553
|
+
// The relevant project id if applicable
|
|
3554
|
+
projectId?: string;
|
|
3555
|
+
};
|
|
3556
|
+
export type panelClosedSrc193Evid7Params = {
|
|
3557
|
+
// Add Panel / Asset Panel
|
|
3558
|
+
panelType?: string;
|
|
3559
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3560
|
+
hostingPlatform?: string;
|
|
3561
|
+
// The source or context from which the action was triggered.
|
|
3562
|
+
// Restricted to Project Setting, Add Panel, Smart Breakdown, Top Bar, Asset Panel
|
|
3563
|
+
origin?: string;
|
|
3564
|
+
// X/Close
|
|
3565
|
+
closingButton?: string;
|
|
3566
|
+
// The relevant project id if applicable
|
|
3567
|
+
//
|
|
3568
|
+
projectId?: string;
|
|
3569
|
+
};
|
|
3570
|
+
export type searchInitiatedSrc193Evid8Params = {
|
|
3571
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3572
|
+
hostingPlatform?: string;
|
|
3573
|
+
// Home search bar/Templated/account/editor
|
|
3574
|
+
origin?: string;
|
|
3575
|
+
// the search term of the user
|
|
3576
|
+
searchTerm?: string;
|
|
3577
|
+
// home many results returned from the search
|
|
3578
|
+
resultsCnt?: number;
|
|
3579
|
+
// an array/json of the search results (if templated then templates ids)
|
|
3580
|
+
resultsArray?: string;
|
|
3581
|
+
// the relevant request id of the search
|
|
3582
|
+
requestId?: string;
|
|
3583
|
+
// The relevant project id if applicable
|
|
3584
|
+
//
|
|
3585
|
+
projectId?: string;
|
|
3586
|
+
// Loading time (in milliseconds) from when the user finished typing until the results are returned
|
|
3587
|
+
duration?: number;
|
|
3588
|
+
};
|
|
3589
|
+
export type searchResultClickSrc193Evid9Params = {
|
|
3590
|
+
// The environment where the action took place. restricted to Editor/Home/Templated/Profile
|
|
3591
|
+
hostingPlatform?: string;
|
|
3592
|
+
// Home search bar/Templated/account/editor
|
|
3593
|
+
origin?: string;
|
|
3594
|
+
// the search term of the user
|
|
3595
|
+
searchTerm?: string;
|
|
3596
|
+
// the index of the item in the search results
|
|
3597
|
+
itemIdx?: number;
|
|
3598
|
+
// the name of the result
|
|
3599
|
+
resultName?: string;
|
|
3600
|
+
// the value in case of a template
|
|
3601
|
+
resultValue?: string;
|
|
3602
|
+
// the relevant request id of the search
|
|
3603
|
+
requestId?: string;
|
|
3604
|
+
// The relevant project id if applicable
|
|
3605
|
+
//
|
|
3606
|
+
projectId?: string;
|
|
3607
|
+
};
|
|
3396
3608
|
export type pingMarketingConsentUnsubscribeClickSrc19Evid10001Params = {
|
|
3397
3609
|
// msid
|
|
3398
3610
|
msid?: string;
|
|
@@ -8786,7 +8998,7 @@ export type teamManagementInvitePeopleClickParams = {
|
|
|
8786
8998
|
origin?: string;
|
|
8787
8999
|
// platform
|
|
8788
9000
|
platform?: string;
|
|
8789
|
-
// does the user need to upgrade his plan in order to be able to invite more contributors (contributors enforcement)
|
|
9001
|
+
// does the user need to upgrade his plan in order to be able to invite more contributors (contributors enforcement). correct only for legacy app, for new app only triggered from collaborators table
|
|
8790
9002
|
upgrade_required?: boolean;
|
|
8791
9003
|
// sent only for site level
|
|
8792
9004
|
msid?: GUID;
|
|
@@ -12988,6 +13200,74 @@ export type mobileClickOnCreateNewSiteParams = {
|
|
|
12988
13200
|
// platform
|
|
12989
13201
|
platform?: string;
|
|
12990
13202
|
};
|
|
13203
|
+
export type toolNotSupportedModalWasShownSrc5Evid1980Params = {
|
|
13204
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
13205
|
+
hosting_platform?: string;
|
|
13206
|
+
// specific button triggered the the view loading (the referral info as in event 302)
|
|
13207
|
+
referral_info?: string;
|
|
13208
|
+
// screen width
|
|
13209
|
+
screen_width?: number;
|
|
13210
|
+
// the page id (the component id of the page)
|
|
13211
|
+
page_id?: string;
|
|
13212
|
+
// the component name of the page
|
|
13213
|
+
page_name?: string;
|
|
13214
|
+
// window width
|
|
13215
|
+
window_width?: number;
|
|
13216
|
+
// screen height
|
|
13217
|
+
screen_height?: number;
|
|
13218
|
+
// the app id of the app the page belongs to
|
|
13219
|
+
app_id?: string;
|
|
13220
|
+
// the page's route
|
|
13221
|
+
route?: string;
|
|
13222
|
+
// window height
|
|
13223
|
+
window_height?: number;
|
|
13224
|
+
// true if it's an internal page
|
|
13225
|
+
is_internal_page?: boolean;
|
|
13226
|
+
// context id: when the context is site - msid, when the context is app_id (like in devCenter f.e) - appDefId. In account manager is null
|
|
13227
|
+
hosting_platform_context_id?: string;
|
|
13228
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
13229
|
+
internal_route?: string;
|
|
13230
|
+
// url
|
|
13231
|
+
url?: Url;
|
|
13232
|
+
// main / overlay
|
|
13233
|
+
displayMode?: string;
|
|
13234
|
+
};
|
|
13235
|
+
export type toolNotSupportedModalActionSrc5Evid1981Params = {
|
|
13236
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
13237
|
+
hosting_platform?: string;
|
|
13238
|
+
// specific button triggered the the view loading (the referral info as in event 302)
|
|
13239
|
+
referral_info?: string;
|
|
13240
|
+
// screen width
|
|
13241
|
+
screen_width?: number;
|
|
13242
|
+
// the page id (the component id of the page)
|
|
13243
|
+
page_id?: string;
|
|
13244
|
+
// the component name of the page
|
|
13245
|
+
page_name?: string;
|
|
13246
|
+
// window width
|
|
13247
|
+
window_width?: number;
|
|
13248
|
+
// screen height
|
|
13249
|
+
screen_height?: number;
|
|
13250
|
+
// the app id of the app the page belongs to
|
|
13251
|
+
app_id?: string;
|
|
13252
|
+
// the page's route
|
|
13253
|
+
route?: string;
|
|
13254
|
+
// window height
|
|
13255
|
+
window_height?: number;
|
|
13256
|
+
// true if it's an internal page
|
|
13257
|
+
is_internal_page?: boolean;
|
|
13258
|
+
// context id: when the context is site - msid, when the context is app_id (like in devCenter f.e) - appDefId. In account manager is null
|
|
13259
|
+
hosting_platform_context_id?: string;
|
|
13260
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
13261
|
+
internal_route?: string;
|
|
13262
|
+
// url
|
|
13263
|
+
url?: Url;
|
|
13264
|
+
// exit/vote
|
|
13265
|
+
action_type?: string;
|
|
13266
|
+
// cta
|
|
13267
|
+
cta?: string;
|
|
13268
|
+
// main / overlay
|
|
13269
|
+
displayMode?: string;
|
|
13270
|
+
};
|
|
12991
13271
|
export type dashboardFetchDealerLayoutFailedParams = {
|
|
12992
13272
|
// view_type
|
|
12993
13273
|
view_type?: string;
|
|
@@ -14275,7 +14555,7 @@ export type hipaaComplianceLoadsAndActionsSrc5Evid3002Params = {
|
|
|
14275
14555
|
component?: string;
|
|
14276
14556
|
// name of previous step
|
|
14277
14557
|
origin?: string;
|
|
14278
|
-
// is the site already premium
|
|
14558
|
+
// is the site already in premium *ELITE* plan
|
|
14279
14559
|
isPremiumSite?: boolean;
|
|
14280
14560
|
// is hipaa add-on active
|
|
14281
14561
|
isActive?: boolean;
|
|
@@ -19471,6 +19751,10 @@ export type toastShown85Params = {
|
|
|
19471
19751
|
trigger_entity_id?: string;
|
|
19472
19752
|
// toast_timeout
|
|
19473
19753
|
toast_timeout?: string;
|
|
19754
|
+
// boolean field. true if the toast contains request id
|
|
19755
|
+
hasRequestId?: boolean;
|
|
19756
|
+
// A unique identifier for a toast
|
|
19757
|
+
toastId?: string;
|
|
19474
19758
|
// message
|
|
19475
19759
|
message?: string;
|
|
19476
19760
|
// app_id
|
|
@@ -19545,6 +19829,12 @@ export type toastClicked86Params = {
|
|
|
19545
19829
|
trigger_entity_id?: string;
|
|
19546
19830
|
// toast_timeout
|
|
19547
19831
|
toast_timeout?: string;
|
|
19832
|
+
// request id
|
|
19833
|
+
ctaName?: string;
|
|
19834
|
+
// the relevant request id
|
|
19835
|
+
requestId?: string;
|
|
19836
|
+
// A unique identifier for a toast
|
|
19837
|
+
toastId?: string;
|
|
19548
19838
|
};
|
|
19549
19839
|
export type crmHomeIntegrationsMarketingViewAllParams = {
|
|
19550
19840
|
// view_type
|