o11y_schema 246.5.0 → 246.7.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 +4 -2
- package/sf_embeddedMessaging/current_state.js +1 -0
- package/sf_embeddedMessaging/failure_event.js +1 -0
- package/sf_embeddedMessaging/index.js +3 -0
- package/sf_embeddedMessaging/interaction_event.js +1 -0
- package/sf_embeddedMessaging/sf_embeddedMessaging.js +3 -0
- package/sf_lightningsdk/http.js +1 -1
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"./version": "./version/version.js",
|
|
37
37
|
"./sf_komaci": "./sf_komaci/sf_komaci.js",
|
|
38
38
|
"./sf_lex": "./sf_lex/sf_lex.js",
|
|
39
|
-
"./sf_enhancedConversation": "./sf_enhancedConversation/sf_enhancedConversation.js"
|
|
39
|
+
"./sf_enhancedConversation": "./sf_enhancedConversation/sf_enhancedConversation.js",
|
|
40
|
+
"./sf_embeddedMessaging": "./sf_embeddedMessaging/sf_embeddedMessaging.js"
|
|
40
41
|
},
|
|
41
42
|
"description": "o11y schema repo",
|
|
42
43
|
"repository": {
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
45
46
|
},
|
|
46
47
|
"type": "module",
|
|
47
|
-
"version": "246.
|
|
48
|
+
"version": "246.7.0",
|
|
48
49
|
"license": "BSD-3-Clause",
|
|
49
50
|
"name": "o11y_schema",
|
|
50
51
|
"lwc": {
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"o11y_schema/sf_clwr",
|
|
58
59
|
"o11y_schema/sf_commerce",
|
|
59
60
|
"o11y_schema/sf_contentLayout",
|
|
61
|
+
"o11y_schema/sf_embeddedMessaging",
|
|
60
62
|
"o11y_schema/sf_enhancedConversation",
|
|
61
63
|
"o11y_schema/sf_instrumentation",
|
|
62
64
|
"o11y_schema/sf_instrumentationTest",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const current_state={namespace:"sf.embeddedMessaging",name:"CurrentState",pbjsSchema:{"nested":{"sf":{"nested":{"embeddedMessaging":{"nested":{"CurrentState":{"oneofs":{"_convEntryId":{"oneof":["convEntryId"]}},"fields":{"convId":{"id":4,"type":"string"},"method":{"id":2,"type":"string"},"stateMessage":{"id":3,"type":"string"},"configDev":{"id":1,"type":"string"},"convEntryId":{"options":{"proto3_optional":true},"id":5,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const failure_event={namespace:"sf.embeddedMessaging",name:"FailureEvent",pbjsSchema:{"nested":{"sf":{"nested":{"embeddedMessaging":{"nested":{"FailureEvent":{"oneofs":{"_convEntryId":{"oneof":["convEntryId"]}},"fields":{"convId":{"id":4,"type":"string"},"method":{"id":2,"type":"string"},"errCode":{"id":5,"type":"uint32"},"errMessage":{"id":3,"type":"string"},"configDev":{"id":1,"type":"string"},"convEntryId":{"options":{"proto3_optional":true},"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const interaction_event={namespace:"sf.embeddedMessaging",name:"InteractionEvent",pbjsSchema:{"nested":{"sf":{"nested":{"embeddedMessaging":{"nested":{"InteractionEvent":{"fields":{"convId":{"id":5,"type":"string"},"op":{"id":4,"type":"string"},"method":{"id":2,"type":"string"},"feature":{"id":3,"type":"string"},"fileSize":{"id":6,"type":"uint32"},"fileMimeType":{"id":7,"type":"string"},"configDev":{"id":1,"type":"string"}}}}}}}}}};
|
package/sf_lightningsdk/http.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const http={namespace:"sf.lightningsdk",name:"Http",pbjsSchema:{"nested":{"sf":{"nested":{"lightningsdk":{"nested":{"Http":{"fields":{"reqSize":{"id":3,"type":"uint64"},"method":{"id":2,"type":"string"},"respSize":{"id":5,"type":"uint64"},"url":{"id":1,"type":"string"},"statusCode":{"id":4,"type":"uint32"}}}}}}}}}};
|
|
1
|
+
export const http={namespace:"sf.lightningsdk",name:"Http",pbjsSchema:{"nested":{"sf":{"nested":{"lightningsdk":{"nested":{"Http":{"fields":{"reqSize":{"id":3,"type":"uint64"},"method":{"id":2,"type":"string"},"respSize":{"id":5,"type":"uint64"},"querystringLength":{"id":6,"type":"uint32"},"url":{"id":1,"type":"string"},"statusCode":{"id":4,"type":"uint32"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='246.
|
|
1
|
+
export const version='246.7.0'
|