@antchain/riskplus 1.12.17 → 1.12.19

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.12.17",
3
+ "version": "1.12.19",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -1748,39 +1748,6 @@ export class ZhimaQueryResp extends $tea.Model {
1748
1748
  }
1749
1749
  }
1750
1750
 
1751
- // 企业信息详情
1752
- export class BusinessDetail extends $tea.Model {
1753
- // 经营地址
1754
- operatingAddrJson: string;
1755
- // 社会统一信用代码
1756
- ucCode: string;
1757
- // 注册日期
1758
- registerDate: string;
1759
- // 详细地址
1760
- addressDetail: string;
1761
- static names(): { [key: string]: string } {
1762
- return {
1763
- operatingAddrJson: 'operating_addr_json',
1764
- ucCode: 'uc_code',
1765
- registerDate: 'register_date',
1766
- addressDetail: 'address_detail',
1767
- };
1768
- }
1769
-
1770
- static types(): { [key: string]: any } {
1771
- return {
1772
- operatingAddrJson: 'string',
1773
- ucCode: 'string',
1774
- registerDate: 'string',
1775
- addressDetail: 'string',
1776
- };
1777
- }
1778
-
1779
- constructor(map?: { [key: string]: any }) {
1780
- super(map);
1781
- }
1782
- }
1783
-
1784
1751
  // 机构平台通知响应结果
1785
1752
  export class DefinInnerChannelNotifyResult extends $tea.Model {
1786
1753
  // 请求编号
@@ -7665,14 +7632,14 @@ export class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model
7665
7632
  // 客户编号
7666
7633
  customNo: string;
7667
7634
  // 资金方编号
7668
- fundNo: string;
7635
+ fundCode: string;
7669
7636
  static names(): { [key: string]: string } {
7670
7637
  return {
7671
7638
  authToken: 'auth_token',
7672
7639
  productInstanceId: 'product_instance_id',
7673
7640
  orderNo: 'order_no',
7674
7641
  customNo: 'custom_no',
7675
- fundNo: 'fund_no',
7642
+ fundCode: 'fund_code',
7676
7643
  };
7677
7644
  }
7678
7645
 
@@ -7682,7 +7649,7 @@ export class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model
7682
7649
  productInstanceId: 'string',
7683
7650
  orderNo: 'string',
7684
7651
  customNo: 'string',
7685
- fundNo: 'string',
7652
+ fundCode: 'string',
7686
7653
  };
7687
7654
  }
7688
7655
 
@@ -7889,6 +7856,128 @@ export class UpdateDubbridgeFileResponse extends $tea.Model {
7889
7856
  }
7890
7857
  }
7891
7858
 
