@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.
Files changed (33) hide show
  1. package/@wix/bi-logger-os-data/dist/cjs/index.js +21 -0
  2. package/@wix/bi-logger-os-data/dist/cjs/index.js.map +1 -1
  3. package/@wix/bi-logger-os-data/dist/cjs/testkit/client-testkit.js +21 -0
  4. package/@wix/bi-logger-os-data/dist/cjs/testkit/client-testkit.js.map +1 -1
  5. package/@wix/bi-logger-os-data/dist/cjs/testkit/common.js +376 -19
  6. package/@wix/bi-logger-os-data/dist/cjs/testkit/common.js.map +1 -1
  7. package/@wix/bi-logger-os-data/dist/cjs/testkit/node-testkit.js +21 -0
  8. package/@wix/bi-logger-os-data/dist/cjs/testkit/node-testkit.js.map +1 -1
  9. package/@wix/bi-logger-os-data/dist/cjs/v2/index.js +183 -33
  10. package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
  11. package/@wix/bi-logger-os-data/dist/esm/index.js +21 -0
  12. package/@wix/bi-logger-os-data/dist/esm/index.js.map +1 -1
  13. package/@wix/bi-logger-os-data/dist/esm/testkit/client-testkit.js +21 -0
  14. package/@wix/bi-logger-os-data/dist/esm/testkit/client-testkit.js.map +1 -1
  15. package/@wix/bi-logger-os-data/dist/esm/testkit/common.js +376 -19
  16. package/@wix/bi-logger-os-data/dist/esm/testkit/common.js.map +1 -1
  17. package/@wix/bi-logger-os-data/dist/esm/testkit/node-testkit.js +21 -0
  18. package/@wix/bi-logger-os-data/dist/esm/testkit/node-testkit.js.map +1 -1
  19. package/@wix/bi-logger-os-data/dist/esm/v2/index.js +148 -5
  20. package/@wix/bi-logger-os-data/dist/esm/v2/index.js.map +1 -1
  21. package/@wix/bi-logger-os-data/dist/types/index.d.ts +9 -2
  22. package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +81 -4
  23. package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +81 -4
  24. package/@wix/bi-logger-os-data/dist/types/types.d.ts +81 -4
  25. package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +135 -6
  26. package/@wix/bi-logger-os-data/package.json +2 -2
  27. package/@wix/bi-logger-os-data/src/index.ts +30 -2
  28. package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +100 -4
  29. package/@wix/bi-logger-os-data/src/testkit/common.ts +435 -22
  30. package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +100 -4
  31. package/@wix/bi-logger-os-data/src/types.ts +149 -8
  32. package/@wix/bi-logger-os-data/src/v2/index.ts +156 -6
  33. package/package.json +3 -3
@@ -199,6 +199,7 @@ export class BiTestkit {
199
199
  appId: string;
200
200
  filteredListSize: number;
201
201
  product: string;
202
+ consumerArtifactId: string;
202
203
  }>(this.util.getRawEvents, 144, 106, this.validate);
203
204
  }
204
205
 
@@ -228,6 +229,7 @@ export class BiTestkit {
228
229
  appId: string;
229
230
  filteredListSize: number;
230
231
  product: string;
232
+ consumerArtifactId: string;
231
233
  }>(this.util.getRawEvents, 144, 107, this.validate);
232
234
  }
233
235
 
@@ -285,6 +287,8 @@ export class BiTestkit {
285
287
  product: string;
286
288
  hostingPlatformContextId: string;
287
289
  theme: string;
290
+ consumerId: string;
291
+ consumerArtifactId: string;
288
292
  routerUsage: boolean;
289
293
  isCurrentViewCustomMade: boolean;
290
294
  artifactIdNew: string;
@@ -319,6 +323,9 @@ export class BiTestkit {
319
323
  product: string;
320
324
  hostingPlatformContextId: string;
321
325
  theme: string;
326
+ consumerId: string;
327
+ consumerArtifactId: string;
328
+ route: string;
322
329
  routerUsage: boolean;
323
330
  isCurrentViewCustomMade: boolean;
324
331
  artifactIdNew: string;
@@ -476,6 +483,8 @@ export class BiTestkit {
476
483
  product: string;
477
484
  filterType: string;
478
485
  isCustomField: boolean;
486
+ loadingTime: number;
487
+ isOriginComponentLoaded: boolean;
479
488
  }>(this.util.getRawEvents, 144, 117, this.validate);
480
489
  }
481
490
 
@@ -1712,6 +1721,7 @@ export class BiTestkit {
1712
1721
  itemId: string;
1713
1722
  appId: string;
1714
1723
  product: string;
1724
+ theme: string;
1715
1725
  }>(this.util.getRawEvents, 144, 171, this.validate);
1716
1726
  }
