@antchain/ato 1.14.12 → 1.14.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/ato",
3
- "version": "1.14.12",
3
+ "version": "1.14.15",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -1887,6 +1887,51 @@ export class MarketingScoreInfo extends $tea.Model {
1887
1887
  }
1888
1888
  }
1889
1889
 
1890
+ // 订单电子合同信息对象
1891
+ export class OrderContractInfo extends $tea.Model {
1892
+ // 电子合同签署单号
1893
+ signNo?: string;
1894
+ // 签署时间
1895
+ signTime?: string;
1896
+ // 合同签署类型
1897
+ contractType?: string;
1898
+ // 文件合同类型
1899
+ agreementType?: string;
1900
+ // 模板ID
1901
+ templateId?: string;
1902
+ // 模板文件名称
1903
+ fileName?: string;
1904
+ // 合同文件下载地址
1905
+ downloadUrl?: string;
1906
+ static names(): { [key: string]: string } {
1907
+ return {
1908
+ signNo: 'sign_no',
1909
+ signTime: 'sign_time',
1910
+ contractType: 'contract_type',
1911
+ agreementType: 'agreement_type',
1912
+ templateId: 'template_id',
1913
+ fileName: 'file_name',
1914
+ downloadUrl: 'download_url',
1915
+ };
1916
+ }
1917
+
1918
+ static types(): { [key: string]: any } {
1919
+ return {
1920
+ signNo: 'string',
1921
+ signTime: 'string',
1922
+ contractType: 'string',
1923
+ agreementType: 'string',
1924
+ templateId: 'string',
1925
+ fileName: 'string',
1926
+ downloadUrl: 'string',
1927
+ };
1928
+ }
1929
+
1930
+ constructor(map?: { [key: string]: any }) {
1931
+ super(map);
1932
+ }
1933
+ }
1934
+
1890
1935
  // 待办信息
1891
1936
  export class PendingEventInfo extends $tea.Model {
1892
1937
  // 事件id
@@ -2103,6 +2148,8 @@ export class ApplicationInfoUpdate extends $tea.Model {
2103
2148
  merchantServiceName?: string;
2104
2149
  // 商户服务描述。 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示
2105
2150
  merchantServiceDesc?: string;
2151
+ // 站点信息
2152
+ siteInfo?: SiteInfo[];
2106
2153
  static names(): { [key: string]: string } {
2107
2154
  return {
2108
2155
  applicationScene: 'application_scene',
@@ -2112,6 +2159,7 @@ export class ApplicationInfoUpdate extends $tea.Model {
2112
2159
  merchantName: 'merchant_name',
2113
2160
  merchantServiceName: 'merchant_service_name',
2114
2161
  merchantServiceDesc: 'merchant_service_desc',
2162
+ siteInfo: 'site_info',
2115
2163
  };
2116
2164
  }
2117
2165
 
@@ -2124,6 +2172,7 @@ export class ApplicationInfoUpdate extends $tea.Model {
2124
2172
  merchantName: 'string',
2125
2173
  merchantServiceName: 'string',
2126
2174
  merchantServiceDesc: 'string',
2175
+ siteInfo: { 'type': 'array', 'itemType': SiteInfo },
2127
2176
  };
2128
2177
  }
2129
2178
 
@@ -5020,17 +5069,12 @@ export class QueryFundCreditauthRequest extends $tea.Model {
5020
5069
  fundId: string;
5021
5070
  // 授权id
5022
5071
  authId: string;
5023
- // 授权类型
5024
- // CREDIT_GRANTING 授信
5025
- // CREDIT_UTILIZATION 用信
5026
- authType: string;
5027
5072
  static names(): { [key: string]: string } {
5028
5073
  return {
5029
5074
  authToken: 'auth_token',
5030
5075
  productInstanceId: 'product_instance_id',
5031
5076
  fundId: 'fund_id',
5032
5077
  authId: 'auth_id',
5033
- authType: 'auth_type',
5034
5078
  };
5035
5079
  }
5036
5080
 
@@ -5040,7 +5084,6 @@ export class QueryFundCreditauthRequest extends $tea.Model {
5040
5084
  productInstanceId: 'string',
5041
5085
  fundId: 'string',
5042
5086
  authId: 'string',
5043
- authType: 'string',
5044
5087
  };
5045
5088
  }
5046
5089
 
@@ -9411,6 +9454,8 @@ export class DetailInnerOrderResponse extends $tea.Model {
9411
9454
  orderProductInfoList?: OrderProductInfo[];
9412
9455
  // 经营分账信息
9413
9456
  operateDivideInfoList?: OperateDivideInfo[];
9457
+ // 订单合同信息
9458
+ orderContractInfoList?: OrderContractInfo[];
9414
9459
  static names(): { [key: string]: string } {
9415
9460
  return {
9416
9461
  reqMsgId: 'req_msg_id',
@@ -9425,6 +9470,7 @@ export class DetailInnerOrderResponse extends $tea.Model {
9425
9470
  orderPromiseInfo: 'order_promise_info',
9426
9471
  orderProductInfoList: 'order_product_info_list',
9427
9472
  operateDivideInfoList: 'operate_divide_info_list',
9473
+ orderContractInfoList: 'order_contract_info_list',
9428
9474
  };
9429
9475
  }
9430
9476
 
@@ -9442,6 +9488,7 @@ export class DetailInnerOrderResponse extends $tea.Model {
9442
9488
  orderPromiseInfo: OrderPromiseInfo,
9443
9489
  orderProductInfoList: { 'type': 'array', 'itemType': OrderProductInfo },
9444
9490
  operateDivideInfoList: { 'type': 'array', 'itemType': OperateDivideInfo },
9491
+ orderContractInfoList: { 'type': 'array', 'itemType': OrderContractInfo },
9445
9492
  };
9446
9493
  }
9447
9494
 
@@ -15520,7 +15567,7 @@ export default class Client {
15520
15567
  req_msg_id: AntchainUtil.getNonce(),
15521
15568
  access_key: this._accessKeyId,
15522
15569
  base_sdk_version: "TeaSDK-2.0",
15523
- sdk_version: "1.14.12",
15570
+ sdk_version: "1.14.15",
15524
15571
  _prod_code: "ATO",
15525
15572
  _prod_channel: "undefined",
15526
15573
  };