@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
@@ -393,6 +393,18 @@ const schemaObj: SchemaObj = [
393
393
  "type": "STRING",
394
394
  "mandatory": false
395
395
  }
396
+ ,
397
+ {
398
+ "inputName": "isPatternsPage",
399
+ "type": "BOOL",
400
+ "mandatory": false
401
+ }
402
+ ,
403
+ {
404
+ "inputName": "fullRoute",
405
+ "type": "STRING",
406
+ "mandatory": false
407
+ }
396
408
  ]
397
409
  } as BiEventSchema,
398
410
  {
@@ -14878,12 +14890,6 @@ const schemaObj: SchemaObj = [
14878
14890
  "mandatory": false
14879
14891
  }
14880
14892
  ,
14881
- {
14882
- "inputName": "number_of_existing_emails",
14883
- "type": "NUMERIC",
14884
- "mandatory": false
14885
- }
14886
- ,
14887
14893
  {
14888
14894
  "inputName": "origin",
14889
14895
  "type": "STRING",
@@ -14932,6 +14938,12 @@ const schemaObj: SchemaObj = [
14932
14938
  "mandatory": false
14933
14939
  }
14934
14940
  ,
14941
+ {
14942
+ "inputName": "invite_role_names",
14943
+ "type": "STRING",
14944
+ "mandatory": false
14945
+ }
14946
+ ,
14935
14947
  {
14936
14948
  "inputName": "contributors_count",
14937
14949
  "type": "NUMERIC",
@@ -15194,18 +15206,6 @@ const schemaObj: SchemaObj = [
15194
15206
  "type": "STRING",
15195
15207
  "mandatory": false
15196
15208
  }
15197
- ,
15198
- {
15199
- "inputName": "platform",
15200
- "type": "STRING",
15201
- "mandatory": false
15202
- }
15203
- ,
15204
- {
15205
- "inputName": "msid",
15206
- "type": "GUID",
15207
- "mandatory": false
15208
- }
15209
15209
  ]
15210
15210
  } as BiEventSchema,
15211
15211
  {
@@ -15225,14 +15225,14 @@ const schemaObj: SchemaObj = [
15225
15225
  }
15226
15226
  ,
15227
15227
  {
15228
- "inputName": "platform",
15229
- "type": "STRING",
15228
+ "inputName": "msid",
15229
+ "type": "GUID",
15230
15230
  "mandatory": false
15231
15231
  }
15232
15232
  ,
15233
15233
  {
15234
- "inputName": "msid",
15235
- "type": "GUID",
15234
+ "inputName": "origin",
15235
+ "type": "STRING",
15236
15236
  "mandatory": false
15237
15237
  }
15238
15238
  ]
@@ -26138,6 +26138,53 @@ const schemaObj: SchemaObj = [
26138
26138
  }
26139
26139
  ]
26140
26140
  } as BiEventSchema,
26141
+ {
26142
+ "event_id": 1858,
26143
+ "name": "Leaving without saving - modal opened",
26144
+ "fields": [
26145
+ {
26146
+ "inputName": "hosting_platform",
26147
+ "type": "STRING",
26148
+ "mandatory": false
26149
+ }
26150
+ ,
26151
+ {
26152
+ "inputName": "page_id",
26153
+ "type": "STRING",
26154
+ "mandatory": false
26155
+ }
26156
+ ,
26157
+ {
26158
+ "inputName": "page_name",
26159
+ "type": "STRING",
26160
+ "mandatory": false
26161
+ }
26162
+ ,
26163
+ {
26164
+ "inputName": "route",
26165
+ "type": "STRING",
26166
+ "mandatory": false
26167
+ }
26168
+ ,
26169
+ {
26170
+ "inputName": "hosting_platform_context_id",
26171
+ "type": "STRING",
26172
+ "mandatory": false
26173
+ }
26174
+ ,
26175
+ {
26176
+ "inputName": "internal_route",
26177
+ "type": "STRING",
26178
+ "mandatory": false
26179
+ }
26180
+ ,
26181
+ {
26182
+ "inputName": "displayMode",
26183
+ "type": "STRING",
26184
+ "mandatory": false
26185
+ }
26186
+ ]
26187
+ } as BiEventSchema,
26141
26188
  {
26142
26189
  "event_id": 187,
26143
26190
  "name": "dashboard > contributors > click on mange roles and permissions",
@@ -26167,6 +26214,253 @@ const schemaObj: SchemaObj = [
26167
26214
  }
26168
26215
  ]
