@alicloud/cloudauth20190307 2.7.0 → 3.0.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 +513 -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,32 @@ 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?: string;
|
|
3358
|
+
static names(): {
|
|
3359
|
+
[key: string]: string;
|
|
3360
|
+
};
|
|
3361
|
+
static types(): {
|
|
3362
|
+
[key: string]: any;
|
|
3363
|
+
};
|
|
3364
|
+
constructor(map?: {
|
|
3365
|
+
[key: string]: any;
|
|
3366
|
+
});
|
|
3367
|
+
}
|
|
2969
3368
|
export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model {
|
|
2970
3369
|
materialInfo?: string;
|
|
2971
3370
|
ocrInfo?: string;
|
|
@@ -2992,6 +3391,7 @@ export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model
|
|
|
2992
3391
|
* *
|
|
2993
3392
|
*/
|
|
2994
3393
|
verifyResult?: string;
|
|
3394
|
+
vlResult?: CredentialVerifyResponseBodyResultObjectVlResult;
|
|
2995
3395
|
static names(): {
|
|
2996
3396
|
[key: string]: string;
|
|
2997
3397
|
};
|
|
@@ -3732,6 +4132,72 @@ export declare class MobileOnlineTimeResponseBodyResultObject extends $tea.Model
|
|
|
3732
4132
|
[key: string]: any;
|
|
3733
4133
|
});
|
|
3734
4134
|
}
|
|
4135
|
+
export declare class PageQueryWhiteListSettingResponseBodyResultObject extends $tea.Model {
|
|
4136
|
+
/**
|
|
4137
|
+
* @example
|
|
4138
|
+
* 330103xxxxxxxxxxxx
|
|
4139
|
+
*/
|
|
4140
|
+
certNo?: string;
|
|
4141
|
+
/**
|
|
4142
|
+
* @example
|
|
4143
|
+
* sha43d9cabd52d370d9f4cca9468f71e
|
|
4144
|
+
*/
|
|
4145
|
+
certifyId?: string;
|
|
4146
|
+
/**
|
|
4147
|
+
* @example
|
|
4148
|
+
* 2024-08-30 14:00:00
|
|
4149
|
+
*/
|
|
4150
|
+
gmtCreate?: string;
|
|
4151
|
+
/**
|
|
4152
|
+
* @example
|
|
4153
|
+
* 2024-08-30 14:00:00
|
|
4154
|
+
*/
|
|
4155
|
+
gmtModified?: string;
|
|
4156
|
+
/**
|
|
4157
|
+
* @example
|
|
4158
|
+
* 234822
|
|
4159
|
+
*/
|
|
4160
|
+
id?: number;
|
|
4161
|
+
/**
|
|
4162
|
+
* @example
|
|
4163
|
+
* test
|
|
4164
|
+
*/
|
|
4165
|
+
remark?: string;
|
|
4166
|
+
/**
|
|
4167
|
+
* @example
|
|
4168
|
+
* 1000000332
|
|
4169
|
+
*/
|
|
4170
|
+
sceneId?: number;
|
|
4171
|
+
/**
|
|
4172
|
+
* @example
|
|
4173
|
+
* antcloudauth
|
|
4174
|
+
*/
|
|
4175
|
+
serviceCode?: string;
|
|
4176
|
+
/**
|
|
4177
|
+
* @example
|
|
4178
|
+
* VALID
|
|
4179
|
+
*/
|
|
4180
|
+
status?: string;
|
|
4181
|
+
/**
|
|
4182
|
+
* @example
|
|
4183
|
+
* 2024-09-02 13:57:51
|
|
4184
|
+
*/
|
|
4185
|
+
validEndDate?: string;
|
|
4186
|
+
/**
|
|
4187
|
+
* @example
|
|
4188
|
+
* 2024-08-30 13:57:51
|
|
4189
|
+
*/
|
|
4190
|
+
validStartDate?: string;
|
|
4191
|
+
static names(): {
|
|
4192
|
+
[key: string]: string;
|
|
4193
|
+
};
|
|
4194
|
+
static types(): {
|
|
4195
|
+
[key: string]: any;
|
|
4196
|
+
};
|
|
4197
|
+
constructor(map?: {
|
|
4198
|
+
[key: string]: any;
|
|
4199
|
+
});
|
|
4200
|
+
}
|
|
3735
4201
|
export declare class Vehicle5ItemQueryResponseBodyResultObject extends $tea.Model {
|
|
3736
4202
|
/**
|
|
3737
4203
|
* @example
|
|
@@ -4002,11 +4468,11 @@ export default class Client extends OpenApi {
|
|
|
4002
4468
|
/**
|
|
4003
4469
|
* 凭证核验
|
|
4004
4470
|
*
|
|
4005
|
-
* @param
|
|
4471
|
+
* @param tmpReq - CredentialVerifyRequest
|
|
4006
4472
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
4007
4473
|
* @returns CredentialVerifyResponse
|
|
4008
4474
|
*/
|
|
4009
|
-
credentialVerifyWithOptions(
|
|
4475
|
+
credentialVerifyWithOptions(tmpReq: CredentialVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CredentialVerifyResponse>;
|
|
4010
4476
|
/**
|
|
4011
4477
|
* 凭证核验
|
|
4012
4478
|
*
|
|
@@ -4157,6 +4623,21 @@ export default class Client extends OpenApi {
|
|
|
4157
4623
|
* @returns InitFaceVerifyResponse
|
|
4158
4624
|
*/
|
|
4159
4625
|
initFaceVerify(request: InitFaceVerifyRequest): Promise<InitFaceVerifyResponse>;
|
|
4626
|
+
/**
|
|
4627
|
+
* 新增实人白名单
|
|
4628
|
+
*
|
|
4629
|
+
* @param request - InsertWhiteListSettingRequest
|
|
4630
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4631
|
+
* @returns InsertWhiteListSettingResponse
|
|
4632
|
+
*/
|
|
4633
|
+
insertWhiteListSettingWithOptions(request: InsertWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<InsertWhiteListSettingResponse>;
|
|
4634
|
+
/**
|
|
4635
|
+
* 新增实人白名单
|
|
4636
|
+
*
|
|
4637
|
+
* @param request - InsertWhiteListSettingRequest
|
|
4638
|
+
* @returns InsertWhiteListSettingResponse
|
|
4639
|
+
*/
|
|
4640
|
+
insertWhiteListSetting(request: InsertWhiteListSettingRequest): Promise<InsertWhiteListSettingResponse>;
|
|
4160
4641
|
/**
|
|
4161
4642
|
* @param request - LivenessFaceVerifyRequest
|
|
4162
4643
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -4254,6 +4735,36 @@ export default class Client extends OpenApi {
|
|
|
4254
4735
|
* @returns ModifyDeviceInfoResponse
|
|
4255
4736
|
*/
|
|
4256
4737
|
modifyDeviceInfo(request: ModifyDeviceInfoRequest): Promise<ModifyDeviceInfoResponse>;
|
|
4738
|
+
/**
|
|
4739
|
+
* 分页查询实人白名单配置
|
|
4740
|
+
*
|
|
4741
|
+
* @param request - PageQueryWhiteListSettingRequest
|
|
4742
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4743
|
+
* @returns PageQueryWhiteListSettingResponse
|
|
4744
|
+
*/
|
|
4745
|
+
pageQueryWhiteListSettingWithOptions(request: PageQueryWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<PageQueryWhiteListSettingResponse>;
|
|
4746
|
+
/**
|
|
4747
|
+
* 分页查询实人白名单配置
|
|
4748
|
+
*
|
|
4749
|
+
* @param request - PageQueryWhiteListSettingRequest
|
|
4750
|
+
* @returns PageQueryWhiteListSettingResponse
|
|
4751
|
+
*/
|
|
4752
|
+
pageQueryWhiteListSetting(request: PageQueryWhiteListSettingRequest): Promise<PageQueryWhiteListSettingResponse>;
|
|
4753
|
+
/**
|
|
4754
|
+
* 删除实人白名单
|
|
4755
|
+
*
|
|
4756
|
+
* @param tmpReq - RemoveWhiteListSettingRequest
|
|
4757
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4758
|
+
* @returns RemoveWhiteListSettingResponse
|
|
4759
|
+
*/
|
|
4760
|
+
removeWhiteListSettingWithOptions(tmpReq: RemoveWhiteListSettingRequest, runtime: $Util.RuntimeOptions): Promise<RemoveWhiteListSettingResponse>;
|
|
4761
|
+
/**
|
|
4762
|
+
* 删除实人白名单
|
|
4763
|
+
*
|
|
4764
|
+
* @param request - RemoveWhiteListSettingRequest
|
|
4765
|
+
* @returns RemoveWhiteListSettingResponse
|
|
4766
|
+
*/
|
|
4767
|
+
removeWhiteListSetting(request: RemoveWhiteListSettingRequest): Promise<RemoveWhiteListSettingResponse>;
|
|
4257
4768
|
/**
|
|
4258
4769
|
* 车五项信息识别
|
|
4259
4770
|
*
|