@antchain/riskplus 1.12.16 → 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/dist/client.d.ts CHANGED
@@ -937,6 +937,23 @@ export declare class RpcommonResp extends $tea.Model {
937
937
  [key: string]: any;
938
938
  });
939
939
  }
940
+ export declare class CompanyItems extends $tea.Model {
941
+ companyId: string;
942
+ companyName: string;
943
+ matchingName: string;
944
+ matchingType: string;
945
+ matchingValue: string;
946
+ ucCode: string;
947
+ static names(): {
948
+ [key: string]: string;
949
+ };
950
+ static types(): {
951
+ [key: string]: any;
952
+ };
953
+ constructor(map?: {
954
+ [key: string]: any;
955
+ });
956
+ }
940
957
  export declare class RtopTagImage extends $tea.Model {
941
958
  id: number;
942
959
  image?: string;
@@ -3159,6 +3176,166 @@ export declare class QueryDubbridgeReceiptStatusResponse extends $tea.Model {
3159
3176
  [key: string]: any;
3160
3177
  });
3161
3178
  }
3179
+ export declare class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model {
3180
+ authToken?: string;
3181
+ productInstanceId?: string;
3182
+ orderNo: string;
3183
+ customNo: string;
3184
+ fundCode: string;
3185
+ static names(): {
3186
+ [key: string]: string;
3187
+ };
3188
+ static types(): {
3189
+ [key: string]: any;
3190
+ };
3191
+ constructor(map?: {
3192
+ [key: string]: any;
3193
+ });
3194
+ }
3195
+ export declare class QueryDubbridgeCustomerCommonagreementsignResponse extends $tea.Model {
3196
+ reqMsgId?: string;
3197
+ resultCode?: string;
3198
+ resultMsg?: string;
3199
+ customNo?: string;
3200
+ customName?: string;
3201
+ transSerials?: string;
3202
+ status?: string;
3203
+ accountUserId?: string;
3204
+ accountNo?: string;
3205
+ protocolNo?: string;
3206
+ signTime?: string;
3207
+ validTime?: string;
3208
+ invalidTime?: string;
3209
+ static names(): {
3210
+ [key: string]: string;
3211
+ };
3212
+ static types(): {
3213
+ [key: string]: any;
3214
+ };
3215
+ constructor(map?: {
3216
+ [key: string]: any;
3217
+ });
3218
+ }
3219
+ export declare class QueryDubbridgeCompanyItemsRequest extends $tea.Model {
3220
+ authToken?: string;
3221
+ productInstanceId?: string;
3222
+ keyword: string;
3223
+ static names(): {
3224
+ [key: string]: string;
3225
+ };
3226
+ static types(): {
3227
+ [key: string]: any;
3228
+ };
3229
+ constructor(map?: {
3230
+ [key: string]: any;
3231
+ });
3232
+ }
3233
+ export declare class QueryDubbridgeCompanyItemsResponse extends $tea.Model {
3234
+ reqMsgId?: string;
3235
+ resultCode?: string;
3236
+ resultMsg?: string;
3237
+ businessItems?: CompanyItems[];
3238
+ total?: number;
3239
+ static names(): {
3240
+ [key: string]: string;
3241
+ };
3242
+ static types(): {
3243
+ [key: string]: any;
3244
+ };
3245
+ constructor(map?: {
3246
+ [key: string]: any;
3247
+ });
3248
+ }
3249
+ export declare class UpdateDubbridgeFileRequest extends $tea.Model {
3250
+ authToken?: string;
3251
+ productInstanceId?: string;
3252
+ orderNo: string;
3253
+ originalOrderNo: string;
3254
+ customNo: string;
3255
+ materials: Material[];
3256
+ static names(): {
3257
+ [key: string]: string;
3258
+ };
3259
+ static types(): {
3260
+ [key: string]: any;
3261
+ };
3262
+ constructor(map?: {
3263
+ [key: string]: any;
3264
+ });
3265
+ }
3266
+ export declare class UpdateDubbridgeFileResponse extends $tea.Model {
3267
+ reqMsgId?: string;
3268
+ resultCode?: string;
3269
+ resultMsg?: string;
3270
+ static names(): {
3271
+ [key: string]: string;
3272
+ };
3273
+ static types(): {
3274
+ [key: string]: any;
3275
+ };
3276
+ constructor(map?: {
3277
+ [key: string]: any;
3278
+ });
3279
+ }
3280
+ export declare class QueryDubbridgeCreditUrlRequest extends $tea.Model {
3281
+ authToken?: string;
3282
+ productInstanceId?: string;
3283
+ static names(): {
3284
+ [key: string]: string;
3285
+ };
3286
+ static types(): {
3287
+ [key: string]: any;
3288
+ };
3289
+ constructor(map?: {
3290
+ [key: string]: any;
3291
+ });
3292
+ }
3293
+ export declare class QueryDubbridgeCreditUrlResponse extends $tea.Model {
3294
+ reqMsgId?: string;
3295
+ resultCode?: string;
3296
+ resultMsg?: string;
3297
+ static names(): {
3298
+ [key: string]: string;
3299
+ };
3300
+ static types(): {
3301
+ [key: string]: any;
3302
+ };
3303
+ constructor(map?: {
3304
+ [key: string]: any;
3305
+ });
3306
+ }
3307
+ export declare class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
3308
+ authToken?: string;
3309
+ productInstanceId?: string;
3310
+ keyword: string;
3311
+ static names(): {
3312
+ [key: string]: string;
3313
+ };
3314
+ static types(): {
3315
+ [key: string]: any;
3316
+ };
3317
+ constructor(map?: {
3318
+ [key: string]: any;
3319
+ });
3320
+ }
3321
+ export declare class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
3322
+ reqMsgId?: string;
3323
+ resultCode?: string;
3324
+ resultMsg?: string;
3325
+ ucCode?: string;
3326
+ registerDate?: string;
3327
+ operatingAddrJson?: string;
3328
+ addressDetail?: string;
3329
+ static names(): {
3330
+ [key: string]: string;
3331
+ };
3332
+ static types(): {
3333
+ [key: string]: any;
3334
+ };
3335
+ constructor(map?: {
3336
+ [key: string]: any;
3337
+ });
3338
+ }
3162
3339
  export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