7859
+ export class QueryDubbridgeCreditUrlRequest extends $tea.Model {
7860
+ // OAuth模式下的授权token
7861
+ authToken?: string;
7862
+ productInstanceId?: string;
7863
+ static names(): { [key: string]: string } {
7864
+ return {
7865
+ authToken: 'auth_token',
7866
+ productInstanceId: 'product_instance_id',
7867
+ };
7868
+ }
7869
+
7870
+ static types(): { [key: string]: any } {
7871
+ return {
7872
+ authToken: 'string',
7873
+ productInstanceId: 'string',
7874
+ };
7875
+ }
7876
+
7877
+ constructor(map?: { [key: string]: any }) {
7878
+ super(map);
7879
+ }
7880
+ }
7881
+
7882
+ export class QueryDubbridgeCreditUrlResponse extends $tea.Model {
7883
+ // 请求唯一ID,用于链路跟踪和问题排查
7884
+ reqMsgId?: string;
7885
+ // 结果码,一般OK表示调用成功
7886
+ resultCode?: string;
7887
+ // 异常信息的文本描述
7888
+ resultMsg?: string;
7889
+ static names(): { [key: string]: string } {
7890
+ return {
7891
+ reqMsgId: 'req_msg_id',
7892
+ resultCode: 'result_code',
7893
+ resultMsg: 'result_msg',
7894
+ };
7895
+ }
7896
+
7897
+ static types(): { [key: string]: any } {
7898
+ return {
7899
+ reqMsgId: 'string',
7900
+ resultCode: 'string',
7901
+ resultMsg: 'string',
7902
+ };
7903
+ }
7904
+
7905
+ constructor(map?: { [key: string]: any }) {
7906
+ super(map);
7907
+ }
7908
+ }
7909
+
7910
+ export class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
7911
+ // OAuth模式下的授权token
7912
+ authToken?: string;
7913
+ productInstanceId?: string;
7914
+ // 查询字段(注册号,社会统一信用代码,公司名称)
7915
+ keyword: string;
7916
+ static names(): { [key: string]: string } {
7917
+ return {
7918
+ authToken: 'auth_token',
7919
+ productInstanceId: 'product_instance_id',
7920
+ keyword: 'keyword',
7921
+ };
7922
+ }
7923
+
7924
+ static types(): { [key: string]: any } {
7925
+ return {
7926
+ authToken: 'string',
7927
+ productInstanceId: 'string',
7928
+ keyword: 'string',
7929
+ };
7930
+ }
7931
+
7932
+ constructor(map?: { [key: string]: any }) {
7933
+ super(map);
7934
+ }
7935
+ }
7936
+
7937
+ export class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
7938
+ // 请求唯一ID,用于链路跟踪和问题排查
7939
+ reqMsgId?: string;
7940
+ // 结果码,一般OK表示调用成功
7941
+ resultCode?: string;
7942
+ // 异常信息的文本描述
7943
+ resultMsg?: string;
7944
+ // 社会统一信用代码
7945
+ ucCode?: string;
7946
+ // 注册日期
7947
+ registerDate?: string;
7948
+ // 经营地址
7949
+ operatingAddrJson?: string;
7950
+ // 详细地址
7951
+ addressDetail?: string;
7952
+ static names(): { [key: string]: string } {
7953
+ return {
7954
+ reqMsgId: 'req_msg_id',
7955
+ resultCode: 'result_code',
7956
+ resultMsg: 'result_msg',
7957
+ ucCode: 'uc_code',
7958
+ registerDate: 'register_date',
7959
+ operatingAddrJson: 'operating_addr_json',
7960
+ addressDetail: 'address_detail',
7961
+ };
7962
+ }
7963
+
7964
+ static types(): { [key: string]: any } {
7965
+ return {
7966
+ reqMsgId: 'string',
7967
+ resultCode: 'string',
7968
+ resultMsg: 'string',
7969
+ ucCode: 'string',
7970
+ registerDate: 'string',
7971
+ operatingAddrJson: 'string',
7972
+ addressDetail: 'string',
7973
+ };
7974
+ }
7975
+
7976
+ constructor(map?: { [key: string]: any }) {
7977
+ super(map);
7978
+ }
7979
+ }
7980
+
7892
7981
  export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
7893
7982
  // OAuth模式下的授权token
7894
7983
  authToken?: string;
@@ -12687,6 +12776,77 @@ export class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model {
12687
12776
  }
12688
12777
  }
12689
12778
 
12779
+ export class QueryUmktRtMarketingRequest extends $tea.Model {
12780
+ // OAuth模式下的授权token
12781
+ authToken?: string;
12782
+ productInstanceId?: string;
12783
+ // 场景策略id,决策重点
12784
+ sceneStrategyId: number;
12785
+ // 用户凭证模版
12786
+ queryTemplate: string;
12787
+ // 用户查询凭证
12788
+ customerKey: string;
12789
+ // 业务流水号
12790
+ bizSerialNo: string;
12791
+ static names(): { [key: string]: string } {
12792
+ return {
12793
+ authToken: 'auth_token',
12794
+ productInstanceId: 'product_instance_id',
12795
+ sceneStrategyId: 'scene_strategy_id',
12796
+ queryTemplate: 'query_template',
12797
+ customerKey: 'customer_key',
12798
+ bizSerialNo: 'biz_serial_no',
12799
+ };
12800
+ }
12801
+
12802
+ static types(): { [key: string]: any } {
12803
+ return {
12804
+ authToken: 'string',
12805
+ productInstanceId: 'string',
12806
+ sceneStrategyId: 'number',
12807
+ queryTemplate: 'string',
12808
+ customerKey: 'string',
12809
+ bizSerialNo: 'string',
12810
+ };
12811
+ }
12812
+
12813
+ constructor(map?: { [key: string]: any }) {
12814
+ super(map);
12815
+ }
12816
+ }
12817
+
12818
+ export class QueryUmktRtMarketingResponse extends $tea.Model {
12819
+ // 请求唯一ID,用于链路跟踪和问题排查
12820
+ reqMsgId?: string;
12821
+ // 结果码,一般OK表示调用成功
12822
+ resultCode?: string;
12823
+ // 异常信息的文本描述
12824
+ resultMsg?: string;
12825
+ // 实时单个营销结果
12826
+ queryResult?: CustomerUmktInfoModel;
12827
+ static names(): { [key: string]: string } {
12828
+ return {
12829
+ reqMsgId: 'req_msg_id',
12830
+ resultCode: 'result_code',
12831
+ resultMsg: 'result_msg',
12832
+ queryResult: 'query_result',
12833
+ };
12834
+ }
12835
+
12836
+ static types(): { [key: string]: any } {
12837
+ return {
12838
+ reqMsgId: 'string',
12839
+ resultCode: 'string',
12840
+ resultMsg: 'string',
12841
+ queryResult: CustomerUmktInfoModel,
12842
+ };
12843
+ }
12844
+
12845
+ constructor(map?: { [key: string]: any }) {
12846
+ super(map);
12847
+ }
12848
+ }
12849
+
12690
12850
  export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
