@antchain/ato 1.14.1 → 1.14.2
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 +1 -0
- package/dist/client.js +3 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +5 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4760,11 +4760,14 @@ export class AuthFundCreditgrantingResponse extends $tea.Model {
|
|
|
4760
4760
|
resultCode?: string;
|
|
4761
4761
|
// 异常信息的文本描述
|
|
4762
4762
|
resultMsg?: string;
|
|
4763
|
+
// 商家授权链接
|
|
4764
|
+
merchantAuthUrl?: string;
|
|
4763
4765
|
static names(): { [key: string]: string } {
|
|
4764
4766
|
return {
|
|
4765
4767
|
reqMsgId: 'req_msg_id',
|
|
4766
4768
|
resultCode: 'result_code',
|
|
4767
4769
|
resultMsg: 'result_msg',
|
|
4770
|
+
merchantAuthUrl: 'merchant_auth_url',
|
|
4768
4771
|
};
|
|
4769
4772
|
}
|
|
4770
4773
|
|
|
@@ -4773,6 +4776,7 @@ export class AuthFundCreditgrantingResponse extends $tea.Model {
|
|
|
4773
4776
|
reqMsgId: 'string',
|
|
4774
4777
|
resultCode: 'string',
|
|
4775
4778
|
resultMsg: 'string',
|
|
4779
|
+
merchantAuthUrl: 'string',
|
|
4776
4780
|
};
|
|
4777
4781
|
}
|
|
4778
4782
|
|
|
@@ -15092,7 +15096,7 @@ export default class Client {
|
|
|
15092
15096
|
req_msg_id: AntchainUtil.getNonce(),
|
|
15093
15097
|
access_key: this._accessKeyId,
|
|
15094
15098
|
base_sdk_version: "TeaSDK-2.0",
|
|
15095
|
-
sdk_version: "1.14.
|
|
15099
|
+
sdk_version: "1.14.2",
|
|
15096
15100
|
_prod_code: "ATO",
|
|
15097
15101
|
_prod_channel: "undefined",
|
|
15098
15102
|
};
|