o11y_schema 258.28.0 → 258.30.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_umaAI/index.js +1 -0
- package/sf_umaAI/sf_umaAI.js +1 -0
- package/sf_umaAI/sf_umaAI.js-meta.xml +7 -0
- package/sf_umaAI/uma_ai.js +2 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"./sf_actExp": "./sf_actExp/sf_actExp.js",
|
|
79
79
|
"./sf_slackforce": "./sf_slackforce/sf_slackforce.js",
|
|
80
80
|
"./sf_contentLayout": "./sf_contentLayout/sf_contentLayout.js",
|
|
81
|
+
"./sf_umaAI": "./sf_umaAI/sf_umaAI.js",
|
|
81
82
|
"./sf_energyUtilities": "./sf_energyUtilities/sf_energyUtilities.js",
|
|
82
83
|
"./sf_actions": "./sf_actions/sf_actions.js",
|
|
83
84
|
"./sf_aura": "./sf_aura/sf_aura.js",
|
|
@@ -108,7 +109,7 @@
|
|
|
108
109
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
109
110
|
},
|
|
110
111
|
"type": "module",
|
|
111
|
-
"version": "258.
|
|
112
|
+
"version": "258.30.0",
|
|
112
113
|
"license": "BSD-3-Clause",
|
|
113
114
|
"volta": {
|
|
114
115
|
"node": "18.17.1",
|
|
@@ -201,6 +202,7 @@
|
|
|
201
202
|
"o11y_schema/sf_studio",
|
|
202
203
|
"o11y_schema/sf_support",
|
|
203
204
|
"o11y_schema/sf_testAiltnPageview",
|
|
205
|
+
"o11y_schema/sf_umaAI",
|
|
204
206
|
"o11y_schema/sf_umaCoreAnalytics",
|
|
205
207
|
"o11y_schema/sf_umaCoreExperience",
|
|
206
208
|
"o11y_schema/sf_umaGoals",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { uma_ai as umaAiSchema } from './uma_ai.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { uma_ai as umaAiSchema } from './uma_ai.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const uma_ai={namespace:"sf.umaAI",name:"UmaAi",pbjsSchema:{"nested":{"sf":{"nested":{"umaAI":{"nested":{"UmaAi":{"oneofs":{"_buId":{"oneof":["buId"]},"_dataspace":{"oneof":["dataspace"]},"_isHomeOrg":{"oneof":["isHomeOrg"]}},"fields":{"buId":{"options":{"proto3_optional":true},"id":1,"type":"string"},"dataspace":{"options":{"proto3_optional":true},"id":2,"type":"string"},"featureName":{"id":3,"type":"string"},"action":{"id":4,"type":"string"},"isHomeOrg":{"options":{"proto3_optional":true},
|
|
2
|
+
"id":6,"type":"bool"},"isSuccess":{"id":5,"type":"bool"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='258.
|
|
1
|
+
export const version='258.30.0'
|