@antchain/riskplus 1.13.9 → 1.13.11
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 +19 -7
- package/dist/client.js +34 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +52 -29
package/dist/client.d.ts
CHANGED
|
@@ -863,6 +863,24 @@ export declare class SecurityResultInfos extends $tea.Model {
|
|
|
863
863
|
[key: string]: any;
|
|
864
864
|
});
|
|
865
865
|
}
|
|
866
|
+
export declare class Contract extends $tea.Model {
|
|
867
|
+
relationNo: string;
|
|
868
|
+
contractNo: string;
|
|
869
|
+
contractName: string;
|
|
870
|
+
contractType: string;
|
|
871
|
+
customNo: string;
|
|
872
|
+
savePath: string;
|
|
873
|
+
contractAmount: number;
|
|
874
|
+
static names(): {
|
|
875
|
+
[key: string]: string;
|
|
876
|
+
};
|
|
877
|
+
static types(): {
|
|
878
|
+
[key: string]: any;
|
|
879
|
+
};
|
|
880
|
+
constructor(map?: {
|
|
881
|
+
[key: string]: any;
|
|
882
|
+
});
|
|
883
|
+
}
|
|
866
884
|
export declare class RtopAgeDistribution extends $tea.Model {
|
|
867
885
|
age: string;
|
|
868
886
|
count: number;
|
|
@@ -3145,13 +3163,7 @@ export declare class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
3145
3163
|
reqMsgId?: string;
|
|
3146
3164
|
resultCode?: string;
|
|
3147
3165
|
resultMsg?: string;
|
|
3148
|
-
|
|
3149
|
-
contractNo?: string;
|
|
3150
|
-
contractName?: string;
|
|
3151
|
-
contractType?: string;
|
|
3152
|
-
customNo?: string;
|
|
3153
|
-
savePath?: string;
|
|
3154
|
-
contractAmount?: number;
|
|
3166
|
+
contractResponseList?: Contract[];
|
|
3155
3167
|
static names(): {
|
|
3156
3168
|
[key: string]: string;
|
|
3157
3169
|
};
|
package/dist/client.js
CHANGED
|
@@ -1399,6 +1399,35 @@ class SecurityResultInfos extends $tea.Model {
|
|
|
1399
1399
|
}
|
|
1400
1400
|
}
|
|
1401
1401
|
exports.SecurityResultInfos = SecurityResultInfos;
|
|
1402
|
+
// 天枢合同
|
|
1403
|
+
class Contract extends $tea.Model {
|
|
1404
|
+
constructor(map) {
|
|
1405
|
+
super(map);
|
|
1406
|
+
}
|
|
1407
|
+
static names() {
|
|
1408
|
+
return {
|
|
1409
|
+
relationNo: 'relation_no',
|
|
1410
|
+
contractNo: 'contract_no',
|
|
1411
|
+
contractName: 'contract_name',
|
|
1412
|
+
contractType: 'contract_type',
|
|
1413
|
+
customNo: 'custom_no',
|
|
1414
|
+
savePath: 'save_path',
|
|
1415
|
+
contractAmount: 'contract_amount',
|
|
1416
|
+
};
|
|
1417
|
+
}
|
|
1418
|
+
static types() {
|
|
1419
|
+
return {
|
|
1420
|
+
relationNo: 'string',
|
|
1421
|
+
contractNo: 'string',
|
|
1422
|
+
contractName: 'string',
|
|
1423
|
+
contractType: 'string',
|
|
1424
|
+
customNo: 'string',
|
|
1425
|
+
savePath: 'string',
|
|
1426
|
+
contractAmount: 'number',
|
|
1427
|
+
};
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
exports.Contract = Contract;
|
|
1402
1431
|
// 企业影响人数年龄分布统计
|
|
1403
1432
|
class RtopAgeDistribution extends $tea.Model {
|
|
1404
1433
|
constructor(map) {
|
|
@@ -4940,13 +4969,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4940
4969
|
reqMsgId: 'req_msg_id',
|
|
4941
4970
|
resultCode: 'result_code',
|
|
4942
4971
|
resultMsg: 'result_msg',
|
|
4943
|
-
|
|
4944
|
-
contractNo: 'contract_no',
|
|
4945
|
-
contractName: 'contract_name',
|
|
4946
|
-
contractType: 'contract_type',
|
|
4947
|
-
customNo: 'custom_no',
|
|
4948
|
-
savePath: 'save_path',
|
|
4949
|
-
contractAmount: 'contract_amount',
|
|
4972
|
+
contractResponseList: 'contract_response_list',
|
|
4950
4973
|
};
|
|
4951
4974
|
}
|
|
4952
4975
|
static types() {
|
|
@@ -4954,13 +4977,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4954
4977
|
reqMsgId: 'string',
|
|
4955
4978
|
resultCode: 'string',
|
|
4956
4979
|
resultMsg: 'string',
|
|
4957
|
-
|
|
4958
|
-
contractNo: 'string',
|
|
4959
|
-
contractName: 'string',
|
|
4960
|
-
contractType: 'string',
|
|
4961
|
-
customNo: 'string',
|
|
4962
|
-
savePath: 'string',
|
|
4963
|
-
contractAmount: 'number',
|
|
4980
|
+
contractResponseList: { 'type': 'array', 'itemType': Contract },
|
|
4964
4981
|
};
|
|
4965
4982
|
}
|
|
4966
4983
|
}
|
|
@@ -9051,7 +9068,9 @@ class Client {
|
|
|
9051
9068
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9052
9069
|
access_key: this._accessKeyId,
|
|
9053
9070
|
base_sdk_version: "TeaSDK-2.0",
|
|
9054
|
-
sdk_version: "1.13.
|
|
9071
|
+
sdk_version: "1.13.11",
|
|
9072
|
+
_prod_code: "RISKPLUS",
|
|
9073
|
+
_prod_channel: "undefined",
|
|
9055
9074
|
};
|
|
9056
9075
|
if (!tea_util_1.default.empty(this._securityToken)) {
|
|
9057
9076
|
request_.query["security_token"] = this._securityToken;
|