o11y_schema 260.62.0 → 260.63.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/package.json +3 -1
- package/sf_mcpanalytics/analytics_context.js +1 -0
- package/sf_mcpanalytics/custom_event.js +1 -0
- package/sf_mcpanalytics/error_context.js +1 -0
- package/sf_mcpanalytics/index.js +6 -0
- package/sf_mcpanalytics/interaction.js +1 -0
- package/sf_mcpanalytics/page_view.js +1 -0
- package/sf_mcpanalytics/session.js +1 -0
- package/sf_mcpanalytics/sf_mcpanalytics.js +6 -0
- package/sf_mcpanalytics/sf_mcpanalytics.js-meta.xml +7 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"./sf_omniStudio": "./sf_omniStudio/sf_omniStudio.js",
|
|
79
79
|
"./sf_lol": "./sf_lol/sf_lol.js",
|
|
80
80
|
"./sf_promptStudio": "./sf_promptStudio/sf_promptStudio.js",
|
|
81
|
+
"./sf_mcpanalytics": "./sf_mcpanalytics/sf_mcpanalytics.js",
|
|
81
82
|
"./sf_appdevDevops": "./sf_appdevDevops/sf_appdevDevops.js",
|
|
82
83
|
"./sf_formula": "./sf_formula/sf_formula.js",
|
|
83
84
|
"./sf_umaGoals": "./sf_umaGoals/sf_umaGoals.js",
|
|
@@ -149,7 +150,7 @@
|
|
|
149
150
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
150
151
|
},
|
|
151
152
|
"type": "module",
|
|
152
|
-
"version": "260.
|
|
153
|
+
"version": "260.63.0",
|
|
153
154
|
"license": "BSD-3-Clause",
|
|
154
155
|
"volta": {
|
|
155
156
|
"node": "18.17.1",
|
|
@@ -229,6 +230,7 @@
|
|
|
229
230
|
"o11y_schema/sf_lwrjs",
|
|
230
231
|
"o11y_schema/sf_marketingObjects",
|
|
231
232
|
"o11y_schema/sf_mci",
|
|
233
|
+
"o11y_schema/sf_mcpanalytics",
|
|
232
234
|
"o11y_schema/sf_mobileNativeAI",
|
|
233
235
|
"o11y_schema/sf_mobileVoicePlatform",
|
|
234
236
|
"o11y_schema/sf_ms365",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const analytics_context={namespace:"sf.mcpanalytics",name:"AnalyticsContext",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"AnalyticsContext":{"fields":{"surface":{"id":2,"type":"string"},"appId":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const custom_event={namespace:"sf.mcpanalytics",name:"CustomEvent",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"CustomEvent":{"fields":{"eventName":{"id":1,"type":"string"},"properties":{"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const error_context={namespace:"sf.mcpanalytics",name:"ErrorContext",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"ErrorContext":{"fields":{"properties":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { interaction as interactionSchema } from './interaction.js';
|
|
2
|
+
export { analytics_context as analyticsContextSchema } from './analytics_context.js';
|
|
3
|
+
export { page_view as pageViewSchema } from './page_view.js';
|
|
4
|
+
export { session as sessionSchema } from './session.js';
|
|
5
|
+
export { error_context as errorContextSchema } from './error_context.js';
|
|
6
|
+
export { custom_event as customEventSchema } from './custom_event.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const interaction={namespace:"sf.mcpanalytics",name:"Interaction",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"Interaction":{"fields":{"elementId":{"id":1,"type":"string"},"properties":{"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const page_view={namespace:"sf.mcpanalytics",name:"PageView",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"PageView":{"fields":{"componentRef":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const session={namespace:"sf.mcpanalytics",name:"Session",pbjsSchema:{"nested":{"sf":{"nested":{"mcpanalytics":{"nested":{"Session":{"fields":{"durationMs":{"id":1,"type":"double"}}}}}}}}}};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { interaction as interactionSchema } from './interaction.js';
|
|
2
|
+
export { analytics_context as analyticsContextSchema } from './analytics_context.js';
|
|
3
|
+
export { page_view as pageViewSchema } from './page_view.js';
|
|
4
|
+
export { session as sessionSchema } from './session.js';
|
|
5
|
+
export { error_context as errorContextSchema } from './error_context.js';
|
|
6
|
+
export { custom_event as customEventSchema } from './custom_event.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='260.
|
|
1
|
+
export const version='260.63.0'
|