o11y_schema 264.104.0 → 264.106.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_amaHybridRuntime/index.js +4 -0
- package/sf_amaHybridRuntime/page_load_time.js +2 -0
- package/sf_amaHybridRuntime/plugin_load_time.js +1 -0
- package/sf_amaHybridRuntime/runtime_bootstrap_time.js +2 -0
- package/sf_amaHybridRuntime/sf_amaHybridRuntime.js +4 -0
- package/sf_amaHybridRuntime/sf_amaHybridRuntime.js-meta.xml +7 -0
- package/sf_amaHybridRuntime/site_load_time.js +2 -0
- package/sf_instrumentation/core_envelope.js +5 -5
- package/sf_sentosSearch/agenticInteraction.js +1 -1
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -148,6 +148,7 @@
|
|
|
148
148
|
"./sf_sci": "./sf_sci/sf_sci.js",
|
|
149
149
|
"./sf_lightningsdk": "./sf_lightningsdk/sf_lightningsdk.js",
|
|
150
150
|
"./sf_incidentManagement": "./sf_incidentManagement/sf_incidentManagement.js",
|
|
151
|
+
"./sf_amaHybridRuntime": "./sf_amaHybridRuntime/sf_amaHybridRuntime.js",
|
|
151
152
|
"./sf_studio": "./sf_studio/sf_studio.js",
|
|
152
153
|
"./sf_starterOneProduct": "./sf_starterOneProduct/sf_starterOneProduct.js",
|
|
153
154
|
"./sf_thunderbirdConnector": "./sf_thunderbirdConnector/sf_thunderbirdConnector.js",
|
|
@@ -169,7 +170,7 @@
|
|
|
169
170
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
170
171
|
},
|
|
171
172
|
"type": "module",
|
|
172
|
-
"version": "264.
|
|
173
|
+
"version": "264.106.0",
|
|
173
174
|
"license": "BSD-3-Clause",
|
|
174
175
|
"volta": {
|
|
175
176
|
"node": "18.17.1",
|
|
@@ -194,6 +195,7 @@
|
|
|
194
195
|
"o11y_schema/sf_amaCapabilities",
|
|
195
196
|
"o11y_schema/sf_amaChrome",
|
|
196
197
|
"o11y_schema/sf_amaDesigner",
|
|
198
|
+
"o11y_schema/sf_amaHybridRuntime",
|
|
197
199
|
"o11y_schema/sf_amaMnrCore",
|
|
198
200
|
"o11y_schema/sf_appDevAisc",
|
|
199
201
|
"o11y_schema/sf_appdevDevops",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { plugin_load_time as pluginLoadTimeSchema } from './plugin_load_time.js';
|
|
2
|
+
export { site_load_time as siteLoadTimeSchema } from './site_load_time.js';
|
|
3
|
+
export { page_load_time as pageLoadTimeSchema } from './page_load_time.js';
|
|
4
|
+
export { runtime_bootstrap_time as runtimeBootstrapTimeSchema } from './runtime_bootstrap_time.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const page_load_time={namespace:"sf.amaHybridRuntime",name:"PageLoadTime",pbjsSchema:{"nested":{"sf":{"nested":{"amaHybridRuntime":{"nested":{"PageLoadTime":{"oneofs":{"_message":{"oneof":["message"]}},"fields":{"amaAppId":{"id":1,"type":"string"},"amaAppVersionId":{"id":3,"type":"string"},"pageType":{"id":4,"type":"string"},"isFirstVisit":{"id":5,"type":"bool"},"message":{"options":{"(meta.max_length)":256,"proto3_optional":true},"id":7,"type":"string"},"amaUemVersionId":{"id":2,"type":"string"},
|
|
2
|
+
"isSuccess":{"id":6,"type":"bool"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const plugin_load_time={namespace:"sf.amaHybridRuntime",name:"PluginLoadTime",pbjsSchema:{"nested":{"sf":{"nested":{"amaHybridRuntime":{"nested":{"PluginLoadTime":{"oneofs":{"_message":{"oneof":["message"]}},"fields":{"amaAppId":{"id":1,"type":"string"},"amaAppVersionId":{"id":3,"type":"string"},"message":{"options":{"(meta.max_length)":256,"proto3_optional":true},"id":6,"type":"string"},"amaUemVersionId":{"id":2,"type":"string"},"pluginCount":{"id":4,"type":"uint32"},"isSuccess":{"id":5,"type":"bool"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const runtime_bootstrap_time={namespace:"sf.amaHybridRuntime",name:"RuntimeBootstrapTime",pbjsSchema:{"nested":{"sf":{"nested":{"amaHybridRuntime":{"nested":{"RuntimeBootstrapTime":{"oneofs":{"_message":{"oneof":["message"]}},"fields":{"amaAppId":{"id":1,"type":"string"},"amaAppVersionId":{"id":3,"type":"string"},"runtimeType":{"id":4,"type":"string"},"message":{"options":{"(meta.max_length)":256,"proto3_optional":true},"id":6,"type":"string"},"amaUemVersionId":{"id":2,"type":"string"},"isSuccess":{"id":5,
|
|
2
|
+
"type":"bool"}}}}}}}}}};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { plugin_load_time as pluginLoadTimeSchema } from './plugin_load_time.js';
|
|
2
|
+
export { site_load_time as siteLoadTimeSchema } from './site_load_time.js';
|
|
3
|
+
export { page_load_time as pageLoadTimeSchema } from './page_load_time.js';
|
|
4
|
+
export { runtime_bootstrap_time as runtimeBootstrapTimeSchema } from './runtime_bootstrap_time.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const site_load_time={namespace:"sf.amaHybridRuntime",name:"SiteLoadTime",pbjsSchema:{"nested":{"sf":{"nested":{"amaHybridRuntime":{"nested":{"SiteLoadTime":{"oneofs":{"_message":{"oneof":["message"]},"_siteUrl":{"oneof":["siteUrl"]}},"fields":{"amaAppId":{"id":1,"type":"string"},"amaAppVersionId":{"id":3,"type":"string"},"siteUrl":{"options":{"(meta.max_length)":500,"proto3_optional":true},"id":5,"type":"string"},"message":{"options":{"(meta.max_length)":256,"proto3_optional":true},"id":7,
|
|
2
|
+
"type":"string"},"amaUemVersionId":{"id":2,"type":"string"},"siteType":{"id":4,"type":"string"},"isSuccess":{"id":6,"type":"bool"}}}}}}}}}};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const core_envelope={namespace:"sf.instrumentation",name:"CoreEnvelope",pbjsSchema:{"nested":{"sf":{"nested":{"instrumentation":{"nested":{"MessageBundle":{"fields":{"messages":{"rule":"repeated","id":2,"type":"LogMessage"},"schemaName":{"id":1,"type":"string"}}},"Metrics":{"fields":{"globalMetricTags":{"rule":"repeated","id":4,"type":"MetricTag"},"bucketHistograms":{"rule":"repeated","id":3,"type":"BucketHistogram"},"valueRecorders":{"rule":"repeated","id":2,"type":"ValueRecorder"},"upCounters":{"rule":"repeated",
|
|
2
2
|
"id":1,"type":"UpCounter"}}},"CoreEnvelopeDiagnostics":{"fields":{"schemaVersion":{"id":6,"type":"string"},"generatedTimestamp":{"id":2,"type":"double"},"bundleCount":{"id":3,"type":"uint32"},"upCounterCount":{"id":4,"type":"uint32"},"valueRecorderCount":{"id":5,"type":"uint32"},"key":{"id":1,"type":"string"},"bucketHistogramCount":{"id":7,"type":"uint32"}}},"LogMessage":{"fields":{"data":{"id":2,"type":"bytes"},"rootId":{"id":4,"type":"string"},"csId":{"id":12,"type":"string"},"recCsId":{"id":13,
|
|
3
|
-
"type":"string"},"pagePayload":{"id":7,"type":"Payload"},"connectionType":{"id":9,"type":"string"},"appPayload":{"id":10,"type":"Payload"},"loggerAppName":{"id":8,"type":"string"},"sseq":{"id":11,"type":"uint32"},"recRootId":{"id":14,"type":"string"},"loggerName":{"id":6,"type":"string"},"age":{"id":3,"type":"double"},"seq":{"id":5,"type":"uint32"},"timestamp":{"id":1,"type":"double"}}},"CoreEnvelope":{"fields":{"diagnostics":{"id":1,"type":"CoreEnvelopeDiagnostics"},
|
|
4
|
-
"id":2,"type":"MessageBundle"},"metrics":{"id":3,"type":"Metrics"},"staticAttributes":{"id":4,"type":"StaticAttributes"}}},"MetricTag":{"fields":{"name":{"id":1,"type":"string"},"value":{"id":2,"type":"string"}}},"BucketHistogram":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":7,"type":"string"},"ownerAppName":{"id":8,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"values":{"rule":"repeated","id":4,"type":"double"},"buckets":{"rule":"repeated",
|
|
5
|
-
"name":{"id":1,"type":"string"},"tags":{"rule":"repeated","id":6,"type":"MetricTag"}}},"ValueRecorder":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":6,"type":"string"},"ownerAppName":{"id":7,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"values":{"rule":"repeated","id":4,"type":"double"},"name":{"id":1,"type":"string"},"tags":{"rule":"repeated","id":5,"type":"MetricTag"}}},"StaticAttributes":{"fields":{"appVersion":{"id":2,"type":"string"},
|
|
6
|
-
"type":"string"},"deviceModel":{"id":5,"type":"string"},"sdkVersion":{"id":6,"type":"string"},"deviceId":{"id":4,"type":"string"},"appExperience":{"id":3,"type":"string"}}},"Payload":{"fields":{"payload":{"id":2,"type":"bytes"},"schemaName":{"id":1,"type":"string"}}},"UpCounter":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":6,"type":"string"},"ownerAppName":{"id":7,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"name":{"id":1,"type":"string"},
|
|
7
|
-
"type":"uint32"},"tags":{"rule":"repeated","id":5,"type":"MetricTag"}}}}}}}}}};
|
|
3
|
+
"type":"string"},"pagePayload":{"id":7,"type":"Payload"},"connectionType":{"id":9,"type":"string"},"appPayload":{"id":10,"type":"Payload"},"tenantClass":{"id":15,"type":"string"},"loggerAppName":{"id":8,"type":"string"},"sseq":{"id":11,"type":"uint32"},"recRootId":{"id":14,"type":"string"},"loggerName":{"id":6,"type":"string"},"age":{"id":3,"type":"double"},"seq":{"id":5,"type":"uint32"},"timestamp":{"id":1,"type":"double"}}},"CoreEnvelope":{"fields":{"diagnostics":{"id":1,"type":"CoreEnvelopeDiagnostics"},
|
|
4
|
+
"bundles":{"rule":"repeated","id":2,"type":"MessageBundle"},"metrics":{"id":3,"type":"Metrics"},"staticAttributes":{"id":4,"type":"StaticAttributes"}}},"MetricTag":{"fields":{"name":{"id":1,"type":"string"},"value":{"id":2,"type":"string"}}},"BucketHistogram":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":7,"type":"string"},"ownerAppName":{"id":8,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"values":{"rule":"repeated","id":4,"type":"double"},"buckets":{"rule":"repeated",
|
|
5
|
+
"id":5,"type":"uint32"},"name":{"id":1,"type":"string"},"tags":{"rule":"repeated","id":6,"type":"MetricTag"}}},"ValueRecorder":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":6,"type":"string"},"ownerAppName":{"id":7,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"values":{"rule":"repeated","id":4,"type":"double"},"name":{"id":1,"type":"string"},"tags":{"rule":"repeated","id":5,"type":"MetricTag"}}},"StaticAttributes":{"fields":{"appVersion":{"id":2,"type":"string"},
|
|
6
|
+
"appName":{"id":1,"type":"string"},"deviceModel":{"id":5,"type":"string"},"sdkVersion":{"id":6,"type":"string"},"deviceId":{"id":4,"type":"string"},"appExperience":{"id":3,"type":"string"}}},"Payload":{"fields":{"payload":{"id":2,"type":"bytes"},"schemaName":{"id":1,"type":"string"}}},"UpCounter":{"fields":{"lastUpdatedTimestamp":{"id":3,"type":"double"},"ownerName":{"id":6,"type":"string"},"ownerAppName":{"id":7,"type":"string"},"createdTimestamp":{"id":2,"type":"double"},"name":{"id":1,"type":"string"},
|
|
7
|
+
"value":{"id":4,"type":"uint32"},"tags":{"rule":"repeated","id":5,"type":"MetricTag"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const agenticInteraction={namespace:"sf.sentosSearch",name:"AgenticInteraction",pbjsSchema:{"nested":{"sf":{"nested":{"sentosSearch":{"nested":{"AgenticInteraction":{"fields":{"queryLength":{"id":9,"type":"uint32"},"resultCount":{"id":8,"type":"uint32"},"srchSessionId":{"id":1,"type":"string"},"appName":{"id":13,"type":"string"},"interactTime":{"id":15,"type":"uint64"},"clientSearchId":{"id":4,"type":"string"},"isCitation":{"id":17,"type":"bool"},"feedbackId":{"id":12,"type":"string"},"searchReqSeq":{"id":5,
|
|
2
|
-
"type":"uint32"},"eventMetadata":{"id":10,"type":"string"},"windowId":{"id":2,"type":"string"},"queryId":{"id":6,"type":"string"},"hoverDurationMs":{"id":16,"type":"double"},"feedback":{"id":14,"type":"string"},"clientSource":{"id":3,"type":"string"},"interactType":{"id":7,"type":"string"},"isWorkObject":{"id":18,"type":"bool"},"resultType":{"id":11,"type":"string"}}}}}}}}}};
|
|
2
|
+
"type":"uint32"},"eventMetadata":{"id":10,"type":"string"},"windowId":{"id":2,"type":"string"},"queryId":{"id":6,"type":"string"},"hoverDurationMs":{"id":16,"type":"double"},"feedback":{"id":14,"type":"string"},"recordId":{"id":19,"type":"string"},"clientSource":{"id":3,"type":"string"},"interactType":{"id":7,"type":"string"},"isWorkObject":{"id":18,"type":"bool"},"resultType":{"id":11,"type":"string"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='264.
|
|
1
|
+
export const version='264.106.0'
|