1717
1727
 
@@ -1731,6 +1741,7 @@ export class BiTestkit {
1731
1741
  itemId: string;
1732
1742
  appId: string;
1733
1743
  product: string;
1744
+ theme: string;
1734
1745
  }>(this.util.getRawEvents, 144, 172, this.validate);
1735
1746
  }
1736
1747
 
@@ -1754,6 +1765,7 @@ export class BiTestkit {
1754
1765
  appId: string;
1755
1766
  isFromSearch: boolean;
1756
1767
  product: string;
1768
+ theme: string;
1757
1769
  }>(this.util.getRawEvents, 144, 173, this.validate);
1758
1770
  }
1759
1771
 
@@ -1978,6 +1990,7 @@ export class BiTestkit {
1978
1990
  get getResolvedErrorSrc176Evid101() {
1979
1991
  return new EventsFilter<{
1980
1992
  session_id: string;
1993
+ isEn: boolean;
1981
1994
  mapped_error_not_available: string;
1982
1995
  translated_message: string;
1983
1996
  action_text: string;
@@ -1989,12 +2002,17 @@ export class BiTestkit {
1989
2002
  get showErrorSrc176Evid102() {
1990
2003
  return new EventsFilter<{
1991
2004
  session_id: string;
2005
+ isEn: boolean;
1992
2006
  displayed_message: string;
1993
2007
  displayed_action: string;
1994
2008
  action_was_provided: string;
1995
2009
  }>(this.util.getRawEvents, 176, 102, this.validate);
1996
2010
  }
1997
2011
 
2012
+ get retryErrorSrc176Evid103() {
2013
+ return new EventsFilter<{ session_id: string; }>(this.util.getRawEvents, 176, 103, this.validate);
2014
+ }
2015
+
1998
2016
  get httpClientErrorSrc176Evid404() {
1999
2017
  return new EventsFilter<{
2000
2018
  request_id: string;
@@ -2007,6 +2025,7 @@ export class BiTestkit {
2007
2025
  is_override_error_state_function: string;
2008
2026
  error_json: string;
2009
2027
  translated_message: string;
2028
+ method: string;
2010
2029
  error_message: string;
2011
2030
  exception_message: string;
2012
2031
  client_error_code: string;
@@ -2350,6 +2369,8 @@ export class BiTestkit {
2350
2369
  score: number;
2351
2370
  url: Url;
2352
2371
  previewUrl: string;
2372
+ isPatternsPage: boolean;
2373
+ fullRoute: string;
2353
2374
  }>(this.util.getRawEvents, 5, 10000, this.validate);
2354
2375
  }
2355
2376
 
@@ -6249,7 +6270,6 @@ export class BiTestkit {
6249
6270
  number_of_invalid_emails: number;
6250
6271
  invite_role_ids: string;
6251
6272
  assignment_type: string;
6252
- number_of_existing_emails: number;
6253
6273
  origin: string;
6254
6274
  invite_id: GUID;
6255
6275
  num_sites: number;
@@ -6258,6 +6278,7 @@ export class BiTestkit {
6258
6278
  number_of_valid_emails: number;
6259
6279
  num_folders: number;
6260
6280
  contributors_quota: number;
6281
+ invite_role_names: string;
6261
6282
  contributors_count: number;
6262
6283
  app_id: string;
6263
6284
  Has_ai_assistant: boolean;
@@ -6331,8 +6352,6 @@ export class BiTestkit {
6331
6352
  role_id: string;
6332
6353
  role_type: string;
6333
6354
  origin: string;
6334
- platform: string;
6335
- msid: GUID;
6336
6355
  }>(this.util.getRawEvents, 5, 1418, this.validate);
6337
6356
  }
6338
6357
 
@@ -6340,8 +6359,8 @@ export class BiTestkit {
6340
6359
  return new EventsFilter<{
6341
6360
  context: string;
6342
6361
  role_id: string;
6343
- platform: string;
6344
6362
  msid: GUID;
6363
+ origin: string;
6345
6364
  }>(this.util.getRawEvents, 5, 1419, this.validate);
6346
6365
  }
6347
6366
 
@@ -9233,6 +9252,18 @@ export class BiTestkit {
9233
9252
  }>(this.util.getRawEvents, 5, 185, this.validate);
9234
9253
  }
9235
9254
 
9255
+ get leavingWithoutSavingModalOpenedSrc5Evid1858() {
9256
+ return new EventsFilter<{
9257
+ hosting_platform: string;
9258
+ page_id: string;
9259
+ page_name: string;
9260
+ route: string;
9261
+ hosting_platform_context_id: string;
9262
+ internal_route: string;
9263
+ displayMode: string;
9264
+ }>(this.util.getRawEvents, 5, 1858, this.validate);
9265
+ }
9266
+
9236
9267
  get dashboardContributorsClickOnMangeRolesAndPermissions() {
9237
9268
  return new EventsFilter<{
9238
9269
  view_type: string;
@@ -9242,6 +9273,68 @@ export class BiTestkit {
9242
9273
  }>(this.util.getRawEvents, 5, 187, this.validate);
9243
9274
  }
9244
9275
 
9276
+ get rolesAndPermissionsManageRolesEditRoleSrc5Evid1871() {
9277
+ return new EventsFilter<{
9278
+ context: string;
9279
+ role_id: string;
9280
+ role_type: string;
9281
+ origin: string;
9282
+ platform: string;
9283
+ role_name: string;
9284
+ Has_ai_assistant: boolean;
9285
+ }>(this.util.getRawEvents, 5, 1871, this.validate);
9286
+ }
9287
+
9288
+ get rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874() {
9289
+ return new EventsFilter<{
9290
+ context: string;
9291
+ origin: string;
9292
+ invite_id: GUID;
9293
+ number_of_valid_emails: number;
9294
+ role_ids: string;
9295
+ app_id: string;
9296
+ Has_ai_assistant: boolean;
9297
+ }>(this.util.getRawEvents, 5, 1874, this.validate);
9298
+ }
9299
+
9300
+ get restoreSiteModalOpenedSrc5Evid1875() {
9301
+ return new EventsFilter<{
9302
+ hosting_platform: string;
9303
+ page_id: string;
9304
+ page_name: string;
9305
+ route: string;
9306
+ hosting_platform_context_id: string;
9307
+ internal_route: string;
9308
+ origin: string;
9309
+ }>(this.util.getRawEvents, 5, 1875, this.validate);
9310
+ }
9311
+
9312
+ get restoreSiteModalCtaClickedSrc5Evid1876() {
9313
+ return new EventsFilter<{
9314
+ hosting_platform: string;
9315
+ page_id: string;
9316
+ page_name: string;
9317
+ route: string;
9318
+ hosting_platform_context_id: string;
9319
+ internal_route: string;
9320
+ cta: string;
9321
+ origin: string;
9322
+ }>(this.util.getRawEvents, 5, 1876, this.validate);
9323
+ }
9324
+
9325
+ get leavingWithoutSavingModalCtaClickedSrc5Evid1878() {
9326
+ return new EventsFilter<{
9327
+ hosting_platform: string;
9328
+ page_id: string;
9329
+ page_name: string;
9330
+ route: string;
9331
+ hosting_platform_context_id: string;
9332
+ internal_route: string;
9333
+ cta: string;
9334
+ displayMode: string;
9335
+ }>(this.util.getRawEvents, 5, 1878, this.validate);
9336
+ }
9337
+
9245
9338
  get ascendHoverOnUpgradeAscend() {
9246
9339
  return new EventsFilter<{
9247
9340
  appName: string;
@@ -9580,6 +9673,7 @@ export class BiTestkit {
9580
9673
  favoritesName: string;
9581
9674
  wasSuccess: boolean;
9582
9675
  hostingPlatformContextId: string;
9676
+ origin: string;
9583
9677
  }>(this.util.getRawEvents, 5, 215, this.validate);
9584
9678
  }
9585
9679
 
@@ -14183,6 +14277,7 @@ export class BiTestkit {
14183
14277
  url: Url;
14184
14278
  origin: string;
14185
14279
  action: string;
14280
+ esi: string;
14186
14281
  }>(this.util.getRawEvents, 5, 814, this.validate);
14187
14282
  }
14188
14283
 
@@ -14191,6 +14286,7 @@ export class BiTestkit {
14191
14286
  url: Url;
14192
14287
  toggle: boolean;
14193
14288
  action: string;
14289
+ esi: string;
14194
14290
  }>(this.util.getRawEvents, 5, 815, this.validate);
14195
14291
  }
14196
14292