Skip to content

Commit a9a06be

Browse files
Releasing version 2.29.0
Releasing version 2.29.0
2 parents c8069d3 + 4abaf55 commit a9a06be

File tree

347 files changed

+1013
-464
lines changed

Some content is hidden

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

347 files changed

+1013
-464
lines changed

CHANGELOG.md

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

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6+
## 2.29.0 - 2022-05-31
7+
### Added
8+
- Support for in-depth monitoring, diagnostics capabilities, and advanced management functionality for on-premise Oracle databases in the Database Management service
9+
- Support for using Oracle Cloud Agent to perform iSCSI login and logout for non-multipath-enabled iSCSI attachments in the Container Engine for Kubernetes service
10+
- Support for Fault Domain placement in the Container Engine for Kubernetes service
11+
- Support for worker node images in the Container Engine for Kubernetes service
12+
- Support for flexible shapes using the driverShapeConfig and executorShapeConfig properties in the Data Flow service
13+
14+
### Breaking Changes
15+
- Support for retries by default on operations in the Application Dependency Management service
16+
617
## 2.28.0 - 2022-05-24
718
### Added
819
- Support for the License Manager service

lib/adm/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/applicationdependencymanagement-waiter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/client.ts

Lines changed: 38 additions & 38 deletions
Large diffs are not rendered by default.

lib/adm/lib/model/action-type.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/application-dependency-vulnerability-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/application-dependency-vulnerability-summary.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*
@@ -22,11 +22,11 @@ import common = require("oci-common");
2222
*/
2323
export interface ApplicationDependencyVulnerabilitySummary {
2424
/**
25-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
25+
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
2626
*/
2727
"gav": string;
2828
/**
29-
* Unique identifier of an Application Dependency node.
29+
* Unique identifier of an Application Dependency node, e.g. nodeId1.
3030
*/
3131
"nodeId": string;
3232
/**

lib/adm/lib/model/application-dependency.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*
@@ -19,11 +19,11 @@ import common = require("oci-common");
1919
*/
2020
export interface ApplicationDependency {
2121
/**
22-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
22+
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
2323
*/
2424
"gav": string;
2525
/**
26-
* Unique identifier of an Application Dependency node.
26+
* Unique identifier of an Application Dependency node, e.g. nodeId1.
2727
*/
2828
"nodeId": string;
2929
/**

lib/adm/lib/model/change-knowledge-base-compartment-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/change-vulnerability-audit-compartment-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/create-knowledge-base-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/create-vulnerability-audit-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/knowledge-base-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/knowledge-base-summary.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/knowledge-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/operation-status.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/operation-type.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/sort-order.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/update-knowledge-base-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/update-vulnerability-audit-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/vulnerability-audit-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/vulnerability-audit-configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/vulnerability-audit-summary.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/vulnerability-audit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/vulnerability.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*
@@ -21,7 +21,7 @@ import common = require("oci-common");
2121
*/
2222
export interface Vulnerability {
2323
/**
24-
* Unique vulnerability identifier.
24+
* Unique vulnerability identifier, e.g. CVE-1999-0067.
2525
*/
2626
"id": string;
2727
/**

lib/adm/lib/model/work-request-error-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-error.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-log-entry-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-log-entry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-resource-metadata-key.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-resource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-summary-collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request-summary.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/model/work-request.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/request/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

lib/adm/lib/response/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* ADM API
3-
* Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
2+
* Application Dependency Management API
3+
* Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
44
* OpenAPI spec version: 20220421
55
*
66
*

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.28.0",
3+
"version": "2.29.0",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aianomalydetection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.28.0",
3+
"version": "2.29.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection 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.28.0",
3+
"version": "2.29.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)