26169
26216
  } as BiEventSchema,
26217
+ {
26218
+ "event_id": 1871,
26219
+ "name": "Roles and Permissions - Manage Roles - Edit Role",
26220
+ "fields": [
26221
+ {
26222
+ "inputName": "context",
26223
+ "type": "STRING",
26224
+ "mandatory": false
26225
+ }
26226
+ ,
26227
+ {
26228
+ "inputName": "role_id",
26229
+ "type": "STRING",
26230
+ "mandatory": false
26231
+ }
26232
+ ,
26233
+ {
26234
+ "inputName": "role_type",
26235
+ "type": "STRING",
26236
+ "mandatory": false
26237
+ }
26238
+ ,
26239
+ {
26240
+ "inputName": "origin",
26241
+ "type": "STRING",
26242
+ "mandatory": false
26243
+ }
26244
+ ,
26245
+ {
26246
+ "inputName": "platform",
26247
+ "type": "STRING",
26248
+ "mandatory": false
26249
+ }
26250
+ ,
26251
+ {
26252
+ "inputName": "role_name",
26253
+ "type": "STRING",
26254
+ "mandatory": false
26255
+ }
26256
+ ,
26257
+ {
26258
+ "inputName": "Has_ai_assistant",
26259
+ "type": "BOOL",
26260
+ "mandatory": false
26261
+ }
26262
+ ]
26263
+ } as BiEventSchema,
26264
+ {
26265
+ "event_id": 1874,
26266
+ "name": "Roles and Permissions - Invite Teammates - Send Invite Click",
26267
+ "fields": [
26268
+ {
26269
+ "inputName": "context",
26270
+ "type": "STRING",
26271
+ "mandatory": false
26272
+ }
26273
+ ,
26274
+ {
26275
+ "inputName": "origin",
26276
+ "type": "STRING",
26277
+ "mandatory": false
26278
+ }
26279
+ ,
26280
+ {
26281
+ "inputName": "invite_id",
26282
+ "type": "GUID",
26283
+ "mandatory": false
26284
+ }
26285
+ ,
26286
+ {
26287
+ "inputName": "number_of_valid_emails",
26288
+ "type": "NUMERIC",
26289
+ "mandatory": false
26290
+ }
26291
+ ,
26292
+ {
26293
+ "inputName": "role_ids",
26294
+ "type": "STRING",
26295
+ "mandatory": false
26296
+ }
26297
+ ,
26298
+ {
26299
+ "inputName": "app_id",
26300
+ "type": "STRING",
26301
+ "mandatory": false
26302
+ }
26303
+ ,
26304
+ {
26305
+ "inputName": "Has_ai_assistant",
26306
+ "type": "BOOL",
26307
+ "mandatory": false
26308
+ }
26309
+ ]
26310
+ } as BiEventSchema,
26311
+ {
26312
+ "event_id": 1875,
26313
+ "name": "Restore site - modal opened ",
26314
+ "fields": [
26315
+ {
26316
+ "inputName": "hosting_platform",
26317
+ "type": "STRING",
26318
+ "mandatory": false
26319
+ }
26320
+ ,
26321
+ {
26322
+ "inputName": "page_id",
26323
+ "type": "STRING",
26324
+ "mandatory": false
26325
+ }
26326
+ ,
26327
+ {
26328
+ "inputName": "page_name",
26329
+ "type": "STRING",
26330
+ "mandatory": false
26331
+ }
26332
+ ,
26333
+ {
26334
+ "inputName": "route",
26335
+ "type": "STRING",
26336
+ "mandatory": false
26337
+ }
26338
+ ,
26339
+ {
26340
+ "inputName": "hosting_platform_context_id",
26341
+ "type": "STRING",
26342
+ "mandatory": false
26343
+ }
26344
+ ,
26345
+ {
26346
+ "inputName": "internal_route",
26347
+ "type": "STRING",
26348
+ "mandatory": false
26349
+ }
26350
+ ,
26351
+ {
26352
+ "inputName": "origin",
26353
+ "type": "STRING",
26354
+ "mandatory": false
26355
+ }
26356
+ ]
26357
+ } as BiEventSchema,
26358
+ {
26359
+ "event_id": 1876,
26360
+ "name": "Restore site – Modal CTA clicked",
26361
+ "fields": [
26362
+ {
26363
+ "inputName": "hosting_platform",
26364
+ "type": "STRING",
26365
+ "mandatory": false
26366
+ }
26367
+ ,
26368
+ {
26369
+ "inputName": "page_id",
26370
+ "type": "STRING",
26371
+ "mandatory": false
26372
+ }
26373
+ ,
26374
+ {
26375
+ "inputName": "page_name",
26376
+ "type": "STRING",
26377
+ "mandatory": false
26378
+ }
26379
+ ,
26380
+ {
26381
+ "inputName": "route",
26382
+ "type": "STRING",
26383
+ "mandatory": false
26384
+ }
26385
+ ,
26386
+ {
26387
+ "inputName": "hosting_platform_context_id",
26388
+ "type": "STRING",
26389
+ "mandatory": false
26390
+ }
26391
+ ,
26392
+ {
26393
+ "inputName": "internal_route",
26394
+ "type": "STRING",
26395
+ "mandatory": false
26396
+ }
26397
+ ,
26398
+ {
26399
+ "inputName": "cta",
26400
+ "type": "STRING",
26401
+ "mandatory": false
26402
+ }
26403
+ ,
26404
+ {
26405
+ "inputName": "origin",
26406
+ "type": "STRING",
26407
+ "mandatory": false
26408
+ }
26409
+ ]
26410
+ } as BiEventSchema,
26411
+ {
26412
+ "event_id": 1878,
26413
+ "name": "Leaving without saving – Modal CTA clicked",
26414
+ "fields": [
26415
+ {
26416
+ "inputName": "hosting_platform",
26417
+ "type": "STRING",
26418
+ "mandatory": false
26419
+ }
26420
+ ,
26421
+ {
26422
+ "inputName": "page_id",
26423
+ "type": "STRING",
26424
+ "mandatory": false
26425
+ }
26426
+ ,
26427
+ {
26428
+ "inputName": "page_name",
26429
+ "type": "STRING",
26430
+ "mandatory": false
26431
+ }
26432
+ ,
26433
+ {
26434
+ "inputName": "route",
26435
+ "type": "STRING",
26436
+ "mandatory": false
26437
+ }
26438
+ ,
26439
+ {
26440
+ "inputName": "hosting_platform_context_id",
26441
+ "type": "STRING",
26442
+ "mandatory": false
26443
+ }
26444
+ ,
26445
+ {
26446
+ "inputName": "internal_route",
26447
+ "type": "STRING",
26448
+ "mandatory": false
26449
+ }
26450
+ ,
26451
+ {
26452
+ "inputName": "cta",
26453
+ "type": "STRING",
26454
+ "mandatory": false
26455
+ }
26456
+ ,
26457
+ {
26458
+ "inputName": "displayMode",
26459
+ "type": "STRING",
26460
+ "mandatory": false
26461
+ }
26462
+ ]
26463
+ } as BiEventSchema,
26170
26464
  {
26171
26465
  "event_id": 188,
26172
26466
  "name": "Ascend - Hover on Upgrade Ascend",
@@ -27486,6 +27780,12 @@ const schemaObj: SchemaObj = [
27486
27780
  "type": "STRING",
27487
27781
  "mandatory": false
27488
27782
  }
27783
+ ,
27784
+ {
27785
+ "inputName": "origin",
27786
+ "type": "STRING",
27787
+ "mandatory": false
27788
+ }
27489
27789
  ]
