@antchain/ato 1.14.2 → 1.14.4
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/dist/client.d.ts +4 -1
- package/dist/client.js +7 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -2
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -2308,11 +2308,14 @@ export class CreditUtilizationOrder extends $tea.Model {
|
|
|
2308
2308
|
orderCreditLine: number;
|
|
2309
2309
|
// 订单商户应还金额,单位为分
|
|
2310
2310
|
orderMerchantRepaymentMoney: number;
|
|
2311
|
+
// 分账起始日期
|
|
2312
|
+
divideStartTermIndex: number;
|
|
2311
2313
|
static names(): { [key: string]: string } {
|
|
2312
2314
|
return {
|
|
2313
2315
|
orderId: 'order_id',
|
|
2314
2316
|
orderCreditLine: 'order_credit_line',
|
|
2315
2317
|
orderMerchantRepaymentMoney: 'order_merchant_repayment_money',
|
|
2318
|
+
divideStartTermIndex: 'divide_start_term_index',
|
|
2316
2319
|
};
|
|
2317
2320
|
}
|
|
2318
2321
|
|
|
@@ -2321,6 +2324,7 @@ export class CreditUtilizationOrder extends $tea.Model {
|
|
|
2321
2324
|
orderId: 'string',
|
|
2322
2325
|
orderCreditLine: 'number',
|
|
2323
2326
|
orderMerchantRepaymentMoney: 'number',
|
|
2327
|
+
divideStartTermIndex: 'number',
|
|
2324
2328
|
};
|
|
2325
2329
|
}
|
|
2326
2330
|
|
|
@@ -4406,6 +4410,8 @@ export class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
|
4406
4410
|
utilizationAuthId?: string;
|
|
4407
4411
|
// 资产包id
|
|
4408
4412
|
assetPackageId?: string;
|
|
4413
|
+
// 商户授权链接
|
|
4414
|
+
merchantAuthUrl?: string;
|
|
4409
4415
|
static names(): { [key: string]: string } {
|
|
4410
4416
|
return {
|
|
4411
4417
|
reqMsgId: 'req_msg_id',
|
|
@@ -4414,6 +4420,7 @@ export class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
|
4414
4420
|
utilizationId: 'utilization_id',
|
|
4415
4421
|
utilizationAuthId: 'utilization_auth_id',
|
|
4416
4422
|
assetPackageId: 'asset_package_id',
|
|
4423
|
+
merchantAuthUrl: 'merchant_auth_url',
|
|
4417
4424
|
};
|
|
4418
4425
|
}
|
|
4419
4426
|
|
|
@@ -4425,6 +4432,7 @@ export class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
|
4425
4432
|
utilizationId: 'string',
|
|
4426
4433
|
utilizationAuthId: 'string',
|
|
4427
4434
|
assetPackageId: 'string',
|
|
4435
|
+
merchantAuthUrl: 'string',
|
|
4428
4436
|
};
|
|
4429
4437
|
}
|
|
4430
4438
|
|
|
@@ -4717,7 +4725,7 @@ export class AuthFundCreditgrantingRequest extends $tea.Model {
|
|
|
4717
4725
|
// 订单查询开始时间,格式为yyyy-MM-dd HH:mm:ss,需要在auth_begin_time之后。
|
|
4718
4726
|
orderQueryBegin: string;
|
|
4719
4727
|
// 订单查询结束时间,格式为yyyy-MM-dd HH:mm:ss,需要在auth_end_time之前
|
|
4720
|
-
orderQueryEnd
|
|
4728
|
+
orderQueryEnd?: string;
|
|
4721
4729
|
static names(): { [key: string]: string } {
|
|
4722
4730
|
return {
|
|
4723
4731
|
authToken: 'auth_token',
|
|
@@ -10764,6 +10772,8 @@ export class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
10764
10772
|
enrollmentStatus?: string;
|
|
10765
10773
|
// 入驻失败原因
|
|
10766
10774
|
failReason?: string;
|
|
10775
|
+
// 商户进件流程待办事件跳转链接
|
|
10776
|
+
pendingEventLink?: string;
|
|
10767
10777
|
static names(): { [key: string]: string } {
|
|
10768
10778
|
return {
|
|
10769
10779
|
reqMsgId: 'req_msg_id',
|
|
@@ -10771,6 +10781,7 @@ export class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
10771
10781
|
resultMsg: 'result_msg',
|
|
10772
10782
|
enrollmentStatus: 'enrollment_status',
|
|
10773
10783
|
failReason: 'fail_reason',
|
|
10784
|
+
pendingEventLink: 'pending_event_link',
|
|
10774
10785
|
};
|
|
10775
10786
|
}
|
|
10776
10787
|
|
|
@@ -10781,6 +10792,7 @@ export class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
10781
10792
|
resultMsg: 'string',
|
|
10782
10793
|
enrollmentStatus: 'string',
|
|
10783
10794
|
failReason: 'string',
|
|
10795
|
+
pendingEventLink: 'string',
|
|
10784
10796
|
};
|
|
10785
10797
|
}
|
|
10786
10798
|
|
|
@@ -15096,7 +15108,7 @@ export default class Client {
|
|
|
15096
15108
|
req_msg_id: AntchainUtil.getNonce(),
|
|
15097
15109
|
access_key: this._accessKeyId,
|
|
15098
15110
|
base_sdk_version: "TeaSDK-2.0",
|
|
15099
|
-
sdk_version: "1.14.
|
|
15111
|
+
sdk_version: "1.14.4",
|
|
15100
15112
|
_prod_code: "ATO",
|
|
15101
15113
|
_prod_channel: "undefined",
|
|
15102
15114
|
};
|