@antchain/ato 1.14.1 → 1.14.3
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/dist/client.d.ts
CHANGED
|
@@ -961,6 +961,7 @@ export declare class CreditUtilizationOrder extends $tea.Model {
|
|
|
961
961
|
orderId: string;
|
|
962
962
|
orderCreditLine: number;
|
|
963
963
|
orderMerchantRepaymentMoney: number;
|
|
964
|
+
divideStartTermIndex: number;
|
|
964
965
|
static names(): {
|
|
965
966
|
[key: string]: string;
|
|
966
967
|
};
|
|
@@ -2014,7 +2015,7 @@ export declare class AuthFundCreditgrantingRequest extends $tea.Model {
|
|
|
2014
2015
|
authBeginTime: string;
|
|
2015
2016
|
authEndTime: string;
|
|
2016
2017
|
orderQueryBegin: string;
|
|
2017
|
-
orderQueryEnd
|
|
2018
|
+
orderQueryEnd?: string;
|
|
2018
2019
|
static names(): {
|
|
2019
2020
|
[key: string]: string;
|
|
2020
2021
|
};
|
|
@@ -2029,6 +2030,7 @@ export declare class AuthFundCreditgrantingResponse extends $tea.Model {
|
|
|
2029
2030
|
reqMsgId?: string;
|
|
2030
2031
|
resultCode?: string;
|
|
2031
2032
|
resultMsg?: string;
|
|
2033
|
+
merchantAuthUrl?: string;
|
|
2032
2034
|
static names(): {
|
|
2033
2035
|
[key: string]: string;
|
|
2034
2036
|
};
|
|
@@ -4651,6 +4653,7 @@ export declare class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
4651
4653
|
resultMsg?: string;
|
|
4652
4654
|
enrollmentStatus?: string;
|
|
4653
4655
|
failReason?: string;
|
|
4656
|
+
pendingEventLink?: string;
|
|
4654
4657
|
static names(): {
|
|
4655
4658
|
[key: string]: string;
|
|
4656
4659
|
};
|
package/dist/client.js
CHANGED
|
@@ -1539,6 +1539,7 @@ class CreditUtilizationOrder extends $tea.Model {
|
|
|
1539
1539
|
orderId: 'order_id',
|
|
1540
1540
|
orderCreditLine: 'order_credit_line',
|
|
1541
1541
|
orderMerchantRepaymentMoney: 'order_merchant_repayment_money',
|
|
1542
|
+
divideStartTermIndex: 'divide_start_term_index',
|
|
1542
1543
|
};
|
|
1543
1544
|
}
|
|
1544
1545
|
static types() {
|
|
@@ -1546,6 +1547,7 @@ class CreditUtilizationOrder extends $tea.Model {
|
|
|
1546
1547
|
orderId: 'string',
|
|
1547
1548
|
orderCreditLine: 'number',
|
|
1548
1549
|
orderMerchantRepaymentMoney: 'number',
|
|
1550
|
+
divideStartTermIndex: 'number',
|
|
1549
1551
|
};
|
|
1550
1552
|
}
|
|
1551
1553
|
}
|
|
@@ -3158,6 +3160,7 @@ class AuthFundCreditgrantingResponse extends $tea.Model {
|
|
|
3158
3160
|
reqMsgId: 'req_msg_id',
|
|
3159
3161
|
resultCode: 'result_code',
|
|
3160
3162
|
resultMsg: 'result_msg',
|
|
3163
|
+
merchantAuthUrl: 'merchant_auth_url',
|
|
3161
3164
|
};
|
|
3162
3165
|
}
|
|
3163
3166
|
static types() {
|
|
@@ -3165,6 +3168,7 @@ class AuthFundCreditgrantingResponse extends $tea.Model {
|
|
|
3165
3168
|
reqMsgId: 'string',
|
|
3166
3169
|
resultCode: 'string',
|
|
3167
3170
|
resultMsg: 'string',
|
|
3171
|
+
merchantAuthUrl: 'string',
|
|
3168
3172
|
};
|
|
3169
3173
|
}
|
|
3170
3174
|
}
|
|
@@ -7120,6 +7124,7 @@ class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
7120
7124
|
resultMsg: 'result_msg',
|
|
7121
7125
|
enrollmentStatus: 'enrollment_status',
|
|
7122
7126
|
failReason: 'fail_reason',
|
|
7127
|
+
pendingEventLink: 'pending_event_link',
|
|
7123
7128
|
};
|
|
7124
7129
|
}
|
|
7125
7130
|
static types() {
|
|
@@ -7129,6 +7134,7 @@ class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
7129
7134
|
resultMsg: 'string',
|
|
7130
7135
|
enrollmentStatus: 'string',
|
|
7131
7136
|
failReason: 'string',
|
|
7137
|
+
pendingEventLink: 'string',
|
|
7132
7138
|
};
|
|
7133
7139
|
}
|
|
7134
7140
|
}
|
|
@@ -9923,7 +9929,7 @@ class Client {
|
|
|
9923
9929
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9924
9930
|
access_key: this._accessKeyId,
|
|
9925
9931
|
base_sdk_version: "TeaSDK-2.0",
|
|
9926
|
-
sdk_version: "1.14.
|
|
9932
|
+
sdk_version: "1.14.3",
|
|
9927
9933
|
_prod_code: "ATO",
|
|
9928
9934
|
_prod_channel: "undefined",
|
|
9929
9935
|
};
|