@antchain/riskplus 1.13.9 → 1.13.12
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 +20 -7
- package/dist/client.js +34 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +54 -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;
|
|
@@ -2690,6 +2708,7 @@ export declare class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Mod
|
|
|
2690
2708
|
customName: string;
|
|
2691
2709
|
cardNo: string;
|
|
2692
2710
|
idType?: string;
|
|
2711
|
+
fundCode?: string;
|
|
2693
2712
|
static names(): {
|
|
2694
2713
|
[key: string]: string;
|
|
2695
2714
|
};
|
|
@@ -3145,13 +3164,7 @@ export declare class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
3145
3164
|
reqMsgId?: string;
|
|
3146
3165
|
resultCode?: string;
|
|
3147
3166
|
resultMsg?: string;
|
|
3148
|
-
|
|
3149
|
-
contractNo?: string;
|
|
3150
|
-
contractName?: string;
|
|
3151
|
-
contractType?: string;
|
|
3152
|
-
customNo?: string;
|
|
3153
|
-
savePath?: string;
|
|
3154
|
-
contractAmount?: number;
|
|
3167
|
+
contractResponseList?: Contract[];
|
|
3155
3168
|
static names(): {
|
|
3156
3169
|
[key: string]: string;
|
|
3157
3170
|
};
|
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) {
|
|
@@ -4242,6 +4271,7 @@ class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
|
|
|
4242
4271
|
customName: 'custom_name',
|
|
4243
4272
|
cardNo: 'card_no',
|
|
4244
4273
|
idType: 'id_type',
|
|
4274
|
+
fundCode: 'fund_code',
|
|
4245
4275
|
};
|
|
4246
4276
|
}
|
|
4247
4277
|
static types() {
|
|
@@ -4253,6 +4283,7 @@ class ApplyDubbridgeCustomerAgreementsignRequest extends $tea.Model {
|
|
|
4253
4283
|
customName: 'string',
|
|
4254
4284
|
cardNo: 'string',
|
|
4255
4285
|
idType: 'string',
|
|
4286
|
+
fundCode: 'string',
|
|
4256
4287
|
};
|
|
4257
4288
|
}
|
|
4258
4289
|
}
|
|
@@ -4940,13 +4971,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4940
4971
|
reqMsgId: 'req_msg_id',
|
|
4941
4972
|
resultCode: 'result_code',
|
|
4942
4973
|
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',
|
|
4974
|
+
contractResponseList: 'contract_response_list',
|
|
4950
4975
|
};
|
|
4951
4976
|
}
|
|
4952
4977
|
static types() {
|
|
@@ -4954,13 +4979,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
4954
4979
|
reqMsgId: 'string',
|
|
4955
4980
|
resultCode: 'string',
|
|
4956
4981
|
resultMsg: 'string',
|
|
4957
|
-
|
|
4958
|
-
contractNo: 'string',
|
|
4959
|
-
contractName: 'string',
|
|
4960
|
-
contractType: 'string',
|
|
4961
|
-
customNo: 'string',
|
|
4962
|
-
savePath: 'string',
|
|
4963
|
-
contractAmount: 'number',
|
|
4982
|
+
contractResponseList: { 'type': 'array', 'itemType': Contract },
|
|
4964
4983
|
};
|
|
4965
4984
|
}
|
|
4966
4985
|
}
|
|
@@ -9051,7 +9070,7 @@ class Client {
|
|
|
9051
9070
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9052
9071
|
access_key: this._accessKeyId,
|
|
9053
9072
|
base_sdk_version: "TeaSDK-2.0",
|
|
9054
|
-
sdk_version: "1.13.
|
|
9073
|
+
sdk_version: "1.13.12",
|
|
9055
9074
|
};
|
|
9056
9075
|
if (!tea_util_1.default.empty(this._securityToken)) {
|
|
9057
9076
|
request_.query["security_token"] = this._securityToken;
|