@ucloud-sdks/ucloud-sdk-js 0.2.10 → 0.2.13

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.
@@ -35,6 +35,7 @@ export declare class Client extends BaseClient {
35
35
  uphost(): any;
36
36
  usms(): any;
37
37
  uvms(): any;
38
+ uwsc(): any;
38
39
  vpc(): any;
39
40
  }
40
41
  export {};
@@ -31,6 +31,7 @@ const UPhoneClient = require('./uphone').default;
31
31
  const UPHostClient = require('./uphost').default;
32
32
  const USMSClient = require('./usms').default;
33
33
  const UVMSClient = require('./uvms').default;
34
+ const UWSCClient = require('./uwsc').default;
34
35
  const VPCClient = require('./vpc').default;
35
36
  class Client extends BaseClient {
36
37
  constructor({ config, credential, }) {
@@ -210,6 +211,12 @@ class Client extends BaseClient {
210
211
  credential: this.credential,
211
212
  });
212
213
  }
214
+ uwsc() {
215
+ return new UWSCClient({
216
+ config: this.config,
217
+ credential: this.credential,
218
+ });
219
+ }
213
220
  vpc() {
214
221
  return new VPCClient({
215
222
  config: this.config,