@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
|
@@ -189,6 +189,7 @@ export function pickerPickerOpenButton(params) {
|
|
|
189
189
|
* @property {string} appId - app_id
|
|
190
190
|
* @property {number} filteredListSize - How many items are currently presented to user (filtered)
|
|
191
191
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
192
|
+
* @property {string} consumerArtifactId - consumerArtifactId - relevant for item selection
|
|
192
193
|
* @return {LogObject<newItemCreationStartParams>} LogObject<newItemCreationStartParams>
|
|
193
194
|
*/
|
|
194
195
|
export function newItemCreationStart(params) {
|
|
@@ -224,6 +225,7 @@ export function newItemCreationStart(params) {
|
|
|
224
225
|
* @property {string} appId - app_id
|
|
225
226
|
* @property {number} filteredListSize - How many items are currently presented to user (filtered)
|
|
226
227
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
228
|
+
* @property {string} consumerArtifactId - consumerArtifactId - relevant for item selection
|
|
227
229
|
* @return {LogObject<newItemCreationEndParams>} LogObject<newItemCreationEndParams>
|
|
228
230
|
*/
|
|
229
231
|
export function newItemCreationEnd(params) {
|
|
@@ -300,6 +302,8 @@ export function pikachuItemCategorySelected(params) {
|
|
|
300
302
|
* @property {string} hostingPlatformContextId - the id of the context entity that the user view or edit (app/account/site)
|
|
301
303
|
*
|
|
302
304
|
* @property {string} theme - relevant to custom field - inline / card
|
|
305
|
+
* @property {string} consumerId - consumer Id - relevant for artifact_id = item selection module
|
|
306
|
+
* @property {string} consumerArtifactId - consumerArtifactId - relevant for item selection
|
|
303
307
|
* @property {boolean} routerUsage - returns true if Wix Patterns router is being used, else false
|
|
304
308
|
*
|
|
305
309
|
* @property {boolean} isCurrentViewCustomMade - will be True if the current view is custom-made; otherwise, it will be False
|
|
@@ -342,6 +346,9 @@ export function loadStart(params) {
|
|
|
342
346
|
* @property {string} hostingPlatformContextId - the id of the context entity that the user view or edit (app/account/site)
|
|
343
347
|
*
|
|
344
348
|
* @property {string} theme - relevant to custom field - inline / card
|
|
349
|
+
* @property {string} consumerId - consumer Id - relevant for artifact_id = item selection module
|
|
350
|
+
* @property {string} consumerArtifactId - consumerArtifactId - relevant for item selection
|
|
351
|
+
* @property {string} route - The page's route
|
|
345
352
|
* @property {boolean} routerUsage - returns true if Wix Patterns router is being used, else false
|
|
346
353
|
* @property {boolean} isCurrentViewCustomMade - will be True if the current view is custom-made; otherwise, it will be False
|
|
347
354
|
*
|
|
@@ -539,6 +546,8 @@ export function cairoSearchResults(params) {
|
|
|
539
546
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
540
547
|
* @property {string} filterType - The type of the filter - Multi Selection, Single Selection, Number Range
|
|
541
548
|
* @property {boolean} isCustomField - true if the field is customized
|
|
549
|
+
* @property {number} loadingTime - Component loading time (in ms) after toggling
|
|
550
|
+
* @property {boolean} isOriginComponentLoaded - True if the original component was loaded before toggling
|
|
542
551
|
* @return {LogObject<cairoFilterToggledParams>} LogObject<cairoFilterToggledParams>
|
|
543
552
|
*/
|
|
544
553
|
export function cairoFilterToggled(params) {
|
|
@@ -2111,6 +2120,7 @@ export function cairoSearchForTags(params) {
|
|
|
2111
2120
|
* @property {string} itemId - The entity ID (that the widget was loaded in its page)
|
|
2112
2121
|
* @property {string} appId - app_id
|
|
2113
2122
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2123
|
+
* @property {string} theme - Card/ Inline
|
|
2114
2124
|
* @return {LogObject<cairoTagsWidgetLoadedParams>} LogObject<cairoTagsWidgetLoadedParams>
|
|
2115
2125
|
*/
|
|
2116
2126
|
export function cairoTagsWidgetLoaded(params) {
|
|
@@ -2136,6 +2146,7 @@ export function cairoTagsWidgetLoaded(params) {
|
|
|
2136
2146
|
* @property {string} itemId - The entity ID
|
|
2137
2147
|
* @property {string} appId - app_id
|
|
2138
2148
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2149
|
+
* @property {string} theme - Card/ Inline
|
|
2139
2150
|
* @return {LogObject<cairoTagsWidgetClickOnCtaParams>} LogObject<cairoTagsWidgetClickOnCtaParams>
|
|
2140
2151
|
*/
|
|
2141
2152
|
export function cairoTagsWidgetClickOnCta(params) {
|
|
@@ -2165,6 +2176,7 @@ export function cairoTagsWidgetClickOnCta(params) {
|
|
|
2165
2176
|
* @property {string} appId - app_id
|
|
2166
2177
|
* @property {boolean} isFromSearch - Is the action made from a list of tags search results?
|
|
2167
2178
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
2179
|
+
* @property {string} theme - Card/ Inline
|
|
2168
2180
|
* @return {LogObject<cairoTagsAssignTagParams>} LogObject<cairoTagsAssignTagParams>
|
|
2169
2181
|
*/
|
|
2170
2182
|
export function cairoTagsAssignTag(params) {
|
|
@@ -2471,6 +2483,7 @@ export function httpClientErrorMappingSrc176Evid100(params) {
|
|
|
2471
2483
|
*
|
|
2472
2484
|
* @param {getResolvedErrorSrc176Evid101Params} params - The parameters for this event
|
|
2473
2485
|
* @property {string} session_id - the key for connecting the error event
|
|
2486
|
+
* @property {boolean} isEn - True if the user sees the message in english
|
|
2474
2487
|
* @property {string} mapped_error_not_available - mapped_error_not_available
|
|
2475
2488
|
* @property {string} translated_message - the translated message of the error
|
|
2476
2489
|
* @property {string} action_text - the action of the text
|
|
@@ -2488,6 +2501,7 @@ export function getResolvedErrorSrc176Evid101(params) {
|
|
|
2488
2501
|
*
|
|
2489
2502
|
* @param {showErrorSrc176Evid102Params} params - The parameters for this event
|
|
2490
2503
|
* @property {string} session_id - the key for connecting the error event
|
|
2504
|
+
* @property {boolean} isEn - True if the user sees the message in english
|
|
2491
2505
|
* @property {string} displayed_message - displayed_message to the user
|
|
2492
2506
|
* @property {string} displayed_action - displayed_action to the user
|
|
2493
2507
|
* @property {string} action_was_provided - action_was_provided
|
|
@@ -2496,6 +2510,18 @@ export function getResolvedErrorSrc176Evid101(params) {
|
|
|
2496
2510
|
export function showErrorSrc176Evid102(params) {
|
|
2497
2511
|
return { evid: 102, src: 176, endpoint: '', params };
|
|
2498
2512
|
}
|
|
2513
|
+
/**
|
|
2514
|
+
* A function to create a log object for the 'retryErrorSrc176Evid103' event (evid: 103)
|
|
2515
|
+
*
|
|
2516
|
+
* Event description: Support cases of errors retries
|
|
2517
|
+
*
|
|
2518
|
+
* @param {retryErrorSrc176Evid103Params} params - The parameters for this event
|
|
2519
|
+
* @property {string} session_id - the key for connecting the error event
|
|
2520
|
+
* @return {LogObject<retryErrorSrc176Evid103Params>} LogObject<retryErrorSrc176Evid103Params>
|
|
2521
|
+
*/
|
|
2522
|
+
export function retryErrorSrc176Evid103(params) {
|
|
2523
|
+
return { evid: 103, src: 176, endpoint: '', params };
|
|
2524
|
+
}
|
|
2499
2525
|
/**
|
|
2500
2526
|
* A function to create a log object for the 'httpClientErrorSrc176Evid404' event (evid: 404)
|
|
2501
2527
|
*
|
|
@@ -2512,6 +2538,7 @@ export function showErrorSrc176Evid102(params) {
|
|
|
2512
2538
|
* @property {string} is_override_error_state_function - is_override_error_state_function
|
|
2513
2539
|
* @property {string} error_json - the full error json
|
|
2514
2540
|
* @property {string} translated_message - translated_message
|
|
2541
|
+
* @property {string} method - HTTP request method (GET,POST,HEAD etc.)
|
|
2515
2542
|
* @property {string} error_message - the error message from the json
|
|
2516
2543
|
* @property {string} exception_message - exception message
|
|
2517
2544
|
* @property {string} client_error_code - client error code (browser code)
|
|
@@ -2995,6 +3022,8 @@ export function dashboardDeleteAndRestoreSiteOpenPopup(params) {
|
|
|
2995
3022
|
* @property {number} score - accuracy of the page type
|
|
2996
3023
|
* @property {Url} url - url
|
|
2997
3024
|
* @property {string} previewUrl - preview
|
|
3025
|
+
* @property {boolean} isPatternsPage - yes if it is on Patterns
|
|
3026
|
+
* @property {string} fullRoute - Full Route
|
|
2998
3027
|
* @return {LogObject<pageClassifierSrc5Evid10000Params>} LogObject<pageClassifierSrc5Evid10000Params>
|
|
2999
3028
|
*/
|
|
3000
3029
|
export function pageClassifierSrc5Evid10000(params) {
|
|
@@ -9111,14 +9140,15 @@ export function teamManagementInvitePeoplePageLoad(params) {
|
|
|
9111
9140
|
/**
|
|
9112
9141
|
* A function to create a log object for the 'teamManagementInvitePeopleSendInvite' event (evid: 1411)
|
|
9113
9142
|
*
|
|
9114
|
-
* Event description: User clicks on 'send invite' in the add people window
|
|
9143
|
+
* Event description: User clicks on 'send invite' in the add people window.
|
|
9144
|
+
*
|
|
9145
|
+
*
|
|
9115
9146
|
*
|
|
9116
9147
|
* @param {teamManagementInvitePeopleSendInviteParams} params - The parameters for this event
|
|
9117
9148
|
* @property {string} context - account/site
|
|
9118
9149
|
* @property {number} number_of_invalid_emails - number of invalid emails (only errors for not typing correctly - exclude errors for existing emails)
|
|
9119
9150
|
* @property {string} invite_role_ids - the role_ids that the user sends to the invitees
|
|
9120
9151
|
* @property {string} assignment_type - all/specific
|
|
9121
|
-
* @property {number} number_of_existing_emails - emails that already exist in the team
|
|
9122
9152
|
* @property {string} origin - where the modal was clicked from
|
|
9123
9153
|
* @property {GUID} invite_id - the invite_id
|
|
9124
9154
|
* @property {number} num_sites - the distinct number of sites in the invite (null if all)
|
|
@@ -9128,6 +9158,7 @@ export function teamManagementInvitePeoplePageLoad(params) {
|
|
|
9128
9158
|
* @property {number} num_folders - the distinct number of folders in the invite (null if all)
|
|
9129
9159
|
* @property {number} contributors_quota - How many contributors can be added to the site based on the premium package quota
|
|
9130
9160
|
*
|
|
9161
|
+
* @property {string} invite_role_names - the names of the rols assigned in the invite.
|
|
9131
9162
|
* @property {number} contributors_count - How many contributors are actually active on the site
|
|
9132
9163
|
* @property {string} app_id - app_id (context = app)
|
|
9133
9164
|
* @property {boolean} Has_ai_assistant - Does the user has AI assistant on this page
|
|
@@ -9244,8 +9275,6 @@ export function teamManagementManageRolesRolePageLoad(params) {
|
|
|
9244
9275
|
* @property {string} role_id - role_id of the role that the user is duplicating
|
|
9245
9276
|
* @property {string} role_type - custom/predefined
|
|
9246
9277
|
* @property {string} origin - where the user clicked from - roles list/role page
|
|
9247
|
-
* @property {string} platform - platform
|
|
9248
|
-
* @property {GUID} msid - msid
|
|
9249
9278
|
* @return {LogObject<teamManagementManageRolesDuplicateAndEditRoleParams>} LogObject<teamManagementManageRolesDuplicateAndEditRoleParams>
|
|
9250
9279
|
*/
|
|
9251
9280
|
export function teamManagementManageRolesDuplicateAndEditRole(params) {
|
|
@@ -9259,8 +9288,8 @@ export function teamManagementManageRolesDuplicateAndEditRole(params) {
|
|
|
9259
9288
|
* @param {teamManagementManageRolesEditCustomRoleParams} params - The parameters for this event
|
|
9260
9289
|
* @property {string} context - account/site
|
|
9261
9290
|
* @property {string} role_id - the role_id
|
|
9262
|
-
* @property {string} platform - platform
|
|
9263
9291
|
* @property {GUID} msid - msid
|
|
9292
|
+
* @property {string} origin - where the user clicked from - roles list/role page
|
|
9264
9293
|
* @return {LogObject<teamManagementManageRolesEditCustomRoleParams>} LogObject<teamManagementManageRolesEditCustomRoleParams>
|
|
9265
9294
|
*/
|
|
9266
9295
|
export function teamManagementManageRolesEditCustomRole(params) {
|
|
@@ -13724,6 +13753,24 @@ export function searchToDeleteSrc5Evid1847(params) {
|
|
|
13724
13753
|
export function teamManagementResendInviteClick(params) {
|
|
13725
13754
|
return { evid: 185, src: 5, endpoint: '', params };
|
|
13726
13755
|
}
|
|
13756
|
+
/**
|
|
13757
|
+
* A function to create a log object for the 'leavingWithoutSavingModalOpenedSrc5Evid1858' event (evid: 1858)
|
|
13758
|
+
*
|
|
13759
|
+
* Event description: Leaving without saving - modal opened
|
|
13760
|
+
*
|
|
13761
|
+
* @param {leavingWithoutSavingModalOpenedSrc5Evid1858Params} params - The parameters for this event
|
|
13762
|
+
* @property {string} hosting_platform - accountmanagr/bizmanagr/devcenter/etc.
|
|
13763
|
+
* @property {string} page_id - the page id (the component id of the page)
|
|
13764
|
+
* @property {string} page_name - the component name of the page
|
|
13765
|
+
* @property {string} route - the page's route
|
|
13766
|
+
* @property {string} hosting_platform_context_id - 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
|
|
13767
|
+
* @property {string} internal_route - in case of internal page- in this field we will get the additional part of the route
|
|
13768
|
+
* @property {string} displayMode - main / overlay
|
|
13769
|
+
* @return {LogObject<leavingWithoutSavingModalOpenedSrc5Evid1858Params>} LogObject<leavingWithoutSavingModalOpenedSrc5Evid1858Params>
|
|
13770
|
+
*/
|
|
13771
|
+
export function leavingWithoutSavingModalOpenedSrc5Evid1858(params) {
|
|
13772
|
+
return { evid: 1858, src: 5, endpoint: '', params };
|
|
13773
|
+
}
|
|
13727
13774
|
/**
|
|
13728
13775
|
* A function to create a log object for the 'dashboardContributorsClickOnMangeRolesAndPermissions' event (evid: 187)
|
|
13729
13776
|
*
|
|
@@ -13739,6 +13786,99 @@ export function teamManagementResendInviteClick(params) {
|
|
|
13739
13786
|
export function dashboardContributorsClickOnMangeRolesAndPermissions(params) {
|
|
13740
13787
|
return { evid: 187, src: 5, endpoint: '', params };
|
|
13741
13788
|
}
|
|
13789
|
+
/**
|
|
13790
|
+
* A function to create a log object for the 'rolesAndPermissionsManageRolesEditRoleSrc5Evid1871' event (evid: 1871)
|
|
13791
|
+
*
|
|
13792
|
+
* Event description: User clicks on 'edit role' (and not edit & duplicate) from the role actions menu (considered as creating a new role). The user can click on a custom role or a pre-defined role.
|
|
13793
|
+
*
|
|
13794
|
+
* @param {rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params} params - The parameters for this event
|
|
13795
|
+
* @property {string} context - account/site
|
|
13796
|
+
* @property {string} role_id - role_id of the role that the user is duplicating
|
|
13797
|
+
* @property {string} role_type - custom/predefined
|
|
13798
|
+
* @property {string} origin - where the user clicked from - roles list/role page
|
|
13799
|
+
* @property {string} platform - platform
|
|
13800
|
+
* @property {string} role_name - role_name of the role that the user is duplicating
|
|
13801
|
+
* @property {boolean} Has_ai_assistant - Is He had AI assistant? (True/False)
|
|
13802
|
+
* @return {LogObject<rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params>} LogObject<rolesAndPermissionsManageRolesEditRoleSrc5Evid1871Params>
|
|
13803
|
+
*/
|
|
13804
|
+
export function rolesAndPermissionsManageRolesEditRoleSrc5Evid1871(params) {
|
|
13805
|
+
return { evid: 1871, src: 5, endpoint: '', params };
|
|
13806
|
+
}
|
|
13807
|
+
/**
|
|
13808
|
+
* A function to create a log object for the 'rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874' event (evid: 1874)
|
|
13809
|
+
*
|
|
13810
|
+
* Event description: User clicks on 'send invites' in the invite Teammates window (user level only).
|
|
13811
|
+
*
|
|
13812
|
+
* @param {rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params} params - The parameters for this event
|
|
13813
|
+
* @property {string} context - account
|
|
13814
|
+
* @property {string} origin - where the modal was clicked from
|
|
13815
|
+
* @property {GUID} invite_id - the invite_id
|
|
13816
|
+
* @property {number} number_of_valid_emails - number of valid emails
|
|
13817
|
+
* @property {string} role_ids - the role_ids that the user sends to the invitees alongside binary indicator for the 'All sites and folders' (True for usage in this).
|
|
13818
|
+
* @property {string} app_id - The team account id
|
|
13819
|
+
* @property {boolean} Has_ai_assistant - Does the user has AI assistant on this page
|
|
13820
|
+
*
|
|
13821
|
+
* @return {LogObject<rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params>} LogObject<rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874Params>
|
|
13822
|
+
*/
|
|
13823
|
+
export function rolesAndPermissionsInviteTeammatesSendInviteClickSrc5Evid1874(params) {
|
|
13824
|
+
return { evid: 1874, src: 5, endpoint: '', params };
|
|
13825
|
+
}
|
|
13826
|
+
/**
|
|
13827
|
+
* A function to create a log object for the 'restoreSiteModalOpenedSrc5Evid1875' event (evid: 1875)
|
|
13828
|
+
*
|
|
13829
|
+
* Event description: Restore site - modal opened
|
|
13830
|
+
*
|
|
13831
|
+
* @param {restoreSiteModalOpenedSrc5Evid1875Params} params - The parameters for this event
|
|
13832
|
+
* @property {string} hosting_platform - accountmanagr/bizmanagr/devcenter/etc.
|
|
13833
|
+
* @property {string} page_id - the page id (the component id of the page)
|
|
13834
|
+
* @property {string} page_name - the component name of the page
|
|
13835
|
+
* @property {string} route - the page's route
|
|
13836
|
+
* @property {string} hosting_platform_context_id - 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
|
|
13837
|
+
* @property {string} internal_route - in case of internal page- in this field we will get the additional part of the route
|
|
13838
|
+
* @property {string} origin - The origin from which the modal was opened
|
|
13839
|
+
* @return {LogObject<restoreSiteModalOpenedSrc5Evid1875Params>} LogObject<restoreSiteModalOpenedSrc5Evid1875Params>
|
|
13840
|
+
*/
|
|
13841
|
+
export function restoreSiteModalOpenedSrc5Evid1875(params) {
|
|
13842
|
+
return { evid: 1875, src: 5, endpoint: '', params };
|
|
13843
|
+
}
|
|
13844
|
+
/**
|
|
13845
|
+
* A function to create a log object for the 'restoreSiteModalCtaClickedSrc5Evid1876' event (evid: 1876)
|
|
13846
|
+
*
|
|
13847
|
+
* Event description: Restore site – Modal CTA clicked
|
|
13848
|
+
*
|
|
13849
|
+
* @param {restoreSiteModalCtaClickedSrc5Evid1876Params} params - The parameters for this event
|
|
13850
|
+
* @property {string} hosting_platform - accountmanagr/bizmanagr/devcenter/etc.
|
|
13851
|
+
* @property {string} page_id - the page id (the component id of the page)
|
|
13852
|
+
* @property {string} page_name - the component name of the page
|
|
13853
|
+
* @property {string} route - the page's route
|
|
13854
|
+
* @property {string} hosting_platform_context_id - 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
|
|
13855
|
+
* @property {string} internal_route - in case of internal page- in this field we will get the additional part of the route
|
|
13856
|
+
* @property {string} cta - Keep in trash / Restore site
|
|
13857
|
+
* @property {string} origin - The origin from which the modal was opened
|
|
13858
|
+
* @return {LogObject<restoreSiteModalCtaClickedSrc5Evid1876Params>} LogObject<restoreSiteModalCtaClickedSrc5Evid1876Params>
|
|
13859
|
+
*/
|
|
13860
|
+
export function restoreSiteModalCtaClickedSrc5Evid1876(params) {
|
|
13861
|
+
return { evid: 1876, src: 5, endpoint: '', params };
|
|
13862
|
+
}
|
|
13863
|
+
/**
|
|
13864
|
+
* A function to create a log object for the 'leavingWithoutSavingModalCtaClickedSrc5Evid1878' event (evid: 1878)
|
|
13865
|
+
*
|
|
13866
|
+
* Event description: Leaving without saving – Modal CTA clicked
|
|
13867
|
+
*
|
|
13868
|
+
* @param {leavingWithoutSavingModalCtaClickedSrc5Evid1878Params} params - The parameters for this event
|
|
13869
|
+
* @property {string} hosting_platform - accountmanagr/bizmanagr/devcenter/etc.
|
|
13870
|
+
* @property {string} page_id - the page id (the component id of the page)
|
|
13871
|
+
* @property {string} page_name - the component name of the page
|
|
13872
|
+
* @property {string} route - the page's route
|
|
13873
|
+
* @property {string} hosting_platform_context_id - 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
|
|
13874
|
+
* @property {string} internal_route - in case of internal page- in this field we will get the additional part of the route
|
|
13875
|
+
* @property {string} cta - Exit (click on x), Leave, Keep editing (in english)
|
|
13876
|
+
* @property {string} displayMode - main / overlay
|
|
13877
|
+
* @return {LogObject<leavingWithoutSavingModalCtaClickedSrc5Evid1878Params>} LogObject<leavingWithoutSavingModalCtaClickedSrc5Evid1878Params>
|
|
13878
|
+
*/
|
|
13879
|
+
export function leavingWithoutSavingModalCtaClickedSrc5Evid1878(params) {
|
|
13880
|
+
return { evid: 1878, src: 5, endpoint: '', params };
|
|
13881
|
+
}
|
|
13742
13882
|
/**
|
|
13743
13883
|
* A function to create a log object for the 'ascendHoverOnUpgradeAscend' event (evid: 188)
|
|
13744
13884
|
*
|
|
@@ -14250,6 +14390,7 @@ export function osFavoritesPopupCtaClicked(params) {
|
|
|
14250
14390
|
* @property {string} favoritesName - the component name of the page that the user picks
|
|
14251
14391
|
* @property {boolean} wasSuccess - Send true if the action completed successfully
|
|
14252
14392
|
* @property {string} hostingPlatformContextId - 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
|
|
14393
|
+
* @property {string} origin - Favorites popup / sidebar
|
|
14253
14394
|
* @return {LogObject<osFavoritesPagesEditParams>} LogObject<osFavoritesPagesEditParams>
|
|
14254
14395
|
*/
|
|
14255
14396
|
export function osFavoritesPagesEdit(params) {
|
|
@@ -21330,6 +21471,7 @@ export function gdprUsersUserGdprFormSubmissionFailed(params) {
|
|
|
21330
21471
|
* @property {Url} url - url
|
|
21331
21472
|
* @property {string} origin - origin
|
|
21332
21473
|
* @property {string} action - accept/settings/dismiss/read_policy/render/decline_all/save/hide
|
|
21474
|
+
* @property {string} esi - esi
|
|
21333
21475
|
* @return {LogObject<cookiesBannerCtaParams>} LogObject<cookiesBannerCtaParams>
|
|
21334
21476
|
*/
|
|
21335
21477
|
export function cookiesBannerCta(params) {
|
|
@@ -21344,6 +21486,7 @@ export function cookiesBannerCta(params) {
|
|
|
21344
21486
|
* @property {Url} url - url
|
|
21345
21487
|
* @property {boolean} toggle - (optional) on/off
|
|
21346
21488
|
* @property {string} action - save/dismiss/toggle/read_policy
|
|
21489
|
+
* @property {string} esi - esi
|
|
21347
21490
|
* @return {LogObject<cookiesBannerSettingsWindowCtaParams>} LogObject<cookiesBannerSettingsWindowCtaParams>
|
|
21348
21491
|
*/
|
|
21349
21492
|
export function cookiesBannerSettingsWindowCta(params) {
|