@antchain/realperson 1.22.6 → 1.22.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 +128 -2
- package/dist/client.js +196 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +291 -5
package/dist/client.d.ts
CHANGED
|
@@ -194,6 +194,20 @@ export declare class OcrInfo extends $tea.Model {
|
|
|
194
194
|
[key: string]: any;
|
|
195
195
|
});
|
|
196
196
|
}
|
|
197
|
+
export declare class CarInfoPlus extends $tea.Model {
|
|
198
|
+
plateNo?: string;
|
|
199
|
+
model?: string;
|
|
200
|
+
color?: string;
|
|
201
|
+
static names(): {
|
|
202
|
+
[key: string]: string;
|
|
203
|
+
};
|
|
204
|
+
static types(): {
|
|
205
|
+
[key: string]: any;
|
|
206
|
+
};
|
|
207
|
+
constructor(map?: {
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
});
|
|
210
|
+
}
|
|
197
211
|
export declare class CarInfoDetail extends $tea.Model {
|
|
198
212
|
clxh?: string;
|
|
199
213
|
engineCode?: string;
|
|
@@ -258,6 +272,20 @@ export declare class CarInfoBrief extends $tea.Model {
|
|
|
258
272
|
[key: string]: any;
|
|
259
273
|
});
|
|
260
274
|
}
|
|
275
|
+
export declare class CarInfo extends $tea.Model {
|
|
276
|
+
highFrequency?: string;
|
|
277
|
+
value?: string;
|
|
278
|
+
type?: string;
|
|
279
|
+
static names(): {
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
};
|
|
282
|
+
static types(): {
|
|
283
|
+
[key: string]: any;
|
|
284
|
+
};
|
|
285
|
+
constructor(map?: {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
});
|
|
288
|
+
}
|
|
261
289
|
export declare class XNameValuePair extends $tea.Model {
|
|
262
290
|
name: string;
|
|
263
291
|
value: string;
|
|
@@ -1661,6 +1689,8 @@ export declare class InitCarrierRepairmobileRequest extends $tea.Model {
|
|
|
1661
1689
|
certNo: string;
|
|
1662
1690
|
name: string;
|
|
1663
1691
|
mobile?: string;
|
|
1692
|
+
scene?: string;
|
|
1693
|
+
externParam?: string;
|
|
1664
1694
|
static names(): {
|
|
1665
1695
|
[key: string]: string;
|
|
1666
1696
|
};
|
|
@@ -1691,6 +1721,8 @@ export declare class QueryCarrierRepairmobileRequest extends $tea.Model {
|
|
|
1691
1721
|
productInstanceId?: string;
|
|
1692
1722
|
outerOrderNo: string;
|
|
1693
1723
|
processId: string;
|
|
1724
|
+
scene?: string;
|
|
1725
|
+
externParam?: string;
|
|
1694
1726
|
static names(): {
|
|
1695
1727
|
[key: string]: string;
|
|
1696
1728
|
};
|
|
@@ -1725,6 +1757,8 @@ export declare class BindCarrierRepairmobileRequest extends $tea.Model {
|
|
|
1725
1757
|
mobileNum: string;
|
|
1726
1758
|
mobileA: string;
|
|
1727
1759
|
mobileType?: string;
|
|
1760
|
+
scene?: string;
|
|
1761
|
+
externParam?: string;
|
|
1728
1762
|
static names(): {
|
|
1729
1763
|
[key: string]: string;
|
|
1730
1764
|
};
|
|
@@ -2510,7 +2544,7 @@ export declare class ApplyCutpaymentPaymentRequest extends $tea.Model {
|
|
|
2510
2544
|
userId: string;
|
|
2511
2545
|
securityCode?: string;
|
|
2512
2546
|
validDate?: string;
|
|
2513
|
-
shareInfo?:
|
|
2547
|
+
shareInfo?: string;
|
|
2514
2548
|
static names(): {
|
|
2515
2549
|
[key: string]: string;
|
|
2516
2550
|
};
|
|
@@ -2592,7 +2626,7 @@ export declare class ApplyCutpaymentRefundRequest extends $tea.Model {
|
|
|
2592
2626
|
refundSerialNo: string;
|
|
2593
2627
|
refundReason: string;
|
|
2594
2628
|
refundAmt: string;
|
|
2595
|
-
shareRefundInfo?:
|
|
2629
|
+
shareRefundInfo?: string;
|
|
2596
2630
|
static names(): {
|
|
2597
2631
|
[key: string]: string;
|
|
2598
2632
|
};
|
|
@@ -2718,6 +2752,74 @@ export declare class ExecFaceThreemetaResponse extends $tea.Model {
|
|
|
2718
2752
|
[key: string]: any;
|
|
2719
2753
|
});
|
|
2720
2754
|
}
|
|
2755
|
+
export declare class QueryCarinfoUltimateRequest extends $tea.Model {
|
|
2756
|
+
authToken?: string;
|
|
2757
|
+
productInstanceId?: string;
|
|
2758
|
+
outerOrderNo: string;
|
|
2759
|
+
reqEncType?: string;
|
|
2760
|
+
mobile: string;
|
|
2761
|
+
externInfo?: string;
|
|
2762
|
+
static names(): {
|
|
2763
|
+
[key: string]: string;
|
|
2764
|
+
};
|
|
2765
|
+
static types(): {
|
|
2766
|
+
[key: string]: any;
|
|
2767
|
+
};
|
|
2768
|
+
constructor(map?: {
|
|
2769
|
+
[key: string]: any;
|
|
2770
|
+
});
|
|
2771
|
+
}
|
|
2772
|
+
export declare class QueryCarinfoUltimateResponse extends $tea.Model {
|
|
2773
|
+
reqMsgId?: string;
|
|
2774
|
+
resultCode?: string;
|
|
2775
|
+
resultMsg?: string;
|
|
2776
|
+
externInfo?: string;
|
|
2777
|
+
amont?: string;
|
|
2778
|
+
carInfos?: CarInfo[];
|
|
2779
|
+
static names(): {
|
|
2780
|
+
[key: string]: string;
|
|
2781
|
+
};
|
|
2782
|
+
static types(): {
|
|
2783
|
+
[key: string]: any;
|
|
2784
|
+
};
|
|
2785
|
+
constructor(map?: {
|
|
2786
|
+
[key: string]: any;
|
|
2787
|
+
});
|
|
2788
|
+
}
|
|
2789
|
+
export declare class QueryCarinfoPlusRequest extends $tea.Model {
|
|
2790
|
+
authToken?: string;
|
|
2791
|
+
productInstanceId?: string;
|
|
2792
|
+
outerOrderNo: string;
|
|
2793
|
+
reqEncType?: string;
|
|
2794
|
+
certNo: string;
|
|
2795
|
+
externInfo?: string;
|
|
2796
|
+
static names(): {
|
|
2797
|
+
[key: string]: string;
|
|
2798
|
+
};
|
|
2799
|
+
static types(): {
|
|
2800
|
+
[key: string]: any;
|
|
2801
|
+
};
|
|
2802
|
+
constructor(map?: {
|
|
2803
|
+
[key: string]: any;
|
|
2804
|
+
});
|
|
2805
|
+
}
|
|
2806
|
+
export declare class QueryCarinfoPlusResponse extends $tea.Model {
|
|
2807
|
+
reqMsgId?: string;
|
|
2808
|
+
resultCode?: string;
|
|
2809
|
+
resultMsg?: string;
|
|
2810
|
+
externInfo?: string;
|
|
2811
|
+
amont?: string;
|
|
2812
|
+
carInfos?: CarInfoPlus[];
|
|
2813
|
+
static names(): {
|
|
2814
|
+
[key: string]: string;
|
|
2815
|
+
};
|
|
2816
|
+
static types(): {
|
|
2817
|
+
[key: string]: any;
|
|
2818
|
+
};
|
|
2819
|
+
constructor(map?: {
|
|
2820
|
+
[key: string]: any;
|
|
2821
|
+
});
|
|
2822
|
+
}
|
|
2721
2823
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
2722
2824
|
authToken?: string;
|
|
2723
2825
|
apiCode: string;
|
|
@@ -3600,6 +3702,30 @@ export default class Client {
|
|
|
3600
3702
|
execFaceThreemetaEx(request: ExecFaceThreemetaRequest, headers: {
|
|
3601
3703
|
[key: string]: string;
|
|
3602
3704
|
}, runtime: $Util.RuntimeOptions): Promise<ExecFaceThreemetaResponse>;
|
|
3705
|
+
/**
|
|
3706
|
+
* Description: 用户资产验证-车辆资产验证旗舰版
|
|
3707
|
+
* Summary: 用户资产验证-车辆资产验证旗舰版
|
|
3708
|
+
*/
|
|
3709
|
+
queryCarinfoUltimate(request: QueryCarinfoUltimateRequest): Promise<QueryCarinfoUltimateResponse>;
|
|
3710
|
+
/**
|
|
3711
|
+
* Description: 用户资产验证-车辆资产验证旗舰版
|
|
3712
|
+
* Summary: 用户资产验证-车辆资产验证旗舰版
|
|
3713
|
+
*/
|
|
3714
|
+
queryCarinfoUltimateEx(request: QueryCarinfoUltimateRequest, headers: {
|
|
3715
|
+
[key: string]: string;
|
|
3716
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoUltimateResponse>;
|
|
3717
|
+
/**
|
|
3718
|
+
* Description: 用户资产验证-车辆资产验证增强版
|
|
3719
|
+
* Summary: 用户资产验证-车辆资产验证增强版
|
|
3720
|
+
*/
|
|
3721
|
+
queryCarinfoPlus(request: QueryCarinfoPlusRequest): Promise<QueryCarinfoPlusResponse>;
|
|
3722
|
+
/**
|
|
3723
|
+
* Description: 用户资产验证-车辆资产验证增强版
|
|
3724
|
+
* Summary: 用户资产验证-车辆资产验证增强版
|
|
3725
|
+
*/
|
|
3726
|
+
queryCarinfoPlusEx(request: QueryCarinfoPlusRequest, headers: {
|
|
3727
|
+
[key: string]: string;
|
|
3728
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoPlusResponse>;
|
|
3603
3729
|
/**
|
|
3604
3730
|
* Description: 创建HTTP PUT提交的文件上传
|
|
3605
3731
|
* Summary: 文件上传创建
|
package/dist/client.js
CHANGED
|
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.ExecFaceThreemetaResponse = exports.ExecFaceThreemetaRequest = exports.QueryCutpaymentStatementResponse = exports.QueryCutpaymentStatementRequest = exports.QueryCutpaymentRefundResponse = exports.QueryCutpaymentRefundRequest = exports.ApplyCutpaymentRefundResponse = exports.ApplyCutpaymentRefundRequest = exports.QueryCutpaymentPaymentResponse = exports.QueryCutpaymentPaymentRequest = exports.ApplyCutpaymentPaymentResponse = exports.ApplyCutpaymentPaymentRequest = exports.QueryCutpaymentBindResponse = exports.QueryCutpaymentBindRequest = exports.UnbindCutpaymentSignResponse = exports.UnbindCutpaymentSignRequest = exports.BindCutpaymentSignResponse = exports.BindCutpaymentSignRequest = exports.BindCutpaymentPreResponse = exports.BindCutpaymentPreRequest = exports.QueryCarinfoBriefResponse = exports.QueryCarinfoBriefRequest = exports.QueryCarinfoDetailResponse = exports.QueryCarinfoDetailRequest = exports.CheckIdcardFourmetaResponse = exports.CheckIdcardFourmetaRequest = exports.RecognizeOcrIndividualcardResponse = exports.RecognizeOcrIndividualcardRequest = exports.ScaleinImageResponse = exports.ScaleinImageRequest = exports.QueryFaceverifyServermaterialResponse = exports.QueryFaceverifyServermaterialRequest = exports.QueryBankLivenessfourResponse = exports.QueryBankLivenessfourRequest = exports.QueryEducationBackgroundResponse = exports.QueryEducationBackgroundRequest = exports.CheckCarTwometaResponse = exports.CheckCarTwometaRequest = exports.QueryAlipayverifyServerResponse = exports.QueryAlipayverifyServerRequest = exports.CreateAlipayverifyServerResponse = exports.CreateAlipayverifyServerRequest = exports.ExecFaceverifyServermodeResponse = exports.ExecFaceverifyServermodeRequest = exports.QueryBankLivenessplusResponse = exports.QueryBankLivenessplusRequest = exports.QueryFaceverifyServerResponse = exports.QueryFaceverifyServerRequest = exports.CreateFaceverifyServerResponse = exports.CreateFaceverifyServerRequest = exports.ApplyExtOrgdataResponse = exports.ApplyExtOrgdataRequest = exports.BindCarrierRepairmobileResponse = exports.BindCarrierRepairmobileRequest = exports.QueryCarrierRepairmobileResponse = exports.QueryCarrierRepairmobileRequest = exports.InitCarrierRepairmobileResponse = exports.InitCarrierRepairmobileRequest = exports.DeleteConsoleDomainResponse = exports.DeleteConsoleDomainRequest = exports.CreateConsoleDomainResponse = exports.CreateConsoleDomainRequest = exports.QueryBankLivenessResponse = exports.QueryBankLivenessRequest = exports.ExecFacevrfServermodeResponse = exports.ExecFacevrfServermodeRequest = exports.QuerySocialriskTobriskResponse = exports.QuerySocialriskTobriskRequest = exports.QuerySocialriskBriefResponse = exports.QuerySocialriskBriefRequest = exports.QueryCarrierNetstatusResponse = exports.QueryCarrierNetstatusRequest = exports.QuerySocialriskDetailResponse = exports.QuerySocialriskDetailRequest = exports.QueryNfcServerResponse = exports.QueryNfcServerRequest = exports.CreateNfcServerResponse = exports.CreateNfcServerRequest = exports.CheckCarrierTwometaResponse = exports.CheckCarrierTwometaRequest = exports.CheckBankcardTwometaResponse = exports.CheckBankcardTwometaRequest = exports.QueryDemoInfoResponse = exports.QueryDemoInfoRequest = exports.QueryEducationInfoResponse = exports.QueryEducationInfoRequest = exports.QueryTscenterDeviceResponse = exports.QueryTscenterDeviceRequest = exports.QueryThreemetaPhonereuseResponse = exports.QueryThreemetaPhonereuseRequest = exports.QueryDeepsecTsbmrqResponse = exports.QueryDeepsecTsbmrqRequest = exports.QueryDeepsecRiskResponse = exports.QueryDeepsecRiskRequest = exports.CheckThreemetaBankcardResponse = exports.CheckThreemetaBankcardRequest = exports.RecognizeDocIndividualcardResponse = exports.RecognizeDocIndividualcardRequest = exports.VerifyFacevrfZimResponse = exports.VerifyFacevrfZimRequest = exports.InitFacevrfZimResponse = exports.InitFacevrfZimRequest = exports.QueryThreemetaOnlinetimeResponse = exports.QueryThreemetaOnlinetimeRequest = exports.CheckTwometaHashResponse = exports.CheckTwometaHashRequest = exports.CheckAnticheatPersonalResponse = exports.CheckAnticheatPersonalRequest = exports.DetailFacevrfServerResponse = exports.DetailFacevrfServerRequest = exports.QueryMobileRiskResponse = exports.QueryMobileRiskRequest = exports.CheckRouteTwometaResponse = exports.CheckRouteTwometaRequest = exports.VerifyVoiceprintServermodeResponse = exports.VerifyVoiceprintServermodeRequest = exports.CreateVoiceprintServermodeResponse = exports.CreateVoiceprintServermodeRequest = exports.CheckRouteThreemetaResponse = exports.CheckRouteThreemetaRequest = exports.CheckIndividualidFourmetaResponse = exports.CheckIndividualidFourmetaRequest = exports.CheckIndividualidThreemetaResponse = exports.CheckIndividualidThreemetaRequest = exports.CheckIndividualidTwometaResponse = exports.CheckIndividualidTwometaRequest = exports.GetFacevrfEvidenceResponse = exports.GetFacevrfEvidenceRequest = exports.ExecFacevrfServerResponse = exports.ExecFacevrfServerRequest = exports.CreateFacevrfServerResponse = exports.CreateFacevrfServerRequest = exports.QueryFacevrfServerResponse = exports.QueryFacevrfServerRequest = exports.XNameValuePair = exports.CarInfoBrief = exports.CarInfoDetail = exports.OcrInfo = exports.Audio = exports.ShareInfo = exports.ShareRefundInfo = exports.AudioMeta = exports.RiskInfo = exports.CardQuality = exports.OcrLocation = exports.Config = void 0;
|
|
25
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.QueryCarinfoPlusResponse = exports.QueryCarinfoPlusRequest = exports.QueryCarinfoUltimateResponse = exports.QueryCarinfoUltimateRequest = exports.ExecFaceThreemetaResponse = exports.ExecFaceThreemetaRequest = exports.QueryCutpaymentStatementResponse = exports.QueryCutpaymentStatementRequest = exports.QueryCutpaymentRefundResponse = exports.QueryCutpaymentRefundRequest = exports.ApplyCutpaymentRefundResponse = exports.ApplyCutpaymentRefundRequest = exports.QueryCutpaymentPaymentResponse = exports.QueryCutpaymentPaymentRequest = exports.ApplyCutpaymentPaymentResponse = exports.ApplyCutpaymentPaymentRequest = exports.QueryCutpaymentBindResponse = exports.QueryCutpaymentBindRequest = exports.UnbindCutpaymentSignResponse = exports.UnbindCutpaymentSignRequest = exports.BindCutpaymentSignResponse = exports.BindCutpaymentSignRequest = exports.BindCutpaymentPreResponse = exports.BindCutpaymentPreRequest = exports.QueryCarinfoBriefResponse = exports.QueryCarinfoBriefRequest = exports.QueryCarinfoDetailResponse = exports.QueryCarinfoDetailRequest = exports.CheckIdcardFourmetaResponse = exports.CheckIdcardFourmetaRequest = exports.RecognizeOcrIndividualcardResponse = exports.RecognizeOcrIndividualcardRequest = exports.ScaleinImageResponse = exports.ScaleinImageRequest = exports.QueryFaceverifyServermaterialResponse = exports.QueryFaceverifyServermaterialRequest = exports.QueryBankLivenessfourResponse = exports.QueryBankLivenessfourRequest = exports.QueryEducationBackgroundResponse = exports.QueryEducationBackgroundRequest = exports.CheckCarTwometaResponse = exports.CheckCarTwometaRequest = exports.QueryAlipayverifyServerResponse = exports.QueryAlipayverifyServerRequest = exports.CreateAlipayverifyServerResponse = exports.CreateAlipayverifyServerRequest = exports.ExecFaceverifyServermodeResponse = exports.ExecFaceverifyServermodeRequest = exports.QueryBankLivenessplusResponse = exports.QueryBankLivenessplusRequest = exports.QueryFaceverifyServerResponse = exports.QueryFaceverifyServerRequest = exports.CreateFaceverifyServerResponse = exports.CreateFaceverifyServerRequest = exports.ApplyExtOrgdataResponse = exports.ApplyExtOrgdataRequest = exports.BindCarrierRepairmobileResponse = exports.BindCarrierRepairmobileRequest = exports.QueryCarrierRepairmobileResponse = exports.QueryCarrierRepairmobileRequest = exports.InitCarrierRepairmobileResponse = exports.InitCarrierRepairmobileRequest = exports.DeleteConsoleDomainResponse = exports.DeleteConsoleDomainRequest = exports.CreateConsoleDomainResponse = exports.CreateConsoleDomainRequest = exports.QueryBankLivenessResponse = exports.QueryBankLivenessRequest = exports.ExecFacevrfServermodeResponse = exports.ExecFacevrfServermodeRequest = exports.QuerySocialriskTobriskResponse = exports.QuerySocialriskTobriskRequest = exports.QuerySocialriskBriefResponse = exports.QuerySocialriskBriefRequest = exports.QueryCarrierNetstatusResponse = exports.QueryCarrierNetstatusRequest = exports.QuerySocialriskDetailResponse = exports.QuerySocialriskDetailRequest = exports.QueryNfcServerResponse = exports.QueryNfcServerRequest = exports.CreateNfcServerResponse = exports.CreateNfcServerRequest = exports.CheckCarrierTwometaResponse = exports.CheckCarrierTwometaRequest = exports.CheckBankcardTwometaResponse = exports.CheckBankcardTwometaRequest = exports.QueryDemoInfoResponse = exports.QueryDemoInfoRequest = exports.QueryEducationInfoResponse = exports.QueryEducationInfoRequest = exports.QueryTscenterDeviceResponse = exports.QueryTscenterDeviceRequest = exports.QueryThreemetaPhonereuseResponse = exports.QueryThreemetaPhonereuseRequest = exports.QueryDeepsecTsbmrqResponse = exports.QueryDeepsecTsbmrqRequest = exports.QueryDeepsecRiskResponse = exports.QueryDeepsecRiskRequest = exports.CheckThreemetaBankcardResponse = exports.CheckThreemetaBankcardRequest = exports.RecognizeDocIndividualcardResponse = exports.RecognizeDocIndividualcardRequest = exports.VerifyFacevrfZimResponse = exports.VerifyFacevrfZimRequest = exports.InitFacevrfZimResponse = exports.InitFacevrfZimRequest = exports.QueryThreemetaOnlinetimeResponse = exports.QueryThreemetaOnlinetimeRequest = exports.CheckTwometaHashResponse = exports.CheckTwometaHashRequest = exports.CheckAnticheatPersonalResponse = exports.CheckAnticheatPersonalRequest = exports.DetailFacevrfServerResponse = exports.DetailFacevrfServerRequest = exports.QueryMobileRiskResponse = exports.QueryMobileRiskRequest = exports.CheckRouteTwometaResponse = exports.CheckRouteTwometaRequest = exports.VerifyVoiceprintServermodeResponse = exports.VerifyVoiceprintServermodeRequest = exports.CreateVoiceprintServermodeResponse = exports.CreateVoiceprintServermodeRequest = exports.CheckRouteThreemetaResponse = exports.CheckRouteThreemetaRequest = exports.CheckIndividualidFourmetaResponse = exports.CheckIndividualidFourmetaRequest = exports.CheckIndividualidThreemetaResponse = exports.CheckIndividualidThreemetaRequest = exports.CheckIndividualidTwometaResponse = exports.CheckIndividualidTwometaRequest = exports.GetFacevrfEvidenceResponse = exports.GetFacevrfEvidenceRequest = exports.ExecFacevrfServerResponse = exports.ExecFacevrfServerRequest = exports.CreateFacevrfServerResponse = exports.CreateFacevrfServerRequest = exports.QueryFacevrfServerResponse = exports.QueryFacevrfServerRequest = exports.XNameValuePair = exports.CarInfo = exports.CarInfoBrief = exports.CarInfoDetail = exports.CarInfoPlus = exports.OcrInfo = exports.Audio = exports.ShareInfo = exports.ShareRefundInfo = exports.AudioMeta = exports.RiskInfo = exports.CardQuality = exports.OcrLocation = exports.Config = void 0;
|
|
26
26
|
// This file is auto-generated, don't edit it
|
|
27
27
|
const alipay_util_1 = __importDefault(require("@antchain/alipay-util"));
|
|
28
28
|
const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
|
|
@@ -345,6 +345,27 @@ class OcrInfo extends $tea.Model {
|
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
347
|
exports.OcrInfo = OcrInfo;
|
|
348
|
+
// 车辆资产验证增强版车辆信息
|
|
349
|
+
class CarInfoPlus extends $tea.Model {
|
|
350
|
+
constructor(map) {
|
|
351
|
+
super(map);
|
|
352
|
+
}
|
|
353
|
+
static names() {
|
|
354
|
+
return {
|
|
355
|
+
plateNo: 'plate_no',
|
|
356
|
+
model: 'model',
|
|
357
|
+
color: 'color',
|
|
358
|
+
};
|
|
359
|
+
}
|
|
360
|
+
static types() {
|
|
361
|
+
return {
|
|
362
|
+
plateNo: 'string',
|
|
363
|
+
model: 'string',
|
|
364
|
+
color: 'string',
|
|
365
|
+
};
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
exports.CarInfoPlus = CarInfoPlus;
|
|
348
369
|
// 车辆资产验证详版车辆信息
|
|
349
370
|
class CarInfoDetail extends $tea.Model {
|
|
350
371
|
constructor(map) {
|
|
@@ -459,6 +480,27 @@ class CarInfoBrief extends $tea.Model {
|
|
|
459
480
|
}
|
|
460
481
|
}
|
|
461
482
|
exports.CarInfoBrief = CarInfoBrief;
|
|
483
|
+
// 车辆资产验证旗舰版车辆信息
|
|
484
|
+
class CarInfo extends $tea.Model {
|
|
485
|
+
constructor(map) {
|
|
486
|
+
super(map);
|
|
487
|
+
}
|
|
488
|
+
static names() {
|
|
489
|
+
return {
|
|
490
|
+
highFrequency: 'high_frequency',
|
|
491
|
+
value: 'value',
|
|
492
|
+
type: 'type',
|
|
493
|
+
};
|
|
494
|
+
}
|
|
495
|
+
static types() {
|
|
496
|
+
return {
|
|
497
|
+
highFrequency: 'string',
|
|
498
|
+
value: 'string',
|
|
499
|
+
type: 'string',
|
|
500
|
+
};
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
exports.CarInfo = CarInfo;
|
|
462
504
|
// 键值对
|
|
463
505
|
class XNameValuePair extends $tea.Model {
|
|
464
506
|
constructor(map) {
|
|
@@ -2645,6 +2687,8 @@ class InitCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2645
2687
|
certNo: 'cert_no',
|
|
2646
2688
|
name: 'name',
|
|
2647
2689
|
mobile: 'mobile',
|
|
2690
|
+
scene: 'scene',
|
|
2691
|
+
externParam: 'extern_param',
|
|
2648
2692
|
};
|
|
2649
2693
|
}
|
|
2650
2694
|
static types() {
|
|
@@ -2658,6 +2702,8 @@ class InitCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2658
2702
|
certNo: 'string',
|
|
2659
2703
|
name: 'string',
|
|
2660
2704
|
mobile: 'string',
|
|
2705
|
+
scene: 'string',
|
|
2706
|
+
externParam: 'string',
|
|
2661
2707
|
};
|
|
2662
2708
|
}
|
|
2663
2709
|
}
|
|
@@ -2694,6 +2740,8 @@ class QueryCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2694
2740
|
productInstanceId: 'product_instance_id',
|
|
2695
2741
|
outerOrderNo: 'outer_order_no',
|
|
2696
2742
|
processId: 'process_id',
|
|
2743
|
+
scene: 'scene',
|
|
2744
|
+
externParam: 'extern_param',
|
|
2697
2745
|
};
|
|
2698
2746
|
}
|
|
2699
2747
|
static types() {
|
|
@@ -2702,6 +2750,8 @@ class QueryCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2702
2750
|
productInstanceId: 'string',
|
|
2703
2751
|
outerOrderNo: 'string',
|
|
2704
2752
|
processId: 'string',
|
|
2753
|
+
scene: 'string',
|
|
2754
|
+
externParam: 'string',
|
|
2705
2755
|
};
|
|
2706
2756
|
}
|
|
2707
2757
|
}
|
|
@@ -2742,6 +2792,8 @@ class BindCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2742
2792
|
mobileNum: 'mobile_num',
|
|
2743
2793
|
mobileA: 'mobile_a',
|
|
2744
2794
|
mobileType: 'mobile_type',
|
|
2795
|
+
scene: 'scene',
|
|
2796
|
+
externParam: 'extern_param',
|
|
2745
2797
|
};
|
|
2746
2798
|
}
|
|
2747
2799
|
static types() {
|
|
@@ -2754,6 +2806,8 @@ class BindCarrierRepairmobileRequest extends $tea.Model {
|
|
|
2754
2806
|
mobileNum: 'string',
|
|
2755
2807
|
mobileA: 'string',
|
|
2756
2808
|
mobileType: 'string',
|
|
2809
|
+
scene: 'string',
|
|
2810
|
+
externParam: 'string',
|
|
2757
2811
|
};
|
|
2758
2812
|
}
|
|
2759
2813
|
}
|
|
@@ -3989,7 +4043,7 @@ class ApplyCutpaymentPaymentRequest extends $tea.Model {
|
|
|
3989
4043
|
userId: 'string',
|
|
3990
4044
|
securityCode: 'string',
|
|
3991
4045
|
validDate: 'string',
|
|
3992
|
-
shareInfo:
|
|
4046
|
+
shareInfo: 'string',
|
|
3993
4047
|
};
|
|
3994
4048
|
}
|
|
3995
4049
|
}
|
|
@@ -4121,7 +4175,7 @@ class ApplyCutpaymentRefundRequest extends $tea.Model {
|
|
|
4121
4175
|
refundSerialNo: 'string',
|
|
4122
4176
|
refundReason: 'string',
|
|
4123
4177
|
refundAmt: 'string',
|
|
4124
|
-
shareRefundInfo:
|
|
4178
|
+
shareRefundInfo: 'string',
|
|
4125
4179
|
};
|
|
4126
4180
|
}
|
|
4127
4181
|
}
|
|
@@ -4300,6 +4354,110 @@ class ExecFaceThreemetaResponse extends $tea.Model {
|
|
|
4300
4354
|
}
|
|
4301
4355
|
}
|
|
4302
4356
|
exports.ExecFaceThreemetaResponse = ExecFaceThreemetaResponse;
|
|
4357
|
+
class QueryCarinfoUltimateRequest extends $tea.Model {
|
|
4358
|
+
constructor(map) {
|
|
4359
|
+
super(map);
|
|
4360
|
+
}
|
|
4361
|
+
static names() {
|
|
4362
|
+
return {
|
|
4363
|
+
authToken: 'auth_token',
|
|
4364
|
+
productInstanceId: 'product_instance_id',
|
|
4365
|
+
outerOrderNo: 'outer_order_no',
|
|
4366
|
+
reqEncType: 'req_enc_type',
|
|
4367
|
+
mobile: 'mobile',
|
|
4368
|
+
externInfo: 'extern_info',
|
|
4369
|
+
};
|
|
4370
|
+
}
|
|
4371
|
+
static types() {
|
|
4372
|
+
return {
|
|
4373
|
+
authToken: 'string',
|
|
4374
|
+
productInstanceId: 'string',
|
|
4375
|
+
outerOrderNo: 'string',
|
|
4376
|
+
reqEncType: 'string',
|
|
4377
|
+
mobile: 'string',
|
|
4378
|
+
externInfo: 'string',
|
|
4379
|
+
};
|
|
4380
|
+
}
|
|
4381
|
+
}
|
|
4382
|
+
exports.QueryCarinfoUltimateRequest = QueryCarinfoUltimateRequest;
|
|
4383
|
+
class QueryCarinfoUltimateResponse extends $tea.Model {
|
|
4384
|
+
constructor(map) {
|
|
4385
|
+
super(map);
|
|
4386
|
+
}
|
|
4387
|
+
static names() {
|
|
4388
|
+
return {
|
|
4389
|
+
reqMsgId: 'req_msg_id',
|
|
4390
|
+
resultCode: 'result_code',
|
|
4391
|
+
resultMsg: 'result_msg',
|
|
4392
|
+
externInfo: 'extern_info',
|
|
4393
|
+
amont: 'amont',
|
|
4394
|
+
carInfos: 'car_infos',
|
|
4395
|
+
};
|
|
4396
|
+
}
|
|
4397
|
+
static types() {
|
|
4398
|
+
return {
|
|
4399
|
+
reqMsgId: 'string',
|
|
4400
|
+
resultCode: 'string',
|
|
4401
|
+
resultMsg: 'string',
|
|
4402
|
+
externInfo: 'string',
|
|
4403
|
+
amont: 'string',
|
|
4404
|
+
carInfos: { 'type': 'array', 'itemType': CarInfo },
|
|
4405
|
+
};
|
|
4406
|
+
}
|
|
4407
|
+
}
|
|
4408
|
+
exports.QueryCarinfoUltimateResponse = QueryCarinfoUltimateResponse;
|
|
4409
|
+
class QueryCarinfoPlusRequest extends $tea.Model {
|
|
4410
|
+
constructor(map) {
|
|
4411
|
+
super(map);
|
|
4412
|
+
}
|
|
4413
|
+
static names() {
|
|
4414
|
+
return {
|
|
4415
|
+
authToken: 'auth_token',
|
|
4416
|
+
productInstanceId: 'product_instance_id',
|
|
4417
|
+
outerOrderNo: 'outer_order_no',
|
|
4418
|
+
reqEncType: 'req_enc_type',
|
|
4419
|
+
certNo: 'cert_no',
|
|
4420
|
+
externInfo: 'extern_info',
|
|
4421
|
+
};
|
|
4422
|
+
}
|
|
4423
|
+
static types() {
|
|
4424
|
+
return {
|
|
4425
|
+
authToken: 'string',
|
|
4426
|
+
productInstanceId: 'string',
|
|
4427
|
+
outerOrderNo: 'string',
|
|
4428
|
+
reqEncType: 'string',
|
|
4429
|
+
certNo: 'string',
|
|
4430
|
+
externInfo: 'string',
|
|
4431
|
+
};
|
|
4432
|
+
}
|
|
4433
|
+
}
|
|
4434
|
+
exports.QueryCarinfoPlusRequest = QueryCarinfoPlusRequest;
|
|
4435
|
+
class QueryCarinfoPlusResponse extends $tea.Model {
|
|
4436
|
+
constructor(map) {
|
|
4437
|
+
super(map);
|
|
4438
|
+
}
|
|
4439
|
+
static names() {
|
|
4440
|
+
return {
|
|
4441
|
+
reqMsgId: 'req_msg_id',
|
|
4442
|
+
resultCode: 'result_code',
|
|
4443
|
+
resultMsg: 'result_msg',
|
|
4444
|
+
externInfo: 'extern_info',
|
|
4445
|
+
amont: 'amont',
|
|
4446
|
+
carInfos: 'car_infos',
|
|
4447
|
+
};
|
|
4448
|
+
}
|
|
4449
|
+
static types() {
|
|
4450
|
+
return {
|
|
4451
|
+
reqMsgId: 'string',
|
|
4452
|
+
resultCode: 'string',
|
|
4453
|
+
resultMsg: 'string',
|
|
4454
|
+
externInfo: 'string',
|
|
4455
|
+
amont: 'string',
|
|
4456
|
+
carInfos: { 'type': 'array', 'itemType': CarInfoPlus },
|
|
4457
|
+
};
|
|
4458
|
+
}
|
|
4459
|
+
}
|
|
4460
|
+
exports.QueryCarinfoPlusResponse = QueryCarinfoPlusResponse;
|
|
4303
4461
|
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
4304
4462
|
constructor(map) {
|
|
4305
4463
|
super(map);
|
|
@@ -4444,7 +4602,7 @@ class Client {
|
|
|
4444
4602
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
4445
4603
|
access_key: this._accessKeyId,
|
|
4446
4604
|
base_sdk_version: "TeaSDK-2.0",
|
|
4447
|
-
sdk_version: "1.22.
|
|
4605
|
+
sdk_version: "1.22.11",
|
|
4448
4606
|
_prod_code: "REALPERSON",
|
|
4449
4607
|
_prod_channel: "undefined",
|
|
4450
4608
|
};
|
|
@@ -5760,6 +5918,40 @@ class Client {
|
|
|
5760
5918
|
tea_util_1.default.validateModel(request);
|
|
5761
5919
|
return $tea.cast(await this.doRequest("1.0", "di.realperson.face.threemeta.exec", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ExecFaceThreemetaResponse({}));
|
|
5762
5920
|
}
|
|
5921
|
+
/**
|
|
5922
|
+
* Description: 用户资产验证-车辆资产验证旗舰版
|
|
5923
|
+
* Summary: 用户资产验证-车辆资产验证旗舰版
|
|
5924
|
+
*/
|
|
5925
|
+
async queryCarinfoUltimate(request) {
|
|
5926
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
5927
|
+
let headers = {};
|
|
5928
|
+
return await this.queryCarinfoUltimateEx(request, headers, runtime);
|
|
5929
|
+
}
|
|
5930
|
+
/**
|
|
5931
|
+
* Description: 用户资产验证-车辆资产验证旗舰版
|
|
5932
|
+
* Summary: 用户资产验证-车辆资产验证旗舰版
|
|
5933
|
+
*/
|
|
5934
|
+
async queryCarinfoUltimateEx(request, headers, runtime) {
|
|
5935
|
+
tea_util_1.default.validateModel(request);
|
|
5936
|
+
return $tea.cast(await this.doRequest("1.0", "di.realperson.carinfo.ultimate.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarinfoUltimateResponse({}));
|
|
5937
|
+
}
|
|
5938
|
+
/**
|
|
5939
|
+
* Description: 用户资产验证-车辆资产验证增强版
|
|
5940
|
+
* Summary: 用户资产验证-车辆资产验证增强版
|
|
5941
|
+
*/
|
|
5942
|
+
async queryCarinfoPlus(request) {
|
|
5943
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
5944
|
+
let headers = {};
|
|
5945
|
+
return await this.queryCarinfoPlusEx(request, headers, runtime);
|
|
5946
|
+
}
|
|
5947
|
+
/**
|
|
5948
|
+
* Description: 用户资产验证-车辆资产验证增强版
|
|
5949
|
+
* Summary: 用户资产验证-车辆资产验证增强版
|
|
5950
|
+
*/
|
|
5951
|
+
async queryCarinfoPlusEx(request, headers, runtime) {
|
|
5952
|
+
tea_util_1.default.validateModel(request);
|
|
5953
|
+
return $tea.cast(await this.doRequest("1.0", "di.realperson.carinfo.plus.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarinfoPlusResponse({}));
|
|
5954
|
+
}
|
|
5763
5955
|
/**
|
|
5764
5956
|
* Description: 创建HTTP PUT提交的文件上传
|
|
5765
5957
|
* Summary: 文件上传创建
|