Skip to content

Commit 712625d

Browse files
Releasing version 2.116.1
Releasing version 2.116.1
2 parents ae21157 + 5eb5bf0 commit 712625d

File tree

324 files changed

+8040
-350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+8040
-350
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6+
## 2.116.1 - 2025-08-26
7+
### Added
8+
- Support for Oracle 19C databases on exascale infrastructure in the Database Service
9+
- Support for VM.Standard.x86 shape for base databases in the Database Service
10+
- Support for disaster recovery for MySQL database systems in the Disaster Recovery Service
11+
- Support for additional languages using whisper model in the AI Speech Service
12+
- Support for additional host count properties in the GPU memory fabric resource in the Compute Service
13+
- Support for additional parameters on deployment create and update operations in the GoldenGate Service
14+
615
## 2.116.0 - 2025-08-19
716
### Added
817
- Support for calling Oracle Cloud Infrastructure services in the eu-budapest-1 region

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,4 @@ export import wlms = require("oci-wlms");
233233
export import dbmulticloud = require("oci-dbmulticloud");
234234
export import apiplatform = require("oci-apiplatform");
235235
export import multicloud = require("oci-multicloud");
236+
export import managedkafka = require("oci-managedkafka");

lib/accessgovernancecp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-accessgovernancecp",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

lib/adm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-adm",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aidocument/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aidocument",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Ai Document Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/lib/model/realtime-parameters.ts