27490
27790
  } as BiEventSchema,
27491
27791
  {
@@ -44987,6 +45287,12 @@ const schemaObj: SchemaObj = [
44987
45287
  "type": "STRING",
44988
45288
  "mandatory": false
44989
45289
  }
45290
+ ,
45291
+ {
45292
+ "inputName": "esi",
45293
+ "type": "STRING",
45294
+ "mandatory": false
45295
+ }
44990
45296
  ]
44991
45297
  } as BiEventSchema,
44992
45298
  {
@@ -45010,6 +45316,12 @@ const schemaObj: SchemaObj = [
45010
45316
  "type": "STRING",
45011
45317
  "mandatory": false
45012
45318
  }
45319
+ ,
45320
+ {
45321
+ "inputName": "esi",
45322
+ "type": "STRING",
45323
+ "mandatory": false
45324
+ }
45013
45325
  ]
45014
45326
  } as BiEventSchema,
45015
45327
  {
@@ -58059,6 +58371,12 @@ const schemaObj: SchemaObj = [
58059
58371
  "type": "STRING",
58060
58372
  "mandatory": false
58061
58373
  }
58374
+ ,
58375
+ {
58376
+ "inputName": "consumerArtifactId",
58377
+ "type": "STRING",
58378
+ "mandatory": false
58379
+ }
58062
58380
  ]
