@contentstack/marketplace-sdk 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentstack/marketplace-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "The Contentstack Marketplace SDK is used to manage the content of your Contentstack marketplace apps",
5
5
  "main": "./dist/node/contentstack-marketplace.js",
6
6
  "browser": "./dist/web/contentstack-marketplace.js",
@@ -25,7 +25,8 @@ export enum Region {
25
25
  EU = 'eu',
26
26
  NA = '',
27
27
  AZURE_NA = 'azure-na',
28
- AZURE_EU = 'azure-eu'
28
+ AZURE_EU = 'azure-eu',
29
+ GCP_NA = 'gcp-na'
29
30
  }
30
31
  export interface ContentstackConfig extends AxiosRequestConfig, ContentstackToken {
31
32
  proxy?: ProxyConfig | false
@@ -8,6 +8,7 @@ export interface Hosting {
8
8
  deployment(): Deployments
9
9
  deployment(uid: string): Deployment
10
10
  latestLiveDeployment(): Promise<Deployment>
11
+ disconnect(): Promise<AnyProperty>
11
12
  }
12
13
 
13
14
  export interface UploadDetails {