@antchain/riskplus 1.26.4 → 1.26.5
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 +3 -0
- package/dist/client.js +7 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -5889,11 +5889,20 @@ export class QueryBenefithubReportInformationRequest extends $tea.Model {
|
|
|
5889
5889
|
productInstanceId?: string;
|
|
5890
5890
|
// 订单号
|
|
5891
5891
|
orderNo: string;
|
|
5892
|
+
// 业务分配的平台code,8位纯大写字母code
|
|
5893
|
+
platformCode: string;
|
|
5894
|
+
// 产品码
|
|
5895
|
+
productCode: string;
|
|
5896
|
+
// 平台code、用户唯一ID 组合出全局唯一id
|
|
5897
|
+
userUniqueId: string;
|
|
5892
5898
|
static names(): { [key: string]: string } {
|
|
5893
5899
|
return {
|
|
5894
5900
|
authToken: 'auth_token',
|
|
5895
5901
|
productInstanceId: 'product_instance_id',
|
|
5896
5902
|
orderNo: 'order_no',
|
|
5903
|
+
platformCode: 'platform_code',
|
|
5904
|
+
productCode: 'product_code',
|
|
5905
|
+
userUniqueId: 'user_unique_id',
|
|
5897
5906
|
};
|
|
5898
5907
|
}
|
|
5899
5908
|
|
|
@@ -5902,6 +5911,9 @@ export class QueryBenefithubReportInformationRequest extends $tea.Model {
|
|
|
5902
5911
|
authToken: 'string',
|
|
5903
5912
|
productInstanceId: 'string',
|
|
5904
5913
|
orderNo: 'string',
|
|
5914
|
+
platformCode: 'string',
|
|
5915
|
+
productCode: 'string',
|
|
5916
|
+
userUniqueId: 'string',
|
|
5905
5917
|
};
|
|
5906
5918
|
}
|
|
5907
5919
|
|
|
@@ -24910,7 +24922,7 @@ export default class Client {
|
|
|
24910
24922
|
req_msg_id: AntchainUtil.getNonce(),
|
|
24911
24923
|
access_key: this._accessKeyId,
|
|
24912
24924
|
base_sdk_version: "TeaSDK-2.0",
|
|
24913
|
-
sdk_version: "1.26.
|
|
24925
|
+
sdk_version: "1.26.5",
|
|
24914
24926
|
_prod_code: "RISKPLUS",
|
|
24915
24927
|
_prod_channel: "undefined",
|
|
24916
24928
|
};
|