diff --git a/CHANGELOG.md b/CHANGELOG.md index 289d94aeae..f69a8cc4c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -533,7 +533,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). - Support for domains while creating integration instances in Oracle Integration Cloud service ### Fixed -- Fixed an issue that causes http request failures when requesting certificates from the server in `URLBasedX509CertificateSupplier` with NodeJS 20 +- Fixed an issue that causes http request failures when requesting certificates from the server in `URLBasedX509CertificateSupplier` with Node.js 20 ## 2.70.1 - 2023-09-12 @@ -622,7 +622,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). - Support for support field in class metric in the AI Language service - Support for Compute Cloud at Customer resource type in the Operator Access Control service - Support for managing account management info, account recovery settings, app roles, apps, app status changers, grants, identity propagation trusts and settings, request-able groups, requests, security questions, OAuth tokens, and user attribute settings in the Identity Domains service -- Added support for NodeJS 20 +- Added support for Node.js 20 ### Breaking Changes diff --git a/README.md b/README.md index c19e66746a..397d0dc284 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,11 @@ Full documentation can be found [on the sdk for typescript and javascript docume ## Versions Supported -The SDK for TypeScript and JavaScript currently supports NodeJS version 14, 16, 20 and TypeScript version 4.1.3. +The SDK for TypeScript and JavaScript currently supports Node.js version 14, 16, 20 and TypeScript version 4.1.3. ## Node & Browser Support -The SDK for TypeScript and JavaScript currently supports NodeJS but does not have browser support. +The SDK for TypeScript and JavaScript currently supports Node.js but does not have browser support. ## Help diff --git a/examples/javascript/objectstorage.js b/examples/javascript/objectstorage.js index abd77bf844..535a248955 100644 --- a/examples/javascript/objectstorage.js +++ b/examples/javascript/objectstorage.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -10,7 +10,7 @@ *
  • The third is the name of object to create inside bucket
  • *
  • The fourth is the path of the file. i.e: "/Users/File/location"; * - * Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the NodeJS V8 Engine + * Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the Node.js V8 Engine * Cannot upload file size greater than the limit */ diff --git a/examples/javascript/uploadmanager.js b/examples/javascript/uploadmanager.js index 9c98f2367b..164e8a2726 100644 --- a/examples/javascript/uploadmanager.js +++ b/examples/javascript/uploadmanager.js @@ -13,7 +13,7 @@ *
  • The second argument is the namespaceName
  • *
  • The third argument is the name of an existing bucket to uplod object
  • * - * NodeJS V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. + * Node.js V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. * Do not pass in a partSize option greater than the buffer size limitation. */ diff --git a/examples/typescript/objectstorage.ts b/examples/typescript/objectstorage.ts index b1d7116d26..2363c42c33 100644 --- a/examples/typescript/objectstorage.ts +++ b/examples/typescript/objectstorage.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -11,7 +11,7 @@ *
  • The third is the name of object to create inside bucket
  • *
  • The fourth is the path of the file. i.e: "/Users/File/location"; * - * Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the NodeJS V8 Engine + * Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the Node.js V8 Engine * Cannot upload file size greater than the limit */ @@ -121,7 +121,7 @@ const client = new os.ObjectStorageClient({ authenticationDetailsProvider: provi function compareStreams(stream1: any, stream2: any): boolean { return streamToString(stream1) === streamToString(stream2); } -// When using NodeJS version >= 18, use the following definition for the function +// When using Node.js version >= 18, use the following definition for the function /* async function streamToString(stream: any) { const data = await consumers.buffer(getObjectResponse.value as NodeJS.ReadableStream).toString("utf8"); diff --git a/examples/typescript/uploadmanager.ts b/examples/typescript/uploadmanager.ts index 35e4457464..769a0c3182 100644 --- a/examples/typescript/uploadmanager.ts +++ b/examples/typescript/uploadmanager.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -19,7 +19,7 @@ const provider: common.ConfigFileAuthenticationDetailsProvider = new common.Conf *
  • The second argument is the namespaceName
  • *
  • The third argument is the name of an existing bucket to uplod object
  • * - * NodeJS V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. + * Node.js V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. * Do not pass in a partSize option greater than the buffer size limitation. */ diff --git a/lib/accessgovernancecp/README.md b/lib/accessgovernancecp/README.md index 61606e75e3..53aa640184 100644 --- a/lib/accessgovernancecp/README.md +++ b/lib/accessgovernancecp/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Access Governance Cp Service +# OCI Node.js client for Access Governance Cp Service This module enables you to write code to manage resources for Access Governance Cp Service. diff --git a/lib/accessgovernancecp/package.json b/lib/accessgovernancecp/package.json index 5d10a0b00f..6fba5c9052 100644 --- a/lib/accessgovernancecp/package.json +++ b/lib/accessgovernancecp/package.json @@ -1,7 +1,7 @@ { "name": "oci-accessgovernancecp", "version": "2.89.2", - "description": "OCI NodeJS client for Access Governance Cp Service", + "description": "OCI Node.js client for Access Governance Cp Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/adm/README.md b/lib/adm/README.md index f2b896e9e9..f2f177cdee 100644 --- a/lib/adm/README.md +++ b/lib/adm/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Adm Service +# OCI Node.js client for Adm Service This module enables you to write code to manage resources for Adm Service. diff --git a/lib/adm/package.json b/lib/adm/package.json index b2ef69501f..063daadcd6 100644 --- a/lib/adm/package.json +++ b/lib/adm/package.json @@ -1,7 +1,7 @@ { "name": "oci-adm", "version": "2.89.2", - "description": "OCI NodeJS client for Adm Service", + "description": "OCI Node.js client for Adm Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/aianomalydetection/README.md b/lib/aianomalydetection/README.md index 8439b959bf..e74424ca18 100644 --- a/lib/aianomalydetection/README.md +++ b/lib/aianomalydetection/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ai Anomaly Detection Service +# OCI Node.js client for Ai Anomaly Detection Service This module enables you to write code to manage resources for Ai Anomaly Detection Service. diff --git a/lib/aianomalydetection/package.json b/lib/aianomalydetection/package.json index e363cf62b3..e7e1fb0412 100644 --- a/lib/aianomalydetection/package.json +++ b/lib/aianomalydetection/package.json @@ -1,7 +1,7 @@ { "name": "oci-aianomalydetection", "version": "2.89.2", - "description": "OCI NodeJS client for Ai Anomaly Detection Service", + "description": "OCI Node.js client for Ai Anomaly Detection Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/aidocument/README.md b/lib/aidocument/README.md index 107d557180..9c7d65b179 100644 --- a/lib/aidocument/README.md +++ b/lib/aidocument/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ai Document Service +# OCI Node.js client for Ai Document Service This module enables you to write code to manage resources for Ai Document Service. diff --git a/lib/aidocument/package.json b/lib/aidocument/package.json index 4f4f3f77f2..c59832d869 100644 --- a/lib/aidocument/package.json +++ b/lib/aidocument/package.json @@ -1,7 +1,7 @@ { "name": "oci-aidocument", "version": "2.89.2", - "description": "OCI NodeJS client for Ai Document Service", + "description": "OCI Node.js client for Ai Document Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/ailanguage/README.md b/lib/ailanguage/README.md index 8ffc11d4ad..832b55caa0 100644 --- a/lib/ailanguage/README.md +++ b/lib/ailanguage/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ai Language Service +# OCI Node.js client for AI Language Service This module enables you to write code to manage resources for Ai Language Service. diff --git a/lib/ailanguage/package.json b/lib/ailanguage/package.json index ca92be73be..6c542b3bdb 100644 --- a/lib/ailanguage/package.json +++ b/lib/ailanguage/package.json @@ -1,7 +1,7 @@ { "name": "oci-ailanguage", "version": "2.89.2", - "description": "OCI NodeJS client for Ai Language Service", + "description": "OCI Node.js client for AI Language Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/aispeech/README.md b/lib/aispeech/README.md index f482a9e2b8..98a92abfde 100644 --- a/lib/aispeech/README.md +++ b/lib/aispeech/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ai Speech Service +# OCI Node.js client for Ai Speech Service This module enables you to write code to manage resources for Ai Speech Service. diff --git a/lib/aispeech/package.json b/lib/aispeech/package.json index 32fcaf58ab..9652ddf91f 100644 --- a/lib/aispeech/package.json +++ b/lib/aispeech/package.json @@ -1,7 +1,7 @@ { "name": "oci-aispeech", "version": "2.89.2", - "description": "OCI NodeJS client for Ai Speech Service", + "description": "OCI Node.js client for Ai Speech Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/aivision/README.md b/lib/aivision/README.md index 9e06ecbb78..765ffa65ad 100644 --- a/lib/aivision/README.md +++ b/lib/aivision/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ai Vision Service +# OCI Node.js client for Ai Vision Service This module enables you to write code to manage resources for Ai Vision Service. diff --git a/lib/aivision/package.json b/lib/aivision/package.json index 9af1e5d1dd..a4332326bf 100644 --- a/lib/aivision/package.json +++ b/lib/aivision/package.json @@ -1,7 +1,7 @@ { "name": "oci-aivision", "version": "2.89.2", - "description": "OCI NodeJS client for Ai Vision Service", + "description": "OCI Node.js client for Ai Vision Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/analytics/README.md b/lib/analytics/README.md index 1f773cfecc..5c242ae4a0 100644 --- a/lib/analytics/README.md +++ b/lib/analytics/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Analytics Service +# OCI Node.js client for Analytics Service This module enables you to write code to manage resources for Analytics Service. diff --git a/lib/analytics/package.json b/lib/analytics/package.json index 436bd928a6..96af6370c6 100644 --- a/lib/analytics/package.json +++ b/lib/analytics/package.json @@ -1,7 +1,7 @@ { "name": "oci-analytics", "version": "2.89.2", - "description": "OCI NodeJS client for Analytics Service", + "description": "OCI Node.js client for Analytics Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/announcementsservice/README.md b/lib/announcementsservice/README.md index 6410c22e42..a519f46531 100644 --- a/lib/announcementsservice/README.md +++ b/lib/announcementsservice/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Announcements Service +# OCI Node.js client for Announcements Service This module enables you to write code to manage resources for Announcements Service. diff --git a/lib/announcementsservice/package.json b/lib/announcementsservice/package.json index 2752656f26..5a57b63878 100644 --- a/lib/announcementsservice/package.json +++ b/lib/announcementsservice/package.json @@ -1,7 +1,7 @@ { "name": "oci-announcementsservice", "version": "2.89.2", - "description": "OCI NodeJS client for Announcement Service", + "description": "OCI Node.js client for Announcement Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/apigateway/README.md b/lib/apigateway/README.md index e389eff39e..fabc6af05b 100644 --- a/lib/apigateway/README.md +++ b/lib/apigateway/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Apigateway Service +# OCI Node.js client for Apigateway Service This module enables you to write code to manage resources for Apigateway Service. diff --git a/lib/apigateway/package.json b/lib/apigateway/package.json index 201d2089fc..75bfe20e49 100644 --- a/lib/apigateway/package.json +++ b/lib/apigateway/package.json @@ -1,7 +1,7 @@ { "name": "oci-apigateway", "version": "2.89.2", - "description": "OCI NodeJS client for API gateway service", + "description": "OCI Node.js client for API gateway service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/apmconfig/README.md b/lib/apmconfig/README.md index 6fa747a165..be2164ef8a 100644 --- a/lib/apmconfig/README.md +++ b/lib/apmconfig/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Apm Config Service +# OCI Node.js client for Apm Config Service This module enables you to write code to manage resources for Apm Config Service. diff --git a/lib/apmconfig/package.json b/lib/apmconfig/package.json index 35ead2acdb..a7b6da85c5 100644 --- a/lib/apmconfig/package.json +++ b/lib/apmconfig/package.json @@ -1,7 +1,7 @@ { "name": "oci-apmconfig", "version": "2.89.2", - "description": "OCI NodeJS client for Apm Config Service", + "description": "OCI Node.js client for Apm Config Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/apmcontrolplane/README.md b/lib/apmcontrolplane/README.md index a6e4d3460a..2d730f3ad0 100644 --- a/lib/apmcontrolplane/README.md +++ b/lib/apmcontrolplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Apm Control Plane Service +# OCI Node.js client for Apm Control Plane Service This module enables you to write code to manage resources for Apm Control Plane Service. diff --git a/lib/apmcontrolplane/package.json b/lib/apmcontrolplane/package.json index 2f1e2e2c45..da4ea07cbb 100644 --- a/lib/apmcontrolplane/package.json +++ b/lib/apmcontrolplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-apmcontrolplane", "version": "2.89.2", - "description": "OCI NodeJS client for Apm Control Plane Service", + "description": "OCI Node.js client for Apm Control Plane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/apmsynthetics/README.md b/lib/apmsynthetics/README.md index 7195df5dc2..3651d1f5aa 100644 --- a/lib/apmsynthetics/README.md +++ b/lib/apmsynthetics/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Apm Synthetics Service +# OCI Node.js client for Apm Synthetics Service This module enables you to write code to manage resources for Apm Synthetics Service. diff --git a/lib/apmsynthetics/package.json b/lib/apmsynthetics/package.json index 6a085f68ee..aad5256525 100644 --- a/lib/apmsynthetics/package.json +++ b/lib/apmsynthetics/package.json @@ -1,7 +1,7 @@ { "name": "oci-apmsynthetics", "version": "2.89.2", - "description": "OCI NodeJS client for Apm Synthetics Service", + "description": "OCI Node.js client for Apm Synthetics Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/apmtraces/README.md b/lib/apmtraces/README.md index 7ad6a8ab67..3302b95d93 100644 --- a/lib/apmtraces/README.md +++ b/lib/apmtraces/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Apm Traces Service +# OCI Node.js client for Apm Traces Service This module enables you to write code to manage resources for Apm Traces Service. diff --git a/lib/apmtraces/package.json b/lib/apmtraces/package.json index 595f51087a..152f3cb3b1 100644 --- a/lib/apmtraces/package.json +++ b/lib/apmtraces/package.json @@ -1,7 +1,7 @@ { "name": "oci-apmtraces", "version": "2.89.2", - "description": "OCI NodeJS client for Apm Traces Service", + "description": "OCI Node.js client for Apm Traces Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/appmgmtcontrol/README.md b/lib/appmgmtcontrol/README.md index f33b80e925..e02e0ef33e 100644 --- a/lib/appmgmtcontrol/README.md +++ b/lib/appmgmtcontrol/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Appmgmt Control Service +# OCI Node.js client for Appmgmt Control Service This module enables you to write code to manage resources for Appmgmt Control Service. diff --git a/lib/appmgmtcontrol/package.json b/lib/appmgmtcontrol/package.json index b690b2471f..71a91a5cd7 100644 --- a/lib/appmgmtcontrol/package.json +++ b/lib/appmgmtcontrol/package.json @@ -1,7 +1,7 @@ { "name": "oci-appmgmtcontrol", "version": "2.89.2", - "description": "OCI NodeJS client for Appmgmt Control Service", + "description": "OCI Node.js client for Appmgmt Control Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/artifacts/README.md b/lib/artifacts/README.md index 0d4e5d6bbf..c637757f97 100644 --- a/lib/artifacts/README.md +++ b/lib/artifacts/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Artifacts Service +# OCI Node.js client for Artifacts Service This module enables you to write code to manage resources for Artifacts Service. diff --git a/lib/artifacts/package.json b/lib/artifacts/package.json index 08f7dc8a85..c954a976d6 100644 --- a/lib/artifacts/package.json +++ b/lib/artifacts/package.json @@ -1,7 +1,7 @@ { "name": "oci-artifacts", "version": "2.89.2", - "description": "OCI NodeJS client for Artifacts Service", + "description": "OCI Node.js client for Artifacts Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/audit/README.md b/lib/audit/README.md index eedf774aba..44e9468260 100644 --- a/lib/audit/README.md +++ b/lib/audit/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Audit Service +# OCI Node.js client for Audit Service This module enables you to write code to manage resources for Audit Service. diff --git a/lib/audit/package.json b/lib/audit/package.json index f91929a262..5a6dd07f8a 100644 --- a/lib/audit/package.json +++ b/lib/audit/package.json @@ -1,7 +1,7 @@ { "name": "oci-audit", "version": "2.89.2", - "description": "OCI NodeJS client for Audit Service", + "description": "OCI Node.js client for Audit Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/autoscaling/README.md b/lib/autoscaling/README.md index 1b916f5246..14b045c376 100644 --- a/lib/autoscaling/README.md +++ b/lib/autoscaling/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Autoscaling Service +# OCI Node.js client for Autoscaling Service This module enables you to write code to manage resources for Autoscaling Service. diff --git a/lib/autoscaling/package.json b/lib/autoscaling/package.json index 5857ed3a53..f84baa732b 100644 --- a/lib/autoscaling/package.json +++ b/lib/autoscaling/package.json @@ -1,7 +1,7 @@ { "name": "oci-autoscaling", "version": "2.89.2", - "description": "OCI NodeJS client for Autoscaling Service", + "description": "OCI Node.js client for Autoscaling Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/bastion/README.md b/lib/bastion/README.md index 51e7e306e7..71d44746c6 100644 --- a/lib/bastion/README.md +++ b/lib/bastion/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Bastion Service +# OCI Node.js client for Bastion Service This module enables you to write code to manage resources for Bastion Service. diff --git a/lib/bastion/package.json b/lib/bastion/package.json index 0478438f20..b65fd4b3aa 100644 --- a/lib/bastion/package.json +++ b/lib/bastion/package.json @@ -1,7 +1,7 @@ { "name": "oci-bastion", "version": "2.89.2", - "description": "OCI NodeJS client for Bastion Service", + "description": "OCI Node.js client for Bastion Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/bds/README.md b/lib/bds/README.md index 92f685d8d5..794983c800 100644 --- a/lib/bds/README.md +++ b/lib/bds/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for BDS Service +# OCI Node.js client for BDS Service This module enables you to write code to manage resources for BDS Service. diff --git a/lib/bds/package.json b/lib/bds/package.json index 55367b00ba..59bf75e44f 100644 --- a/lib/bds/package.json +++ b/lib/bds/package.json @@ -1,7 +1,7 @@ { "name": "oci-bds", "version": "2.89.2", - "description": "OCI NodeJS client for BDS Service", + "description": "OCI Node.js client for BDS Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/blockchain/README.md b/lib/blockchain/README.md index eb2072a531..af0474910f 100644 --- a/lib/blockchain/README.md +++ b/lib/blockchain/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Blockchain Service +# OCI Node.js client for Blockchain Service This module enables you to write code to manage resources for Blockchain Service. diff --git a/lib/blockchain/package.json b/lib/blockchain/package.json index 0219a22273..623186618f 100644 --- a/lib/blockchain/package.json +++ b/lib/blockchain/package.json @@ -1,7 +1,7 @@ { "name": "oci-blockchain", "version": "2.89.2", - "description": "OCI NodeJS client for Blockchain Service", + "description": "OCI Node.js client for Blockchain Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/budget/README.md b/lib/budget/README.md index be32ba42df..f78c617f51 100644 --- a/lib/budget/README.md +++ b/lib/budget/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Budget Service +# OCI Node.js client for Budget Service This module enables you to write code to manage resources for Budget Service. diff --git a/lib/budget/package.json b/lib/budget/package.json index 579eab2773..91f9b166d2 100644 --- a/lib/budget/package.json +++ b/lib/budget/package.json @@ -1,7 +1,7 @@ { "name": "oci-budget", "version": "2.89.2", - "description": "OCI NodeJS client for Budget Service", + "description": "OCI Node.js client for Budget Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/capacitymanagement/README.md b/lib/capacitymanagement/README.md index eed52fad25..2018ab39b2 100644 --- a/lib/capacitymanagement/README.md +++ b/lib/capacitymanagement/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Capacity Management Service +# OCI Node.js client for Capacity Management Service This module enables you to write code to manage resources for Capacity Management Service. diff --git a/lib/capacitymanagement/package.json b/lib/capacitymanagement/package.json index 532d72d654..72a14382d8 100644 --- a/lib/capacitymanagement/package.json +++ b/lib/capacitymanagement/package.json @@ -1,7 +1,7 @@ { "name": "oci-capacitymanagement", "version": "2.89.2", - "description": "OCI NodeJS client for Capacity Management Service", + "description": "OCI Node.js client for Capacity Management Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/certificates/README.md b/lib/certificates/README.md index 130f9fbb59..eaf4a7f1fc 100644 --- a/lib/certificates/README.md +++ b/lib/certificates/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Certificates Service +# OCI Node.js client for Certificates Service This module enables you to write code to manage resources for Certificates Service. diff --git a/lib/certificates/package.json b/lib/certificates/package.json index d27cfdbeba..0ac934b68b 100644 --- a/lib/certificates/package.json +++ b/lib/certificates/package.json @@ -1,7 +1,7 @@ { "name": "oci-certificates", "version": "2.89.2", - "description": "OCI NodeJS client for Certificates Service", + "description": "OCI Node.js client for Certificates Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/certificatesmanagement/README.md b/lib/certificatesmanagement/README.md index 5baa1a5745..7c66cbf2d8 100644 --- a/lib/certificatesmanagement/README.md +++ b/lib/certificatesmanagement/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Certificates Management Service +# OCI Node.js client for Certificates Management Service This module enables you to write code to manage resources for Certificates Management Service. diff --git a/lib/certificatesmanagement/package.json b/lib/certificatesmanagement/package.json index 2706e2944d..bb03d6c3ac 100644 --- a/lib/certificatesmanagement/package.json +++ b/lib/certificatesmanagement/package.json @@ -1,7 +1,7 @@ { "name": "oci-certificatesmanagement", "version": "2.89.2", - "description": "OCI NodeJS client for Certificates Management Service", + "description": "OCI Node.js client for Certificates Management Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/cims/README.md b/lib/cims/README.md index 9ce8007184..2a86bae685 100644 --- a/lib/cims/README.md +++ b/lib/cims/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Cims Service +# OCI Node.js client for Cims Service This module enables you to write code to manage resources for Cims Service. diff --git a/lib/cims/package.json b/lib/cims/package.json index c83ed922c4..0c8c9ab1aa 100644 --- a/lib/cims/package.json +++ b/lib/cims/package.json @@ -1,7 +1,7 @@ { "name": "oci-cims", "version": "2.89.2", - "description": "OCI NodeJS client for Cims ", + "description": "OCI Node.js client for Cims ", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/cloudbridge/README.md b/lib/cloudbridge/README.md index 330240701c..c1d469b182 100644 --- a/lib/cloudbridge/README.md +++ b/lib/cloudbridge/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Cloud Bridge Service +# OCI Node.js client for Cloud Bridge Service This module enables you to write code to manage resources for Cloud Bridge Service. diff --git a/lib/cloudbridge/package.json b/lib/cloudbridge/package.json index 66eb43e227..48150d3024 100644 --- a/lib/cloudbridge/package.json +++ b/lib/cloudbridge/package.json @@ -1,7 +1,7 @@ { "name": "oci-cloudbridge", "version": "2.89.2", - "description": "OCI NodeJS client for Cloud Bridge Service", + "description": "OCI Node.js client for Cloud Bridge Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/cloudguard/README.md b/lib/cloudguard/README.md index 9bead332ad..9137d547a9 100644 --- a/lib/cloudguard/README.md +++ b/lib/cloudguard/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Cloud Guard Service +# OCI Node.js client for Cloud Guard Service This module enables you to write code to manage resources for Cloud Guard Service. diff --git a/lib/cloudguard/package.json b/lib/cloudguard/package.json index d67f6d7b09..b646c0b9cb 100644 --- a/lib/cloudguard/package.json +++ b/lib/cloudguard/package.json @@ -1,7 +1,7 @@ { "name": "oci-cloudguard", "version": "2.89.2", - "description": "OCI NodeJS client for Cloud Guard Service", + "description": "OCI Node.js client for Cloud Guard Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/cloudmigrations/README.md b/lib/cloudmigrations/README.md index ca705f1bda..5559fcc4c7 100644 --- a/lib/cloudmigrations/README.md +++ b/lib/cloudmigrations/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Cloud Migrations Service +# OCI Node.js client for Cloud Migrations Service This module enables you to write code to manage resources for Cloud Migrations Service. diff --git a/lib/cloudmigrations/package.json b/lib/cloudmigrations/package.json index 9c45dfedbe..d66c30d8c9 100644 --- a/lib/cloudmigrations/package.json +++ b/lib/cloudmigrations/package.json @@ -1,7 +1,7 @@ { "name": "oci-cloudmigrations", "version": "2.89.2", - "description": "OCI NodeJS client for Cloud Migrations Service", + "description": "OCI Node.js client for Cloud Migrations Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/clusterplacementgroups/README.md b/lib/clusterplacementgroups/README.md index daa4dba081..84925e4807 100644 --- a/lib/clusterplacementgroups/README.md +++ b/lib/clusterplacementgroups/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Cluster Placement Groups Service +# OCI Node.js client for Cluster Placement Groups Service This module enables you to write code to manage resources for Cluster Placement Groups Service. diff --git a/lib/clusterplacementgroups/package.json b/lib/clusterplacementgroups/package.json index 10f823b933..9da0501274 100644 --- a/lib/clusterplacementgroups/package.json +++ b/lib/clusterplacementgroups/package.json @@ -1,7 +1,7 @@ { "name": "oci-clusterplacementgroups", "version": "2.89.2", - "description": "OCI NodeJS client for Cluster Placement Groups Service", + "description": "OCI Node.js client for Cluster Placement Groups Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/common/README.md b/lib/common/README.md index c90e7bbe18..319b7caac4 100644 --- a/lib/common/README.md +++ b/lib/common/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Common utilities. +# OCI Node.js client for Common utilities. ## Requirements diff --git a/lib/common/lib/chunker.ts b/lib/common/lib/chunker.ts index c0bf35c3aa..cc1ba7a664 100644 --- a/lib/common/lib/chunker.ts +++ b/lib/common/lib/chunker.ts @@ -1,4 +1,4 @@ -/** +!/** * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -28,11 +28,11 @@ export default function getChunk(data: BinaryBody, partSize: number) { if (stream.getReader) { return ChunkStream(stream, partSize, getReadableStreamData); } else { - // Some fetch libraries have blob's .stream implemented as NodeJS's readable + // Some fetch libraries have blob's .stream implemented as Node.js's readable return ChunkStream(stream as Readable, partSize, getReadableData); } } else if (isReadableStream(data)) { - // NodeJS run-time does not know what ReadableStream is, isReadableStream helps detect if stream is a ReadableStream + // Node.js run-time does not know what ReadableStream is, isReadableStream helps detect if stream is a ReadableStream return ChunkStream(data as ReadableStream, partSize, getReadableStreamData); } else { throw new Error( diff --git a/lib/common/package.json b/lib/common/package.json index ba4ea31109..bd1cb1465c 100644 --- a/lib/common/package.json +++ b/lib/common/package.json @@ -1,7 +1,7 @@ { "name": "oci-common", "version": "2.89.2", - "description": "OCI Common module for NodeJS", + "description": "OCI Common module for Node.js", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/computecloudatcustomer/README.md b/lib/computecloudatcustomer/README.md index 0d63fd8ec8..8893d74e56 100644 --- a/lib/computecloudatcustomer/README.md +++ b/lib/computecloudatcustomer/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Compute Cloud At Customer Service +# OCI Node.js client for Compute Cloud At Customer Service This module enables you to write code to manage resources for Compute Cloud At Customer Service. diff --git a/lib/computecloudatcustomer/package.json b/lib/computecloudatcustomer/package.json index 065b6c3254..8dced1b175 100644 --- a/lib/computecloudatcustomer/package.json +++ b/lib/computecloudatcustomer/package.json @@ -1,7 +1,7 @@ { "name": "oci-computecloudatcustomer", "version": "2.89.2", - "description": "OCI NodeJS client for Compute Cloud At Customer Service", + "description": "OCI Node.js client for Compute Cloud At Customer Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/computeinstanceagent/README.md b/lib/computeinstanceagent/README.md index e04af2c44c..7192986396 100644 --- a/lib/computeinstanceagent/README.md +++ b/lib/computeinstanceagent/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Compute Instance Agent Service +# OCI Node.js client for Compute Instance Agent Service This module enables you to write code to manage resources for Compute Instance Agent Service. diff --git a/lib/computeinstanceagent/package.json b/lib/computeinstanceagent/package.json index 0451be8993..93a6806e82 100644 --- a/lib/computeinstanceagent/package.json +++ b/lib/computeinstanceagent/package.json @@ -1,7 +1,7 @@ { "name": "oci-computeinstanceagent", "version": "2.89.2", - "description": "OCI NodeJS client for Compute Instance Agent Service", + "description": "OCI Node.js client for Compute Instance Agent Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/containerengine/README.md b/lib/containerengine/README.md index 554ef14f20..6c3683411b 100644 --- a/lib/containerengine/README.md +++ b/lib/containerengine/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Container Engine Service +# OCI Node.js client for Container Engine Service This module enables you to write code to manage resources for Container Engine Service. diff --git a/lib/containerengine/package.json b/lib/containerengine/package.json index 46cff498cb..124c8d3e45 100644 --- a/lib/containerengine/package.json +++ b/lib/containerengine/package.json @@ -1,7 +1,7 @@ { "name": "oci-containerengine", "version": "2.89.2", - "description": "OCI NodeJS client for Container Engine", + "description": "OCI Node.js client for Container Engine", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/containerinstances/README.md b/lib/containerinstances/README.md index f132a8cc80..147ed1908c 100644 --- a/lib/containerinstances/README.md +++ b/lib/containerinstances/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Container Instances Service +# OCI Node.js client for Container Instances Service This module enables you to write code to manage resources for Container Instances Service. diff --git a/lib/containerinstances/package.json b/lib/containerinstances/package.json index 4fc5550002..3dfbf72889 100644 --- a/lib/containerinstances/package.json +++ b/lib/containerinstances/package.json @@ -1,7 +1,7 @@ { "name": "oci-containerinstances", "version": "2.89.2", - "description": "OCI NodeJS client for Container Instances Service", + "description": "OCI Node.js client for Container Instances Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/core/README.md b/lib/core/README.md index 42b042e3da..77c8892e2b 100644 --- a/lib/core/README.md +++ b/lib/core/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Core Service +# OCI Node.js client for Core Service This module enables you to write code to manage resources for Core Service. diff --git a/lib/core/package.json b/lib/core/package.json index 1e2f4dd469..ed2f800621 100644 --- a/lib/core/package.json +++ b/lib/core/package.json @@ -1,7 +1,7 @@ { "name": "oci-core", "version": "2.89.2", - "description": "OCI NodeJS client for Core", + "description": "OCI Node.js client for Core", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/dashboardservice/README.md b/lib/dashboardservice/README.md index d93a6f557c..2f88b972b8 100644 --- a/lib/dashboardservice/README.md +++ b/lib/dashboardservice/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Dashboard Service Service +# OCI Node.js client for Dashboard Service Service This module enables you to write code to manage resources for Dashboard Service Service. diff --git a/lib/dashboardservice/package.json b/lib/dashboardservice/package.json index a95a4351d8..ccd7631bd2 100644 --- a/lib/dashboardservice/package.json +++ b/lib/dashboardservice/package.json @@ -1,7 +1,7 @@ { "name": "oci-dashboardservice", "version": "2.89.2", - "description": "OCI NodeJS client for Dashboard Service Service", + "description": "OCI Node.js client for Dashboard Service Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/database/README.md b/lib/database/README.md index dd5f642f80..d7db98dce1 100644 --- a/lib/database/README.md +++ b/lib/database/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Database Service +# OCI Node.js client for Database Service This module enables you to write code to manage resources for Database Service. diff --git a/lib/database/package.json b/lib/database/package.json index ddacdbdfc9..962d01a515 100644 --- a/lib/database/package.json +++ b/lib/database/package.json @@ -1,7 +1,7 @@ { "name": "oci-database", "version": "2.89.2", - "description": "OCI NodeJS client for Database", + "description": "OCI Node.js client for Database", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/databasemanagement/README.md b/lib/databasemanagement/README.md index 20e94c7eb0..b2d1a18899 100644 --- a/lib/databasemanagement/README.md +++ b/lib/databasemanagement/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Database Management Service +# OCI Node.js client for Database Management Service This module enables you to write code to manage resources for Database Management Service. diff --git a/lib/databasemanagement/package.json b/lib/databasemanagement/package.json index 0848f606aa..ab6fed3af7 100644 --- a/lib/databasemanagement/package.json +++ b/lib/databasemanagement/package.json @@ -1,7 +1,7 @@ { "name": "oci-databasemanagement", "version": "2.89.2", - "description": "OCI NodeJS client for Database Management Service", + "description": "OCI Node.js client for Database Management Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/databasemigration/README.md b/lib/databasemigration/README.md index 8ba4dffa19..ceca598bd1 100644 --- a/lib/databasemigration/README.md +++ b/lib/databasemigration/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Database Migration Service +# OCI Node.js client for Database Migration Service This module enables you to write code to manage resources for Database Migration Service. diff --git a/lib/databasemigration/package.json b/lib/databasemigration/package.json index 7b579618fd..b1c85b3319 100644 --- a/lib/databasemigration/package.json +++ b/lib/databasemigration/package.json @@ -1,7 +1,7 @@ { "name": "oci-databasemigration", "version": "2.89.2", - "description": "OCI NodeJS client for Database Migration Service", + "description": "OCI Node.js client for Database Migration Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/databasetools/README.md b/lib/databasetools/README.md index 262d3215e1..f3c5b8e113 100644 --- a/lib/databasetools/README.md +++ b/lib/databasetools/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Database Tools Service +# OCI Node.js client for Database Tools Service This module enables you to write code to manage resources for Database Tools Service. diff --git a/lib/databasetools/package.json b/lib/databasetools/package.json index 208e0bac43..bcd8e57ebb 100644 --- a/lib/databasetools/package.json +++ b/lib/databasetools/package.json @@ -1,7 +1,7 @@ { "name": "oci-databasetools", "version": "2.89.2", - "description": "OCI NodeJS client for Database Tools Service", + "description": "OCI Node.js client for Database Tools Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/datacatalog/README.md b/lib/datacatalog/README.md index a231b2e726..6410627903 100644 --- a/lib/datacatalog/README.md +++ b/lib/datacatalog/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Data Catalog Service +# OCI Node.js client for Data Catalog Service This module enables you to write code to manage resources for Data Catalog Service. diff --git a/lib/datacatalog/package.json b/lib/datacatalog/package.json index 4257bb4f59..3147a49c2d 100644 --- a/lib/datacatalog/package.json +++ b/lib/datacatalog/package.json @@ -1,7 +1,7 @@ { "name": "oci-datacatalog", "version": "2.89.2", - "description": "OCI NodeJS client for Data catalogue Service", + "description": "OCI Node.js client for Data catalogue Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/dataflow/README.md b/lib/dataflow/README.md index d218e645f4..e9bf7f5761 100644 --- a/lib/dataflow/README.md +++ b/lib/dataflow/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Dataflow Service +# OCI Node.js client for Dataflow Service This module enables you to write code to manage resources for Dataflow Service. diff --git a/lib/dataflow/package.json b/lib/dataflow/package.json index 09cf61a1dc..3671c32c8d 100644 --- a/lib/dataflow/package.json +++ b/lib/dataflow/package.json @@ -1,7 +1,7 @@ { "name": "oci-dataflow", "version": "2.89.2", - "description": "OCI NodeJS client for Dataflow service", + "description": "OCI Node.js client for Dataflow service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/dataintegration/README.md b/lib/dataintegration/README.md index 5413b3f626..5381accdbd 100644 --- a/lib/dataintegration/README.md +++ b/lib/dataintegration/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Data Integration Service +# OCI Node.js client for Data Integration Service This module enables you to write code to manage resources for Data Integration Service. diff --git a/lib/dataintegration/package.json b/lib/dataintegration/package.json index 85aba8e0f4..de23bf554c 100644 --- a/lib/dataintegration/package.json +++ b/lib/dataintegration/package.json @@ -1,7 +1,7 @@ { "name": "oci-dataintegration", "version": "2.89.2", - "description": "OCI NodeJS client for Data Integration Service", + "description": "OCI Node.js client for Data Integration Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/datalabelingservice/README.md b/lib/datalabelingservice/README.md index 47b5b554af..84324eacbd 100644 --- a/lib/datalabelingservice/README.md +++ b/lib/datalabelingservice/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Data Labeling Service Service +# OCI Node.js client for Data Labeling Service Service This module enables you to write code to manage resources for Data Labeling Service Service. diff --git a/lib/datalabelingservice/package.json b/lib/datalabelingservice/package.json index 155c0a3bb4..4538ea1e30 100644 --- a/lib/datalabelingservice/package.json +++ b/lib/datalabelingservice/package.json @@ -1,7 +1,7 @@ { "name": "oci-datalabelingservice", "version": "2.89.2", - "description": "OCI NodeJS client for Data Labeling Service Service", + "description": "OCI Node.js client for Data Labeling Service Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/datalabelingservicedataplane/README.md b/lib/datalabelingservicedataplane/README.md index f029966477..86051d5dbb 100644 --- a/lib/datalabelingservicedataplane/README.md +++ b/lib/datalabelingservicedataplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Data Labeling Service Dataplane Service +# OCI Node.js client for Data Labeling Service Dataplane Service This module enables you to write code to manage resources for Data Labeling Service Dataplane Service. diff --git a/lib/datalabelingservicedataplane/package.json b/lib/datalabelingservicedataplane/package.json index df46011e02..fa1f91d36e 100644 --- a/lib/datalabelingservicedataplane/package.json +++ b/lib/datalabelingservicedataplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-datalabelingservicedataplane", "version": "2.89.2", - "description": "OCI NodeJS client for Data Labeling Service Dataplane Service", + "description": "OCI Node.js client for Data Labeling Service Dataplane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/datasafe/README.md b/lib/datasafe/README.md index a9306d76c5..8f21a87b99 100644 --- a/lib/datasafe/README.md +++ b/lib/datasafe/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Datasafe Service +# OCI Node.js client for Datasafe Service This module enables you to write code to manage resources for Datasafe Service. diff --git a/lib/datasafe/package.json b/lib/datasafe/package.json index 59f70e829f..9aa9198d9d 100644 --- a/lib/datasafe/package.json +++ b/lib/datasafe/package.json @@ -1,7 +1,7 @@ { "name": "oci-datasafe", "version": "2.89.2", - "description": "OCI NodeJS client for Data Safe ", + "description": "OCI Node.js client for Data Safe ", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/datascience/README.md b/lib/datascience/README.md index 0bb6824125..7283d238a7 100644 --- a/lib/datascience/README.md +++ b/lib/datascience/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Datascience Service +# OCI Node.js client for Datascience Service This module enables you to write code to manage resources for Datascience Service. diff --git a/lib/datascience/package.json b/lib/datascience/package.json index d55e3fb6c9..3e725de363 100644 --- a/lib/datascience/package.json +++ b/lib/datascience/package.json @@ -1,7 +1,7 @@ { "name": "oci-datascience", "version": "2.89.2", - "description": "OCI NodeJS client for Data Science Service", + "description": "OCI Node.js client for Data Science Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/demandsignal/README.md b/lib/demandsignal/README.md index 66bb426c84..b947468078 100644 --- a/lib/demandsignal/README.md +++ b/lib/demandsignal/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Demand Signal Service +# OCI Node.js client for Demand Signal Service This module enables you to write code to manage resources for Demand Signal Service. diff --git a/lib/demandsignal/package.json b/lib/demandsignal/package.json index aee20ae9a6..b19688f518 100644 --- a/lib/demandsignal/package.json +++ b/lib/demandsignal/package.json @@ -1,7 +1,7 @@ { "name": "oci-demandsignal", "version": "2.89.2", - "description": "OCI NodeJS client for Demand Signal Service", + "description": "OCI Node.js client for Demand Signal Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/desktops/README.md b/lib/desktops/README.md index 12f88ad859..7a7008e6a1 100644 --- a/lib/desktops/README.md +++ b/lib/desktops/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Desktops Service +# OCI Node.js client for Desktops Service This module enables you to write code to manage resources for Desktops Service. diff --git a/lib/desktops/package.json b/lib/desktops/package.json index eed4f42506..e2c22ac655 100644 --- a/lib/desktops/package.json +++ b/lib/desktops/package.json @@ -1,7 +1,7 @@ { "name": "oci-desktops", "version": "2.89.2", - "description": "OCI NodeJS client for Desktops Service", + "description": "OCI Node.js client for Desktops Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/devops/README.md b/lib/devops/README.md index 5e12b51f08..4a5f85c025 100644 --- a/lib/devops/README.md +++ b/lib/devops/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Devops Service +# OCI Node.js client for Devops Service This module enables you to write code to manage resources for Devops Service. diff --git a/lib/devops/package.json b/lib/devops/package.json index 67ecb866df..4e96b74fee 100644 --- a/lib/devops/package.json +++ b/lib/devops/package.json @@ -1,7 +1,7 @@ { "name": "oci-devops", "version": "2.89.2", - "description": "OCI NodeJS client for Devops Service", + "description": "OCI Node.js client for Devops Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/disasterrecovery/README.md b/lib/disasterrecovery/README.md index 376eb24de3..0a755e1ecd 100644 --- a/lib/disasterrecovery/README.md +++ b/lib/disasterrecovery/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Disaster Recovery Service +# OCI Node.js client for Disaster Recovery Service This module enables you to write code to manage resources for Disaster Recovery Service. diff --git a/lib/disasterrecovery/package.json b/lib/disasterrecovery/package.json index 9e84fdf7ce..cbf9637698 100644 --- a/lib/disasterrecovery/package.json +++ b/lib/disasterrecovery/package.json @@ -1,7 +1,7 @@ { "name": "oci-disasterrecovery", "version": "2.89.2", - "description": "OCI NodeJS client for Disaster Recovery Service", + "description": "OCI Node.js client for Disaster Recovery Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/dns/README.md b/lib/dns/README.md index 28061a21b8..015c5d63ce 100644 --- a/lib/dns/README.md +++ b/lib/dns/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for DNS Service +# OCI Node.js client for DNS Service This module enables you to write code to manage resources for DNS Service. diff --git a/lib/dns/package.json b/lib/dns/package.json index 6ab98248f6..f6e564290a 100644 --- a/lib/dns/package.json +++ b/lib/dns/package.json @@ -1,7 +1,7 @@ { "name": "oci-dns", "version": "2.89.2", - "description": "OCI NodeJS client for DNS", + "description": "OCI Node.js client for DNS", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/dts/README.md b/lib/dts/README.md index 72cf915108..9a587c8090 100644 --- a/lib/dts/README.md +++ b/lib/dts/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for DTS Service +# OCI Node.js client for DTS Service This module enables you to write code to manage resources for DTS Service. diff --git a/lib/dts/package.json b/lib/dts/package.json index 3bc177d114..c54c772459 100644 --- a/lib/dts/package.json +++ b/lib/dts/package.json @@ -1,7 +1,7 @@ { "name": "oci-dts", "version": "2.89.2", - "description": "OCI NodeJS client for Dts Service", + "description": "OCI Node.js client for Dts Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/email/README.md b/lib/email/README.md index d663fcae77..23f5078ea4 100644 --- a/lib/email/README.md +++ b/lib/email/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Email Service +# OCI Node.js client for Email Service This module enables you to write code to manage resources for Email Service. diff --git a/lib/email/package.json b/lib/email/package.json index 6d276b3824..01386df30e 100644 --- a/lib/email/package.json +++ b/lib/email/package.json @@ -1,7 +1,7 @@ { "name": "oci-email", "version": "2.89.2", - "description": "OCI NodeJS client for Email", + "description": "OCI Node.js client for Email", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/emaildataplane/README.md b/lib/emaildataplane/README.md index f180f688ba..424cdec669 100644 --- a/lib/emaildataplane/README.md +++ b/lib/emaildataplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Email Data Plane Service +# OCI Node.js client for Email Data Plane Service This module enables you to write code to manage resources for Email Data Plane Service. diff --git a/lib/emaildataplane/package.json b/lib/emaildataplane/package.json index 53f9a95156..eb90da0723 100644 --- a/lib/emaildataplane/package.json +++ b/lib/emaildataplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-emaildataplane", "version": "2.89.2", - "description": "OCI NodeJS client for Email Data Plane Service", + "description": "OCI Node.js client for Email Data Plane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/emwarehouse/README.md b/lib/emwarehouse/README.md index e52930cb34..f0e01b12a9 100644 --- a/lib/emwarehouse/README.md +++ b/lib/emwarehouse/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Em Warehouse Service +# OCI Node.js client for Em Warehouse Service This module enables you to write code to manage resources for Em Warehouse Service. diff --git a/lib/emwarehouse/package.json b/lib/emwarehouse/package.json index 998e3d5816..5dd2fe9a7a 100644 --- a/lib/emwarehouse/package.json +++ b/lib/emwarehouse/package.json @@ -1,7 +1,7 @@ { "name": "oci-emwarehouse", "version": "2.89.2", - "description": "OCI NodeJS client for Em Warehouse Service", + "description": "OCI Node.js client for Em Warehouse Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/events/README.md b/lib/events/README.md index f275a4d12b..2bff4b791b 100644 --- a/lib/events/README.md +++ b/lib/events/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Events Service +# OCI Node.js client for Events Service This module enables you to write code to manage resources for Events Service. diff --git a/lib/events/package.json b/lib/events/package.json index e7846f62ae..a34fe0b037 100644 --- a/lib/events/package.json +++ b/lib/events/package.json @@ -1,7 +1,7 @@ { "name": "oci-events", "version": "2.89.2", - "description": "OCI NodeJS client for Events Service", + "description": "OCI Node.js client for Events Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/filestorage/README.md b/lib/filestorage/README.md index 34a7ba48a2..fa27efc43e 100644 --- a/lib/filestorage/README.md +++ b/lib/filestorage/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Filestorage Service +# OCI Node.js client for Filestorage Service This module enables you to write code to manage resources for Filestorage Service. diff --git a/lib/filestorage/package.json b/lib/filestorage/package.json index 9fc36882c8..a2007c5f93 100644 --- a/lib/filestorage/package.json +++ b/lib/filestorage/package.json @@ -1,7 +1,7 @@ { "name": "oci-filestorage", "version": "2.89.2", - "description": "OCI NodeJS client for File Storage", + "description": "OCI Node.js client for File Storage", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/fleetsoftwareupdate/README.md b/lib/fleetsoftwareupdate/README.md index 670a7582ba..bde4c4ca96 100644 --- a/lib/fleetsoftwareupdate/README.md +++ b/lib/fleetsoftwareupdate/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Fleet Software Update Service +# OCI Node.js client for Fleet Software Update Service This module enables you to write code to manage resources for Fleet Software Update Service. diff --git a/lib/fleetsoftwareupdate/package.json b/lib/fleetsoftwareupdate/package.json index 767a8cfaba..f918525c7b 100644 --- a/lib/fleetsoftwareupdate/package.json +++ b/lib/fleetsoftwareupdate/package.json @@ -1,7 +1,7 @@ { "name": "oci-fleetsoftwareupdate", "version": "2.89.2", - "description": "OCI NodeJS client for Fleet Software Update Service", + "description": "OCI Node.js client for Fleet Software Update Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/functions/README.md b/lib/functions/README.md index 9180eaa9b1..58abe64c30 100644 --- a/lib/functions/README.md +++ b/lib/functions/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Functions Service +# OCI Node.js client for Functions Service This module enables you to write code to manage resources for Functions Service. diff --git a/lib/functions/package.json b/lib/functions/package.json index e2474dde5b..477d6703f9 100644 --- a/lib/functions/package.json +++ b/lib/functions/package.json @@ -1,7 +1,7 @@ { "name": "oci-functions", "version": "2.89.2", - "description": "OCI NodeJS client for Functions", + "description": "OCI Node.js client for Functions", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/fusionapps/README.md b/lib/fusionapps/README.md index 3b607c6eea..83b7835862 100644 --- a/lib/fusionapps/README.md +++ b/lib/fusionapps/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Fusion Apps Service +# OCI Node.js client for Fusion Apps Service This module enables you to write code to manage resources for Fusion Apps Service. diff --git a/lib/fusionapps/package.json b/lib/fusionapps/package.json index 387ad4a6d2..a484594127 100644 --- a/lib/fusionapps/package.json +++ b/lib/fusionapps/package.json @@ -1,7 +1,7 @@ { "name": "oci-fusionapps", "version": "2.89.2", - "description": "OCI NodeJS client for Fusion Apps Service", + "description": "OCI Node.js client for Fusion Apps Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/generativeai/README.md b/lib/generativeai/README.md index a71e4440ea..9219cc7bc8 100644 --- a/lib/generativeai/README.md +++ b/lib/generativeai/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Generative Ai Service +# OCI Node.js client for Generative Ai Service This module enables you to write code to manage resources for Generative Ai Service. diff --git a/lib/generativeai/package.json b/lib/generativeai/package.json index 0a7259a6c3..8f7107e0a8 100644 --- a/lib/generativeai/package.json +++ b/lib/generativeai/package.json @@ -1,7 +1,7 @@ { "name": "oci-generativeai", "version": "2.89.2", - "description": "OCI NodeJS client for Generative Ai Service", + "description": "OCI Node.js client for Generative Ai Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/generativeaiinference/README.md b/lib/generativeaiinference/README.md index bd6d25e62e..a775511120 100644 --- a/lib/generativeaiinference/README.md +++ b/lib/generativeaiinference/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Generative Ai Inference Service +# OCI Node.js client for Generative Ai Inference Service This module enables you to write code to manage resources for Generative Ai Inference Service. diff --git a/lib/generativeaiinference/package.json b/lib/generativeaiinference/package.json index 7be12c69b5..a806f91072 100644 --- a/lib/generativeaiinference/package.json +++ b/lib/generativeaiinference/package.json @@ -1,7 +1,7 @@ { "name": "oci-generativeaiinference", "version": "2.89.2", - "description": "OCI NodeJS client for Generative Ai Inference Service", + "description": "OCI Node.js client for Generative Ai Inference Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/genericartifactscontent/README.md b/lib/genericartifactscontent/README.md index 8905a711d0..31998ab133 100644 --- a/lib/genericartifactscontent/README.md +++ b/lib/genericartifactscontent/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Generic Artifacts Content Service +# OCI Node.js client for Generic Artifacts Content Service This module enables you to write code to manage resources for Generic Artifacts Content Service. diff --git a/lib/genericartifactscontent/package.json b/lib/genericartifactscontent/package.json index daeb17cd34..5d088e9185 100644 --- a/lib/genericartifactscontent/package.json +++ b/lib/genericartifactscontent/package.json @@ -1,7 +1,7 @@ { "name": "oci-genericartifactscontent", "version": "2.89.2", - "description": "OCI NodeJS client for Generic Artifacts Content Service", + "description": "OCI Node.js client for Generic Artifacts Content Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/globallydistributeddatabase/README.md b/lib/globallydistributeddatabase/README.md index e05bc0c058..eeb78b4db1 100644 --- a/lib/globallydistributeddatabase/README.md +++ b/lib/globallydistributeddatabase/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Globally Distributed Database Service +# OCI Node.js client for Globally Distributed Database Service This module enables you to write code to manage resources for Globally Distributed Database Service. diff --git a/lib/globallydistributeddatabase/package.json b/lib/globallydistributeddatabase/package.json index 373e2899c4..bb54792eaf 100644 --- a/lib/globallydistributeddatabase/package.json +++ b/lib/globallydistributeddatabase/package.json @@ -1,7 +1,7 @@ { "name": "oci-globallydistributeddatabase", "version": "2.89.2", - "description": "OCI NodeJS client for Globally Distributed Database Service", + "description": "OCI Node.js client for Globally Distributed Database Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/goldengate/README.md b/lib/goldengate/README.md index bf4506e5c8..07f5fa620a 100644 --- a/lib/goldengate/README.md +++ b/lib/goldengate/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Golden Gate Service +# OCI Node.js client for Golden Gate Service This module enables you to write code to manage resources for Golden Gate Service. diff --git a/lib/goldengate/package.json b/lib/goldengate/package.json index 5b99da73bc..c937a10b54 100644 --- a/lib/goldengate/package.json +++ b/lib/goldengate/package.json @@ -1,7 +1,7 @@ { "name": "oci-goldengate", "version": "2.89.2", - "description": "OCI NodeJS client for Golden Gate Service", + "description": "OCI Node.js client for Golden Gate Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/governancerulescontrolplane/README.md b/lib/governancerulescontrolplane/README.md index c610cafdf9..98d809a2a8 100644 --- a/lib/governancerulescontrolplane/README.md +++ b/lib/governancerulescontrolplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Governance Rules Control Plane Service +# OCI Node.js client for Governance Rules Control Plane Service This module enables you to write code to manage resources for Governance Rules Control Plane Service. diff --git a/lib/governancerulescontrolplane/package.json b/lib/governancerulescontrolplane/package.json index 46efe147b5..d0a6866b02 100644 --- a/lib/governancerulescontrolplane/package.json +++ b/lib/governancerulescontrolplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-governancerulescontrolplane", "version": "2.89.2", - "description": "OCI NodeJS client for Governance Rules Control Plane Service", + "description": "OCI Node.js client for Governance Rules Control Plane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/healthchecks/README.md b/lib/healthchecks/README.md index 9fa2af441b..432eb233f7 100644 --- a/lib/healthchecks/README.md +++ b/lib/healthchecks/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Healthchecks Service +# OCI Node.js client for Healthchecks Service This module enables you to write code to manage resources for Healthchecks Service. diff --git a/lib/healthchecks/package.json b/lib/healthchecks/package.json index bf6ea9184b..661f8c4ae1 100644 --- a/lib/healthchecks/package.json +++ b/lib/healthchecks/package.json @@ -1,7 +1,7 @@ { "name": "oci-healthchecks", "version": "2.89.2", - "description": "OCI NodeJS client for Healthchecks Service", + "description": "OCI Node.js client for Healthchecks Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/identity/README.md b/lib/identity/README.md index e190259248..71ee5a2ebe 100644 --- a/lib/identity/README.md +++ b/lib/identity/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Identity Service +# OCI Node.js client for Identity Service This module enables you to write code to manage resources for Identity Service. diff --git a/lib/identity/package.json b/lib/identity/package.json index 74f0187ce8..9a6ba8fd02 100644 --- a/lib/identity/package.json +++ b/lib/identity/package.json @@ -1,7 +1,7 @@ { "name": "oci-identity", "version": "2.89.2", - "description": "OCI NodeJS client for Identity", + "description": "OCI Node.js client for Identity", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/identitydataplane/README.md b/lib/identitydataplane/README.md index aa724667af..2b2a029373 100644 --- a/lib/identitydataplane/README.md +++ b/lib/identitydataplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Identity Data Plane Service +# OCI Node.js client for Identity Data Plane Service This module enables you to write code to manage resources for Identity Data Plane Service. diff --git a/lib/identitydataplane/package.json b/lib/identitydataplane/package.json index e00e40f6c5..5168a16753 100644 --- a/lib/identitydataplane/package.json +++ b/lib/identitydataplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-identitydataplane", "version": "2.89.2", - "description": "OCI NodeJS client for Identity Data Plane Service", + "description": "OCI Node.js client for Identity Data Plane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/identitydomains/README.md b/lib/identitydomains/README.md index cc6eac93b9..f08f444153 100644 --- a/lib/identitydomains/README.md +++ b/lib/identitydomains/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Identity Domains Service +# OCI Node.js client for Identity Domains Service This module enables you to write code to manage resources for Identity Domains Service. diff --git a/lib/identitydomains/package.json b/lib/identitydomains/package.json index ce9cb58d75..0728ebfa2a 100644 --- a/lib/identitydomains/package.json +++ b/lib/identitydomains/package.json @@ -1,7 +1,7 @@ { "name": "oci-identitydomains", "version": "2.89.2", - "description": "OCI NodeJS client for Identity Domains Service", + "description": "OCI Node.js client for Identity Domains Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/integration/README.md b/lib/integration/README.md index f64cff5674..7d9db4f71a 100644 --- a/lib/integration/README.md +++ b/lib/integration/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Integration Service +# OCI Node.js client for Integration Service This module enables you to write code to manage resources for Integration Service. diff --git a/lib/integration/package.json b/lib/integration/package.json index 12bdaae3a5..561104e1f1 100644 --- a/lib/integration/package.json +++ b/lib/integration/package.json @@ -1,7 +1,7 @@ { "name": "oci-integration", "version": "2.89.2", - "description": "OCI NodeJS client for Integration service", + "description": "OCI Node.js client for Integration service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/jms/README.md b/lib/jms/README.md index 8499f776c6..1e6af05e9b 100644 --- a/lib/jms/README.md +++ b/lib/jms/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Jms Service +# OCI Node.js client for Jms Service This module enables you to write code to manage resources for Jms Service. diff --git a/lib/jms/package.json b/lib/jms/package.json index 7156a22dbf..8d5b07d91c 100644 --- a/lib/jms/package.json +++ b/lib/jms/package.json @@ -1,7 +1,7 @@ { "name": "oci-jms", "version": "2.89.2", - "description": "OCI NodeJS client for Jms Service", + "description": "OCI Node.js client for Jms Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/jmsjavadownloads/README.md b/lib/jmsjavadownloads/README.md index 660bba2d09..7257adc664 100644 --- a/lib/jmsjavadownloads/README.md +++ b/lib/jmsjavadownloads/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Jms Java Downloads Service +# OCI Node.js client for Jms Java Downloads Service This module enables you to write code to manage resources for Jms Java Downloads Service. diff --git a/lib/jmsjavadownloads/package.json b/lib/jmsjavadownloads/package.json index 730b9aca6d..6a67e6e7e5 100644 --- a/lib/jmsjavadownloads/package.json +++ b/lib/jmsjavadownloads/package.json @@ -1,7 +1,7 @@ { "name": "oci-jmsjavadownloads", "version": "2.89.2", - "description": "OCI NodeJS client for Jms Java Downloads Service", + "description": "OCI Node.js client for Jms Java Downloads Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/keymanagement/README.md b/lib/keymanagement/README.md index 040cae2d02..b1c6da643d 100644 --- a/lib/keymanagement/README.md +++ b/lib/keymanagement/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for KeyManagement Service +# OCI Node.js client for KeyManagement Service This module enables you to write code to manage resources for KeyManagement Service. diff --git a/lib/keymanagement/package.json b/lib/keymanagement/package.json index 7de170a5c3..ab16a663fa 100644 --- a/lib/keymanagement/package.json +++ b/lib/keymanagement/package.json @@ -1,7 +1,7 @@ { "name": "oci-keymanagement", "version": "2.89.2", - "description": "OCI NodeJS client for Key Management", + "description": "OCI Node.js client for Key Management", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/licensemanager/README.md b/lib/licensemanager/README.md index 6dae9665c3..ef084d36fd 100644 --- a/lib/licensemanager/README.md +++ b/lib/licensemanager/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for License Manager Service +# OCI Node.js client for License Manager Service This module enables you to write code to manage resources for License Manager Service. diff --git a/lib/licensemanager/package.json b/lib/licensemanager/package.json index a28d2390c7..8db274ff50 100644 --- a/lib/licensemanager/package.json +++ b/lib/licensemanager/package.json @@ -1,7 +1,7 @@ { "name": "oci-licensemanager", "version": "2.89.2", - "description": "OCI NodeJS client for License Manager Service", + "description": "OCI Node.js client for License Manager Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/limits/README.md b/lib/limits/README.md index 499d28bb53..ee59f96534 100644 --- a/lib/limits/README.md +++ b/lib/limits/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Limits Service +# OCI Node.js client for Limits Service This module enables you to write code to manage resources for Limits Service. diff --git a/lib/limits/package.json b/lib/limits/package.json index da168864be..bcd322e231 100644 --- a/lib/limits/package.json +++ b/lib/limits/package.json @@ -1,7 +1,7 @@ { "name": "oci-limits", "version": "2.89.2", - "description": "OCI NodeJS client for Limits Service", + "description": "OCI Node.js client for Limits Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/loadbalancer/README.md b/lib/loadbalancer/README.md index 19f066659b..ffc563228e 100644 --- a/lib/loadbalancer/README.md +++ b/lib/loadbalancer/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Load Balancer Service +# OCI Node.js client for Load Balancer Service This module enables you to write code to manage resources for Load Balancer Service. diff --git a/lib/loadbalancer/package.json b/lib/loadbalancer/package.json index cf1b41bf2b..a0311efe31 100644 --- a/lib/loadbalancer/package.json +++ b/lib/loadbalancer/package.json @@ -1,7 +1,7 @@ { "name": "oci-loadbalancer", "version": "2.89.2", - "description": "OCI NodeJS client for Load Balancer", + "description": "OCI Node.js client for Load Balancer", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/lockbox/README.md b/lib/lockbox/README.md index 53f81bb0db..418934d1d2 100644 --- a/lib/lockbox/README.md +++ b/lib/lockbox/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Lockbox Service +# OCI Node.js client for Lockbox Service This module enables you to write code to manage resources for Lockbox Service. diff --git a/lib/lockbox/package.json b/lib/lockbox/package.json index eac07677e2..179bdfcac1 100644 --- a/lib/lockbox/package.json +++ b/lib/lockbox/package.json @@ -1,7 +1,7 @@ { "name": "oci-lockbox", "version": "2.89.2", - "description": "OCI NodeJS client for Lockbox Service", + "description": "OCI Node.js client for Lockbox Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/loganalytics/README.md b/lib/loganalytics/README.md index f3152d0537..45669aa5ed 100644 --- a/lib/loganalytics/README.md +++ b/lib/loganalytics/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Log Analytics Service +# OCI Node.js client for Log Analytics Service This module enables you to write code to manage resources for Log Analytics Service. diff --git a/lib/loganalytics/package.json b/lib/loganalytics/package.json index 25d0178d56..4afff6e3d4 100644 --- a/lib/loganalytics/package.json +++ b/lib/loganalytics/package.json @@ -1,7 +1,7 @@ { "name": "oci-loganalytics", "version": "2.89.2", - "description": "OCI NodeJS client for Log Analytics Service", + "description": "OCI Node.js client for Log Analytics Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/logging/README.md b/lib/logging/README.md index 6278a6ec65..8025869828 100644 --- a/lib/logging/README.md +++ b/lib/logging/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Logging Service +# OCI Node.js client for Logging Service This module enables you to write code to manage resources for Logging Service. diff --git a/lib/logging/package.json b/lib/logging/package.json index afe472c423..4de145e72e 100644 --- a/lib/logging/package.json +++ b/lib/logging/package.json @@ -1,7 +1,7 @@ { "name": "oci-logging", "version": "2.89.2", - "description": "OCI NodeJS client for Logging Service", + "description": "OCI Node.js client for Logging Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/loggingingestion/README.md b/lib/loggingingestion/README.md index 79b308a0f2..adc2fc9742 100644 --- a/lib/loggingingestion/README.md +++ b/lib/loggingingestion/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Loggingingestion Service +# OCI Node.js client for Loggingingestion Service This module enables you to write code to manage resources for Loggingingestion Service. diff --git a/lib/loggingingestion/package.json b/lib/loggingingestion/package.json index ca7ec02a3c..0ea830c19f 100644 --- a/lib/loggingingestion/package.json +++ b/lib/loggingingestion/package.json @@ -1,7 +1,7 @@ { "name": "oci-loggingingestion", "version": "2.89.2", - "description": "OCI NodeJS client for Loggingingestion Service", + "description": "OCI Node.js client for Loggingingestion Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/loggingsearch/README.md b/lib/loggingsearch/README.md index 34db316745..33a2dc283e 100644 --- a/lib/loggingsearch/README.md +++ b/lib/loggingsearch/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Loggingsearch Service +# OCI Node.js client for Loggingsearch Service This module enables you to write code to manage resources for Loggingsearch Service. diff --git a/lib/loggingsearch/package.json b/lib/loggingsearch/package.json index 38e6a5d263..2280460e3c 100644 --- a/lib/loggingsearch/package.json +++ b/lib/loggingsearch/package.json @@ -1,7 +1,7 @@ { "name": "oci-loggingsearch", "version": "2.89.2", - "description": "OCI NodeJS client for Loggingsearch Service", + "description": "OCI Node.js client for Loggingsearch Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/managementagent/README.md b/lib/managementagent/README.md index dc373bc49a..03e861701e 100644 --- a/lib/managementagent/README.md +++ b/lib/managementagent/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Management Agent Service +# OCI Node.js client for Management Agent Service This module enables you to write code to manage resources for Management Agent Service. diff --git a/lib/managementagent/package.json b/lib/managementagent/package.json index cdf61598c9..e8e6ddd780 100644 --- a/lib/managementagent/package.json +++ b/lib/managementagent/package.json @@ -1,7 +1,7 @@ { "name": "oci-managementagent", "version": "2.89.2", - "description": "OCI NodeJS client for Management Agent Service", + "description": "OCI Node.js client for Management Agent Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/managementdashboard/README.md b/lib/managementdashboard/README.md index 26a7bcb1b5..93f6d2b951 100644 --- a/lib/managementdashboard/README.md +++ b/lib/managementdashboard/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Management Dashboard Service +# OCI Node.js client for Management Dashboard Service This module enables you to write code to manage resources for Management Dashboard Service. diff --git a/lib/managementdashboard/package.json b/lib/managementdashboard/package.json index 5429473127..78466d5893 100644 --- a/lib/managementdashboard/package.json +++ b/lib/managementdashboard/package.json @@ -1,7 +1,7 @@ { "name": "oci-managementdashboard", "version": "2.89.2", - "description": "OCI NodeJS client for Management Dashboard Service", + "description": "OCI Node.js client for Management Dashboard Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/marketplace/README.md b/lib/marketplace/README.md index b50cf52e3d..1f2bdedf16 100644 --- a/lib/marketplace/README.md +++ b/lib/marketplace/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Marketplace Service +# OCI Node.js client for Marketplace Service This module enables you to write code to manage resources for Marketplace Service. diff --git a/lib/marketplace/package.json b/lib/marketplace/package.json index ad64666bec..21ac6f5914 100644 --- a/lib/marketplace/package.json +++ b/lib/marketplace/package.json @@ -1,7 +1,7 @@ { "name": "oci-marketplace", "version": "2.89.2", - "description": "OCI NodeJS client for Marketplace Service", + "description": "OCI Node.js client for Marketplace Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/marketplaceprivateoffer/README.md b/lib/marketplaceprivateoffer/README.md index a27c36a2c3..039af76c06 100644 --- a/lib/marketplaceprivateoffer/README.md +++ b/lib/marketplaceprivateoffer/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Marketplace Private Offer Service +# OCI Node.js client for Marketplace Private Offer Service This module enables you to write code to manage resources for Marketplace Private Offer Service. diff --git a/lib/marketplaceprivateoffer/package.json b/lib/marketplaceprivateoffer/package.json index 41dae2325b..73952b5807 100644 --- a/lib/marketplaceprivateoffer/package.json +++ b/lib/marketplaceprivateoffer/package.json @@ -1,7 +1,7 @@ { "name": "oci-marketplaceprivateoffer", "version": "2.89.2", - "description": "OCI NodeJS client for Marketplace Private Offer Service", + "description": "OCI Node.js client for Marketplace Private Offer Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/marketplacepublisher/README.md b/lib/marketplacepublisher/README.md index 07eeaa3004..8cf43f8314 100644 --- a/lib/marketplacepublisher/README.md +++ b/lib/marketplacepublisher/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Marketplace Publisher Service +# OCI Node.js client for Marketplace Publisher Service This module enables you to write code to manage resources for Marketplace Publisher Service. diff --git a/lib/marketplacepublisher/package.json b/lib/marketplacepublisher/package.json index e753dc68cd..ff1be1c681 100644 --- a/lib/marketplacepublisher/package.json +++ b/lib/marketplacepublisher/package.json @@ -1,7 +1,7 @@ { "name": "oci-marketplacepublisher", "version": "2.89.2", - "description": "OCI NodeJS client for Marketplace Publisher Service", + "description": "OCI Node.js client for Marketplace Publisher Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/mediaservices/README.md b/lib/mediaservices/README.md index 73a0086f85..d28117bcb9 100644 --- a/lib/mediaservices/README.md +++ b/lib/mediaservices/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Media Services Service +# OCI Node.js client for Media Services Service This module enables you to write code to manage resources for Media Services Service. diff --git a/lib/mediaservices/package.json b/lib/mediaservices/package.json index 5ecd31753a..c7ff4a4511 100644 --- a/lib/mediaservices/package.json +++ b/lib/mediaservices/package.json @@ -1,7 +1,7 @@ { "name": "oci-mediaservices", "version": "2.89.2", - "description": "OCI NodeJS client for Media Services Service", + "description": "OCI Node.js client for Media Services Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/monitoring/README.md b/lib/monitoring/README.md index f692de5825..36e137b93d 100644 --- a/lib/monitoring/README.md +++ b/lib/monitoring/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Monitoring Service +# OCI Node.js client for Monitoring Service This module enables you to write code to manage resources for Monitoring Service. diff --git a/lib/monitoring/package.json b/lib/monitoring/package.json index 77974c7f2f..39d3bfbda0 100644 --- a/lib/monitoring/package.json +++ b/lib/monitoring/package.json @@ -1,7 +1,7 @@ { "name": "oci-monitoring", "version": "2.89.2", - "description": "OCI NodeJS client for Monitoring", + "description": "OCI Node.js client for Monitoring", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/mysql/README.md b/lib/mysql/README.md index 89b62f4967..dd017a532d 100644 --- a/lib/mysql/README.md +++ b/lib/mysql/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Mysql Service +# OCI Node.js client for Mysql Service This module enables you to write code to manage resources for Mysql Service. diff --git a/lib/mysql/package.json b/lib/mysql/package.json index 88cc354c23..1b865889a0 100644 --- a/lib/mysql/package.json +++ b/lib/mysql/package.json @@ -1,7 +1,7 @@ { "name": "oci-mysql", "version": "2.89.2", - "description": "OCI NodeJS client for Mysql ", + "description": "OCI Node.js client for Mysql ", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/networkfirewall/README.md b/lib/networkfirewall/README.md index 0ab9875465..d4636712e2 100644 --- a/lib/networkfirewall/README.md +++ b/lib/networkfirewall/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Network Firewall Service +# OCI Node.js client for Network Firewall Service This module enables you to write code to manage resources for Network Firewall Service. diff --git a/lib/networkfirewall/package.json b/lib/networkfirewall/package.json index d43bf8fb13..edde7c68bd 100644 --- a/lib/networkfirewall/package.json +++ b/lib/networkfirewall/package.json @@ -1,7 +1,7 @@ { "name": "oci-networkfirewall", "version": "2.89.2", - "description": "OCI NodeJS client for Network Firewall Service", + "description": "OCI Node.js client for Network Firewall Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/networkloadbalancer/README.md b/lib/networkloadbalancer/README.md index a87421cb2f..3f3cb16d06 100644 --- a/lib/networkloadbalancer/README.md +++ b/lib/networkloadbalancer/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Network Load Balancer Service +# OCI Node.js client for Network Load Balancer Service This module enables you to write code to manage resources for Network Load Balancer Service. diff --git a/lib/networkloadbalancer/package.json b/lib/networkloadbalancer/package.json index 09fdab3e0a..4b30434f5c 100644 --- a/lib/networkloadbalancer/package.json +++ b/lib/networkloadbalancer/package.json @@ -1,7 +1,7 @@ { "name": "oci-networkloadbalancer", "version": "2.89.2", - "description": "OCI NodeJS client for Network Load Balancer Service", + "description": "OCI Node.js client for Network Load Balancer Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/nosql/README.md b/lib/nosql/README.md index fe61434260..4e3083d7e4 100644 --- a/lib/nosql/README.md +++ b/lib/nosql/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Nosql Service +# OCI Node.js client for Nosql Service This module enables you to write code to manage resources for Nosql Service. diff --git a/lib/nosql/package.json b/lib/nosql/package.json index 03f23c37a6..3f5bbd97fe 100644 --- a/lib/nosql/package.json +++ b/lib/nosql/package.json @@ -1,7 +1,7 @@ { "name": "oci-nosql", "version": "2.89.2", - "description": "OCI NodeJS client for Nosql Service", + "description": "OCI Node.js client for Nosql Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/objectstorage/README.md b/lib/objectstorage/README.md index e6ebd18575..a5ba22c40b 100644 --- a/lib/objectstorage/README.md +++ b/lib/objectstorage/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Objectstorage Service +# OCI Node.js client for Objectstorage Service This module enables you to write code to manage resources for Objectstorage Service. diff --git a/lib/objectstorage/lib/upload-manager/node-fs-blob.ts b/lib/objectstorage/lib/upload-manager/node-fs-blob.ts index f6cbd8d965..ac40a301d1 100644 --- a/lib/objectstorage/lib/upload-manager/node-fs-blob.ts +++ b/lib/objectstorage/lib/upload-manager/node-fs-blob.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -115,6 +115,6 @@ export class NodeFSBlob implements UploadableBlob { * returns ReadableStream object */ public stream(): ReadableStream { - throw "ReadableStream not supported in NodeJs. Use getData() to fetch Stream"; + throw "ReadableStream not supported in Node.js. Use getData() to fetch Stream"; } } diff --git a/lib/objectstorage/lib/upload-manager/upload-manager.ts b/lib/objectstorage/lib/upload-manager/upload-manager.ts index 93c3795455..67da29aa17 100644 --- a/lib/objectstorage/lib/upload-manager/upload-manager.ts +++ b/lib/objectstorage/lib/upload-manager/upload-manager.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ @@ -45,7 +45,7 @@ const UPLOAD_MANAGER_DEBUG_INFORMATION_LOG = `Client Version: ${CLIENT_VERSION}, * An advantage of using multi-part uploads is the ability to be able to upload parts in parallel to reduce upload time. *

    * Callers still have full control over how the UploadManager decides to perform the upload using UploadOptions. - * NodeJS V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. + * Node.js V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine. * Do not make the partSize greater than the buffer size limitation. */ diff --git a/lib/objectstorage/package.json b/lib/objectstorage/package.json index d3ce2f1944..fadac7f3b0 100644 --- a/lib/objectstorage/package.json +++ b/lib/objectstorage/package.json @@ -1,7 +1,7 @@ { "name": "oci-objectstorage", "version": "2.89.2", - "description": "OCI NodeJS client for ObjectStorage", + "description": "OCI Node.js client for ObjectStorage", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/oce/README.md b/lib/oce/README.md index 85fac6ecbb..ec3791e8b3 100644 --- a/lib/oce/README.md +++ b/lib/oce/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for OCE Service +# OCI Node.js client for OCE Service This module enables you to write code to manage resources for OCE Service. diff --git a/lib/oce/package.json b/lib/oce/package.json index 623d373d74..6e870fb94b 100644 --- a/lib/oce/package.json +++ b/lib/oce/package.json @@ -1,7 +1,7 @@ { "name": "oci-oce", "version": "2.89.2", - "description": "OCI NodeJS client for OCE Service", + "description": "OCI Node.js client for OCE Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/ocicontrolcenter/README.md b/lib/ocicontrolcenter/README.md index 0e457fc0a7..6b8cab9388 100644 --- a/lib/ocicontrolcenter/README.md +++ b/lib/ocicontrolcenter/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Oci Control Center Service +# OCI Node.js client for Oci Control Center Service This module enables you to write code to manage resources for Oci Control Center Service. diff --git a/lib/ocicontrolcenter/package.json b/lib/ocicontrolcenter/package.json index 0261ad7209..2f9baae153 100644 --- a/lib/ocicontrolcenter/package.json +++ b/lib/ocicontrolcenter/package.json @@ -1,7 +1,7 @@ { "name": "oci-ocicontrolcenter", "version": "2.89.2", - "description": "OCI NodeJS client for Oci Control Center Service", + "description": "OCI Node.js client for Oci Control Center Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/ocvp/README.md b/lib/ocvp/README.md index e45183d4e6..46af498916 100644 --- a/lib/ocvp/README.md +++ b/lib/ocvp/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Ocvp Service +# OCI Node.js client for Ocvp Service This module enables you to write code to manage resources for Ocvp Service. diff --git a/lib/ocvp/package.json b/lib/ocvp/package.json index 235c29d05b..519aa8ed66 100644 --- a/lib/ocvp/package.json +++ b/lib/ocvp/package.json @@ -1,7 +1,7 @@ { "name": "oci-ocvp", "version": "2.89.2", - "description": "OCI NodeJS client for Ocvp Service", + "description": "OCI Node.js client for Ocvp Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/oda/README.md b/lib/oda/README.md index 21dcc4e233..00ca23e727 100644 --- a/lib/oda/README.md +++ b/lib/oda/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for ODA Service +# OCI Node.js client for ODA Service This module enables you to write code to manage resources for ODA Service. diff --git a/lib/oda/package.json b/lib/oda/package.json index 0077f83ed0..693f9e1af4 100644 --- a/lib/oda/package.json +++ b/lib/oda/package.json @@ -1,7 +1,7 @@ { "name": "oci-oda", "version": "2.89.2", - "description": "OCI NodeJS client for Oda Service", + "description": "OCI Node.js client for ODA Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/onesubscription/README.md b/lib/onesubscription/README.md index a9dc060a2b..61fe29b9c8 100644 --- a/lib/onesubscription/README.md +++ b/lib/onesubscription/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Onesubscription Service +# OCI Node.js client for Onesubscription Service This module enables you to write code to manage resources for Onesubscription Service. diff --git a/lib/onesubscription/package.json b/lib/onesubscription/package.json index ca00ebccba..22bed978d6 100644 --- a/lib/onesubscription/package.json +++ b/lib/onesubscription/package.json @@ -1,7 +1,7 @@ { "name": "oci-onesubscription", "version": "2.89.2", - "description": "OCI NodeJS client for Onesubscription Service", + "description": "OCI Node.js client for Onesubscription Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/ons/README.md b/lib/ons/README.md index 6b6169e7da..06d4f20f30 100644 --- a/lib/ons/README.md +++ b/lib/ons/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for ONS Service +# OCI Node.js client for ONS Service This module enables you to write code to manage resources for ONs Service. diff --git a/lib/ons/package.json b/lib/ons/package.json index 1bfd33c948..c5c4f87e2b 100644 --- a/lib/ons/package.json +++ b/lib/ons/package.json @@ -1,7 +1,7 @@ { "name": "oci-ons", "version": "2.89.2", - "description": "OCI NodeJS client for ONS", + "description": "OCI Node.js client for ONS", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/opa/README.md b/lib/opa/README.md index cccc1ee4ad..d2e38e937e 100644 --- a/lib/opa/README.md +++ b/lib/opa/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Opa Service +# OCI Node.js client for Opa Service This module enables you to write code to manage resources for Opa Service. diff --git a/lib/opa/package.json b/lib/opa/package.json index 262870b83a..8244d8d499 100644 --- a/lib/opa/package.json +++ b/lib/opa/package.json @@ -1,7 +1,7 @@ { "name": "oci-opa", "version": "2.89.2", - "description": "OCI NodeJS client for Opa Service", + "description": "OCI Node.js client for Opa Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/opensearch/README.md b/lib/opensearch/README.md index 8618d8ff35..1cadb08314 100644 --- a/lib/opensearch/README.md +++ b/lib/opensearch/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Opensearch Service +# OCI Node.js client for Opensearch Service This module enables you to write code to manage resources for Opensearch Service. diff --git a/lib/opensearch/package.json b/lib/opensearch/package.json index 602ee15a27..4fea235fd2 100644 --- a/lib/opensearch/package.json +++ b/lib/opensearch/package.json @@ -1,7 +1,7 @@ { "name": "oci-opensearch", "version": "2.89.2", - "description": "OCI NodeJS client for Opensearch Service", + "description": "OCI Node.js client for Opensearch Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/operatoraccesscontrol/README.md b/lib/operatoraccesscontrol/README.md index 0280ac1390..3610a09ad1 100644 --- a/lib/operatoraccesscontrol/README.md +++ b/lib/operatoraccesscontrol/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Operator Access Control Service +# OCI Node.js client for Operator Access Control Service This module enables you to write code to manage resources for Operator Access Control Service. diff --git a/lib/operatoraccesscontrol/package.json b/lib/operatoraccesscontrol/package.json index 12a17c6d24..68e3d62f03 100644 --- a/lib/operatoraccesscontrol/package.json +++ b/lib/operatoraccesscontrol/package.json @@ -1,7 +1,7 @@ { "name": "oci-operatoraccesscontrol", "version": "2.89.2", - "description": "OCI NodeJS client for Operator Access Control Service", + "description": "OCI Node.js client for Operator Access Control Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/opsi/README.md b/lib/opsi/README.md index ec08888271..c235d736a5 100644 --- a/lib/opsi/README.md +++ b/lib/opsi/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Opsi Service +# OCI Node.js client for Opsi Service This module enables you to write code to manage resources for Opsi Service. diff --git a/lib/opsi/package.json b/lib/opsi/package.json index 7cf26b90ba..b4884cc3b4 100644 --- a/lib/opsi/package.json +++ b/lib/opsi/package.json @@ -1,7 +1,7 @@ { "name": "oci-opsi", "version": "2.89.2", - "description": "OCI NodeJS client for Opsi Service", + "description": "OCI Node.js client for Opsi Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/optimizer/README.md b/lib/optimizer/README.md index 6576d82654..2511a0687c 100644 --- a/lib/optimizer/README.md +++ b/lib/optimizer/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Optimizer Service +# OCI Node.js client for Optimizer Service This module enables you to write code to manage resources for Optimizer Service. diff --git a/lib/optimizer/package.json b/lib/optimizer/package.json index d86471902d..8bbc1bd98f 100644 --- a/lib/optimizer/package.json +++ b/lib/optimizer/package.json @@ -1,7 +1,7 @@ { "name": "oci-optimizer", "version": "2.89.2", - "description": "OCI NodeJS client for Optimizer Service", + "description": "OCI Node.js client for Optimizer Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osmanagement/README.md b/lib/osmanagement/README.md index aeb83ad758..3c7fa89f42 100644 --- a/lib/osmanagement/README.md +++ b/lib/osmanagement/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for OS management Service +# OCI Node.js client for OS management Service This module enables you to write code to manage resources for OS management Service. diff --git a/lib/osmanagement/package.json b/lib/osmanagement/package.json index 58c649ab0e..f89f31cc42 100644 --- a/lib/osmanagement/package.json +++ b/lib/osmanagement/package.json @@ -1,7 +1,7 @@ { "name": "oci-osmanagement", "version": "2.89.2", - "description": "OCI NodeJS client for OS Management", + "description": "OCI Node.js client for OS Management", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osmanagementhub/README.md b/lib/osmanagementhub/README.md index 90e115baeb..b98bd1f6b0 100644 --- a/lib/osmanagementhub/README.md +++ b/lib/osmanagementhub/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Os Management Hub Service +# OCI Node.js client for Os Management Hub Service This module enables you to write code to manage resources for Os Management Hub Service. diff --git a/lib/osmanagementhub/package.json b/lib/osmanagementhub/package.json index 80b201cdc5..7b444dd5ff 100644 --- a/lib/osmanagementhub/package.json +++ b/lib/osmanagementhub/package.json @@ -1,7 +1,7 @@ { "name": "oci-osmanagementhub", "version": "2.89.2", - "description": "OCI NodeJS client for Os Management Hub Service", + "description": "OCI Node.js client for Os Management Hub Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/ospgateway/README.md b/lib/ospgateway/README.md index b9fda6daa6..5ce765c29e 100644 --- a/lib/ospgateway/README.md +++ b/lib/ospgateway/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Osp Gateway Service +# OCI Node.js client for Osp Gateway Service This module enables you to write code to manage resources for Osp Gateway Service. diff --git a/lib/ospgateway/package.json b/lib/ospgateway/package.json index 60f169a048..58530f6884 100644 --- a/lib/ospgateway/package.json +++ b/lib/ospgateway/package.json @@ -1,7 +1,7 @@ { "name": "oci-ospgateway", "version": "2.89.2", - "description": "OCI NodeJS client for Osp Gateway Service", + "description": "OCI Node.js client for Osp Gateway Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osubbillingschedule/README.md b/lib/osubbillingschedule/README.md index 807fdc6ef6..507079375c 100644 --- a/lib/osubbillingschedule/README.md +++ b/lib/osubbillingschedule/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Osub Billing Schedule Service +# OCI Node.js client for Osub Billing Schedule Service This module enables you to write code to manage resources for Osub Billing Schedule Service. diff --git a/lib/osubbillingschedule/package.json b/lib/osubbillingschedule/package.json index cd20be94a2..7c6b5e25e9 100644 --- a/lib/osubbillingschedule/package.json +++ b/lib/osubbillingschedule/package.json @@ -1,7 +1,7 @@ { "name": "oci-osubbillingschedule", "version": "2.89.2", - "description": "OCI NodeJS client for Osub Billing Schedule Service", + "description": "OCI Node.js client for Osub Billing Schedule Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osuborganizationsubscription/README.md b/lib/osuborganizationsubscription/README.md index f1fd251026..8603d9435d 100644 --- a/lib/osuborganizationsubscription/README.md +++ b/lib/osuborganizationsubscription/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Osub Organization Subscription Service +# OCI Node.js client for Osub Organization Subscription Service This module enables you to write code to manage resources for Osub Organization Subscription Service. diff --git a/lib/osuborganizationsubscription/package.json b/lib/osuborganizationsubscription/package.json index c007d8eee9..45736dd69d 100644 --- a/lib/osuborganizationsubscription/package.json +++ b/lib/osuborganizationsubscription/package.json @@ -1,7 +1,7 @@ { "name": "oci-osuborganizationsubscription", "version": "2.89.2", - "description": "OCI NodeJS client for Osub Organization Subscription Service", + "description": "OCI Node.js client for Osub Organization Subscription Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osubsubscription/README.md b/lib/osubsubscription/README.md index 2cd02227be..b007039c13 100644 --- a/lib/osubsubscription/README.md +++ b/lib/osubsubscription/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Osub Subscription Service +# OCI Node.js client for Osub Subscription Service This module enables you to write code to manage resources for Osub Subscription Service. diff --git a/lib/osubsubscription/package.json b/lib/osubsubscription/package.json index e37fc321db..dbdc726be4 100644 --- a/lib/osubsubscription/package.json +++ b/lib/osubsubscription/package.json @@ -1,7 +1,7 @@ { "name": "oci-osubsubscription", "version": "2.89.2", - "description": "OCI NodeJS client for Osub Subscription Service", + "description": "OCI Node.js client for Osub Subscription Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/osubusage/README.md b/lib/osubusage/README.md index e065fb5376..c086779da7 100644 --- a/lib/osubusage/README.md +++ b/lib/osubusage/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Osub Usage Service +# OCI Node.js client for Osub Usage Service This module enables you to write code to manage resources for Osub Usage Service. diff --git a/lib/osubusage/package.json b/lib/osubusage/package.json index cbf73ee5f6..a6371a2f6e 100644 --- a/lib/osubusage/package.json +++ b/lib/osubusage/package.json @@ -1,7 +1,7 @@ { "name": "oci-osubusage", "version": "2.89.2", - "description": "OCI NodeJS client for Osub Usage Service", + "description": "OCI Node.js client for Osub Usage Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/psql/README.md b/lib/psql/README.md index 77fe02b4d9..82894bc109 100644 --- a/lib/psql/README.md +++ b/lib/psql/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Psql Service +# OCI Node.js client for Psql Service This module enables you to write code to manage resources for Psql Service. diff --git a/lib/psql/package.json b/lib/psql/package.json index cce7a566f2..418fe72db4 100644 --- a/lib/psql/package.json +++ b/lib/psql/package.json @@ -1,7 +1,7 @@ { "name": "oci-psql", "version": "2.89.2", - "description": "OCI NodeJS client for Psql Service", + "description": "OCI Node.js client for Psql Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/queue/README.md b/lib/queue/README.md index dde2389f3d..a8e1731c9c 100644 --- a/lib/queue/README.md +++ b/lib/queue/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Queue Service +# OCI Node.js client for Queue Service This module enables you to write code to manage resources for Queue Service. diff --git a/lib/queue/package.json b/lib/queue/package.json index 126773c062..5383e37a7a 100644 --- a/lib/queue/package.json +++ b/lib/queue/package.json @@ -1,7 +1,7 @@ { "name": "oci-queue", "version": "2.89.2", - "description": "OCI NodeJS client for Queue Service", + "description": "OCI Node.js client for Queue Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/recovery/README.md b/lib/recovery/README.md index cd20ea03cb..f413faca96 100644 --- a/lib/recovery/README.md +++ b/lib/recovery/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Recovery Service +# OCI Node.js client for Recovery Service This module enables you to write code to manage resources for Recovery Service. diff --git a/lib/recovery/package.json b/lib/recovery/package.json index 1d530f0f7d..3b4c6ba171 100644 --- a/lib/recovery/package.json +++ b/lib/recovery/package.json @@ -1,7 +1,7 @@ { "name": "oci-recovery", "version": "2.89.2", - "description": "OCI NodeJS client for Recovery Service", + "description": "OCI Node.js client for Recovery Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/redis/README.md b/lib/redis/README.md index d46ddef476..c132dc4328 100644 --- a/lib/redis/README.md +++ b/lib/redis/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Redis Service +# OCI Node.js client for Redis Service This module enables you to write code to manage resources for Redis Service. diff --git a/lib/redis/package.json b/lib/redis/package.json index b3956aab38..0dc558f9d6 100644 --- a/lib/redis/package.json +++ b/lib/redis/package.json @@ -1,7 +1,7 @@ { "name": "oci-redis", "version": "2.89.2", - "description": "OCI NodeJS client for Redis Service", + "description": "OCI Node.js client for Redis Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/resourcemanager/README.md b/lib/resourcemanager/README.md index 653bc69163..c04b1fcea4 100644 --- a/lib/resourcemanager/README.md +++ b/lib/resourcemanager/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Resource Manager Service +# OCI Node.js client for Resource Manager Service This module enables you to write code to manage resources for Resource Manager Service. diff --git a/lib/resourcemanager/package.json b/lib/resourcemanager/package.json index 12b4fd9b17..a0907d07f3 100644 --- a/lib/resourcemanager/package.json +++ b/lib/resourcemanager/package.json @@ -1,7 +1,7 @@ { "name": "oci-resourcemanager", "version": "2.89.2", - "description": "OCI NodeJS client for Resource manager Service", + "description": "OCI Node.js client for Resource manager Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/resourcescheduler/README.md b/lib/resourcescheduler/README.md index c45c91c5d5..91b62a6dcd 100644 --- a/lib/resourcescheduler/README.md +++ b/lib/resourcescheduler/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Resource Scheduler Service +# OCI Node.js client for Resource Scheduler Service This module enables you to write code to manage resources for Resource Scheduler Service. diff --git a/lib/resourcescheduler/package.json b/lib/resourcescheduler/package.json index f2aedb8bb1..969dcaab25 100644 --- a/lib/resourcescheduler/package.json +++ b/lib/resourcescheduler/package.json @@ -1,7 +1,7 @@ { "name": "oci-resourcescheduler", "version": "2.89.2", - "description": "OCI NodeJS client for Resource Scheduler Service", + "description": "OCI Node.js client for Resource Scheduler Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/resourcesearch/README.md b/lib/resourcesearch/README.md index 3987580f74..b105110c91 100644 --- a/lib/resourcesearch/README.md +++ b/lib/resourcesearch/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Resource Search Service +# OCI Node.js client for Resource Search Service This module enables you to write code to manage resources for Resource Search Service. diff --git a/lib/resourcesearch/package.json b/lib/resourcesearch/package.json index 8f39dbff5b..77eec8c988 100644 --- a/lib/resourcesearch/package.json +++ b/lib/resourcesearch/package.json @@ -1,7 +1,7 @@ { "name": "oci-resourcesearch", "version": "2.89.2", - "description": "OCI NodeJS client for resource research Service", + "description": "OCI Node.js client for resource research Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/rover/README.md b/lib/rover/README.md index 68f992c9e3..6d36990b08 100644 --- a/lib/rover/README.md +++ b/lib/rover/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Rover Service +# OCI Node.js client for Rover Service This module enables you to write code to manage resources for Rover Service. diff --git a/lib/rover/package.json b/lib/rover/package.json index da6734c4b9..bcc5fd21fb 100644 --- a/lib/rover/package.json +++ b/lib/rover/package.json @@ -1,7 +1,7 @@ { "name": "oci-rover", "version": "2.89.2", - "description": "OCI NodeJS client for Rover Service", + "description": "OCI Node.js client for Rover Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/sch/README.md b/lib/sch/README.md index 77de2ea7ee..008cfeea2b 100644 --- a/lib/sch/README.md +++ b/lib/sch/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Sch Service +# OCI Node.js client for Sch Service This module enables you to write code to manage resources for Sch Service. diff --git a/lib/sch/package.json b/lib/sch/package.json index d61d1b02c9..2b00b571f2 100644 --- a/lib/sch/package.json +++ b/lib/sch/package.json @@ -1,7 +1,7 @@ { "name": "oci-sch", "version": "2.89.2", - "description": "OCI NodeJS client for Sch Service", + "description": "OCI Node.js client for Sch Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/secrets/README.md b/lib/secrets/README.md index 96c5e251db..5ac2e3c4e4 100644 --- a/lib/secrets/README.md +++ b/lib/secrets/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Secrets Service +# OCI Node.js client for Secrets Service This module enables you to write code to manage resources for Secrets Service. diff --git a/lib/secrets/package.json b/lib/secrets/package.json index cf4dbd05ef..090a2e6cde 100644 --- a/lib/secrets/package.json +++ b/lib/secrets/package.json @@ -1,7 +1,7 @@ { "name": "oci-secrets", "version": "2.89.2", - "description": "OCI NodeJS client for Secrets Service", + "description": "OCI Node.js client for Secrets Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/servicecatalog/README.md b/lib/servicecatalog/README.md index 41f85777c1..add81f6253 100644 --- a/lib/servicecatalog/README.md +++ b/lib/servicecatalog/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Service Catalog Service +# OCI Node.js client for Service Catalog Service This module enables you to write code to manage resources for Service Catalog Service. diff --git a/lib/servicecatalog/package.json b/lib/servicecatalog/package.json index 8bb4812aa8..b51ecc6f5e 100644 --- a/lib/servicecatalog/package.json +++ b/lib/servicecatalog/package.json @@ -1,7 +1,7 @@ { "name": "oci-servicecatalog", "version": "2.89.2", - "description": "OCI NodeJS client for Service Catalog Service", + "description": "OCI Node.js client for Service Catalog Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/servicemanagerproxy/README.md b/lib/servicemanagerproxy/README.md index 733660865a..9cea4bb55e 100644 --- a/lib/servicemanagerproxy/README.md +++ b/lib/servicemanagerproxy/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Service Manager Proxy Service +# OCI Node.js client for Service Manager Proxy Service This module enables you to write code to manage resources for Service Manager Proxy Service. diff --git a/lib/servicemanagerproxy/package.json b/lib/servicemanagerproxy/package.json index 62d9865910..e1e91dc906 100644 --- a/lib/servicemanagerproxy/package.json +++ b/lib/servicemanagerproxy/package.json @@ -1,7 +1,7 @@ { "name": "oci-servicemanagerproxy", "version": "2.89.2", - "description": "OCI NodeJS client for Service Manager Proxy Service", + "description": "OCI Node.js client for Service Manager Proxy Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/servicemesh/README.md b/lib/servicemesh/README.md index 0f76e9e71e..16466836c4 100644 --- a/lib/servicemesh/README.md +++ b/lib/servicemesh/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Service Mesh Service +# OCI Node.js client for Service Mesh Service This module enables you to write code to manage resources for Service Mesh Service. diff --git a/lib/servicemesh/package.json b/lib/servicemesh/package.json index 719ec3d8bb..3632038cf4 100644 --- a/lib/servicemesh/package.json +++ b/lib/servicemesh/package.json @@ -1,7 +1,7 @@ { "name": "oci-servicemesh", "version": "2.89.2", - "description": "OCI NodeJS client for Service Mesh Service", + "description": "OCI Node.js client for Service Mesh Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/stackmonitoring/README.md b/lib/stackmonitoring/README.md index e1ef58febf..ab2c9a8cf0 100644 --- a/lib/stackmonitoring/README.md +++ b/lib/stackmonitoring/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Stack Monitoring Service +# OCI Node.js client for Stack Monitoring Service This module enables you to write code to manage resources for Stack Monitoring Service. diff --git a/lib/stackmonitoring/package.json b/lib/stackmonitoring/package.json index 2be9d2eef4..5bad81cebd 100644 --- a/lib/stackmonitoring/package.json +++ b/lib/stackmonitoring/package.json @@ -1,7 +1,7 @@ { "name": "oci-stackmonitoring", "version": "2.89.2", - "description": "OCI NodeJS client for Stack Monitoring Service", + "description": "OCI Node.js client for Stack Monitoring Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/streaming/README.md b/lib/streaming/README.md index 804d3ee8fd..3d3f8d06c4 100644 --- a/lib/streaming/README.md +++ b/lib/streaming/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Streaming Service +# OCI Node.js client for Streaming Service This module enables you to write code to manage resources for Streaming Service. diff --git a/lib/streaming/package.json b/lib/streaming/package.json index 232a54c786..ef164af79c 100644 --- a/lib/streaming/package.json +++ b/lib/streaming/package.json @@ -1,7 +1,7 @@ { "name": "oci-streaming", "version": "2.89.2", - "description": "OCI NodeJS client for Streaming", + "description": "OCI Node.js client for Streaming", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/tenantmanagercontrolplane/README.md b/lib/tenantmanagercontrolplane/README.md index 2ab50fc18f..177aac1a1a 100644 --- a/lib/tenantmanagercontrolplane/README.md +++ b/lib/tenantmanagercontrolplane/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Tenant Manager Control Plane Service +# OCI Node.js client for Tenant Manager Control Plane Service This module enables you to write code to manage resources for Tenant Manager Control Plane Service. diff --git a/lib/tenantmanagercontrolplane/package.json b/lib/tenantmanagercontrolplane/package.json index 7ec584d2c1..04d81be1c8 100644 --- a/lib/tenantmanagercontrolplane/package.json +++ b/lib/tenantmanagercontrolplane/package.json @@ -1,7 +1,7 @@ { "name": "oci-tenantmanagercontrolplane", "version": "2.89.2", - "description": "OCI NodeJS client for Tenant Manager Control Plane Service", + "description": "OCI Node.js client for Tenant Manager Control Plane Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/threatintelligence/README.md b/lib/threatintelligence/README.md index 1957374159..110fbab705 100644 --- a/lib/threatintelligence/README.md +++ b/lib/threatintelligence/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Threat Intelligence Service +# OCI Node.js client for Threat Intelligence Service This module enables you to write code to manage resources for Threat Intelligence Service. diff --git a/lib/threatintelligence/package.json b/lib/threatintelligence/package.json index e7e6d4518c..a9189d0b40 100644 --- a/lib/threatintelligence/package.json +++ b/lib/threatintelligence/package.json @@ -1,7 +1,7 @@ { "name": "oci-threatintelligence", "version": "2.89.2", - "description": "OCI NodeJS client for Threat Intelligence Service", + "description": "OCI Node.js client for Threat Intelligence Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/usage/README.md b/lib/usage/README.md index 2989350257..1a5ab08716 100644 --- a/lib/usage/README.md +++ b/lib/usage/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Usage Service +# OCI Node.js client for Usage Service This module enables you to write code to manage resources for Usage Service. diff --git a/lib/usage/package.json b/lib/usage/package.json index 86302ee231..3337c679e7 100644 --- a/lib/usage/package.json +++ b/lib/usage/package.json @@ -1,7 +1,7 @@ { "name": "oci-usage", "version": "2.89.2", - "description": "OCI NodeJS client for Usage Service", + "description": "OCI Node.js client for Usage Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/usageapi/README.md b/lib/usageapi/README.md index aa14ecf8ed..05ba7739bb 100644 --- a/lib/usageapi/README.md +++ b/lib/usageapi/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Usage Api Service +# OCI Node.js client for Usage Api Service This module enables you to write code to manage resources for Usage Api Service. diff --git a/lib/usageapi/package.json b/lib/usageapi/package.json index 1cf0d692e6..fbd2edf369 100644 --- a/lib/usageapi/package.json +++ b/lib/usageapi/package.json @@ -1,7 +1,7 @@ { "name": "oci-usageapi", "version": "2.89.2", - "description": "OCI NodeJS client for Usage Api Service", + "description": "OCI Node.js client for Usage Api Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/vault/README.md b/lib/vault/README.md index 2283d25527..203ecc0d22 100644 --- a/lib/vault/README.md +++ b/lib/vault/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Vault Service +# OCI Node.js client for Vault Service This module enables you to write code to manage resources for Vault Service. diff --git a/lib/vault/package.json b/lib/vault/package.json index d554931acf..87596d1273 100644 --- a/lib/vault/package.json +++ b/lib/vault/package.json @@ -1,7 +1,7 @@ { "name": "oci-vault", "version": "2.89.2", - "description": "OCI NodeJS client for Vault Service", + "description": "OCI Node.js client for Vault Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/vbsinst/README.md b/lib/vbsinst/README.md index 6470088793..2b7e8bd311 100644 --- a/lib/vbsinst/README.md +++ b/lib/vbsinst/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Vbs Inst Service +# OCI Node.js client for Vbs Inst Service This module enables you to write code to manage resources for Vbs Inst Service. diff --git a/lib/vbsinst/package.json b/lib/vbsinst/package.json index d1f440350b..d54e01466a 100644 --- a/lib/vbsinst/package.json +++ b/lib/vbsinst/package.json @@ -1,7 +1,7 @@ { "name": "oci-vbsinst", "version": "2.89.2", - "description": "OCI NodeJS client for Vbs Inst Service", + "description": "OCI Node.js client for Vbs Inst Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/visualbuilder/README.md b/lib/visualbuilder/README.md index 80f3ecc11c..a96718fdf9 100644 --- a/lib/visualbuilder/README.md +++ b/lib/visualbuilder/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Visual Builder Service +# OCI Node.js client for Visual Builder Service This module enables you to write code to manage resources for Visual Builder Service. diff --git a/lib/visualbuilder/package.json b/lib/visualbuilder/package.json index 73827479d7..22cc06b635 100644 --- a/lib/visualbuilder/package.json +++ b/lib/visualbuilder/package.json @@ -1,7 +1,7 @@ { "name": "oci-visualbuilder", "version": "2.89.2", - "description": "OCI NodeJS client for Visual Builder Service", + "description": "OCI Node.js client for Visual Builder Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/vnmonitoring/README.md b/lib/vnmonitoring/README.md index 2eba434b0e..b910d7e9cd 100644 --- a/lib/vnmonitoring/README.md +++ b/lib/vnmonitoring/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Vn Monitoring Service +# OCI Node.js client for Vn Monitoring Service This module enables you to write code to manage resources for Vn Monitoring Service. diff --git a/lib/vnmonitoring/package.json b/lib/vnmonitoring/package.json index 6fa25fe51d..99b5a50c28 100644 --- a/lib/vnmonitoring/package.json +++ b/lib/vnmonitoring/package.json @@ -1,7 +1,7 @@ { "name": "oci-vnmonitoring", "version": "2.89.2", - "description": "OCI NodeJS client for Vn Monitoring Service", + "description": "OCI Node.js client for Vn Monitoring Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/vulnerabilityscanning/README.md b/lib/vulnerabilityscanning/README.md index 74bb86c8af..3e7738829d 100644 --- a/lib/vulnerabilityscanning/README.md +++ b/lib/vulnerabilityscanning/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Vulnerability Scanning Service +# OCI Node.js client for Vulnerability Scanning Service This module enables you to write code to manage resources for Vulnerability Scanning Service. diff --git a/lib/vulnerabilityscanning/package.json b/lib/vulnerabilityscanning/package.json index 0ae8a99f06..bb49e106a4 100644 --- a/lib/vulnerabilityscanning/package.json +++ b/lib/vulnerabilityscanning/package.json @@ -1,7 +1,7 @@ { "name": "oci-vulnerabilityscanning", "version": "2.89.2", - "description": "OCI NodeJS client for Vulnerability Scanning Service", + "description": "OCI Node.js client for Vulnerability Scanning Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/waa/README.md b/lib/waa/README.md index bc1163ea5d..fcef0a9983 100644 --- a/lib/waa/README.md +++ b/lib/waa/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Waa Service +# OCI Node.js client for Waa Service This module enables you to write code to manage resources for Waa Service. diff --git a/lib/waa/package.json b/lib/waa/package.json index 220ea39dfd..650ac0a11b 100644 --- a/lib/waa/package.json +++ b/lib/waa/package.json @@ -1,7 +1,7 @@ { "name": "oci-waa", "version": "2.89.2", - "description": "OCI NodeJS client for Waa Service", + "description": "OCI Node.js client for Waa Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/waas/README.md b/lib/waas/README.md index 50ad1ec243..ee192b5e32 100644 --- a/lib/waas/README.md +++ b/lib/waas/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for WAAS Service +# OCI Node.js client for WAAS Service This module enables you to write code to manage resources for WAAS Service. diff --git a/lib/waas/package.json b/lib/waas/package.json index 1f0f8bb6d6..b7b11479e2 100644 --- a/lib/waas/package.json +++ b/lib/waas/package.json @@ -1,7 +1,7 @@ { "name": "oci-waas", "version": "2.89.2", - "description": "OCI NodeJS client for WAAS", + "description": "OCI Node.js client for WAAS", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/waf/README.md b/lib/waf/README.md index be5cd0fb3a..c01bae4f71 100644 --- a/lib/waf/README.md +++ b/lib/waf/README.md @@ -1,5 +1,5 @@ -# OCI NodeJS client for Waf Service +# OCI Node.js client for Waf Service This module enables you to write code to manage resources for Waf Service. diff --git a/lib/waf/package.json b/lib/waf/package.json index d43c6cb66b..e29c881186 100644 --- a/lib/waf/package.json +++ b/lib/waf/package.json @@ -1,7 +1,7 @@ { "name": "oci-waf", "version": "2.89.2", - "description": "OCI NodeJS client for Waf Service", + "description": "OCI Node.js client for Waf Service", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk" diff --git a/lib/workrequests/README.md b/lib/workrequests/README.md index 6e87fea2fc..d65315a7fb 100644 --- a/lib/workrequests/README.md +++ b/lib/workrequests/README.md @@ -1,4 +1,4 @@ -# OCI NodeJS client for Work Requests Service +# OCI Node.js client for Work Requests Service This module enables you to write code to manage resources for Work Requests Service. diff --git a/lib/workrequests/package.json b/lib/workrequests/package.json index 8356d68d77..a8f4a5cd9c 100644 --- a/lib/workrequests/package.json +++ b/lib/workrequests/package.json @@ -1,7 +1,7 @@ { "name": "oci-workrequests", "version": "2.89.2", - "description": "OCI NodeJS client for WorkRequests", + "description": "OCI Node.js client for WorkRequests", "repository": { "type": "git", "url": "https://github.com/oracle/oci-typescript-sdk"