@antchain/riskplus 1.26.6 → 1.26.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.26.6",
3
+ "version": "1.26.8",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -4404,6 +4404,10 @@ export class StoreInfo extends $tea.Model {
4404
4404
  // 门店-详细地址,
4405
4405
  // 望江路万达广场一层001号
4406
4406
  address: string;
4407
+ // 门店-经度
4408
+ longitude?: string;
4409
+ // 门店-纬度
4410
+ latitude?: string;
4407
4411
  // 营业执照-开始时间,yyyy-MM-dd
4408
4412
  storeStartDate: string;
4409
4413
  // 营业执照-结束时间,yyyy-MM-dd,长期上送:9999-12-31
@@ -4421,6 +4425,8 @@ export class StoreInfo extends $tea.Model {
4421
4425
  effectiveDate: string;
4422
4426
  // 对公-开户行名称
4423
4427
  bankName?: string;
4428
+ // 对公-开户行编码
4429
+ bankCode?: string;
4424
4430
  // 对公-支行名称
4425
4431
  branchName?: string;
4426
4432
  // 对公-联行号
@@ -4437,6 +4443,8 @@ export class StoreInfo extends $tea.Model {
4437
4443
  payeeBankCard?: string;
4438
4444
  // 对私-银行名称
4439
4445
  payeeBankName?: string;
4446
+ // 对私-银行编码
4447
+ payeeBankCode?: string;
4440
4448
  // 蚂蚁数科入驻账号
4441
4449
  loginTenant?: string;
4442
4450
  // 入驻时间
@@ -4461,6 +4469,8 @@ export class StoreInfo extends $tea.Model {
4461
4469
  district: 'district',
4462
4470
  districtCode: 'district_code',
4463
4471
  address: 'address',
4472
+ longitude: 'longitude',
4473
+ latitude: 'latitude',
4464
4474
  storeStartDate: 'store_start_date',
4465
4475
  storeEndDate: 'store_end_date',
4466
4476
  storeType: 'store_type',
@@ -4469,6 +4479,7 @@ export class StoreInfo extends $tea.Model {
4469
4479
  legalPersonMobile: 'legal_person_mobile',
4470
4480
  effectiveDate: 'effective_date',
4471
4481
  bankName: 'bank_name',
4482
+ bankCode: 'bank_code',
4472
4483
  branchName: 'branch_name',
4473
4484
  cnapsCode: 'cnaps_code',
4474
4485
  accountName: 'account_name',
@@ -4477,6 +4488,7 @@ export class StoreInfo extends $tea.Model {
4477
4488
  bankCity: 'bank_city',
4478
4489
  payeeBankCard: 'payee_bank_card',
4479
4490
  payeeBankName: 'payee_bank_name',
4491
+ payeeBankCode: 'payee_bank_code',
4480
4492
  loginTenant: 'login_tenant',
4481
4493
  loginDate: 'login_date',
4482
4494
  alipayLogonId: 'alipay_logon_id',
@@ -4499,6 +4511,8 @@ export class StoreInfo extends $tea.Model {
4499
4511
  district: 'string',
4500
4512
  districtCode: 'string',
4501
4513
  address: 'string',
4514
+ longitude: 'string',
4515
+ latitude: 'string',
4502
4516
  storeStartDate: 'string',
4503
4517
  storeEndDate: 'string',
4504
4518
  storeType: 'string',
@@ -4507,6 +4521,7 @@ export class StoreInfo extends $tea.Model {
4507
4521
  legalPersonMobile: 'string',
4508
4522
  effectiveDate: 'string',
4509
4523
  bankName: 'string',
4524
+ bankCode: 'string',
4510
4525
  branchName: 'string',
4511
4526
  cnapsCode: 'string',
4512
4527
  accountName: 'string',
@@ -4515,6 +4530,7 @@ export class StoreInfo extends $tea.Model {
4515
4530
  bankCity: 'string',
4516
4531
  payeeBankCard: 'string',
4517
4532
  payeeBankName: 'string',
4533
+ payeeBankCode: 'string',
4518
4534
  loginTenant: 'string',
4519
4535
  loginDate: 'string',
4520
4536
  alipayLogonId: 'string',
@@ -5048,6 +5064,12 @@ export class VehicleInfo extends $tea.Model {
5048
5064
  downPayment?: string;
5049
5065
  // pad设备提供
5050
5066
  wifiMac?: string;
5067
+ // pad-经度
5068
+ longitude?: string;
5069
+ // pad-纬度
5070
+ latitude?: string;
5071
+ // 车辆类型(摩托车):1-新车、0-二手车
5072
+ vehicleType?: string;
5051
5073
  // SN码/中控号(授信后放款前)
5052
5074
  sn?: string;
5053
5075
  // 车驾号(授信后放款前)
@@ -5085,6 +5107,9 @@ export class VehicleInfo extends $tea.Model {
5085
5107
  installmentAmount: 'installment_amount',
5086
5108
  downPayment: 'down_payment',
5087
5109
  wifiMac: 'wifi_mac',
5110
+ longitude: 'longitude',
5111
+ latitude: 'latitude',
5112
+ vehicleType: 'vehicle_type',
5088
5113
  sn: 'sn',
5089
5114
  frameNo: 'frame_no',
5090
5115
  sku: 'sku',
@@ -5110,6 +5135,9 @@ export class VehicleInfo extends $tea.Model {
5110
5135
  installmentAmount: 'string',
5111
5136
  downPayment: 'string',
5112
5137
  wifiMac: 'string',
5138
+ longitude: 'string',
5139
+ latitude: 'string',
5140
+ vehicleType: 'string',
5113
5141
  sn: 'string',
5114
5142
  frameNo: 'string',
5115
5143
  sku: 'string',
@@ -6144,6 +6172,77 @@ export class QueryBenefithubReportInformationResponse extends $tea.Model {
6144
6172
  }
6145
6173
  }
6146
6174
 
6175
+ export class QueryBenefithubReportEffectiveRequest extends $tea.Model {
6176
+ // OAuth模式下的授权token
6177
+ authToken?: string;
6178
+ productInstanceId?: string;
6179
+ // 用户唯一id
6180
+ uuid: string;
6181
+ // 平台code
6182
+ platformCode: string;
6183
+ static names(): { [key: string]: string } {
6184
+ return {
6185
+ authToken: 'auth_token',
6186
+ productInstanceId: 'product_instance_id',
6187
+ uuid: 'uuid',
6188
+ platformCode: 'platform_code',
6189
+ };
6190
+ }
6191
+
6192
+ static types(): { [key: string]: any } {
6193
+ return {
6194
+ authToken: 'string',
6195
+ productInstanceId: 'string',
6196
+ uuid: 'string',
6197
+ platformCode: 'string',
6198
+ };
6199
+ }
6200
+
6201
+ constructor(map?: { [key: string]: any }) {
6202
+ super(map);
6203
+ }
6204
+ }
6205
+
6206
+ export class QueryBenefithubReportEffectiveResponse extends $tea.Model {
6207
+ // 请求唯一ID,用于链路跟踪和问题排查
6208
+ reqMsgId?: string;
6209
+ // 结果码,一般OK表示调用成功
6210
+ resultCode?: string;
6211
+ // 异常信息的文本描述
6212
+ resultMsg?: string;
6213
+ // 是否存在有效订单0无1有
6214
+ reportValid?: string;
6215
+ // 报告生成时间
6216
+ reportValidFrom?: string;
6217
+ // 报告过期时间
6218
+ reportValidTo?: string;
6219
+ static names(): { [key: string]: string } {
6220
+ return {
6221
+ reqMsgId: 'req_msg_id',
6222
+ resultCode: 'result_code',
6223
+ resultMsg: 'result_msg',
6224
+ reportValid: 'report_valid',
6225
+ reportValidFrom: 'report_valid_from',
6226
+ reportValidTo: 'report_valid_to',
6227
+ };
6228
+ }
6229
+
6230
+ static types(): { [key: string]: any } {
6231
+ return {
6232
+ reqMsgId: 'string',
6233
+ resultCode: 'string',
6234
+ resultMsg: 'string',
6235
+ reportValid: 'string',
6236
+ reportValidFrom: 'string',
6237
+ reportValidTo: 'string',
6238
+ };
6239
+ }
6240
+
6241
+ constructor(map?: { [key: string]: any }) {
6242
+ super(map);
6243
+ }
6244
+ }
6245
+
6147
6246
  export class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
6148
6247
  // OAuth模式下的授权token
6149
6248
  authToken?: string;
@@ -24907,6 +25006,8 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
24907
25006
  resultDate?: string;
24908
25007
  // 离线圈客任务id
24909
25008
  taskId?: number;
25009
+ // 执行批次,yyyyMMddHHmm格式
25010
+ execBatch?: string;
24910
25011
  static names(): { [key: string]: string } {
24911
25012
  return {
24912
25013
  authToken: 'auth_token',
@@ -24915,6 +25016,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
24915
25016
  decisionPlanId: 'decision_plan_id',
24916
25017
  resultDate: 'result_date',
24917
25018
  taskId: 'task_id',
25019
+ execBatch: 'exec_batch',
24918
25020
  };
24919
25021
  }
24920
25022
 
@@ -24926,6 +25028,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
24926
25028
  decisionPlanId: 'number',
24927
25029
  resultDate: 'string',
24928
25030
  taskId: 'number',
25031
+ execBatch: 'string',
24929
25032
  };
24930
25033
  }
24931
25034
 
@@ -25374,7 +25477,7 @@ export default class Client {
25374
25477
  req_msg_id: AntchainUtil.getNonce(),
25375
25478
  access_key: this._accessKeyId,
25376
25479
  base_sdk_version: "TeaSDK-2.0",
25377
- sdk_version: "1.26.6",
25480
+ sdk_version: "1.26.8",
25378
25481
  _prod_code: "RISKPLUS",
25379
25482
  _prod_channel: "undefined",
25380
25483
  };
@@ -25498,6 +25601,25 @@ export default class Client {
25498
25601
  return $tea.cast<QueryBenefithubReportInformationResponse>(await this.doRequest("1.0", "riskplus.benefithub.report.information.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBenefithubReportInformationResponse({}));
25499
25602
  }
25500
25603
 
25604
+ /**
25605
+ * Description: 渠道查询报告有效期
25606
+ * Summary: 渠道查询报告有效期
25607
+ */
25608
+ async queryBenefithubReportEffective(request: QueryBenefithubReportEffectiveRequest): Promise<QueryBenefithubReportEffectiveResponse> {
25609
+ let runtime = new $Util.RuntimeOptions({ });
25610
+ let headers : {[key: string ]: string} = { };
25611
+ return await this.queryBenefithubReportEffectiveEx(request, headers, runtime);
25612
+ }
25613
+
25614
+ /**
25615
+ * Description: 渠道查询报告有效期
25616
+ * Summary: 渠道查询报告有效期
25617
+ */
25618
+ async queryBenefithubReportEffectiveEx(request: QueryBenefithubReportEffectiveRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryBenefithubReportEffectiveResponse> {
25619
+ Util.validateModel(request);
25620
+ return $tea.cast<QueryBenefithubReportEffectiveResponse>(await this.doRequest("1.0", "riskplus.benefithub.report.effective.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBenefithubReportEffectiveResponse({}));
25621
+ }
25622
+
25501
25623
  /**
25502
25624
  * Description: 信护盾产品批量查询
25503
25625
  * Summary: 信护盾产品批量查询