@alicloud/cloudauth20190307 2.7.0 → 2.8.0
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 +515 -2
- package/dist/client.js +546 -6
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +909 -7
package/dist/client.d.ts
CHANGED
|
@@ -793,7 +793,68 @@ export declare class CredentialVerifyRequest extends $tea.Model {
|
|
|
793
793
|
* 1
|
|
794
794
|
*/
|
|
795
795
|
isOCR?: string;
|
|
796
|
+
merchantDetail?: CredentialVerifyRequestMerchantDetail[];
|
|
796
797
|
merchantId?: string;
|
|
798
|
+
productCode?: string;
|
|
799
|
+
prompt?: string;
|
|
800
|
+
promptModel?: string;
|
|
801
|
+
userName?: string;
|
|
802
|
+
static names(): {
|
|
803
|
+
[key: string]: string;
|
|
804
|
+
};
|
|
805
|
+
static types(): {
|
|
806
|
+
[key: string]: any;
|
|
807
|
+
};
|
|
808
|
+
constructor(map?: {
|
|
809
|
+
[key: string]: any;
|
|
810
|
+
});
|
|
811
|
+
}
|
|
812
|
+
export declare class CredentialVerifyShrinkRequest extends $tea.Model {
|
|
813
|
+
/**
|
|
814
|
+
* @example
|
|
815
|
+
* 4601*****
|
|
816
|
+
*/
|
|
817
|
+
certNum?: string;
|
|
818
|
+
/**
|
|
819
|
+
* @example
|
|
820
|
+
* 0104
|
|
821
|
+
*/
|
|
822
|
+
credName?: string;
|
|
823
|
+
/**
|
|
824
|
+
* @example
|
|
825
|
+
* 01
|
|
826
|
+
*/
|
|
827
|
+
credType?: string;
|
|
828
|
+
/**
|
|
829
|
+
* @example
|
|
830
|
+
* 429001********8211
|
|
831
|
+
*/
|
|
832
|
+
identifyNum?: string;
|
|
833
|
+
/**
|
|
834
|
+
* @example
|
|
835
|
+
* base64
|
|
836
|
+
*/
|
|
837
|
+
imageContext?: string;
|
|
838
|
+
/**
|
|
839
|
+
* @example
|
|
840
|
+
* http://marry.momocdn.com/avatar/3B/B6/3BB6527E-7467-926E-1048-B43614F20CC420230803_L.jpg
|
|
841
|
+
*/
|
|
842
|
+
imageUrl?: string;
|
|
843
|
+
/**
|
|
844
|
+
* @example
|
|
845
|
+
* 0
|
|
846
|
+
*/
|
|
847
|
+
isCheck?: string;
|
|
848
|
+
/**
|
|
849
|
+
* @example
|
|
850
|
+
* 1
|
|
851
|
+
*/
|
|
852
|
+
isOCR?: string;
|
|
853
|
+
merchantDetailShrink?: string;
|
|
854
|
+
merchantId?: string;
|
|
855
|
+
productCode?: string;
|
|
856
|
+
prompt?: string;
|
|
857
|
+
promptModel?: string;
|
|
797
858
|
userName?: string;
|
|
798
859
|
static names(): {
|
|
799
860
|
[key: string]: string;
|
|
@@ -1893,6 +1954,102 @@ export declare class InitFaceVerifyResponse extends $tea.Model {
|
|
|
1893
1954
|
[key: string]: any;
|
|
1894
1955
|
});
|
|
1895
1956
|
}
|
|
1957
|
+
export declare class InsertWhiteListSettingRequest extends $tea.Model {
|
|
1958
|
+
/**
|
|
1959
|
+
* @example
|
|
1960
|
+
* 330103xxxxxxxxxxxx
|
|
1961
|
+
*/
|
|
1962
|
+
certNo?: string;
|
|
1963
|
+
/**
|
|
1964
|
+
* @example
|
|
1965
|
+
* shsf57a4e0d9981c3bd66dc754f3d3cd
|
|
1966
|
+
*/
|
|
1967
|
+
certifyId?: string;
|
|
1968
|
+
/**
|
|
1969
|
+
* @example
|
|
1970
|
+
* xxxxxx
|
|
1971
|
+
*/
|
|
1972
|
+
remark?: string;
|
|
1973
|
+
/**
|
|
1974
|
+
* @example
|
|
1975
|
+
* 100000xxxx
|
|
1976
|
+
*/
|
|
1977
|
+
sceneId?: number;
|
|
1978
|
+
/**
|
|
1979
|
+
* @example
|
|
1980
|
+
* antcloudauth
|
|
1981
|
+
*/
|
|
1982
|
+
serviceCode?: string;
|
|
1983
|
+
/**
|
|
1984
|
+
* @example
|
|
1985
|
+
* 30
|
|
1986
|
+
*/
|
|
1987
|
+
validDay?: number;
|
|
1988
|
+
static names(): {
|
|
1989
|
+
[key: string]: string;
|
|
1990
|
+
};
|
|
1991
|
+
static types(): {
|
|
1992
|
+
[key: string]: any;
|
|
1993
|
+
};
|
|
1994
|
+
constructor(map?: {
|
|
1995
|
+
[key: string]: any;
|
|
1996
|
+
});
|
|
1997
|
+
}
|
|
1998
|
+
export declare class InsertWhiteListSettingResponseBody extends $tea.Model {
|
|
1999
|
+
/**
|
|
2000
|
+
* @example
|
|
2001
|
+
* 200
|
|
2002
|
+
*/
|
|
2003
|
+
code?: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* @example
|
|
2006
|
+
* success
|
|
2007
|
+
*/
|
|
2008
|
+
message?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* @remarks
|
|
2011
|
+
* Id of the request
|
|
2012
|
+
*
|
|
2013
|
+
* @example
|
|
2014
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2015
|
+
*/
|
|
2016
|
+
requestId?: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* @example
|
|
2019
|
+
* true
|
|
2020
|
+
*/
|
|
2021
|
+
resultObject?: boolean;
|
|
2022
|
+
/**
|
|
2023
|
+
* @example
|
|
2024
|
+
* true
|
|
2025
|
+
*/
|
|
2026
|
+
success?: boolean;
|
|
2027
|
+
static names(): {
|
|
2028
|
+
[key: string]: string;
|
|
2029
|
+
};
|
|
2030
|
+
static types(): {
|
|
2031
|
+
[key: string]: any;
|
|
2032
|
+
};
|
|
2033
|
+
constructor(map?: {
|
|
2034
|
+
[key: string]: any;
|
|
2035
|
+
});
|
|
2036
|
+
}
|
|
2037
|
+
export declare class InsertWhiteListSettingResponse extends $tea.Model {
|
|
2038
|
+
headers?: {
|
|
2039
|
+
[key: string]: string;
|
|
2040
|
+
};
|
|
2041
|
+
statusCode?: number;
|
|
2042
|
+
body?: InsertWhiteListSettingResponseBody;
|
|
2043
|
+
static names(): {
|
|
2044
|
+
[key: string]: string;
|
|
2045
|
+
};
|
|
2046
|
+
static types(): {
|
|
2047
|
+
[key: string]: any;
|
|
2048
|
+
};
|
|
2049
|
+
constructor(map?: {
|
|
2050
|
+
[key: string]: any;
|
|
2051
|
+
});
|
|
2052
|
+
}
|
|
1896
2053
|
export declare class LivenessFaceVerifyRequest extends $tea.Model {
|
|
1897
2054
|
certifyId?: string;
|
|
1898
2055
|
crop?: string;
|
|
@@ -2377,6 +2534,222 @@ export declare class ModifyDeviceInfoResponse extends $tea.Model {
|
|
|
2377
2534
|
[key: string]: any;
|
|
2378
2535
|
});
|
|
2379
2536
|
}
|
|
2537
|
+
export declare class PageQueryWhiteListSettingRequest extends $tea.Model {
|
|
2538
|
+
/**
|
|
2539
|
+
* @example
|
|
2540
|
+
* 330103xxxxxxxxxxxx
|
|
2541
|
+
*/
|
|
2542
|
+
certNo?: string;
|
|
2543
|
+
/**
|
|
2544
|
+
* @example
|
|
2545
|
+
* sha75b4e19a1ddda059b920757b0e12b
|
|
2546
|
+
*/
|
|
2547
|
+
certifyId?: string;
|
|
2548
|
+
/**
|
|
2549
|
+
* @example
|
|
2550
|
+
* 1
|
|
2551
|
+
*/
|
|
2552
|
+
currentPage?: number;
|
|
2553
|
+
/**
|
|
2554
|
+
* @example
|
|
2555
|
+
* 10
|
|
2556
|
+
*/
|
|
2557
|
+
pageSize?: number;
|
|
2558
|
+
/**
|
|
2559
|
+
* @example
|
|
2560
|
+
* 1000000xxx
|
|
2561
|
+
*/
|
|
2562
|
+
sceneId?: number;
|
|
2563
|
+
/**
|
|
2564
|
+
* @example
|
|
2565
|
+
* antcloudauth
|
|
2566
|
+
*/
|
|
2567
|
+
serviceCode?: string;
|
|
2568
|
+
/**
|
|
2569
|
+
* @example
|
|
2570
|
+
* VALID
|
|
2571
|
+
*/
|
|
2572
|
+
status?: string;
|
|
2573
|
+
/**
|
|
2574
|
+
* @example
|
|
2575
|
+
* 1725379200000
|
|
2576
|
+
*/
|
|
2577
|
+
validEndDate?: string;
|
|
2578
|
+
/**
|
|
2579
|
+
* @example
|
|
2580
|
+
* 1725120000000
|
|
2581
|
+
*/
|
|
2582
|
+
validStartDate?: string;
|
|
2583
|
+
static names(): {
|
|
2584
|
+
[key: string]: string;
|
|
2585
|
+
};
|
|
2586
|
+
static types(): {
|
|
2587
|
+
[key: string]: any;
|
|
2588
|
+
};
|
|
2589
|
+
constructor(map?: {
|
|
2590
|
+
[key: string]: any;
|
|
2591
|
+
});
|
|
2592
|
+
}
|
|
2593
|
+
export declare class PageQueryWhiteListSettingResponseBody extends $tea.Model {
|
|
2594
|
+
/**
|
|
2595
|
+
* @example
|
|
2596
|
+
* 200
|
|
2597
|
+
*/
|
|
2598
|
+
code?: string;
|
|
2599
|
+
/**
|
|
2600
|
+
* @example
|
|
2601
|
+
* 1
|
|
2602
|
+
*/
|
|
2603
|
+
currentPage?: number;
|
|
2604
|
+
/**
|
|
2605
|
+
* @example
|
|
2606
|
+
* success
|
|
2607
|
+
*/
|
|
2608
|
+
message?: string;
|
|
2609
|
+
/**
|
|
2610
|
+
* @example
|
|
2611
|
+
* 10
|
|
2612
|
+
*/
|
|
2613
|
+
pageSize?: number;
|
|
2614
|
+
/**
|
|
2615
|
+
* @remarks
|
|
2616
|
+
* Id of the request
|
|
2617
|
+
*
|
|
2618
|
+
* @example
|
|
2619
|
+
* 5A6229C0-E156-48E4-B6EC-0F528BDF60D2
|
|
2620
|
+
*/
|
|
2621
|
+
requestId?: string;
|
|
2622
|
+
resultObject?: PageQueryWhiteListSettingResponseBodyResultObject[];
|
|
2623
|
+
/**
|
|
2624
|
+
* @example
|
|
2625
|
+
* true
|
|
2626
|
+
*/
|
|
2627
|
+
success?: boolean;
|
|
2628
|
+
/**
|
|
2629
|
+
* @example
|
|
2630
|
+
* 28
|
|
2631
|
+
*/
|
|
2632
|
+
totalItem?: number;
|
|
2633
|
+
/**
|
|
2634
|
+
* @example
|
|
2635
|
+
* 3
|
|
2636
|
+
*/
|
|
2637
|
+
totalPage?: number;
|
|
2638
|
+
static names(): {
|
|
2639
|
+
[key: string]: string;
|
|
2640
|
+
};
|
|
2641
|
+
static types(): {
|
|
2642
|
+
[key: string]: any;
|
|
2643
|
+
};
|
|
2644
|
+
constructor(map?: {
|
|
2645
|
+
[key: string]: any;
|
|
2646
|
+
});
|
|
2647
|
+
}
|
|
2648
|
+
export declare class PageQueryWhiteListSettingResponse extends $tea.Model {
|
|
2649
|
+
headers?: {
|
|
2650
|
+
[key: string]: string;
|
|
2651
|
+
};
|
|
2652
|
+
statusCode?: number;
|
|
2653
|
+
body?: PageQueryWhiteListSettingResponseBody;
|
|
2654
|
+
static names(): {
|
|
2655
|
+
[key: string]: string;
|
|
2656
|
+
};
|
|
2657
|
+
static types(): {
|
|
2658
|
+
[key: string]: any;
|
|
2659
|
+
};
|
|
2660
|
+
constructor(map?: {
|
|
2661
|
+
[key: string]: any;
|
|
2662
|
+
});
|
|
2663
|
+
}
|
|
2664
|
+
export declare class RemoveWhiteListSettingRequest extends $tea.Model {
|
|
2665
|
+
ids?: number[];
|
|
2666
|
+
/**
|
|
2667
|
+
* @example
|
|
2668
|
+
* antcloudauth
|
|
2669
|
+
*/
|
|
2670
|
+
serviceCode?: string;
|
|
2671
|
+
static names(): {
|
|
2672
|
+
[key: string]: string;
|
|
2673
|
+
};
|
|
2674
|
+
static types(): {
|
|
2675
|
+
[key: string]: any;
|
|
2676
|
+
};
|
|
2677
|
+
constructor(map?: {
|
|
2678
|
+
[key: string]: any;
|
|
2679
|
+
});
|
|
2680
|
+
}
|
|
2681
|
+
export declare class RemoveWhiteListSettingShrinkRequest extends $tea.Model {
|
|
2682
|
+
idsShrink?: string;
|
|
2683
|
+
/**
|
|
2684
|
+
* @example
|
|
2685
|
+
* antcloudauth
|
|
2686
|
+
*/
|
|
2687
|
+
serviceCode?: string;
|
|
2688
|
+
static names(): {
|
|
2689
|
+
[key: string]: string;
|
|
2690
|
+
};
|
|
2691
|
+
static types(): {
|
|
2692
|
+
[key: string]: any;
|
|
2693
|
+
};
|
|
2694
|
+
constructor(map?: {
|
|
2695
|
+
[key: string]: any;
|
|
2696
|
+
});
|
|
2697
|
+
}
|
|
2698
|
+
export declare class RemoveWhiteListSettingResponseBody extends $tea.Model {
|
|
2699
|
+
/**
|
|
2700
|
+
* @example
|
|
2701
|
+
* 200
|
|
2702
|
+
*/
|
|
2703
|
+
code?: string;
|
|
2704
|
+
/**
|
|
2705
|
+
* @example
|
|
2706
|
+
* success
|
|
2707
|
+
*/
|
|
2708
|
+
message?: string;
|
|
2709
|
+
/**
|
|
2710
|
+
* @remarks
|
|
2711
|
+
* Id of the request
|
|
2712
|
+
*
|
|
2713
|
+
* @example
|
|
2714
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2715
|
+
*/
|
|
2716
|
+
requestId?: string;
|
|
2717
|
+
/**
|
|
2718
|
+
* @example
|
|
2719
|
+
* true
|
|
2720
|
+
*/
|
|
2721
|
+
resultObject?: boolean;
|
|
2722
|
+
/**
|
|
2723
|
+
* @example
|
|
2724
|
+
* true
|
|
2725
|
+
*/
|
|
2726
|
+
success?: boolean;
|
|
2727
|
+
static names(): {
|
|
2728
|
+
[key: string]: string;
|
|
2729
|
+
};
|
|
2730
|
+
static types(): {
|
|
2731
|
+
[key: string]: any;
|
|
2732
|
+
};
|
|
2733
|
+
constructor(map?: {
|
|
2734
|
+
[key: string]: any;
|
|
2735
|
+
});
|
|
2736
|
+
}
|
|
2737
|
+
export declare class RemoveWhiteListSettingResponse extends $tea.Model {
|
|
2738
|
+
headers?: {
|
|
2739
|
+
[key: string]: string;
|
|
2740
|
+
};
|
|
2741
|
+
statusCode?: number;
|
|
2742
|
+
body?: RemoveWhiteListSettingResponseBody;
|
|
2743
|
+
static names(): {
|
|
2744
|
+
[key: string]: string;
|
|
2745
|
+
};
|
|
2746
|
+
static types(): {
|
|
2747
|
+
[key: string]: any;
|
|
2748
|
+
};
|
|
2749
|
+
constructor(map?: {
|
|
2750
|
+
[key: string]: any;
|
|
2751
|
+
});
|
|
2752
|
+
}
|
|
2380
2753
|
export declare class Vehicle5ItemQueryRequest extends $tea.Model {
|
|
2381
2754
|
/**
|
|
2382
2755
|
* @example
|
|
@@ -2966,6 +3339,34 @@ export declare class ContrastFaceVerifyResponseBodyResultObject extends $tea.Mod
|
|
|
2966
3339
|
[key: string]: any;
|
|
2967
3340
|
});
|
|
2968
3341
|
}
|
|
3342
|
+
export declare class CredentialVerifyRequestMerchantDetail extends $tea.Model {
|
|
3343
|
+
key?: string;
|
|
3344
|
+
value?: string;
|
|
3345
|
+
static names(): {
|
|
3346
|
+
[key: string]: string;
|
|
3347
|
+
};
|
|
3348
|
+
static types(): {
|
|
3349
|
+
[key: string]: any;
|
|
3350
|
+
};
|
|
3351
|
+
constructor(map?: {
|
|
3352
|
+
[key: string]: any;
|
|
3353
|
+
});
|
|
3354
|
+
}
|
|
3355
|
+
export declare class CredentialVerifyResponseBodyResultObjectVlResult extends $tea.Model {
|
|
3356
|
+
success?: boolean;
|
|
3357
|
+
vlContent?: {
|
|
3358
|
+
[key: string]: any;
|
|
3359
|
+
};
|
|
3360
|
+
static names(): {
|
|
3361
|
+
[key: string]: string;
|
|
3362
|
+
};
|
|
3363
|
+
static types(): {
|
|
3364
|
+
[key: string]: any;
|
|
3365
|
+
};
|
|
3366
|
+
constructor(map?: {
|
|
3367
|
+
[key: string]: any;
|
|
3368
|
+
});
|
|
3369
|
+
}
|
|
2969
3370
|
export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model {
|
|
2970
3371
|
materialInfo?: string;
|
|
2971
3372
|
ocrInfo?: string;
|
|
@@ -2992,6 +3393,7 @@ export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model
|
|
|
2992
3393
|
* *
|
|
2993
3394
|
*/
|
|
2994
3395
|
verifyResult?: string;
|
|
3396
|
+
vlResult?: CredentialVerifyResponseBodyResultObjectVlResult;
|
|
2995
3397
|
static names(): {
|
|
2996
3398
|
[key: string]: string;
|
|
2997
3399
|
};
|
|
@@ -3732,6 +4134,72 @@ export declare class MobileOnlineTimeResponseBodyResultObject extends $tea.Model
|
|
|
3732
4134
|
[key: string]: any;
|
|
3733
4135
|
});
|
|
3734
4136
|
}
|
|
4137
|
+
export declare class PageQueryWhiteListSettingResponseBodyResultObject extends $tea.Model {
|
|
4138
|
+
/**
|
|
4139
|
+
* @example
|
|
4140
|
+
* 330103xxxxxxxxxxxx
|
|
4141
|
+
*/
|
|
4142
|
+
certNo?: string;
|
|
4143
|
+
/**
|
|
4144
|
+
* @example
|
|
4145
|
+
* sha43d9cabd52d370d9f4cca9468f71e
|
|
4146
|
+
*/
|
|
4147
|
+
certifyId?: string;
|
|
4148
|
+
/**
|
|
4149
|
+
* @example
|
|
4150
|
+
* 2024-08-30 14:00:00
|
|
4151
|
+
*/
|
|
4152
|
+
gmtCreate?: string;
|
|
4153
|
+
/**
|
|
4154
|
+
* @example
|
|
4155
|
+
* 2024-08-30 14:00:00
|
|
4156
|
+
*/
|
|
4157
|
+
gmtModified?: string;
|
|
4158
|
+
/**
|
|
4159
|
+
* @example
|
|
4160
|
+
* 234822
|
|
4161
|
+
*/
|
|
4162
|
+
id?: number;
|
|
4163
|
+
/**
|
|
4164
|
+
* @example
|
|
4165
|
+
* test
|
|
4166
|
+
*/
|
|
4167
|
+
remark?: string;
|
|
4168
|
+
/**
|
|
4169
|
+
* @example
|
|
4170
|
+
* 1000000332
|
|
4171
|
+
*/
|
|
4172
|
+
sceneId?: number;
|
|
4173
|
+
/**
|
|
4174
|
+
* @example
|
|
4175
|
+
* antcloudauth
|
|
4176
|
+
*/
|
|
4177
|
+
serviceCode?: string;
|
|
4178
|
+
/**
|
|
4179
|
+
* @example
|
|
4180
|
+
* VALID
|
|
4181
|
+
*/
|
|
4182
|
+
status?: string;
|
|
4183
|
+
/**
|
|
4184
|
+
* @example
|
|
4185
|
+
* 2024-09-02 13:57:51
|
|
4186
|
+
*/
|
|
4187
|
+
validEndDate?: string;
|
|
4188
|
+
/**
|
|
4189
|
+
* @example
|
|
4190
|
+
* 2024-08-30 13:57:51
|
|
4191
|
+
*/
|
|
4192
|
+
validStartDate?: string;
|
|
4193
|
+
static names(): {
|
|
4194
|
+
[key: string]: string;
|
|
4195
|
+
};
|
|
4196
|
+
static types(): {
|
|
4197
|
+
[key: string]: any;
|
|
4198
|
+
};
|
|
4199
|
+
constructor(map?: {
|
|
4200
|
+
[key: string]: any;
|
|
4201
|
+
});
|
|
4202
|
+
}
|
|
3735
4203
|
export declare class Vehicle5ItemQueryResponseBodyResultObject extends $tea.Model {
|
|
3736
4204
|
/**
|
|
3737
4205
|
* @example
|
|
@@ -4002,11 +4470,11 @@ export default class Client extends OpenApi {
|
|
|
4002
4470
|
/**
|
|
4003
4471
|
* 凭证核验
|
|
4004
4472
|
*
|
|
4005
|
-
* @param
|
|
4473
|
+
* @param tmpReq - CredentialVerifyRequest
|
|
4006
4474
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
4007
4475
|
* @returns CredentialVerifyResponse
|
|
4008
4476
|
*/
|
|
4009
|
-
credentialVerifyWithOptions(
|
|
4477
|
+
credentialVerifyWithOptions(tmpReq: CredentialVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CredentialVerifyResponse>;
|
|
4010
4478
|
/**
|
|
4011
4479
|
* 凭证核验
|
|
4012
4480
|
*
|
|
@@ -4157,6 +4625,21 @@ export default class Client extends OpenApi {
|
|
|
4157
4625
|
* @returns InitFaceVerifyResponse
|
|
4158
4626
|
*/
|
|
4159
4627
|
initFaceVerify(request: InitFaceVerifyRequest): Promise<InitFaceVerifyResponse>;
|
|
4628
|
+
/**
|
|
4629
|
+
* 新增实人白名单
|
|
4630
|
+
*
|
|
4631
|
+
* @param request - InsertWhiteListSettingRequest
|
|
4632
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4633
|
+
* @returns InsertWhiteListSettingResponse
|
|
4634
|
+
*/
|
|
4635
|
+
insertWhiteListSettingWithOptions(request: InsertWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<InsertWhiteListSettingResponse>;
|
|
4636
|
+
/**
|
|
4637
|
+
* 新增实人白名单
|
|
4638
|
+
*
|
|
4639
|
+
* @param request - InsertWhiteListSettingRequest
|
|
4640
|
+
* @returns InsertWhiteListSettingResponse
|
|
4641
|
+
*/
|
|
4642
|
+
insertWhiteListSetting(request: InsertWhiteListSettingRequest): Promise<InsertWhiteListSettingResponse>;
|
|
4160
4643
|
/**
|
|
4161
4644
|
* @param request - LivenessFaceVerifyRequest
|
|
4162
4645
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -4254,6 +4737,36 @@ export default class Client extends OpenApi {
|
|
|
4254
4737
|
* @returns ModifyDeviceInfoResponse
|
|
4255
4738
|
*/
|
|
4256
4739
|
modifyDeviceInfo(request: ModifyDeviceInfoRequest): Promise<ModifyDeviceInfoResponse>;
|
|
4740
|
+
/**
|
|
4741
|
+
* 分页查询实人白名单配置
|
|
4742
|
+
*
|
|
4743
|
+
* @param request - PageQueryWhiteListSettingRequest
|
|
4744
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4745
|
+
* @returns PageQueryWhiteListSettingResponse
|
|
4746
|
+
*/
|
|
4747
|
+
pageQueryWhiteListSettingWithOptions(request: PageQueryWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<PageQueryWhiteListSettingResponse>;
|
|
4748
|
+
/**
|
|
4749
|
+
* 分页查询实人白名单配置
|
|
4750
|
+
*
|
|
4751
|
+
* @param request - PageQueryWhiteListSettingRequest
|
|
4752
|
+
* @returns PageQueryWhiteListSettingResponse
|
|
4753
|
+
*/
|
|
4754
|
+
pageQueryWhiteListSetting(request: PageQueryWhiteListSettingRequest): Promise<PageQueryWhiteListSettingResponse>;
|
|
4755
|
+
/**
|
|
4756
|
+
* 删除实人白名单
|
|
4757
|
+
*
|
|
4758
|
+
* @param tmpReq - RemoveWhiteListSettingRequest
|
|
4759
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4760
|
+
* @returns RemoveWhiteListSettingResponse
|
|
4761
|
+
*/
|
|
4762
|
+
removeWhiteListSettingWithOptions(tmpReq: RemoveWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<RemoveWhiteListSettingResponse>;
|
|
4763
|
+
/**
|
|
4764
|
+
* 删除实人白名单
|
|
4765
|
+
*
|
|
4766
|
+
* @param request - RemoveWhiteListSettingRequest
|
|
4767
|
+
* @returns RemoveWhiteListSettingResponse
|
|
4768
|
+
*/
|
|
4769
|
+
removeWhiteListSetting(request: RemoveWhiteListSettingRequest): Promise<RemoveWhiteListSettingResponse>;
|
|
4257
4770
|
/**
|
|
4258
4771
|
* 车五项信息识别
|
|
4259
4772
|
*
|