o11y_schema 256.2.0 → 256.4.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_lightningOut/index.js +1 -0
- package/sf_lightningOut/lightning_out_uma_container_load.js +1 -0
- package/sf_lightningOut/sf_lightningOut.js +1 -0
- package/sf_lightningOut/sf_lightningOut.js-meta.xml +7 -0
- package/sf_omniChannel/index.js +2 -0
- package/sf_omniChannel/route_work.js +1 -0
- package/sf_omniChannel/sf_omniChannel.js +2 -0
- package/sf_omniChannel/sf_omniChannel.js-meta.xml +7 -0
- package/sf_omniChannel/supervisor_event.js +1 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"./sf_brand": "./sf_brand/sf_brand.js",
|
|
10
10
|
"./sf_digitalwallet": "./sf_digitalwallet/sf_digitalwallet.js",
|
|
11
11
|
"./sf_clwr": "./sf_clwr/sf_clwr.js",
|
|
12
|
+
"./sf_omniChannel": "./sf_omniChannel/sf_omniChannel.js",
|
|
12
13
|
"./sf_lists": "./sf_lists/sf_lists.js",
|
|
13
14
|
"./sf_lwc": "./sf_lwc/sf_lwc.js",
|
|
14
15
|
"./sf_offlineApp": "./sf_offlineApp/sf_offlineApp.js",
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
"./sf_komaci": "./sf_komaci/sf_komaci.js",
|
|
72
73
|
"./sf_lex": "./sf_lex/sf_lex.js",
|
|
73
74
|
"./sf_revenue": "./sf_revenue/sf_revenue.js",
|
|
75
|
+
"./sf_lightningOut": "./sf_lightningOut/sf_lightningOut.js",
|
|
74
76
|
"./sf_semanticDataPrism": "./sf_semanticDataPrism/sf_semanticDataPrism.js",
|
|
75
77
|
"./sf_embeddedMessaging": "./sf_embeddedMessaging/sf_embeddedMessaging.js"
|
|
76
78
|
},
|
|
@@ -80,7 +82,7 @@
|
|
|
80
82
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
81
83
|
},
|
|
82
84
|
"type": "module",
|
|
83
|
-
"version": "256.
|
|
85
|
+
"version": "256.4.0",
|
|
84
86
|
"license": "BSD-3-Clause",
|
|
85
87
|
"volta": {
|
|
86
88
|
"node": "18.17.1",
|
|
@@ -120,6 +122,7 @@
|
|
|
120
122
|
"o11y_schema/sf_komaci",
|
|
121
123
|
"o11y_schema/sf_lds",
|
|
122
124
|
"o11y_schema/sf_lex",
|
|
125
|
+
"o11y_schema/sf_lightningOut",
|
|
123
126
|
"o11y_schema/sf_lightningsdk",
|
|
124
127
|
"o11y_schema/sf_lists",
|
|
125
128
|
"o11y_schema/sf_lol",
|
|
@@ -131,6 +134,7 @@
|
|
|
131
134
|
"o11y_schema/sf_nimbus",
|
|
132
135
|
"o11y_schema/sf_o11ySample",
|
|
133
136
|
"o11y_schema/sf_offlineApp",
|
|
137
|
+
"o11y_schema/sf_omniChannel",
|
|
134
138
|
"o11y_schema/sf_payments",
|
|
135
139
|
"o11y_schema/sf_promptStudio",
|
|
136
140
|
"o11y_schema/sf_recordPicker",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { lightning_out_uma_container_load as lightningOutUmaContainerLoadSchema } from './lightning_out_uma_container_load.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const lightning_out_uma_container_load={namespace:"sf.lightningOut",name:"LightningOutUmaContainerLoad",pbjsSchema:{"nested":{"sf":{"nested":{"lightningOut":{"nested":{"LightningOutUmaContainerLoad":{"fields":{"iframeSrc":{"id":2,"type":"string"},"hostDomain":{"id":3,"type":"string"},"embeddedCmpName":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { lightning_out_uma_container_load as lightningOutUmaContainerLoadSchema } from './lightning_out_uma_container_load.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const route_work={namespace:"sf.omniChannel",name:"RouteWork",pbjsSchema:{"nested":{"sf":{"nested":{"omniChannel":{"nested":{"RouteWork":{"fields":{"workitemId":{"id":3,"type":"string"},"queueId":{"id":4,"type":"string"},"routingType":{"id":2,"type":"string"},"botType":{"id":6,"type":"string"},"eventSource":{"id":1,"type":"string"},"botdefinitionId":{"id":5,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const supervisor_event={namespace:"sf.omniChannel",name:"SupervisorEvent",pbjsSchema:{"nested":{"sf":{"nested":{"omniChannel":{"nested":{"SupervisorEvent":{"fields":{"workitemId":{"id":3,"type":"string"},"tab":{"id":1,"type":"string"},"botType":{"id":6,"type":"string"},"eventSource":{"id":2,"type":"string"},"botdefinitionId":{"id":5,"type":"string"},"workId":{"id":4,"type":"string"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='256.
|
|
1
|
+
export const version='256.4.0'
|