3163
3340
  authToken?: string;
3164
3341
  productInstanceId?: string;
@@ -5255,6 +5432,38 @@ export declare class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model
5255
5432
  [key: string]: any;
5256
5433
  });
5257
5434
  }
5435
+ export declare class QueryUmktRtMarketingRequest extends $tea.Model {
5436
+ authToken?: string;
5437
+ productInstanceId?: string;
5438
+ sceneStrategyId: number;
5439
+ queryTemplate: string;
5440
+ customerKey: string;
5441
+ bizSerialNo: string;
5442
+ static names(): {
5443
+ [key: string]: string;
5444
+ };
5445
+ static types(): {
5446
+ [key: string]: any;
5447
+ };
5448
+ constructor(map?: {
5449
+ [key: string]: any;
5450
+ });
5451
+ }
5452
+ export declare class QueryUmktRtMarketingResponse extends $tea.Model {
5453
+ reqMsgId?: string;
5454
+ resultCode?: string;
5455
+ resultMsg?: string;
5456
+ queryResult?: CustomerUmktInfoModel;
5457
+ static names(): {
5458
+ [key: string]: string;
5459
+ };
5460
+ static types(): {
5461
+ [key: string]: any;
5462
+ };
5463
+ constructor(map?: {
5464
+ [key: string]: any;
5465
+ });
5466
+ }
5258
5467
  export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
5259
5468
  authToken?: string;
5260
5469
  apiCode: string;