58063
58381
  } as BiEventSchema,
58064
58382
  {
@@ -58208,6 +58526,12 @@ const schemaObj: SchemaObj = [
58208
58526
  "type": "STRING",
58209
58527
  "mandatory": false
58210
58528
  }
58529
+ ,
58530
+ {
58531
+ "inputName": "consumerArtifactId",
58532
+ "type": "STRING",
58533
+ "mandatory": false
58534
+ }
58211
58535
  ]
58212
58536
  } as BiEventSchema,
58213
58537
  {
@@ -58476,6 +58800,18 @@ const schemaObj: SchemaObj = [
58476
58800
  "mandatory": false
58477
58801
  }
58478
58802
  ,
58803
+ {
58804
+ "inputName": "consumerId",
58805
+ "type": "STRING",
58806
+ "mandatory": false
58807
+ }
58808
+ ,
58809
+ {
58810
+ "inputName": "consumerArtifactId",
58811
+ "type": "STRING",
58812
+ "mandatory": false
58813
+ }
58814
+ ,
58479
58815
  {
58480
58816
  "inputName": "routerUsage",
58481
58817
  "type": "BOOL",
@@ -58655,6 +58991,24 @@ const schemaObj: SchemaObj = [
58655
58991
  "mandatory": false
58656
58992
  }
58657
58993
  ,
58994
+ {
58995
+ "inputName": "consumerId",
58996
+ "type": "STRING",
58997
+ "mandatory": false
58998
+ }
58999
+ ,
59000
+ {
59001
+ "inputName": "consumerArtifactId",
59002
+ "type": "STRING",
59003
+ "mandatory": false
59004
+ }
59005
+ ,
59006
+ {
59007
+ "inputName": "route",
59008
+ "type": "STRING",
59009
+ "mandatory": false
59010
+ }
59011
+ ,
58658
59012
  {
58659
59013
  "inputName": "routerUsage",
58660
59014
  "type": "BOOL",
@@ -59446,6 +59800,18 @@ const schemaObj: SchemaObj = [
59446
59800
  "type": "BOOL",
59447
59801
  "mandatory": false
59448
59802
  }
59803
+ ,
59804
+ {
59805
+ "inputName": "loadingTime",
59806
+ "type": "NUMERIC",
59807
+ "mandatory": false
59808
+ }
59809
+ ,
59810
+ {
59811
+ "inputName": "isOriginComponentLoaded",
59812
+ "type": "BOOL",
59813
+ "mandatory": false
59814
+ }
59449
59815
  ]
59450
59816
  } as BiEventSchema,
59451
59817
  {
@@ -65487,6 +65853,12 @@ const schemaObj: SchemaObj = [
65487
65853
  "type": "STRING",
65488
65854
  "mandatory": false
65489
65855
  }
65856
+ ,
65857
+ {
65858
+ "inputName": "theme",
65859
+ "type": "STRING",
65860
+ "mandatory": false
65861
+ }
65490
65862
  ]
65491
65863
  } as BiEventSchema,