12691
12851
  // OAuth模式下的授权token
12692
12852
  authToken?: string;
@@ -12888,7 +13048,7 @@ export default class Client {
12888
13048
  req_msg_id: AntchainUtil.getNonce(),
12889
13049
  access_key: this._accessKeyId,
12890
13050
  base_sdk_version: "TeaSDK-2.0",
12891
- sdk_version: "1.12.17",
13051
+ sdk_version: "1.12.19",
12892
13052
  _prod_code: "RISKPLUS",
12893
13053
  _prod_channel: "undefined",
12894
13054
  };
@@ -14040,6 +14200,44 @@ export default class Client {
14040
14200
  return $tea.cast<UpdateDubbridgeFileResponse>(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
14041
14201
  }
14042
14202
 
14203
+ /**
14204
+ * Description: 天枢系统获取授信H5地址
14205
+ * Summary: 天枢系统获取授信H5地址
14206
+ */
14207
+ async queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse> {
14208
+ let runtime = new $Util.RuntimeOptions({ });
14209
+ let headers : {[key: string ]: string} = { };
14210
+ return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
14211
+ }
14212
+
14213
+ /**
14214
+ * Description: 天枢系统获取授信H5地址
14215
+ * Summary: 天枢系统获取授信H5地址
14216
+ */
14217
+ async queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse> {
14218
+ Util.validateModel(request);
14219
+ return $tea.cast<QueryDubbridgeCreditUrlResponse>(await this.doRequest("1.0", "riskplus.dubbridge.credit.url.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCreditUrlResponse({}));
14220
+ }
14221
+
14222
+ /**
14223
+ * Description: 根据关键字从第三方查询企业详情信息
14224
+ * Summary: 天枢系统企业详情信息查询
14225
+ */
14226
+ async queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse> {
14227
+ let runtime = new $Util.RuntimeOptions({ });
14228
+ let headers : {[key: string ]: string} = { };
14229
+ return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
14230
+ }
14231
+
14232
+ /**
14233
+ * Description: 根据关键字从第三方查询企业详情信息
14234
+ * Summary: 天枢系统企业详情信息查询
14235
+ */
14236
+ async queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse> {
14237
+ Util.validateModel(request);
14238
+ return $tea.cast<QueryDubbridgeBusinessDetailResponse>(await this.doRequest("1.0", "riskplus.dubbridge.business.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeBusinessDetailResponse({}));
14239
+ }
14240
+
14043
14241
  /**
14044
14242
  * Description: 四要素认证首先调用此接口
14045
14243
  * Summary: 芝麻四要素接口
@@ -15281,6 +15479,25 @@ export default class Client {
15281
15479
  return $tea.cast<CancelUmktDataaccessOfflinetaskResponse>(await this.doRequest("1.0", "riskplus.umkt.dataaccess.offlinetask.cancel", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CancelUmktDataaccessOfflinetaskResponse({}));
15282
15480
  }
15283
15481
 
15482
+ /**
15483
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15484
+ * Summary: 营销盾实时单一凭证营销接口
15485
+ */
15486
+ async queryUmktRtMarketing(request: QueryUmktRtMarketingRequest): Promise<QueryUmktRtMarketingResponse> {
15487
+ let runtime = new $Util.RuntimeOptions({ });
15488
+ let headers : {[key: string ]: string} = { };
15489
+ return await this.queryUmktRtMarketingEx(request, headers, runtime);
15490
+ }
15491
+
15492
+ /**
15493
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15494
+ * Summary: 营销盾实时单一凭证营销接口
15495
+ */
15496
+ async queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse> {
15497
+ Util.validateModel(request);
15498
+ return $tea.cast<QueryUmktRtMarketingResponse>(await this.doRequest("1.0", "riskplus.umkt.rt.marketing.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktRtMarketingResponse({}));
15499
+ }
15500
+
15284
15501
  /**
15285
15502
  * Description: 创建HTTP PUT提交的文件上传
15286
15503
  * Summary: 文件上传创建