o11y_schema 258.15.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",
@@ -104,7 +105,7 @@
104
105
  "url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
105
106
  },
106
107
  "type": "module",
107
- "version": "258.15.0",
108
+ "version": "258.16.0",
108
109
  "license": "BSD-3-Clause",
109
110
  "volta": {
110
111
  "node": "18.17.1",
@@ -163,6 +164,7 @@
163
164
  "o11y_schema/sf_lwc",
164
165
  "o11y_schema/sf_lwrjs",
165
166
  "o11y_schema/sf_mci",
167
+ "o11y_schema/sf_mobileVoicePlatform",
166
168
  "o11y_schema/sf_ms365",
167
169
  "o11y_schema/sf_nimbus",
168
170
  "o11y_schema/sf_o11ySample",
@@ -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"}}}}}}}}}};
@@ -1 +1 @@
1
- export const version='258.15.0'
1
+ export const version='258.16.0'