65492
65864
  {
@@ -65576,6 +65948,12 @@ const schemaObj: SchemaObj = [
65576
65948
  "type": "STRING",
65577
65949
  "mandatory": false
65578
65950
  }
65951
+ ,
65952
+ {
65953
+ "inputName": "theme",
65954
+ "type": "STRING",
65955
+ "mandatory": false
65956
+ }
65579
65957
  ]
65580
65958
  } as BiEventSchema,
65581
65959
  {
@@ -65689,6 +66067,12 @@ const schemaObj: SchemaObj = [
65689
66067
  "type": "STRING",
65690
66068
  "mandatory": false
65691
66069
  }
66070
+ ,
66071
+ {
66072
+ "inputName": "theme",
66073
+ "type": "STRING",
66074
+ "mandatory": false
66075
+ }
65692
66076
  ]
65693
66077
  } as BiEventSchema,
65694
66078
  {
@@ -66714,6 +67098,12 @@ const schemaObj: SchemaObj = [
66714
67098
  "mandatory": false
66715
67099
  }
66716
67100
  ,
67101
+ {
67102
+ "inputName": "isEn",
67103
+ "type": "BOOL",
67104
+ "mandatory": false
67105
+ }
67106
+ ,
66717
67107
  {
66718
67108
  "inputName": "mapped_error_not_available",
66719
67109
  "type": "STRING",
@@ -66755,6 +67145,12 @@ const schemaObj: SchemaObj = [
66755
67145
  "mandatory": false
66756
67146
  }
66757
67147
  ,
67148
+ {
67149
+ "inputName": "isEn",
67150
+ "type": "BOOL",
67151
+ "mandatory": false
67152
+ }
67153
+ ,
66758
67154
  {
66759
67155
  "inputName": "displayed_message",
66760
67156
  "type": "STRING",
@@ -66774,6 +67170,17 @@ const schemaObj: SchemaObj = [
66774
67170
  }
66775
67171
  ]
66776
67172
  } as BiEventSchema,
67173
+ {
67174
+ "event_id": 103,
67175
+ "name": "retryError",
67176
+ "fields": [
67177
+ {
67178
+ "inputName": "session_id",
67179
+ "type": "STRING",
67180
+ "mandatory": false
67181
+ }
67182
+ ]
67183
+ } as BiEventSchema,
66777
67184
  {
66778
67185
  "event_id": 404,
66779
67186
  "name": "Http Client Error",
@@ -66838,6 +67245,12 @@ const schemaObj: SchemaObj = [
66838
67245
  "mandatory": false
66839
67246
  }
66840
67247
  ,
67248
+ {
67249
+ "inputName": "method",
67250
+ "type": "STRING",
67251
+ "mandatory": false
67252
+ }
67253
+ ,
66841
67254
  {
66842
67255
  "inputName": "error_message",
66843
67256
  "type": "STRING",