o11y_schema 264.122.0 → 264.124.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 +5 -1
- package/sf_aiSkills/index.js +1 -0
- package/sf_aiSkills/sf_aiSkills.js +1 -0
- package/sf_aiSkills/sf_aiSkills.js-meta.xml +7 -0
- package/sf_aiSkills/skill_builder.js +1 -0
- package/sf_ccorgdx/application_lifecycle.js +1 -0
- package/sf_ccorgdx/index.js +3 -0
- package/sf_ccorgdx/operation.js +1 -0
- package/sf_ccorgdx/page_view.js +1 -0
- package/sf_ccorgdx/sf_ccorgdx.js +3 -0
- package/sf_ccorgdx/sf_ccorgdx.js-meta.xml +7 -0
- package/sf_pdp/pdp_event.js +1 -1
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
"./sf_lists": "./sf_lists/sf_lists.js",
|
|
87
87
|
"./sf_lwc": "./sf_lwc/sf_lwc.js",
|
|
88
88
|
"./sf_offlineApp": "./sf_offlineApp/sf_offlineApp.js",
|
|
89
|
+
"./sf_aiSkills": "./sf_aiSkills/sf_aiSkills.js",
|
|
89
90
|
"./sf_scrt": "./sf_scrt/sf_scrt.js",
|
|
90
91
|
"./sf_agentforceMessaging": "./sf_agentforceMessaging/sf_agentforceMessaging.js",
|
|
91
92
|
"./sf_appexchangeInstrumentation": "./sf_appexchangeInstrumentation/sf_appexchangeInstrumentation.js",
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
"./sf_genAiIntelligenceUsage": "./sf_genAiIntelligenceUsage/sf_genAiIntelligenceUsage.js",
|
|
105
106
|
"./sf_licenseUtilization": "./sf_licenseUtilization/sf_licenseUtilization.js",
|
|
106
107
|
"./sf_salesCoachAgent": "./sf_salesCoachAgent/sf_salesCoachAgent.js",
|
|
108
|
+
"./sf_ccorgdx": "./sf_ccorgdx/sf_ccorgdx.js",
|
|
107
109
|
"./sf_generativeCanvas": "./sf_generativeCanvas/sf_generativeCanvas.js",
|
|
108
110
|
"./sf_pos": "./sf_pos/sf_pos.js",
|
|
109
111
|
"./sf_amaCapabilities": "./sf_amaCapabilities/sf_amaCapabilities.js",
|
|
@@ -175,7 +177,7 @@
|
|
|
175
177
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
176
178
|
},
|
|
177
179
|
"type": "module",
|
|
178
|
-
"version": "264.
|
|
180
|
+
"version": "264.124.0",
|
|
179
181
|
"license": "BSD-3-Clause",
|
|
180
182
|
"volta": {
|
|
181
183
|
"node": "18.17.1",
|
|
@@ -197,6 +199,7 @@
|
|
|
197
199
|
"o11y_schema/sf_agenticSetup",
|
|
198
200
|
"o11y_schema/sf_agenticTelemetry",
|
|
199
201
|
"o11y_schema/sf_ai4mCampaignDesigner",
|
|
202
|
+
"o11y_schema/sf_aiSkills",
|
|
200
203
|
"o11y_schema/sf_almSimpleDeploy",
|
|
201
204
|
"o11y_schema/sf_amaCapabilities",
|
|
202
205
|
"o11y_schema/sf_amaChrome",
|
|
@@ -216,6 +219,7 @@
|
|
|
216
219
|
"o11y_schema/sf_brief",
|
|
217
220
|
"o11y_schema/sf_campaign",
|
|
218
221
|
"o11y_schema/sf_ccinventory",
|
|
222
|
+
"o11y_schema/sf_ccorgdx",
|
|
219
223
|
"o11y_schema/sf_cdpActivation",
|
|
220
224
|
"o11y_schema/sf_cgcloud",
|
|
221
225
|
"o11y_schema/sf_cia",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { skill_builder as skillBuilderSchema } from './skill_builder.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { skill_builder as skillBuilderSchema } from './skill_builder.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const skill_builder={namespace:"sf.aiSkills",name:"SkillBuilder",pbjsSchema:{"nested":{"sf":{"nested":{"aiSkills":{"nested":{"SkillBuilder":{"fields":{"skillId":{"id":2,"type":"string"},"versionId":{"id":3,"type":"string"},"errorMessage":{"id":8,"type":"string"},"taskName":{"id":1,"type":"string"},"definition":{"id":4,"type":"string"},"source":{"id":7,"type":"string"},"userRole":{"id":6,"type":"string"},"status":{"id":5,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const application_lifecycle={namespace:"sf.ccorgdx",name:"ApplicationLifecycle",pbjsSchema:{"nested":{"sf":{"nested":{"ccorgdx":{"nested":{"ApplicationLifecycle":{"fields":{"lifecycle":{"id":1,"type":"string"},"previousVersion":{"id":3,"type":"string"},"durationMs":{"id":2,"type":"double"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const operation={namespace:"sf.ccorgdx",name:"Operation",pbjsSchema:{"nested":{"sf":{"nested":{"ccorgdx":{"nested":{"Operation":{"fields":{"errorCategory":{"id":5,"type":"string"},"source":{"id":3,"type":"string"},"operation":{"id":1,"type":"string"},"durationMs":{"id":4,"type":"double"},"outcome":{"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const page_view={namespace:"sf.ccorgdx",name:"PageView",pbjsSchema:{"nested":{"sf":{"nested":{"ccorgdx":{"nested":{"PageView":{"fields":{"surface":{"id":1,"type":"string"}}}}}}}}}};
|
package/sf_pdp/pdp_event.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const pdp_event={namespace:"sf.pdp",name:"PdpEvent",pbjsSchema:{"nested":{"sf":{"nested":{"pdp":{"nested":{"PdpEvent":{"oneofs":{"_eventVolume":{"oneof":["eventVolume"]}},"fields":{"contextName":{"id":5,"type":"string"},"componentId":{"id":2,"type":"string"},"productFeatureId":{"id":3,"type":"string"},"channel":{"id":7,"type":"string"},"eventName":{"id":1,"type":"string"},"contextValue":{"id":6,"type":"string"},"subType":{"id":8,"type":"string"},"eventVolume":{"options":{"proto3_optional":true},
|
|
2
|
-
"id":4,"type":"int32"}}}}}}}}}};
|
|
2
|
+
"id":4,"type":"int32"},"userId":{"id":9,"type":"string"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='264.
|
|
1
|
+
export const version='264.124.0'
|