From 1da4c0697500252bf2cb79f049679350daec2f4c Mon Sep 17 00:00:00 2001 From: saikumar1607 Date: Sat, 16 Mar 2024 19:19:08 +0000 Subject: [PATCH] Added new changes in sdk appconfiguration-js-client-sdk.git Signed-off-by: saikumar1607 --- .cra/.cveignore | 8 +------- .secrets.baseline | 2 +- README.md | 1 + example/README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/index.ts | 2 ++ 7 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.cra/.cveignore b/.cra/.cveignore index 3277958..fe51488 100644 --- a/.cra/.cveignore +++ b/.cra/.cveignore @@ -1,7 +1 @@ -[ - { - "cve": "SNYK-JS-INFLIGHT-6095116", - "comment": "Dev Dependency.", - "expiration": "2024-02-28T00:00:00+05:30" - } -] +[] diff --git a/.secrets.baseline b/.secrets.baseline index 7bcc786..5f13bd8 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "package-lock.json|^.secrets.baseline$", "lines": null }, - "generated_at": "2024-02-05T09:40:58Z", + "generated_at": "2024-03-16T19:19:08Z", "plugins_used": [ { "name": "AWSKeyDetector" diff --git a/README.md b/README.md index f023435..c4f559e 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ where, - `eu-gb` for London - `au-syd` for Sydney - `us-east` for Washington DC + - `eu-de` for Frankfurt - **guid** : Instance ID of the App Configuration service. Obtain it from the service credentials section of the App Configuration dashboard. - **apikey** : ApiKey of the App Configuration service. Obtain it from the service credentials section of the App Configuration dashboard. - **collectionId**: ID of the collection created in App Configuration service instance under the **Collections** section. diff --git a/example/README.md b/example/README.md index f7b1970..90c337e 100644 --- a/example/README.md +++ b/example/README.md @@ -5,7 +5,7 @@ ## Step 1: Create an instance of App Configuration service - Log in to your IBM Cloud account. - In the [IBM Cloud catalog](https://cloud.ibm.com/catalog#services), search **App Configuration** and select [App Configuration](https://cloud.ibm.com/catalog/services/app-configuration). The service configuration screen opens. -- **Select a region** - Currently, Dallas (us-south), London (eu-gb), Sydney (au-syd) and Washington DC (us-east) regions are supported. +- **Select a region** - Currently, Dallas (us-south), London (eu-gb), Sydney (au-syd), Washington DC (us-east) and Frankfurt (eu-de) regions are supported. - Select a pricing plan, resource group and configure your resource with a service name, or use the preset name. - Click **Create**. A new service instance is created and the App Configuration console displayed. diff --git a/package-lock.json b/package-lock.json index 4c1462d..1f5411a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ibm-appconfiguration-js-client-sdk", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ibm-appconfiguration-js-client-sdk", - "version": "0.1.0", + "version": "0.1.1", "license": "Apache-2.0", "dependencies": { "eventemitter3": "^4.0.7", diff --git a/package.json b/package.json index 68dabe6..4ea023d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ibm-appconfiguration-js-client-sdk", - "version": "0.1.0", + "version": "0.1.1", "description": "IBM Cloud App Configuration JavaScript Client SDK", "keywords": [ "client-sdk", diff --git a/src/index.ts b/src/index.ts index eba6513..bf267d7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -207,4 +207,6 @@ export default class AppConfiguration { public static REGION_AU_SYD = 'au-syd'; public static REGION_US_EAST = 'us-east'; + + public static REGION_EU_DE = 'eu-de'; }