@antchain/riskplus 1.13.7 → 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 +21 -7
- package/dist/client.js +38 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +60 -29
package/dist/client.d.ts
CHANGED
|
@@ -355,6 +355,7 @@ export declare class PersonalInfo extends $tea.Model {
|
|
|
355
355
|
address?: string;
|
|
356
356
|
sex?: string;
|
|
357
357
|
nation?: string;
|
|
358
|
+
maritalStatus?: string;
|
|
358
359
|
static names(): {
|
|
359
360
|
[key: string]: string;
|
|
360
361
|
};
|
|
@@ -862,6 +863,24 @@ export declare class SecurityResultInfos extends $tea.Model {
|
|
|
862
863
|
[key: string]: any;
|
|
863
864
|
});
|
|
864
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
|
+
}
|
|
865
884
|
export declare class RtopAgeDistribution extends $tea.Model {
|
|
866
885
|
age: string;
|
|
867
886
|
count: number;
|
|
@@ -3129,6 +3148,7 @@ export declare class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
3129
3148
|
productInstanceId?: string;
|
|
3130
3149
|
originalOrderNo: string;
|
|
3131
3150
|
customerNo: string;
|
|
3151
|
+
contractType?: string;
|
|
3132
3152
|
static names(): {
|
|
3133
3153
|
[key: string]: string;
|
|
3134
3154
|
};
|
|
@@ -3143,13 +3163,7 @@ export declare class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
3143
3163
|
reqMsgId?: string;
|
|
3144
3164
|
resultCode?: string;
|
|
3145
3165
|
resultMsg?: string;
|
|
3146
|
-
|
|
3147
|
-
contractNo?: string;
|
|
3148
|
-
contractName?: string;
|
|
3149
|
-
contractType?: string;
|
|
3150
|
-
customNo?: string;
|
|
3151
|
-
savePath?: string;
|
|
3152
|
-
contractAmount?: number;
|
|
3166
|
+
contractResponseList?: Contract[];
|
|
3153
3167
|
static names(): {
|
|
3154
3168
|
[key: string]: string;
|
|
3155
3169
|
};
|
package/dist/client.js
CHANGED
|
@@ -568,6 +568,7 @@ class PersonalInfo extends $tea.Model {
|
|
|
568
568
|
address: 'address',
|
|
569
569
|
sex: 'sex',
|
|
570
570
|
nation: 'nation',
|
|
571
|
+
maritalStatus: 'marital_status',
|
|
571
572
|
};
|
|
572
573
|
}
|
|
573
574
|
static types() {
|
|
@@ -586,6 +587,7 @@ class PersonalInfo extends $tea.Model {
|
|
|
586
587
|
address: 'string',
|
|
587
588
|
sex: 'string',
|
|
588
589
|
nation: 'string',
|
|
590
|
+
maritalStatus: 'string',
|
|
589
591
|
};
|
|
590
592
|
}
|
|
591
593
|
}
|
|
@@ -1397,6 +1399,35 @@ class SecurityResultInfos extends $tea.Model {
|
|
|
1397
1399
|
}
|
|
1398
1400
|
}
|
|
1399
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;
|
|
1400
1431
|
// 企业影响人数年龄分布统计
|
|
1401
1432
|
class RtopAgeDistribution extends $tea.Model {
|
|
1402
1433
|
constructor(map) {
|
|
@@ -4915,6 +4946,7 @@ class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
4915
4946
|
productInstanceId: 'product_instance_id',
|
|
4916
4947
|
originalOrderNo: 'original_order_no',
|
|
4917
4948
|
customerNo: 'customer_no',
|
|
4949
|
+
contractType: 'contract_type',
|
|
4918
4950
|
};
|
|
4919
4951
|
}
|
|
4920
4952
|
static types() {
|
|
@@ -4923,6 +4955,7 @@ class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
4923
4955
|
productInstanceId: 'string',
|
|
4924
4956
|
originalOrderNo: 'string',
|
|
4925
4957
|
customerNo: 'string',
|
|
4958
|
+
contractType: 'string',
|
|
4926
4959
|
};
|
|
4927
4960
|
}
|
|
4928
4961
|
}
|
|
@@ -4936,13 +4969,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4936
4969
|
reqMsgId: 'req_msg_id',
|
|
4937
4970
|
resultCode: 'result_code',
|
|
4938
4971
|
resultMsg: 'result_msg',
|
|
4939
|
-
|
|
4940
|
-
contractNo: 'contract_no',
|
|
4941
|
-
contractName: 'contract_name',
|
|
4942
|
-
contractType: 'contract_type',
|
|
4943
|
-
customNo: 'custom_no',
|
|
4944
|
-
savePath: 'save_path',
|
|
4945
|
-
contractAmount: 'contract_amount',
|
|
4972
|
+
contractResponseList: 'contract_response_list',
|
|
4946
4973
|
};
|
|
4947
4974
|
}
|
|
4948
4975
|
static types() {
|
|
@@ -4950,13 +4977,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4950
4977
|
reqMsgId: 'string',
|
|
4951
4978
|
resultCode: 'string',
|
|
4952
4979
|
resultMsg: 'string',
|
|
4953
|
-
|
|
4954
|
-
contractNo: 'string',
|
|
4955
|
-
contractName: 'string',
|
|
4956
|
-
contractType: 'string',
|
|
4957
|
-
customNo: 'string',
|
|
4958
|
-
savePath: 'string',
|
|
4959
|
-
contractAmount: 'number',
|
|
4980
|
+
contractResponseList: { 'type': 'array', 'itemType': Contract },
|
|
4960
4981
|
};
|
|
4961
4982
|
}
|
|
4962
4983
|
}
|
|
@@ -9047,7 +9068,9 @@ class Client {
|
|
|
9047
9068
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9048
9069
|
access_key: this._accessKeyId,
|
|
9049
9070
|
base_sdk_version: "TeaSDK-2.0",
|
|
9050
|
-
sdk_version: "1.13.
|
|
9071
|
+
sdk_version: "1.13.11",
|
|
9072
|
+
_prod_code: "RISKPLUS",
|
|
9073
|
+
_prod_channel: "undefined",
|
|
9051
9074
|
};
|
|
9052
9075
|
if (!tea_util_1.default.empty(this._securityToken)) {
|
|
9053
9076
|
request_.query["security_token"] = this._securityToken;
|