@be-link/ecs-cli-nodejs 0.0.70 → 0.0.71

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.
@@ -37,7 +37,7 @@ export declare namespace Service {
37
37
  */
38
38
  interface ProductInfo {
39
39
  /** 商品ID(必传,不会为空) */
40
- productId: string;
40
+ productId?: string;
41
41
  /** 产品类型 */
42
42
  productType: string;
43
43
  /** 是否组合商品 */
@@ -96,7 +96,7 @@ export declare namespace Service {
96
96
  */
97
97
  interface SkuItem {
98
98
  /** SKU ID(必传,不会为空) */
99
- skuId: string;
99
+ skuId?: string;
100
100
  /** 属性列表 */
101
101
  attrs: Attr[];
102
102
  /** 价格(分) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {