@ucloud-sdks/ucloud-sdk-js 0.1.0 → 0.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/lib/services/index.d.ts +1 -0
- package/lib/services/index.js +7 -0
- package/lib/services/uphone/index.d.ts +1986 -0
- package/lib/services/uphone/index.js +352 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
package/lib/services/index.js
CHANGED
|
@@ -20,6 +20,7 @@ const UK8SClient = require('./uk8s').default;
|
|
|
20
20
|
const ULBClient = require('./ulb').default;
|
|
21
21
|
const UMemClient = require('./umem').default;
|
|
22
22
|
const UNetClient = require('./unet').default;
|
|
23
|
+
const UPhoneClient = require('./uphone').default;
|
|
23
24
|
const UPHostClient = require('./uphost').default;
|
|
24
25
|
const USMSClient = require('./usms').default;
|
|
25
26
|
const UVMSClient = require('./uvms').default;
|
|
@@ -103,6 +104,12 @@ class Client extends BaseClient {
|
|
|
103
104
|
unet() {
|
|
104
105
|
return new UNetClient({ config: this.config, credential: this.credential });
|
|
105
106
|
}
|
|
107
|
+
uphone() {
|
|
108
|
+
return new UPhoneClient({
|
|
109
|
+
config: this.config,
|
|
110
|
+
credential: this.credential,
|
|
111
|
+
});
|
|
112
|
+
}
|
|
106
113
|
uphost() {
|
|
107
114
|
return new UPHostClient({
|
|
108
115
|
config: this.config,
|