@wix/bex-utils 2.35.0 → 2.36.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 +1 -1
- 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 +1 -1
- 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 +25 -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 +1 -1
- 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 +11 -6
- package/@wix/bi-logger-os-data/dist/cjs/v2/index.js.map +1 -1
- package/@wix/bi-logger-os-data/dist/esm/index.js +1 -1
- 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 +1 -1
- 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 +25 -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 +1 -1
- 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 +9 -4
- 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 +3 -3
- package/@wix/bi-logger-os-data/dist/types/testkit/client-testkit.d.ts +6 -1
- package/@wix/bi-logger-os-data/dist/types/testkit/node-testkit.d.ts +6 -1
- package/@wix/bi-logger-os-data/dist/types/types.d.ts +6 -1
- package/@wix/bi-logger-os-data/dist/types/v2/index.d.ts +10 -5
- package/@wix/bi-logger-os-data/package.json +2 -2
- package/@wix/bi-logger-os-data/src/index.ts +3 -3
- package/@wix/bi-logger-os-data/src/testkit/client-testkit.ts +6 -1
- package/@wix/bi-logger-os-data/src/testkit/common.ts +30 -0
- package/@wix/bi-logger-os-data/src/testkit/node-testkit.ts +6 -1
- package/@wix/bi-logger-os-data/src/types.ts +11 -1
- package/@wix/bi-logger-os-data/src/v2/index.ts +10 -5
- package/package.json +3 -3
|
@@ -299,6 +299,7 @@ export function pikachuItemCategorySelected(params) {
|
|
|
299
299
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
300
300
|
* @property {string} hostingPlatformContextId - the id of the context entity that the user view or edit (app/account/site)
|
|
301
301
|
*
|
|
302
|
+
* @property {string} theme - relevant to custom field - inline / card
|
|
302
303
|
* @property {boolean} routerUsage - returns true if Wix Patterns router is being used, else false
|
|
303
304
|
*
|
|
304
305
|
* @property {boolean} isCurrentViewCustomMade - will be True if the current view is custom-made; otherwise, it will be False
|
|
@@ -340,6 +341,7 @@ export function loadStart(params) {
|
|
|
340
341
|
* @property {string} product - Name of the product/api from FQDN (contacts, booking, site_properties, etc.)
|
|
341
342
|
* @property {string} hostingPlatformContextId - the id of the context entity that the user view or edit (app/account/site)
|
|
342
343
|
*
|
|
344
|
+
* @property {string} theme - relevant to custom field - inline / card
|
|
343
345
|
* @property {boolean} routerUsage - returns true if Wix Patterns router is being used, else false
|
|
344
346
|
* @property {boolean} isCurrentViewCustomMade - will be True if the current view is custom-made; otherwise, it will be False
|
|
345
347
|
*
|
|
@@ -2725,6 +2727,7 @@ export function pingNotificationCreationRequest(params) {
|
|
|
2725
2727
|
* @property {string} target - target
|
|
2726
2728
|
* @property {string} contact_id - contact_id
|
|
2727
2729
|
* @property {string} os_category - os_category
|
|
2730
|
+
* @property {string} groupNotificationId - An ID for a group of similar notifications clustered in feed
|
|
2728
2731
|
* @return {LogObject<pingNotificationSendParams>} LogObject<pingNotificationSendParams>
|
|
2729
2732
|
*/
|
|
2730
2733
|
export function pingNotificationSend(params) {
|
|
@@ -2990,6 +2993,8 @@ export function dashboardDeleteAndRestoreSiteOpenPopup(params) {
|
|
|
2990
2993
|
* @property {number} revision - revision
|
|
2991
2994
|
* @property {string} pageType - entity / collection / settings
|
|
2992
2995
|
* @property {number} score - accuracy of the page type
|
|
2996
|
+
* @property {Url} url - url
|
|
2997
|
+
* @property {string} previewUrl - preview
|
|
2993
2998
|
* @return {LogObject<pageClassifierSrc5Evid10000Params>} LogObject<pageClassifierSrc5Evid10000Params>
|
|
2994
2999
|
*/
|
|
2995
3000
|
export function pageClassifierSrc5Evid10000(params) {
|
|
@@ -11964,20 +11969,20 @@ export function clickOnSearchEverywhereInSettingsLobbysSearchSrc5Evid1646(params
|
|
|
11964
11969
|
return { evid: 1646, src: 5, endpoint: '', params };
|
|
11965
11970
|
}
|
|
11966
11971
|
/**
|
|
11967
|
-
* A function to create a log object for the '
|
|
11972
|
+
* A function to create a log object for the 'gizaOverlayPageModalCtaClicked1648' event (evid: 1648)
|
|
11968
11973
|
*
|
|
11969
11974
|
* Event description: When a cta is clicked within in - context experience
|
|
11970
11975
|
*
|
|
11971
|
-
* @param {
|
|
11976
|
+
* @param {gizaOverlayPageModalCtaClicked1648Params} params - The parameters for this event
|
|
11972
11977
|
* @property {string} hosting_platform - accountmanagr/bizmanagr/devcenter/etc.
|
|
11973
11978
|
* @property {string} page_id - the page id
|
|
11974
11979
|
* @property {string} page_name - page name
|
|
11975
11980
|
* @property {string} app_id - the app id of the app the page belongs to
|
|
11976
11981
|
* @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
|
|
11977
11982
|
* @property {string} cta - cta name (in english) - exit/ go back
|
|
11978
|
-
* @return {LogObject<
|
|
11983
|
+
* @return {LogObject<gizaOverlayPageModalCtaClicked1648Params>} LogObject<gizaOverlayPageModalCtaClicked1648Params>
|
|
11979
11984
|
*/
|
|
11980
|
-
export function
|
|
11985
|
+
export function gizaOverlayPageModalCtaClicked1648(params) {
|
|
11981
11986
|
return { evid: 1648, src: 5, endpoint: '', params };
|
|
11982
11987
|
}
|
|
11983
11988
|
/**
|