@@ -5981,6 +6190,66 @@ export default class Client {
5981
6190
  queryDubbridgeReceiptStatusEx(request: QueryDubbridgeReceiptStatusRequest, headers: {
5982
6191
  [key: string]: string;
5983
6192
  }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeReceiptStatusResponse>;
6193
+ /**
6194
+ * Description: 天枢系统协议签约查询(通用)
6195
+ * Summary: 天枢系统协议签约查询(通用)
6196
+ */
6197
+ queryDubbridgeCustomerCommonagreementsign(request: QueryDubbridgeCustomerCommonagreementsignRequest): Promise<QueryDubbridgeCustomerCommonagreementsignResponse>;
6198
+ /**
6199
+ * Description: 天枢系统协议签约查询(通用)
6200
+ * Summary: 天枢系统协议签约查询(通用)
6201
+ */
6202
+ queryDubbridgeCustomerCommonagreementsignEx(request: QueryDubbridgeCustomerCommonagreementsignRequest, headers: {
6203
+ [key: string]: string;
6204
+ }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCustomerCommonagreementsignResponse>;
6205
+ /**
6206
+ * Description: 根据关键字从第三方查询企业信息
6207
+ * Summary: 天枢系统企业搜索
6208
+ */
6209
+ queryDubbridgeCompanyItems(request: QueryDubbridgeCompanyItemsRequest): Promise<QueryDubbridgeCompanyItemsResponse>;
6210
+ /**
6211
+ * Description: 根据关键字从第三方查询企业信息
6212
+ * Summary: 天枢系统企业搜索
6213
+ */
6214
+ queryDubbridgeCompanyItemsEx(request: QueryDubbridgeCompanyItemsRequest, headers: {
6215
+ [key: string]: string;
6216
+ }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCompanyItemsResponse>;
6217
+ /**
6218
+ * Description: 客户影像信息更新
6219
+ * Summary: 客户影像信息更新
6220
+ */
6221
+ updateDubbridgeFile(request: UpdateDubbridgeFileRequest): Promise<UpdateDubbridgeFileResponse>;
6222
+ /**
6223
+ * Description: 客户影像信息更新
6224
+ * Summary: 客户影像信息更新
6225
+ */
6226
+ updateDubbridgeFileEx(request: UpdateDubbridgeFileRequest, headers: {
6227
+ [key: string]: string;
6228
+ }, runtime: $Util.RuntimeOptions): Promise<UpdateDubbridgeFileResponse>;
6229
+ /**
6230
+ * Description: 天枢系统获取授信H5地址
6231
+ * Summary: 天枢系统获取授信H5地址
6232
+ */
6233
+ queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse>;
6234
+ /**
6235
+ * Description: 天枢系统获取授信H5地址
6236
+ * Summary: 天枢系统获取授信H5地址
6237
+ */
6238
+ queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {
6239
+ [key: string]: string;
6240
+ }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse>;
6241
+ /**
6242
+ * Description: 根据关键字从第三方查询企业详情信息
6243
+ * Summary: 天枢系统企业详情信息查询
6244
+ */
6245
+ queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse>;
6246
+ /**
6247
+ * Description: 根据关键字从第三方查询企业详情信息
6248
+ * Summary: 天枢系统企业详情信息查询
6249
+ */
6250
+ queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {
6251
+ [key: string]: string;
6252
+ }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse>;
5984
6253
  /**
5985
6254
  * Description: 四要素认证首先调用此接口
5986
6255
  * Summary: 芝麻四要素接口
@@ -6739,6 +7008,18 @@ export default class Client {
6739
7008
  cancelUmktDataaccessOfflinetaskEx(request: CancelUmktDataaccessOfflinetaskRequest, headers: {
6740
7009
  [key: string]: string;
6741
7010
  }, runtime: $Util.RuntimeOptions): Promise<CancelUmktDataaccessOfflinetaskResponse>;
7011
+ /**
7012
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
7013
+ * Summary: 营销盾实时单一凭证营销接口
7014
+ */
7015
+ queryUmktRtMarketing(request: QueryUmktRtMarketingRequest): Promise<QueryUmktRtMarketingResponse>;
7016
+ /**
7017
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
7018
+ * Summary: 营销盾实时单一凭证营销接口
7019
+ */
7020
+ queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {
7021
+ [key: string]: string;
7022
+ }, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse>;
6742
7023
  /**
6743
7024
  * Description: 创建HTTP PUT提交的文件上传
6744
7025
  * Summary: 文件上传创建