@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
|
@@ -209,6 +209,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
209
209
|
appId: string;
|
|
210
210
|
filteredListSize: number;
|
|
211
211
|
product: string;
|
|
212
|
+
consumerArtifactId: string;
|
|
212
213
|
}>(this.util.getRawEvents, 144, 106, this.validate);
|
|
213
214
|
}
|
|
214
215
|
|
|
@@ -238,6 +239,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
238
239
|
appId: string;
|
|
239
240
|
filteredListSize: number;
|
|
240
241
|
product: string;
|
|
242
|
+
consumerArtifactId: string;
|
|
241
243
|
}>(this.util.getRawEvents, 144, 107, this.validate);
|
|
242
244
|
}
|
|
243
245
|
|
|
@@ -295,6 +297,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
295
297
|
product: string;
|
|
296
298
|
hostingPlatformContextId: string;
|
|
297
299
|
theme: string;
|
|
300
|
+
consumerId: string;
|
|
301
|
+
consumerArtifactId: string;
|
|
298
302
|
routerUsage: boolean;
|
|
299
303
|
isCurrentViewCustomMade: boolean;
|
|
300
304
|
artifactIdNew: string;
|
|
@@ -329,6 +333,9 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
329
333
|
product: string;
|
|
330
334
|
hostingPlatformContextId: string;
|
|
331
335
|
theme: string;
|
|
336
|
+
consumerId: string;
|
|
337
|
+
consumerArtifactId: string;
|
|
338
|
+
route: string;
|
|
332
339
|
routerUsage: boolean;
|
|
333
340
|
isCurrentViewCustomMade: boolean;
|
|
334
341
|
artifactIdNew: string;
|
|
@@ -486,6 +493,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
486
493
|
product: string;
|
|
487
494
|
filterType: string;
|
|
488
495
|
isCustomField: boolean;
|
|
496
|
+
loadingTime: number;
|
|
497
|
+
isOriginComponentLoaded: boolean;
|
|
489
498
|
}>(this.util.getRawEvents, 144, 117, this.validate);
|
|
490
499
|
}
|
|
491
500
|
|
|
@@ -1722,6 +1731,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1722
1731
|
itemId: string;
|
|
1723
1732
|
appId: string;
|
|
1724
1733
|
product: string;
|
|
1734
|
+
theme: string;
|
|
1725
1735
|
}>(this.util.getRawEvents, 144, 171, this.validate);
|
|
1726
1736
|
}
|
|
1727
1737
|
|
|
@@ -1741,6 +1751,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1741
1751
|
itemId: string;
|
|
1742
1752
|
appId: string;
|
|
1743
1753
|
product: string;
|
|
1754
|
+
theme: string;
|
|
1744
1755
|
}>(this.util.getRawEvents, 144, 172, this.validate);
|
|
1745
1756
|
}
|
|
1746
1757
|
|
|
@@ -1764,6 +1775,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1764
1775
|
appId: string;
|
|
1765
1776
|
isFromSearch: boolean;
|
|
1766
1777
|
product: string;
|
|
1778
|
+
theme: string;
|
|
1767
1779
|
}>(this.util.getRawEvents, 144, 173, this.validate);
|
|
1768
1780
|
}
|
|
1769
1781
|
|
|
@@ -1988,6 +2000,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1988
2000
|
get getResolvedErrorSrc176Evid101() {
|
|
1989
2001
|
return new EventsFilter<{
|
|
1990
2002
|
session_id: string;
|
|
2003
|
+
isEn: boolean;
|
|
1991
2004
|
mapped_error_not_available: string;
|
|
1992
2005
|
translated_message: string;
|
|
1993
2006
|
action_text: string;
|
|
@@ -1999,12 +2012,17 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
1999
2012
|
get showErrorSrc176Evid102() {
|
|
2000
2013
|
return new EventsFilter<{
|
|
2001
2014
|
session_id: string;
|
|
2015
|
+
isEn: boolean;
|
|
2002
2016
|
displayed_message: string;
|
|
2003
2017
|
displayed_action: string;
|
|
2004
2018
|
action_was_provided: string;
|
|
2005
2019
|
}>(this.util.getRawEvents, 176, 102, this.validate);
|
|
2006
2020
|
}
|
|
2007
2021
|
|
|
2022
|
+
get retryErrorSrc176Evid103() {
|
|
2023
|
+
return new EventsFilter<{ session_id: string; }>(this.util.getRawEvents, 176, 103, this.validate);
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2008
2026
|
get httpClientErrorSrc176Evid404() {
|
|
2009
2027
|
return new EventsFilter<{
|
|
2010
2028
|
request_id: string;
|
|
@@ -2017,6 +2035,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
2017
2035
|
is_override_error_state_function: string;
|
|
2018
2036
|
error_json: string;
|
|
2019
2037
|
translated_message: string;
|
|
2038
|
+
method: string;
|
|
2020
2039
|
error_message: string;
|
|
2021
2040
|
exception_message: string;
|
|
2022
2041
|
client_error_code: string;
|
|
@@ -2360,6 +2379,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
2360
2379
|
score: number;
|
|
2361
2380
|
url: Url;
|
|
2362
2381
|
previewUrl: string;
|
|
2382
|
+
isPatternsPage: boolean;
|
|
2383
|
+
fullRoute: string;
|
|
2363
2384
|
}>(this.util.getRawEvents, 5, 10000, this.validate);
|
|
2364
2385
|
}
|
|
2365
2386
|
|
|
@@ -6259,7 +6280,6 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6259
6280
|
number_of_invalid_emails: number;
|
|
6260
6281
|
invite_role_ids: string;
|
|
6261
6282
|
assignment_type: string;
|
|
6262
|
-
number_of_existing_emails: number;
|
|
6263
6283
|
origin: string;
|
|
6264
6284
|
invite_id: GUID;
|
|
6265
6285
|
num_sites: number;
|
|
@@ -6268,6 +6288,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6268
6288
|
number_of_valid_emails: number;
|
|
6269
6289
|
num_folders: number;
|
|
6270
6290
|
contributors_quota: number;
|
|
6291
|
+
invite_role_names: string;
|
|
6271
6292
|
contributors_count: number;
|
|
6272
6293
|
app_id: string;
|
|
6273
6294
|
Has_ai_assistant: boolean;
|
|
@@ -6341,8 +6362,6 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6341
6362
|
role_id: string;
|
|
6342
6363
|
role_type: string;
|
|
6343
6364
|
origin: string;
|
|
6344
|
-
platform: string;
|
|
6345
|
-
msid: GUID;
|
|
6346
6365
|
}>(this.util.getRawEvents, 5, 1418, this.validate);
|
|
6347
6366
|
}
|
|
6348
6367
|
|
|
@@ -6350,8 +6369,8 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
6350
6369
|
return new EventsFilter<{
|
|
6351
6370
|
context: string;
|
|
6352
6371
|
role_id: string;
|
|
6353
|
-
platform: string;
|
|
6354
6372
|
msid: GUID;
|
|
6373
|
+
origin: string;
|
|
6355
6374
|
}>(this.util.getRawEvents, 5, 1419, this.validate);
|
|
6356
6375
|
}
|
|
6357
6376
|
|
|
@@ -9243,6 +9262,18 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
9243
9262
|
}>(this.util.getRawEvents, 5, 185, this.validate);
|
|
9244
9263
|
}
|
|
9245
9264
|
|
|
9265
|
+
get leavingWithoutSavingModalOpenedSrc5Evid1858() {
|
|
9266
|
+
return new EventsFilter<{
|
|
9267
|
+
hosting_platform: string;
|
|
9268
|
+
page_id: string;
|
|
9269
|
+
page_name: string;
|
|
9270
|
+
route: string;
|
|
9271
|
+
hosting_platform_context_id: string;
|
|
9272
|
+
internal_route: string;
|
|
9273
|
+
displayMode: string;
|
|
9274
|
+
}>(this.util.getRawEvents, 5, 1858, this.validate);
|
|
9275
|
+
}
|
|
9276
|
+
|
|
9246
9277
|
get dashboardContributorsClickOnMangeRolesAndPermissions() {
|
|
9247
9278
|
return new EventsFilter<{
|
|
9248
9279
|
view_type: string;
|
|
@@ -9252,6 +9283,68 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
9252
9283
|
}>(this.util.getRawEvents, 5, 187, this.validate);
|
|
9253
9284
|
}
|
|
9254
9285
|
|
|
9286
|
+
get rolesAndPermissionsManageRolesEditRoleSrc5Evid1871() {
|
|
9287
|
+
return new EventsFilter<{
|
|
9288
|
+
context: string;
|
|
9289
|
+
role_id: string;
|
|
9290
|
+
role_type: string;
|
|
9291
|
+
origin: string;
|
|
9292
|
+
platform: string;
|
|
9293
|
+
role_name: string;
|
|
9294
|
+
Has_ai_assistant: boolean;
|
|
9295
|
+
}>(this.util.getRawEvents, 5, 1871, this.validate);
|
|
9296
|
+
}
|
|
9297
|
+
|
|
9298
|
+
get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874() {
|
|
9299
|
+
return new EventsFilter<{
|
|
9300
|
+
context: string;
|
|
9301
|
+
origin: string;
|
|
9302
|
+
invite_id: GUID;
|
|
9303
|
+
number_of_valid_emails: number;
|
|
9304
|
+
role_ids: string;
|
|
9305
|
+
app_id: string;
|
|
9306
|
+
Has_ai_assistant: boolean;
|
|
9307
|
+
}>(this.util.getRawEvents, 5, 1874, this.validate);
|
|
9308
|
+
}
|
|
9309
|
+
|
|
9310
|
+
get restoreSiteModalOpenedSrc5Evid1875() {
|
|
9311
|
+
return new EventsFilter<{
|
|
9312
|
+
hosting_platform: string;
|
|
9313
|
+
page_id: string;
|
|
9314
|
+
page_name: string;
|
|
9315
|
+
route: string;
|
|
9316
|
+
hosting_platform_context_id: string;
|
|
9317
|
+
internal_route: string;
|
|
9318
|
+
origin: string;
|
|
9319
|
+
}>(this.util.getRawEvents, 5, 1875, this.validate);
|
|
9320
|
+
}
|
|
9321
|
+
|
|
9322
|
+
get restoreSiteModalCtaClickedSrc5Evid1876() {
|
|
9323
|
+
return new EventsFilter<{
|
|
9324
|
+
hosting_platform: string;
|
|
9325
|
+
page_id: string;
|
|
9326
|
+
page_name: string;
|
|
9327
|
+
route: string;
|
|
9328
|
+
hosting_platform_context_id: string;
|
|
9329
|
+
internal_route: string;
|
|
9330
|
+
cta: string;
|
|
9331
|
+
origin: string;
|
|
9332
|
+
}>(this.util.getRawEvents, 5, 1876, this.validate);
|
|
9333
|
+
}
|
|
9334
|
+
|
|
9335
|
+
get leavingWithoutSavingModalCtaClickedSrc5Evid1878() {
|
|
9336
|
+
return new EventsFilter<{
|
|
9337
|
+
hosting_platform: string;
|
|
9338
|
+
page_id: string;
|
|
9339
|
+
page_name: string;
|
|
9340
|
+
route: string;
|
|
9341
|
+
hosting_platform_context_id: string;
|
|
9342
|
+
internal_route: string;
|
|
9343
|
+
cta: string;
|
|
9344
|
+
displayMode: string;
|
|
9345
|
+
}>(this.util.getRawEvents, 5, 1878, this.validate);
|
|
9346
|
+
}
|
|
9347
|
+
|
|
9255
9348
|
get ascendHoverOnUpgradeAscend() {
|
|
9256
9349
|
return new EventsFilter<{
|
|
9257
9350
|
appName: string;
|
|
@@ -9590,6 +9683,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
9590
9683
|
favoritesName: string;
|
|
9591
9684
|
wasSuccess: boolean;
|
|
9592
9685
|
hostingPlatformContextId: string;
|
|
9686
|
+
origin: string;
|
|
9593
9687
|
}>(this.util.getRawEvents, 5, 215, this.validate);
|
|
9594
9688
|
}
|
|
9595
9689
|
|
|
@@ -14193,6 +14287,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
14193
14287
|
url: Url;
|
|
14194
14288
|
origin: string;
|
|
14195
14289
|
action: string;
|
|
14290
|
+
esi: string;
|
|
14196
14291
|
}>(this.util.getRawEvents, 5, 814, this.validate);
|
|
14197
14292
|
}
|
|
14198
14293
|
|
|
@@ -14201,6 +14296,7 @@ export class WixBiSchemaNodeTestkit extends TestkitBase {
|
|
|
14201
14296
|
url: Url;
|
|
14202
14297
|
toggle: boolean;
|
|
14203
14298
|
action: string;
|
|
14299
|
+
esi: string;
|
|
14204
14300
|
}>(this.util.getRawEvents, 5, 815, this.validate);
|
|
14205
14301
|
}
|
|
14206
14302
|
|
|
@@ -271,6 +271,8 @@ export type newItemCreationStartParams = {
|
|
|
271
271
|
filteredListSize?: number;
|
|
272
272
|
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
273
273
|
product?: string;
|
|
274
|
+
// consumerArtifactId - relevant for item selection
|
|
275
|
+
consumerArtifactId?: string;
|
|
274
276
|
};
|
|
275
277
|
export type newItemCreationEndParams = {
|
|
276
278
|
// "success"/"dismissed"/"edit success"/"edit dismissed"
|
|
@@ -321,6 +323,8 @@ export type newItemCreationEndParams = {
|
|
|
321
323
|
filteredListSize?: number;
|
|
322
324
|
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
323
325
|
product?: string;
|
|
326
|
+
// consumerArtifactId - relevant for item selection
|
|
327
|
+
consumerArtifactId?: string;
|
|
324
328
|
};
|
|
325
329
|
export type pikachuCategoriesDropdownButtonClickedParams = {
|
|
326
330
|
// Artifact that owns the component
|
|
@@ -412,6 +416,10 @@ export type loadStartParams = {
|
|
|
412
416
|
hostingPlatformContextId?: string;
|
|
413
417
|
// relevant to custom field - inline / card
|
|
414
418
|
theme?: string;
|
|
419
|
+
// consumer Id - relevant for artifact_id = item selection module
|
|
420
|
+
consumerId?: string;
|
|
421
|
+
// consumerArtifactId - relevant for item selection
|
|
422
|
+
consumerArtifactId?: string;
|
|
415
423
|
// returns true if Wix Patterns router is being used, else false
|
|
416
424
|
//
|
|
417
425
|
routerUsage?: boolean;
|
|
@@ -474,6 +482,12 @@ export type loadEndParams = {
|
|
|
474
482
|
hostingPlatformContextId?: string;
|
|
475
483
|
// relevant to custom field - inline / card
|
|
476
484
|
theme?: string;
|
|
485
|
+
// consumer Id - relevant for artifact_id = item selection module
|
|
486
|
+
consumerId?: string;
|
|
487
|
+
// consumerArtifactId - relevant for item selection
|
|
488
|
+
consumerArtifactId?: string;
|
|
489
|
+
// The page's route
|
|
490
|
+
route?: string;
|
|
477
491
|
// returns true if Wix Patterns router is being used, else false
|
|
478
492
|
routerUsage?: boolean;
|
|
479
493
|
// will be True if the current view is custom-made; otherwise, it will be False
|
|
@@ -744,6 +758,10 @@ export type cairoFilterToggledParams = {
|
|
|
744
758
|
filterType?: string;
|
|
745
759
|
// true if the field is customized
|
|
746
760
|
isCustomField?: boolean;
|
|
761
|
+
// Component loading time (in ms) after toggling
|
|
762
|
+
loadingTime?: number;
|
|
763
|
+
// True if the original component was loaded before toggling
|
|
764
|
+
isOriginComponentLoaded?: boolean;
|
|
747
765
|
};
|
|
748
766
|
export type cairoAllFiltersClearedParams = {
|
|
749
767
|
// Artifact that owns the component
|
|
@@ -2782,6 +2800,8 @@ export type cairoTagsWidgetLoadedParams = {
|
|
|
2782
2800
|
appId?: string;
|
|
2783
2801
|
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2784
2802
|
product?: string;
|
|
2803
|
+
// Card/ Inline
|
|
2804
|
+
theme?: string;
|
|
2785
2805
|
};
|
|
2786
2806
|
export type cairoTagsWidgetClickOnCtaParams = {
|
|
2787
2807
|
// Artifact that owns the component
|
|
@@ -2812,6 +2832,8 @@ export type cairoTagsWidgetClickOnCtaParams = {
|
|
|
2812
2832
|
appId?: string;
|
|
2813
2833
|
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2814
2834
|
product?: string;
|
|
2835
|
+
// Card/ Inline
|
|
2836
|
+
theme?: string;
|
|
2815
2837
|
};
|
|
2816
2838
|
export type cairoTagsAssignTagParams = {
|
|
2817
2839
|
// Artifact that owns the component
|
|
@@ -2850,6 +2872,8 @@ export type cairoTagsAssignTagParams = {
|
|
|
2850
2872
|
isFromSearch?: boolean;
|
|
2851
2873
|
// Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2852
2874
|
product?: string;
|
|
2875
|
+
// Card/ Inline
|
|
2876
|
+
theme?: string;
|
|
2853
2877
|
};
|
|
2854
2878
|
export type cairoPageDiscardChangesBeforeSaveParams = {
|
|
2855
2879
|
// Artifact that owns the component
|
|
@@ -3198,6 +3222,8 @@ export type httpClientErrorMappingSrc176Evid100Params = {
|
|
|
3198
3222
|
export type getResolvedErrorSrc176Evid101Params = {
|
|
3199
3223
|
// the key for connecting the error event
|
|
3200
3224
|
session_id?: string;
|
|
3225
|
+
// True if the user sees the message in english
|
|
3226
|
+
isEn?: boolean;
|
|
3201
3227
|
// mapped_error_not_available
|
|
3202
3228
|
mapped_error_not_available?: string;
|
|
3203
3229
|
// the translated message of the error
|
|
@@ -3212,6 +3238,8 @@ export type getResolvedErrorSrc176Evid101Params = {
|
|
|
3212
3238
|
export type showErrorSrc176Evid102Params = {
|
|
3213
3239
|
// the key for connecting the error event
|
|
3214
3240
|
session_id?: string;
|
|
3241
|
+
// True if the user sees the message in english
|
|
3242
|
+
isEn?: boolean;
|
|
3215
3243
|
// displayed_message to the user
|
|
3216
3244
|
displayed_message?: string;
|
|
3217
3245
|
// displayed_action to the user
|
|
@@ -3219,6 +3247,10 @@ export type showErrorSrc176Evid102Params = {
|
|
|
3219
3247
|
// action_was_provided
|
|
3220
3248
|
action_was_provided?: string;
|
|
3221
3249
|
};
|
|
3250
|
+
export type retryErrorSrc176Evid103Params = {
|
|
3251
|
+
// the key for connecting the error event
|
|
3252
|
+
session_id?: string;
|
|
3253
|
+
};
|
|
3222
3254
|
export type httpClientErrorSrc176Evid404Params = {
|
|
3223
3255
|
// the error request id
|
|
3224
3256
|
request_id?: string;
|
|
@@ -3240,6 +3272,8 @@ export type httpClientErrorSrc176Evid404Params = {
|
|
|
3240
3272
|
error_json?: string;
|
|
3241
3273
|
// translated_message
|
|
3242
3274
|
translated_message?: string;
|
|
3275
|
+
// HTTP request method (GET,POST,HEAD etc.)
|
|
3276
|
+
method?: string;
|
|
3243
3277
|
// the error message from the json
|
|
3244
3278
|
error_message?: string;
|
|
3245
3279
|
// exception message
|
|
@@ -3754,6 +3788,10 @@ export type pageClassifierSrc5Evid10000Params = {
|
|
|
3754
3788
|
url?: Url;
|
|
3755
3789
|
// preview
|
|
3756
3790
|
previewUrl?: string;
|
|
3791
|
+
// yes if it is on Patterns
|
|
3792
|
+
isPatternsPage?: boolean;
|
|
3793
|
+
// Full Route
|
|
3794
|
+
fullRoute?: string;
|
|
3757
3795
|
};
|
|
3758
3796
|
export type dashboardDeleteAndRestoreSiteRestoreSiteClickParams = {
|
|
3759
3797
|
// view_type
|
|
@@ -8700,8 +8738,6 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
8700
8738
|
invite_role_ids?: string;
|
|
8701
8739
|
// all/specific
|
|
8702
8740
|
assignment_type?: string;
|
|
8703
|
-
// emails that already exist in the team
|
|
8704
|
-
number_of_existing_emails?: number;
|
|
8705
8741
|
// where the modal was clicked from
|
|
8706
8742
|
origin?: string;
|
|
8707
8743
|
// the invite_id
|
|
@@ -8719,6 +8755,8 @@ export type teamManagementInvitePeopleSendInviteParams = {
|
|
|
8719
8755
|
// How many contributors can be added to the site based on the premium package quota
|
|
8720
8756
|
//
|
|
8721
8757
|
contributors_quota?: number;
|
|
8758
|
+
// the names of the rols assigned in the invite.
|
|
8759
|
+
invite_role_names?: string;
|
|
8722
8760
|
// How many contributors are actually active on the site
|
|
8723
8761
|
contributors_count?: number;
|
|
8724
8762
|
// app_id (context = app)
|
|
@@ -8810,20 +8848,16 @@ export type teamManagementManageRolesDuplicateAndEditRoleParams = {
|
|
|
8810
8848
|
role_type?: string;
|
|
8811
8849
|
// where the user clicked from - roles list/role page
|
|
8812
8850
|
origin?: string;
|
|
8813
|
-
// platform
|
|
8814
|
-
platform?: string;
|
|
8815
|
-
// msid
|
|
8816
|
-
msid?: GUID;
|
|
8817
8851
|
};
|
|
8818
8852
|
export type teamManagementManageRolesEditCustomRoleParams = {
|
|
8819
8853
|
// account/site
|
|
8820
8854
|
context?: string;
|
|
8821
8855
|
// the role_id
|
|
8822
8856
|
role_id?: string;
|
|
8823
|
-
// platform
|
|
8824
|
-
platform?: string;
|
|
8825
8857
|
// msid
|
|
8826
8858
|
msid?: GUID;
|
|
8859
|
+
// where the user clicked from - roles list/role page
|
|
8860
|
+
origin?: string;
|
|
8827
8861
|
};
|
|
8828
8862
|
export type teamManagementManageRolesUpdateRoleParams = {
|
|
8829
8863
|
// number of scopes chosen for the custom role
|
|
@@ -12543,6 +12577,22 @@ export type teamManagementResendInviteClickParams = {
|
|
|
12543
12577
|
// platform
|
|
12544
12578
|
platform?: string;
|
|
12545
12579
|
};
|
|
12580
|
+
export type leavingWithoutSavingModalOpenedSrc5Evid1858Params = {
|
|
12581
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
12582
|
+
hosting_platform?: string;
|
|
12583
|
+
// the page id (the component id of the page)
|
|
12584
|
+
page_id?: string;
|
|
12585
|
+
// the component name of the page
|
|
12586
|
+
page_name?: string;
|
|
12587
|
+
// the page's route
|
|
12588
|
+
route?: string;
|
|
12589
|
+
// 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
|
|
12590
|
+
hosting_platform_context_id?: string;
|
|
12591
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
12592
|
+
internal_route?: string;
|
|
12593
|
+
// main / overlay
|
|
12594
|
+
displayMode?: string;
|
|
12595
|
+
};
|
|
12546
12596
|
export type dashboardContributorsClickOnMangeRolesAndPermissionsParams = {
|
|
12547
12597
|
// view_type
|
|
12548
12598
|
view_type?: string;
|
|
@@ -12553,6 +12603,91 @@ export type dashboardContributorsClickOnMangeRolesAndPermissionsParams = {
|
|
|
12553
12603
|
// --
|
|
12554
12604
|
msid?: GUID;
|
|
12555
12605
|
};
|
|
12606
|
+
export type rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params = {
|
|
12607
|
+
// account/site
|
|
12608
|
+
context?: string;
|
|
12609
|
+
// role_id of the role that the user is duplicating
|
|
12610
|
+
role_id?: string;
|
|
12611
|
+
// custom/predefined
|
|
12612
|
+
role_type?: string;
|
|
12613
|
+
// where the user clicked from - roles list/role page
|
|
12614
|
+
origin?: string;
|
|
12615
|
+
// platform
|
|
12616
|
+
platform?: string;
|
|
12617
|
+
// role_name of the role that the user is duplicating
|
|
12618
|
+
role_name?: string;
|
|
12619
|
+
// Is He had AI assistant? (True/False)
|
|
12620
|
+
Has_ai_assistant?: boolean;
|
|
12621
|
+
};
|
|
12622
|
+
export type rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params = {
|
|
12623
|
+
// account
|
|
12624
|
+
context?: string;
|
|
12625
|
+
// where the modal was clicked from
|
|
12626
|
+
origin?: string;
|
|
12627
|
+
// the invite_id
|
|
12628
|
+
invite_id?: GUID;
|
|
12629
|
+
// number of valid emails
|
|
12630
|
+
number_of_valid_emails?: number;
|
|
12631
|
+
// the role_ids that the user sends to the invitees alongside binary indicator for the 'All sites and folders' (True for usage in this).
|
|
12632
|
+
role_ids?: string;
|
|
12633
|
+
// The team account id
|
|
12634
|
+
app_id?: string;
|
|
12635
|
+
// Does the user has AI assistant on this page
|
|
12636
|
+
//
|
|
12637
|
+
Has_ai_assistant?: boolean;
|
|
12638
|
+
};
|
|
12639
|
+
export type restoreSiteModalOpenedSrc5Evid1875Params = {
|
|
12640
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
12641
|
+
hosting_platform?: string;
|
|
12642
|
+
// the page id (the component id of the page)
|
|
12643
|
+
page_id?: string;
|
|
12644
|
+
// the component name of the page
|
|
12645
|
+
page_name?: string;
|
|
12646
|
+
// the page's route
|
|
12647
|
+
route?: string;
|
|
12648
|
+
// 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
|
|
12649
|
+
hosting_platform_context_id?: string;
|
|
12650
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
12651
|
+
internal_route?: string;
|
|
12652
|
+
// The origin from which the modal was opened
|
|
12653
|
+
origin?: string;
|
|
12654
|
+
};
|
|
12655
|
+
export type restoreSiteModalCtaClickedSrc5Evid1876Params = {
|
|
12656
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
12657
|
+
hosting_platform?: string;
|
|
12658
|
+
// the page id (the component id of the page)
|
|
12659
|
+
page_id?: string;
|
|
12660
|
+
// the component name of the page
|
|
12661
|
+
page_name?: string;
|
|
12662
|
+
// the page's route
|
|
12663
|
+
route?: string;
|
|
12664
|
+
// 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
|
|
12665
|
+
hosting_platform_context_id?: string;
|
|
12666
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
12667
|
+
internal_route?: string;
|
|
12668
|
+
// Keep in trash / Restore site
|
|
12669
|
+
cta?: string;
|
|
12670
|
+
// The origin from which the modal was opened
|
|
12671
|
+
origin?: string;
|
|
12672
|
+
};
|
|
12673
|
+
export type leavingWithoutSavingModalCtaClickedSrc5Evid1878Params = {
|
|
12674
|
+
// accountmanagr/bizmanagr/devcenter/etc.
|
|
12675
|
+
hosting_platform?: string;
|
|
12676
|
+
// the page id (the component id of the page)
|
|
12677
|
+
page_id?: string;
|
|
12678
|
+
// the component name of the page
|
|
12679
|
+
page_name?: string;
|
|
12680
|
+
// the page's route
|
|
12681
|
+
route?: string;
|
|
12682
|
+
// 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
|
|
12683
|
+
hosting_platform_context_id?: string;
|
|
12684
|
+
// in case of internal page- in this field we will get the additional part of the route
|
|
12685
|
+
internal_route?: string;
|
|
12686
|
+
// Exit (click on x), Leave, Keep editing (in english)
|
|
12687
|
+
cta?: string;
|
|
12688
|
+
// main / overlay
|
|
12689
|
+
displayMode?: string;
|
|
12690
|
+
};
|
|
12556
12691
|
export type ascendHoverOnUpgradeAscendParams = {
|
|
12557
12692
|
// BM App
|
|
12558
12693
|
appName?: string;
|
|
@@ -13002,6 +13137,8 @@ export type osFavoritesPagesEditParams = {
|
|
|
13002
13137
|
wasSuccess?: boolean;
|
|
13003
13138
|
// 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
|
|
13004
13139
|
hostingPlatformContextId?: string;
|
|
13140
|
+
// Favorites popup / sidebar
|
|
13141
|
+
origin?: string;
|
|
13005
13142
|
};
|
|
13006
13143
|
export type dashboardSettingsUpdateParams = {
|
|
13007
13144
|
// settings section name
|
|
@@ -18972,6 +19109,8 @@ export type cookiesBannerCtaParams = {
|
|
|
18972
19109
|
origin?: string;
|
|
18973
19110
|
// accept/settings/dismiss/read_policy/render/decline_all/save/hide
|
|
18974
19111
|
action?: string;
|
|
19112
|
+
// esi
|
|
19113
|
+
esi?: string;
|
|
18975
19114
|
};
|
|
18976
19115
|
export type cookiesBannerSettingsWindowCtaParams = {
|
|
18977
19116
|
// url
|
|
@@ -18980,6 +19119,8 @@ export type cookiesBannerSettingsWindowCtaParams = {
|
|
|
18980
19119
|
toggle?: boolean;
|
|
18981
19120
|
// save/dismiss/toggle/read_policy
|
|
18982
19121
|
action?: string;
|
|
19122
|
+
// esi
|
|
19123
|
+
esi?: string;
|
|
18983
19124
|
};
|
|
18984
19125
|
export type cookiesBannerPrivacyPolicyClickedParams = {
|
|
18985
19126
|
// url
|