@ucloud-sdks/ucloud-sdk-js 0.2.34 → 0.2.36
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/uk8s/index.d.ts +1456 -23
- package/lib/services/uk8s/index.js +36 -0
- package/lib/services/ukms/index.d.ts +5 -1
- package/lib/services/upfs/index.d.ts +342 -0
- package/lib/services/upfs/index.js +79 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
package/lib/services/index.js
CHANGED
|
@@ -33,6 +33,7 @@ const ULogServiceClient = require('./ulogservice').default;
|
|
|
33
33
|
const UMemClient = require('./umem').default;
|
|
34
34
|
const UMongoDBClient = require('./umongodb').default;
|
|
35
35
|
const UNetClient = require('./unet').default;
|
|
36
|
+
const UPFSClient = require('./upfs').default;
|
|
36
37
|
const UPhoneClient = require('./uphone').default;
|
|
37
38
|
const UPHostClient = require('./uphost').default;
|
|
38
39
|
const USMSClient = require('./usms').default;
|
|
@@ -229,6 +230,12 @@ class Client extends BaseClient {
|
|
|
229
230
|
credential: this.credential,
|
|
230
231
|
});
|
|
231
232
|
}
|
|
233
|
+
upfs() {
|
|
234
|
+
return new UPFSClient({
|
|
235
|
+
config: this.config,
|
|
236
|
+
credential: this.credential,
|
|
237
|
+
});
|
|
238
|
+
}
|
|
232
239
|
uphone() {
|
|
233
240
|
return new UPhoneClient({
|
|
234
241
|
config: this.config,
|