@cloudbase/types 2.5.47-beta.0 → 2.5.49-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.
Files changed (3) hide show
  1. package/auth.d.ts +1 -1
  2. package/index.d.ts +1 -0
  3. package/package.json +2 -2
package/auth.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ICloudbaseConfig, KV, ICloudbase } from '.'
2
2
 
3
- export type ICloudbaseAuthConfig = Pick<ICloudbaseConfig, 'env' | 'region' | 'persistence' | 'debug' | '_fromApp' | 'oauthInstance'>;
3
+ export type ICloudbaseAuthConfig = Pick<ICloudbaseConfig, 'env' | 'region' | 'persistence' | 'debug' | '_fromApp' | 'oauthInstance' | 'wxCloud'>;
4
4
 
5
5
  export interface IAccessTokenInfo {
6
6
  accessToken: string;
package/index.d.ts CHANGED
@@ -25,6 +25,7 @@ export interface ICloudbaseConfig {
25
25
  _fromApp?: ICloudbase;
26
26
  clientId?: string
27
27
  oauthInstance?: any;
28
+ wxCloud?: any;
28
29
  }
29
30
  // 可更新的配置字段
30
31
  export type ICloudbaseUpgradedConfig = Pick<ICloudbaseConfig, 'persistence' | 'region' | 'debug'>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/types",
3
- "version": "2.5.47-beta.0",
3
+ "version": "2.5.49-beta.0",
4
4
  "description": "cloudbase javascript sdk types",
5
5
  "files": [
6
6
  "index.js",
@@ -42,5 +42,5 @@
42
42
  "lint": "eslint --fix \"./**/*.ts\"",
43
43
  "precommit": "npm run lint"
44
44
  },
45
- "gitHead": "5eff80cfe47e3cf6e3067f1d9bba8753565e5b79"
45
+ "gitHead": "a4b9835493467e4ab8d35ba0ab3c02dbdc576edf"
46
46
  }