o11y_schema 264.121.0 → 264.123.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_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_knowledge/index.js +1 -0
- package/sf_knowledge/knowledge_similarity_usage.js +2 -0
- package/sf_knowledge/sf_knowledge.js +1 -0
- 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",
|
|
@@ -175,7 +176,7 @@
|
|
|
175
176
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
176
177
|
},
|
|
177
178
|
"type": "module",
|
|
178
|
-
"version": "264.
|
|
179
|
+
"version": "264.123.0",
|
|
179
180
|
"license": "BSD-3-Clause",
|
|
180
181
|
"volta": {
|
|
181
182
|
"node": "18.17.1",
|
|
@@ -197,6 +198,7 @@
|
|
|
197
198
|
"o11y_schema/sf_agenticSetup",
|
|
198
199
|
"o11y_schema/sf_agenticTelemetry",
|
|
199
200
|
"o11y_schema/sf_ai4mCampaignDesigner",
|
|
201
|
+
"o11y_schema/sf_aiSkills",
|
|
200
202
|
"o11y_schema/sf_almSimpleDeploy",
|
|
201
203
|
"o11y_schema/sf_amaCapabilities",
|
|
202
204
|
"o11y_schema/sf_amaChrome",
|
|
@@ -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"}}}}}}}}}};
|
package/sf_knowledge/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { table_of_contents_usage as tableOfContentsUsageSchema } from './table_of_contents_usage.js';
|
|
2
|
+
export { knowledge_similarity_usage as knowledgeSimilarityUsageSchema } from './knowledge_similarity_usage.js';
|
|
2
3
|
export { knowledge_blocks_usage as knowledgeBlocksUsageSchema } from './knowledge_blocks_usage.js';
|
|
3
4
|
export { enterprise_knowledge_instrumentation as enterpriseKnowledgeInstrumentationSchema } from './enterprise_knowledge_instrumentation.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const knowledge_similarity_usage={namespace:"sf.knowledge",name:"KnowledgeSimilarityUsage",pbjsSchema:{"nested":{"sf":{"nested":{"knowledge":{"nested":{"KnowledgeSimilarityUsage":{"oneofs":{"_result":{"oneof":["result"]},"_organizationId":{"oneof":["organizationId"]},"_articleId":{"oneof":["articleId"]},"_entryPoint":{"oneof":["entryPoint"]},"_appContext":{"oneof":["appContext"]},"_resultCount":{"oneof":["resultCount"]}},"fields":{"result":{"options":{"proto3_optional":true},"id":7,"type":"string"},
|
|
2
|
+
"organizationId":{"options":{"proto3_optional":true},"id":8,"type":"string"},"resultCount":{"options":{"proto3_optional":true},"id":6,"type":"uint32"},"interaction":{"id":2,"type":"string"},"articleId":{"options":{"proto3_optional":true},"id":5,"type":"string"},"appContext":{"options":{"proto3_optional":true},"id":4,"type":"string"},"componentName":{"id":1,"type":"string"},"entryPoint":{"options":{"proto3_optional":true},"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { table_of_contents_usage as tableOfContentsUsageSchema } from './table_of_contents_usage.js';
|
|
2
|
+
export { knowledge_similarity_usage as knowledgeSimilarityUsageSchema } from './knowledge_similarity_usage.js';
|
|
2
3
|
export { knowledge_blocks_usage as knowledgeBlocksUsageSchema } from './knowledge_blocks_usage.js';
|
|
3
4
|
export { enterprise_knowledge_instrumentation as enterpriseKnowledgeInstrumentationSchema } from './enterprise_knowledge_instrumentation.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='264.
|
|
1
|
+
export const version='264.123.0'
|