o11y_schema 252.13.0 → 252.14.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
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"./sf_sfs": "./sf_sfs/sf_sfs.js",
|
|
48
48
|
"./sf_einstein": "./sf_einstein/sf_einstein.js",
|
|
49
49
|
"./sfcore_customCmp": "./sfcore_customCmp/sfcore_customCmp.js",
|
|
50
|
+
"./sf_servicePlan": "./sf_servicePlan/sf_servicePlan.js",
|
|
50
51
|
"./sf_actExp": "./sf_actExp/sf_actExp.js",
|
|
51
52
|
"./sf_contentLayout": "./sf_contentLayout/sf_contentLayout.js",
|
|
52
53
|
"./sf_actions": "./sf_actions/sf_actions.js",
|
|
@@ -67,7 +68,7 @@
|
|
|
67
68
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
68
69
|
},
|
|
69
70
|
"type": "module",
|
|
70
|
-
"version": "252.
|
|
71
|
+
"version": "252.14.0",
|
|
71
72
|
"license": "BSD-3-Clause",
|
|
72
73
|
"volta": {
|
|
73
74
|
"node": "18.17.1",
|
|
@@ -121,6 +122,7 @@
|
|
|
121
122
|
"o11y_schema/sf_selfService",
|
|
122
123
|
"o11y_schema/sf_semanticDataPrism",
|
|
123
124
|
"o11y_schema/sf_semanticModel",
|
|
125
|
+
"o11y_schema/sf_servicePlan",
|
|
124
126
|
"o11y_schema/sf_sfMaps",
|
|
125
127
|
"o11y_schema/sf_sfs",
|
|
126
128
|
"o11y_schema/sf_sfsMobileHybrid",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { service_plan_component as servicePlanComponentSchema } from './service_plan_component.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const service_plan_component={namespace:"sf.servicePlan",name:"ServicePlanComponent",pbjsSchema:{"nested":{"sf":{"nested":{"servicePlan":{"nested":{"ServicePlanComponent":{"fields":{"action":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { service_plan_component as servicePlanComponentSchema } from './service_plan_component.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='252.
|
|
1
|
+
export const version='252.14.0'
|