Skip to content

Commit 7ef69ad

Browse files
committed
release 0.0.9-beta source code
1 parent 8da883c commit 7ef69ad

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 0.0.9-beta 2023-10-30
2+
3+
### G42Cloud SDK MPC
4+
5+
- _Features_
6+
- None
7+
- _Bug Fix_
8+
- None
9+
- _Change_
10+
- **CreateThumbnailsTask**
11+
- changes of request param
12+
- `- thumbnail_para.percent`
13+
- `- thumbnail_para.type: enum value [PERCENT]`
14+
- **CreateTranscodingTask**
15+
- changes of request param
16+
- `- thumbnail.params.percent`
17+
- `- thumbnail.params.type: enum value [PERCENT]`
18+
119
# 0.0.8-beta 2023-08-26
220

321
### G42Cloud SDK SMS

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://www.g42cloud.com/"><img src="https://upload.wikimedia.org/wikipedia/en/4/43/Group_42_Logo.jpg"></a>
2+
<a href="https://www.g42cloud.com/"><img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/94/Group_42_logo.png/330px-Group_42_logo.png"></a>
33
</p>
44

55
<h1 align="center">G42 Cloud Node.js Software Development Kit (Node.js SDK)</h1>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.8-beta
1+
0.0.9-beta

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@g42cloud/g42cloud-sdk-service",
3-
"version": "0.0.8-beta",
3+
"version": "0.0.9-beta",
44
"description": "g42cloud SDK",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"
@@ -12,6 +12,6 @@
1212
"author": "g42cloud_SDK",
1313
"license": "Apache-2.0",
1414
"dependencies": {
15-
"@g42cloud/g42cloud-sdk-core": "^0.0.8-beta"
15+
"@g42cloud/g42cloud-sdk-core": "^0.0.9-beta"
1616
}
1717
}

services/ecs/v2/EcsClient.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1673,13 +1673,13 @@ export class EcsClient {
16731673
}
16741674

16751675
/**
1676-
* 修改按需服务器,设置定时销毁时间。如果设置的销毁时间为空,表示取消销毁时间
1676+
* 修改按需服务器,设置定时删除时间。如果设置的定时删除时间为空字符串,表示取消定时删除
16771677
*
16781678
* 该接口支持企业项目细粒度权限的校验,具体细粒度请参见 ecs:cloudServers:put。
16791679
*
16801680
* Please refer to HUAWEI cloud API Explorer for details.
16811681
*
1682-
* @summary 修改云服务器销毁时间
1682+
* @summary 修改云服务器定时删除时间
16831683
* @param {string} serverId 云服务器ID。
16841684
* @param {UpdateServerAutoTerminateTimeRequestBody} updateServerAutoTerminateTimeRequestBody This is a auto create Body Object
16851685
* @param {*} [options] Override http request option.
@@ -4637,7 +4637,7 @@ export const ParamCreater = function () {
46374637
},
46384638

46394639
/**
4640-
* 修改按需服务器,设置定时销毁时间。如果设置的销毁时间为空,表示取消销毁时间
4640+
* 修改按需服务器,设置定时删除时间。如果设置的定时删除时间为空字符串,表示取消定时删除
46414641
*
46424642
* 该接口支持企业项目细粒度权限的校验,具体细粒度请参见 ecs:cloudServers:put。
46434643
*

services/ecs/v2/model/ServerTag.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
export class ServerTag {
44
public key?: string;
55
public value?: string;
6-
public constructor(key?: string, value?: string) {
6+
public constructor(key?: string) {
77
this['key'] = key;
8-
this['value'] = value;
98
}
109
public withKey(key: string): ServerTag {
1110
this['key'] = key;

services/mpc/v1/model/ThumbnailPara.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ export class ThumbnailPara {
8989
* @enum {string}
9090
*/
9191
export enum ThumbnailParaTypeEnum {
92-
PERCENT = 'PERCENT',
9392
TIME = 'TIME',
9493
DOTS = 'DOTS',
9594
DOTS_MS = 'DOTS_MS'

0 commit comments

Comments
 (0)