o11y_schema 258.14.0 → 258.16.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 CHANGED
@@ -71,6 +71,7 @@
71
71
  "./sf_ifsTimeSheets": "./sf_ifsTimeSheets/sf_ifsTimeSheets.js",
72
72
  "./sf_umaCoreAnalytics": "./sf_umaCoreAnalytics/sf_umaCoreAnalytics.js",
73
73
  "./sfcore_customCmp": "./sfcore_customCmp/sfcore_customCmp.js",
74
+ "./sf_mobileVoicePlatform": "./sf_mobileVoicePlatform/sf_mobileVoicePlatform.js",
74
75
  "./sf_servicePlan": "./sf_servicePlan/sf_servicePlan.js",
75
76
  "./sf_actExp": "./sf_actExp/sf_actExp.js",
76
77
  "./sf_slackforce": "./sf_slackforce/sf_slackforce.js",
@@ -93,6 +94,7 @@
93
94
  "./sf_lightningOut": "./sf_lightningOut/sf_lightningOut.js",
94
95
  "./sf_segmentation": "./sf_segmentation/sf_segmentation.js",
95
96
  "./sf_umaSetup": "./sf_umaSetup/sf_umaSetup.js",
97
+ "./sf_policyCenter": "./sf_policyCenter/sf_policyCenter.js",
96
98
  "./sf_semanticDataPrism": "./sf_semanticDataPrism/sf_semanticDataPrism.js",
97
99
  "./sf_content": "./sf_content/sf_content.js",
98
100
  "./sf_embeddedMessaging": "./sf_embeddedMessaging/sf_embeddedMessaging.js"
@@ -103,7 +105,7 @@
103
105
  "url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
104
106
  },
105
107
  "type": "module",
106
- "version": "258.14.0",
108
+ "version": "258.16.0",
107
109
  "license": "BSD-3-Clause",
108
110
  "volta": {
109
111
  "node": "18.17.1",
@@ -162,6 +164,7 @@
162
164
  "o11y_schema/sf_lwc",
163
165
  "o11y_schema/sf_lwrjs",
164
166
  "o11y_schema/sf_mci",
167
+ "o11y_schema/sf_mobileVoicePlatform",
165
168
  "o11y_schema/sf_ms365",
166
169
  "o11y_schema/sf_nimbus",
167
170
  "o11y_schema/sf_o11ySample",
@@ -169,6 +172,7 @@
169
172
  "o11y_schema/sf_omniChannel",
170
173
  "o11y_schema/sf_p13n",
171
174
  "o11y_schema/sf_payments",
175
+ "o11y_schema/sf_policyCenter",
172
176
  "o11y_schema/sf_prm",
173
177
  "o11y_schema/sf_promptStudio",
174
178
  "o11y_schema/sf_recordPicker",
@@ -0,0 +1,2 @@
1
+ export { speech_to_text as speechToTextSchema } from './speech_to_text.js';
2
+ export { text_to_speech as textToSpeechSchema } from './text_to_speech.js';
@@ -0,0 +1,2 @@
1
+ export { speech_to_text as speechToTextSchema } from './speech_to_text.js';
2
+ export { text_to_speech as textToSpeechSchema } from './text_to_speech.js';
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <isExposed>true</isExposed>
4
+ <capabilities>
5
+ <capability>lightning__ServerRenderable</capability>
6
+ </capabilities>
7
+ </LightningComponentBundle>
@@ -0,0 +1 @@
1
+ export const speech_to_text={namespace:"sf.mobileVoicePlatform",name:"SpeechToText",pbjsSchema:{"nested":{"sf":{"nested":{"mobileVoicePlatform":{"nested":{"SpeechToText":{"fields":{"engineVersion":{"id":2,"type":"string"},"timeToFirstText":{"id":5,"type":"uint64"},"firstTextLength":{"id":6,"type":"uint64"},"engine":{"id":1,"type":"string"},"modelLoadTime":{"id":4,"type":"uint64"},"textLength":{"id":8,"type":"uint64"},"locale":{"id":3,"type":"string"},"processingTime":{"id":7,"type":"uint64"}}}}}}}}}};
@@ -0,0 +1,2 @@
1
+ export const text_to_speech={namespace:"sf.mobileVoicePlatform",name:"TextToSpeech",pbjsSchema:{"nested":{"sf":{"nested":{"mobileVoicePlatform":{"nested":{"TextToSpeech":{"fields":{"engineVersion":{"id":2,"type":"string"},"voice":{"id":4,"type":"string"},"engine":{"id":1,"type":"string"},"modelLoadTime":{"id":5,"type":"uint64"},"firstAudioLength":{"id":7,"type":"uint64"},"audioLength":{"id":9,"type":"uint64"},"locale":{"id":3,"type":"string"},"processingTime":{"id":8,"type":"uint64"},"timeToFirstAudio":{"id":6,
2
+ "type":"uint64"}}}}}}}}}};
@@ -0,0 +1 @@
1
+ export { policy_center_view as policyCenterViewSchema } from './policy_center_view.js';
@@ -0,0 +1 @@
1
+ export const policy_center_view={namespace:"sf.policyCenter",name:"PolicyCenterView",pbjsSchema:{"nested":{"sf":{"nested":{"policyCenter":{"nested":{"PolicyCenterView":{"fields":{"viewName":{"id":1,"type":"string"},"message":{"id":2,"type":"string"}}}}}}}}}};
@@ -0,0 +1 @@
1
+ export { policy_center_view as policyCenterViewSchema } from './policy_center_view.js';
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <isExposed>true</isExposed>
4
+ <capabilities>
5
+ <capability>lightning__ServerRenderable</capability>
6
+ </capabilities>
7
+ </LightningComponentBundle>
@@ -1 +1 @@
1
- export const version='258.14.0'
1
+ export const version='258.16.0'