Lines changed: 124 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,39 @@ export interface RealtimeParameters {
3232
*/
3333
"isAckEnabled"?: boolean;
3434
/**
35-
* Silence threshold for Realtime Speech partial results in milliseconds. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
35+
* Silence threshold for Realtime Speech partial results in milliseconds.
36+
* Currently supported only for Oracle model.
37+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3638
*/
3739
"partialSilenceThresholdInMs"?: number;
3840
/**
39-
* Silence threshold for Realtime Speech final results in milliseconds. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
41+
* Silence threshold for Realtime Speech final results in milliseconds.
42+
* Currently supported only for Oracle model.
43+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
4044
*/
4145
"finalSilenceThresholdInMs"?: number;
4246
/**
4347
* When enabled sets the amount of confidence required for latest tokens before returning them as part of a new partial result
48+
* Currently supported only for Oracle model.
49+
*
4450
*/
4551
"stabilizePartialResults"?: RealtimeParameters.StabilizePartialResults;
52+
/**
53+
* Select a model to use for generating transcriptions. Currently supported models are:
54+
* - ORACLE
55+
* - WHISPER
56+
*
57+
*/
58+
"modelType"?: string;
4659
/**
4760
* Model Domain.
4861
*/
4962
"modelDomain"?: RealtimeParameters.ModelDomain;
5063
/**
51-
* Locale value as per given in [https://datatracker.ietf.org/doc/html/rfc5646].
52-
* - en-US: English - United States
64+
*
65+
* Oracle model supported language codes are locale specific.
66+
* Locale value as per given in [https://datatracker.ietf.org/doc/html/rfc5646]
67+
* - en-US: English - United States (default)
5368
* - es-ES: Spanish - Spain
5469
* - pt-BR: Portuguese - Brazil
5570
* - en-GB: English - Great Britain
@@ -59,24 +74,129 @@ export interface RealtimeParameters {
5974
* - fr-FR: French - France
6075
* - de-DE: German - Germany
6176
* - it-IT: Italian - Italy
77+
* Whisper model supported language codes are locale agnostic
78+
* - auto: Auto-detect language
79+
* - af: Afrikaans
80+
* - am: Amharic
81+
* - ar: Arabic
82+
* - as: Assamese
83+
* - az: Azerbaijani
84+
* - ba: Bashkir
85+
* - be: Belarusian
86+
* - bg: Bulgarian
87+
* - bn: Bengali
88+
* - bo: Tibetan
89+
* - br: Breton
90+
* - bs: Bosnian
91+
* - ca: Catalan
92+
* - cs: Czech
93+
* - cy: Welsh
94+
* - da: Danish
95+
* - de: German
96+
* - el: Greek
97+
* - en: English (default)
98+
* - es: Spanish
99+
* - et: Estonian
100+
* - eu: Basque
101+
* - fa: Persian
102+
* - fi: Finnish
103+
* - fo: Faroese
104+
* - fr: French
105+
* - gl: Galician
106+
* - gu: Gujarati
107+
* - ha: Hausa
108+
* - haw: Hawaiian
109+
* - he: Hebrew
110+
* - hi: Hindi
111+
* - hr: Croatian
112+
* - ht: Haitian Creole
113+
* - hu: Hungarian
114+
* - hy: Armenian
115+
* - id: Indonesian
116+
* - is: Icelandic
117+
* - it: Italian
118+
* - ja: Japanese
119+
* - jv: Javanese
120+
* - ka: Georgian
121+
* - kk: Kazakh
122+
* - km: Khmer
123+
* - kn: Kannada
124+
* - ko: Korean
125+
* - la: Latin
126+
* - lb: Luxembourgish
127+
* - ln: Lingala
128+
* - lo: Lao
129+
* - lt: Lithuanian
130+
* - lv: Latvian
131+
* - mg: Malagasy
132+
* - mi: Maori
133+
* - mk: Macedonian
134+
* - ml: Malayalam
135+
* - mn: Mongolian
136+
* - mr: Marathi
137+
* - ms: Malay
138+
* - mt: Maltese
139+
* - my: Burmese
140+
* - ne: Nepali
141+
* - nl: Dutch
142+
* - nn: Norwegian Nynorsk
143+
* - no: Norwegian
144+
* - oc: Occitan
145+
* - pa: Punjabi
146+
* - pl: Polish
147+
* - ps: Pashto
148+
* - pt: Portuguese
149+
* - ro: Romanian
150+
* - ru: Russian
151+
* - sa: Sanskrit
152+
* - sd: Sindhi
153+
* - si: Sinhala
154+
* - sk: Slovak
155+
* - sl: Slovenian
156+
* - sn: Shona
157+
* - so: Somali
158+
* - sq: Albanian
159+
* - sr: Serbian
160+
* - su: Sundanese
161+
* - sv: Swedish
162+
* - sw: Swahili
163+
* - ta: Tamil
164+
* - te: Telugu
165+
* - tg: Tajik
166+
* - th: Thai
167+
* - tk: Turkmen
168+
* - tl: Tagalog
169+
* - tr: Turkish
170+
* - tt: Tatar
171+
* - uk: Ukrainian
172+
* - ur: Urdu
173+
* - uz: Uzbek
174+
* - vi: Vietnamese
175+
* - yi: Yiddish
176+
* - yo: Yoruba
177+
* - zh: Chinese
62178
*
63179
*/
64180
"languageCode"?: string;
65181
/**
66182
* If set to true, the service will not fail connection attempt if it encounters any issues that prevent the loading of all specified user customizations. Any invalid customizations will simply be ignored and connection will continue being established with the default base model and any remaining valid customizations.
67183
* If set to false, if the service is unable to load any of the specified customizations, an error detailing why will be returned and the session will end.
184+
* Currently supported only for Oracle model.
68185
*
69186
*/
70187
"shouldIgnoreInvalidCustomizations"?: boolean;
71188
/**
72189
* Array of customization objects.
190+
* Currently supported only for Oracle model.
191+
*
73192
*/
74193
"customizations"?: Array<model.CustomizationInference>;
75194
/**
76195
* Configure punctuations in the generated transcriptions. Disabled by default.
77196
* - NONE: No punctuation in the transcription response
78197
* - SPOKEN: Punctuations in response only when verbally spoken
79198
* - AUTO: Automatic punctuation in the response, spoken punctuations are disabled
199+
* Spoken punctuation is currently supported only for the Oracle model in the Medical domain.
80200
*
81201
*/
82202
"punctuation"?: RealtimeParameters.Punctuation;

lib/aispeech/lib/model/tts-oracle-tts2-natural-model-details.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface TtsOracleTts2NaturalModelDetails extends model.TtsOracleModelDe
3434
* - fr-FR: French - France
3535
* - it-IT: Italian - Italy
3636
* - ja-JP: Japanese - Japan
37-
* - zh-CN: Mandarin - China
37+
* - cmn-CN: Mandarin - China
3838
*
3939
*/
4040
"languageCode"?: string;

lib/aispeech/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aispeech",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Ai Speech Service",
55
"repository": {
66
"type": "git",

lib/aivision/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aivision",
3-
"version": "2.116.0",
3+
"version": "2.116.1",
44
"description": "OCI NodeJS client for Ai Vision Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)