@cloudbase/types 2.5.0-beta.0 → 2.5.2-beta.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/index.d.ts CHANGED
@@ -14,19 +14,13 @@ export interface KVstring {
14
14
  [key: string]: string;
15
15
  }
16
16
 
17
- export interface ICloudbaseAppSecret {
18
- appAccessKeyId: string;
19
- appAccessKey: string;
20
- }
21
17
 
22
18
  export interface ICloudbaseConfig {
23
19
  env: string;
24
20
  region?: string;
25
21
  timeout?: number;
26
22
  persistence?: Persistence;
27
- appSecret?: ICloudbaseAppSecret;
28
23
  oauthClient?: any
29
- appSign?: string;
30
24
  debug?: boolean;
31
25
  _fromApp?: ICloudbase;
32
26
  clientId?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/types",
3
- "version": "2.5.0-beta.0",
3
+ "version": "2.5.2-beta.0",
4
4
  "description": "cloudbase javascript sdk types",
5
5
  "files": [
6
6
  "index.js",
@@ -55,5 +55,5 @@
55
55
  "lint-staged": "^13.0.3",
56
56
  "typescript": "^4.0.2"
57
57
  },
58
- "gitHead": "916f06a86425cad63ea80dc398f6b55901c88dfb"
58
+ "gitHead": "05781e14bbdec5215c8bdce7dc6bca5cec0c1952"
59
59
  }
package/request.d.ts CHANGED
@@ -9,7 +9,7 @@ export interface IGetAccessTokenResult {
9
9
  accessTokenExpire: number;
10
10
  }
11
11
 
12
- export type ICloudbaseRequestConfig = Pick<ICloudbaseConfig, 'env' | 'region' | 'timeout' | 'appSecret' | 'appSign' | 'oauthClient' | '_fromApp'>;
12
+ export type ICloudbaseRequestConfig = Pick<ICloudbaseConfig, 'env' | 'region' | 'timeout' | 'oauthClient' | '_fromApp'>;
13
13
 
14
14
  export interface IAppendedRequestInfo {
15
15
  data: KV<any>;