@onfido/api 5.3.0 → 5.5.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/api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * Onfido API v3.6
3
- * The Onfido API (v3.6)
2
+ * Onfido Public API v3.6
3
+ * The Onfido Public API (v3.6)
4
4
  *
5
5
  * The version of the OpenAPI document: v3.6
6
6
  *
@@ -6312,6 +6312,18 @@ export interface IdentityEnhancedBreakdown {
6312
6312
  * @memberof IdentityEnhancedBreakdown
6313
6313
  */
6314
6314
  'mortality'?: IdentityEnhancedBreakdownMortality;
6315
+ /**
6316
+ *
6317
+ * @type {IdrSsnBreakdown}
6318
+ * @memberof IdentityEnhancedBreakdown
6319
+ */
6320
+ 'ssn'?: IdrSsnBreakdown;
6321
+ /**
6322
+ *
6323
+ * @type {IdrSsnBreakdown}
6324
+ * @memberof IdentityEnhancedBreakdown
6325
+ */
6326
+ 'ssn1'?: IdrSsnBreakdown;
6315
6327
  }
6316
6328
  /**
6317
6329
  * Asserts if the applicant\'s address matches any sources.
@@ -6685,6 +6697,82 @@ export interface IdentityEnhancedReport {
6685
6697
  */
6686
6698
  'properties'?: IdentityEnhancedProperties;
6687
6699
  }
6700
+ /**
6701
+ *
6702
+ * @export
6703
+ * @interface IdrSsnBreakdown
6704
+ */
6705
+ export interface IdrSsnBreakdown {
6706
+ /**
6707
+ *
6708
+ * @type {string}
6709
+ * @memberof IdrSsnBreakdown
6710
+ */
6711
+ 'result'?: string;
6712
+ /**
6713
+ *
6714
+ * @type {IdrSsnBreakdownBreakdown}
6715
+ * @memberof IdrSsnBreakdown
6716
+ */
6717
+ 'breakdown'?: IdrSsnBreakdownBreakdown;
6718
+ }
6719
+ /**
6720
+ *
6721
+ * @export
6722
+ * @interface IdrSsnBreakdownBreakdown
6723
+ */
6724
+ export interface IdrSsnBreakdownBreakdown {
6725
+ /**
6726
+ *
6727
+ * @type {IdrSsnBreakdownBreakdownLast4DigitsMatch}
6728
+ * @memberof IdrSsnBreakdownBreakdown
6729
+ */
6730
+ 'last_4_digits_match'?: IdrSsnBreakdownBreakdownLast4DigitsMatch;
6731
+ /**
6732
+ *
6733
+ * @type {IdrSsnBreakdownBreakdownFullMatch}
6734
+ * @memberof IdrSsnBreakdownBreakdown
6735
+ */
6736
+ 'full_match'?: IdrSsnBreakdownBreakdownFullMatch;
6737
+ }
6738
+ /**
6739
+ * Social security number fully matches
6740
+ * @export
6741
+ * @interface IdrSsnBreakdownBreakdownFullMatch
6742
+ */
6743
+ export interface IdrSsnBreakdownBreakdownFullMatch {
6744
+ /**
6745
+ *
6746
+ * @type {string}
6747
+ * @memberof IdrSsnBreakdownBreakdownFullMatch
6748
+ */
6749
+ 'result'?: string;
6750
+ /**
6751
+ *
6752
+ * @type {object}
6753
+ * @memberof IdrSsnBreakdownBreakdownFullMatch
6754
+ */
6755
+ 'properties'?: object;
6756
+ }
6757
+ /**
6758
+ * Last 4 digits of social security number match
6759
+ * @export
6760
+ * @interface IdrSsnBreakdownBreakdownLast4DigitsMatch
6761
+ */
6762
+ export interface IdrSsnBreakdownBreakdownLast4DigitsMatch {
6763
+ /**
6764
+ *
6765
+ * @type {string}
6766
+ * @memberof IdrSsnBreakdownBreakdownLast4DigitsMatch
6767
+ */
6768
+ 'result'?: string;
6769
+ /**
6770
+ *
6771
+ * @type {object}
6772
+ * @memberof IdrSsnBreakdownBreakdownLast4DigitsMatch
6773
+ */
6774
+ 'properties'?: object;
6775
+ }
6688
6776
  /**
6689
6777
  *
6690
6778
  * @export
@@ -10957,6 +11045,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
10957
11045
  * @throws {RequiredError}
10958
11046
  */
10959
11047
  deleteWebhook: (webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11048
+ /**
11049
+ * Retrieves the signed document or signing transaction receipt depending on the id provided.
11050
+ * @summary Retrieves the signed document or signing transaction receipt
11051
+ * @param {string} workflowRunId The unique identifier of the Workflow Run for which you want to retrieve the signed document.
11052
+ * @param {string} id The unique identifier of the file which you want to retrieve.
11053
+ * @param {*} [options] Override http request option.
11054
+ * @throws {RequiredError}
11055
+ */
11056
+ downloadAesDocument: (workflowRunId: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10960
11057
  /**
10961
11058
  * Downloads a PDF of a check with a given check ID. Returns the binary data representing the PDF.
10962
11059
  * @summary Download check
@@ -11531,6 +11628,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
11531
11628
  * @throws {RequiredError}
11532
11629
  */
11533
11630
  deleteWebhook(webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11631
+ /**
11632
+ * Retrieves the signed document or signing transaction receipt depending on the id provided.
11633
+ * @summary Retrieves the signed document or signing transaction receipt
11634
+ * @param {string} workflowRunId The unique identifier of the Workflow Run for which you want to retrieve the signed document.
11635
+ * @param {string} id The unique identifier of the file which you want to retrieve.
11636
+ * @param {*} [options] Override http request option.
11637
+ * @throws {RequiredError}
11638
+ */
11639
+ downloadAesDocument(workflowRunId: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileTransfer>>;
11534
11640
  /**
11535
11641
  * Downloads a PDF of a check with a given check ID. Returns the binary data representing the PDF.
11536
11642
  * @summary Download check
@@ -12105,6 +12211,15 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
12105
12211
  * @throws {RequiredError}
12106
12212
  */
12107
12213
  deleteWebhook(webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12214
+ /**
12215
+ * Retrieves the signed document or signing transaction receipt depending on the id provided.
12216
+ * @summary Retrieves the signed document or signing transaction receipt
12217
+ * @param {string} workflowRunId The unique identifier of the Workflow Run for which you want to retrieve the signed document.
12218
+ * @param {string} id The unique identifier of the file which you want to retrieve.
12219
+ * @param {*} [options] Override http request option.
12220
+ * @throws {RequiredError}
12221
+ */
12222
+ downloadAesDocument(workflowRunId: string, id: string, options?: RawAxiosRequestConfig): AxiosPromise<FileTransfer>;
12108
12223
  /**
12109
12224
  * Downloads a PDF of a check with a given check ID. Returns the binary data representing the PDF.
12110
12225
  * @summary Download check
@@ -12599,7 +12714,7 @@ export declare class DefaultApi extends BaseAPI {
12599
12714
  * @throws {RequiredError}
12600
12715
  * @memberof DefaultApi
12601
12716
  */
12602
- cancelReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12717
+ cancelReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12603
12718
  /**
12604
12719
  * Completes a Send / Receive Data Task.
12605
12720
  * @summary Complete Task
@@ -12610,7 +12725,7 @@ export declare class DefaultApi extends BaseAPI {
12610
12725
  * @throws {RequiredError}
12611
12726
  * @memberof DefaultApi
12612
12727
  */
12613
- completeTask(workflowRunId: string, taskId: string, completeTaskBuilder: CompleteTaskBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12728
+ completeTask(workflowRunId: string, taskId: string, completeTaskBuilder: CompleteTaskBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12614
12729
  /**
12615
12730
  * Creates a single applicant. Returns an applicant object.
12616
12731
  * @summary Create Applicant
@@ -12619,7 +12734,7 @@ export declare class DefaultApi extends BaseAPI {
12619
12734
  * @throws {RequiredError}
12620
12735
  * @memberof DefaultApi
12621
12736
  */
12622
- createApplicant(applicantBuilder: ApplicantBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any>>;
12737
+ createApplicant(applicantBuilder: ApplicantBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any, {}>>;
12623
12738
  /**
12624
12739
  * Initiates a check for an applicant, which can contain one or more reports. Returns a check object.
12625
12740
  * @summary Create a check
@@ -12628,7 +12743,7 @@ export declare class DefaultApi extends BaseAPI {
12628
12743
  * @throws {RequiredError}
12629
12744
  * @memberof DefaultApi
12630
12745
  */
12631
- createCheck(checkBuilder: CheckBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Check, any>>;
12746
+ createCheck(checkBuilder: CheckBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Check, any, {}>>;
12632
12747
  /**
12633
12748
  * Triggers the generation of the Timeline File for the designated Workflow Run.
12634
12749
  * @summary Create Timeline File for Workflow Run
@@ -12637,7 +12752,7 @@ export declare class DefaultApi extends BaseAPI {
12637
12752
  * @throws {RequiredError}
12638
12753
  * @memberof DefaultApi
12639
12754
  */
12640
- createTimelineFile(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TimelineFileReference, any>>;
12755
+ createTimelineFile(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TimelineFileReference, any, {}>>;
12641
12756
  /**
12642
12757
  * Creates a new monitor for the applicant
12643
12758
  * @summary Create monitor
@@ -12646,7 +12761,7 @@ export declare class DefaultApi extends BaseAPI {
12646
12761
  * @throws {RequiredError}
12647
12762
  * @memberof DefaultApi
12648
12763
  */
12649
- createWatchlistMonitor(watchlistMonitorBuilder: WatchlistMonitorBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitor, any>>;
12764
+ createWatchlistMonitor(watchlistMonitorBuilder: WatchlistMonitorBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitor, any, {}>>;
12650
12765
  /**
12651
12766
  * Registers a webhook. Returns a webhook object.
12652
12767
  * @summary Register webhook
@@ -12655,7 +12770,7 @@ export declare class DefaultApi extends BaseAPI {
12655
12770
  * @throws {RequiredError}
12656
12771
  * @memberof DefaultApi
12657
12772
  */
12658
- createWebhook(webhookBuilder: WebhookBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any>>;
12773
+ createWebhook(webhookBuilder: WebhookBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any, {}>>;
12659
12774
  /**
12660
12775
  * Creates and starts a Workflow Run. Returns a Workflow Run object.
12661
12776
  * @summary Create a Workflow Run
@@ -12664,7 +12779,7 @@ export declare class DefaultApi extends BaseAPI {
12664
12779
  * @throws {RequiredError}
12665
12780
  * @memberof DefaultApi
12666
12781
  */
12667
- createWorkflowRun(workflowRunBuilder: WorkflowRunBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun, any>>;
12782
+ createWorkflowRun(workflowRunBuilder: WorkflowRunBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun, any, {}>>;
12668
12783
  /**
12669
12784
  * Deletes a single applicant.
12670
12785
  * @summary Delete Applicant
@@ -12673,7 +12788,7 @@ export declare class DefaultApi extends BaseAPI {
12673
12788
  * @throws {RequiredError}
12674
12789
  * @memberof DefaultApi
12675
12790
  */
12676
- deleteApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12791
+ deleteApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12677
12792
  /**
12678
12793
  * Deactivates the given monitor
12679
12794
  * @summary Delete monitor
@@ -12682,7 +12797,7 @@ export declare class DefaultApi extends BaseAPI {
12682
12797
  * @throws {RequiredError}
12683
12798
  * @memberof DefaultApi
12684
12799
  */
12685
- deleteWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12800
+ deleteWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12686
12801
  /**
12687
12802
  * Deletes a webhook.
12688
12803
  * @summary Delete a webhook
@@ -12691,7 +12806,17 @@ export declare class DefaultApi extends BaseAPI {
12691
12806
  * @throws {RequiredError}
12692
12807
  * @memberof DefaultApi
12693
12808
  */
12694
- deleteWebhook(webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12809
+ deleteWebhook(webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12810
+ /**
12811
+ * Retrieves the signed document or signing transaction receipt depending on the id provided.
12812
+ * @summary Retrieves the signed document or signing transaction receipt
12813
+ * @param {string} workflowRunId The unique identifier of the Workflow Run for which you want to retrieve the signed document.
12814
+ * @param {string} id The unique identifier of the file which you want to retrieve.
12815
+ * @param {*} [options] Override http request option.
12816
+ * @throws {RequiredError}
12817
+ * @memberof DefaultApi
12818
+ */
12819
+ downloadAesDocument(workflowRunId: string, id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12695
12820
  /**
12696
12821
  * Downloads a PDF of a check with a given check ID. Returns the binary data representing the PDF.
12697
12822
  * @summary Download check
@@ -12700,7 +12825,7 @@ export declare class DefaultApi extends BaseAPI {
12700
12825
  * @throws {RequiredError}
12701
12826
  * @memberof DefaultApi
12702
12827
  */
12703
- downloadCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12828
+ downloadCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12704
12829
  /**
12705
12830
  * Downloads specific documents belonging to an applicant. If successful, the response will be the binary data representing the image.
12706
12831
  * @summary Download document
@@ -12709,7 +12834,7 @@ export declare class DefaultApi extends BaseAPI {
12709
12834
  * @throws {RequiredError}
12710
12835
  * @memberof DefaultApi
12711
12836
  */
12712
- downloadDocument(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12837
+ downloadDocument(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12713
12838
  /**
12714
12839
  * Downloads a document video. If successful, the response will be the binary data representing the video.
12715
12840
  * @summary Download document video
@@ -12718,7 +12843,7 @@ export declare class DefaultApi extends BaseAPI {
12718
12843
  * @throws {RequiredError}
12719
12844
  * @memberof DefaultApi
12720
12845
  */
12721
- downloadDocumentVideo(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12846
+ downloadDocumentVideo(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12722
12847
  /**
12723
12848
  * Retrieves the evidence folder for the designated Workflow Run
12724
12849
  * @summary Retrieve Workflow Run Evidence Folder
@@ -12727,7 +12852,7 @@ export declare class DefaultApi extends BaseAPI {
12727
12852
  * @throws {RequiredError}
12728
12853
  * @memberof DefaultApi
12729
12854
  */
12730
- downloadEvidenceFolder(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12855
+ downloadEvidenceFolder(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12731
12856
  /**
12732
12857
  * ID photos are downloaded using this endpoint.
12733
12858
  * @summary Download ID photo
@@ -12736,7 +12861,7 @@ export declare class DefaultApi extends BaseAPI {
12736
12861
  * @throws {RequiredError}
12737
12862
  * @memberof DefaultApi
12738
12863
  */
12739
- downloadIdPhoto(idPhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12864
+ downloadIdPhoto(idPhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12740
12865
  /**
12741
12866
  * Live photos are downloaded using this endpoint.
12742
12867
  * @summary Download live photo
@@ -12745,7 +12870,7 @@ export declare class DefaultApi extends BaseAPI {
12745
12870
  * @throws {RequiredError}
12746
12871
  * @memberof DefaultApi
12747
12872
  */
12748
- downloadLivePhoto(livePhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12873
+ downloadLivePhoto(livePhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12749
12874
  /**
12750
12875
  * Live videos are downloaded using this endpoint.
12751
12876
  * @summary Download live video
@@ -12754,7 +12879,7 @@ export declare class DefaultApi extends BaseAPI {
12754
12879
  * @throws {RequiredError}
12755
12880
  * @memberof DefaultApi
12756
12881
  */
12757
- downloadLiveVideo(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12882
+ downloadLiveVideo(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12758
12883
  /**
12759
12884
  * Returns the binary data representing a single frame from a live video.
12760
12885
  * @summary Download live video frame
@@ -12763,7 +12888,7 @@ export declare class DefaultApi extends BaseAPI {
12763
12888
  * @throws {RequiredError}
12764
12889
  * @memberof DefaultApi
12765
12890
  */
12766
- downloadLiveVideoFrame(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12891
+ downloadLiveVideoFrame(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12767
12892
  /**
12768
12893
  * Motion captures are downloaded using this endpoint.
12769
12894
  * @summary Download motion capture
@@ -12772,7 +12897,7 @@ export declare class DefaultApi extends BaseAPI {
12772
12897
  * @throws {RequiredError}
12773
12898
  * @memberof DefaultApi
12774
12899
  */
12775
- downloadMotionCapture(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12900
+ downloadMotionCapture(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12776
12901
  /**
12777
12902
  * Instead of the whole capture binary, a single frame can be downloaded using this endpoint. Returns the binary data representing the frame.
12778
12903
  * @summary Download motion capture frame
@@ -12781,7 +12906,7 @@ export declare class DefaultApi extends BaseAPI {
12781
12906
  * @throws {RequiredError}
12782
12907
  * @memberof DefaultApi
12783
12908
  */
12784
- downloadMotionCaptureFrame(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12909
+ downloadMotionCaptureFrame(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12785
12910
  /**
12786
12911
  * Downloads digital photos extracted from specific documents belonging to an applicant. If successful, the response will be the binary data representing the image.
12787
12912
  * @summary Download NFC face
@@ -12790,7 +12915,7 @@ export declare class DefaultApi extends BaseAPI {
12790
12915
  * @throws {RequiredError}
12791
12916
  * @memberof DefaultApi
12792
12917
  */
12793
- downloadNfcFace(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12918
+ downloadNfcFace(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12794
12919
  /**
12795
12920
  * Retrieves the signed document or application form depending on the file_id provided.
12796
12921
  * @summary Retrieves the signed document or application form
@@ -12800,7 +12925,7 @@ export declare class DefaultApi extends BaseAPI {
12800
12925
  * @throws {RequiredError}
12801
12926
  * @memberof DefaultApi
12802
12927
  */
12803
- downloadQesDocument(workflowRunId: string, fileId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12928
+ downloadQesDocument(workflowRunId: string, fileId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12804
12929
  /**
12805
12930
  * Retrieves the signed evidence file for the designated Workflow Run
12806
12931
  * @summary Retrieve Workflow Run Evidence Summary File
@@ -12809,7 +12934,7 @@ export declare class DefaultApi extends BaseAPI {
12809
12934
  * @throws {RequiredError}
12810
12935
  * @memberof DefaultApi
12811
12936
  */
12812
- downloadSignedEvidenceFile(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
12937
+ downloadSignedEvidenceFile(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12813
12938
  /**
12814
12939
  * Extract information from a document
12815
12940
  * @summary Autofill
@@ -12818,7 +12943,7 @@ export declare class DefaultApi extends BaseAPI {
12818
12943
  * @throws {RequiredError}
12819
12944
  * @memberof DefaultApi
12820
12945
  */
12821
- extract(extractRequest: ExtractRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Extraction, any>>;
12946
+ extract(extractRequest: ExtractRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Extraction, any, {}>>;
12822
12947
  /**
12823
12948
  * Search for addresses by postcode
12824
12949
  * @summary Address Picker
@@ -12827,7 +12952,7 @@ export declare class DefaultApi extends BaseAPI {
12827
12952
  * @throws {RequiredError}
12828
12953
  * @memberof DefaultApi
12829
12954
  */
12830
- findAddresses(postcode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddressesList, any>>;
12955
+ findAddresses(postcode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddressesList, any, {}>>;
12831
12956
  /**
12832
12957
  * Retrieves a single applicant. Returns an applicant object.
12833
12958
  * @summary Retrieve Applicant
@@ -12836,7 +12961,7 @@ export declare class DefaultApi extends BaseAPI {
12836
12961
  * @throws {RequiredError}
12837
12962
  * @memberof DefaultApi
12838
12963
  */
12839
- findApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any>>;
12964
+ findApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any, {}>>;
12840
12965
  /**
12841
12966
  * Retrieves consents for single applicant.
12842
12967
  * @summary Retrieve Applicant Consents
@@ -12845,7 +12970,7 @@ export declare class DefaultApi extends BaseAPI {
12845
12970
  * @throws {RequiredError}
12846
12971
  * @memberof DefaultApi
12847
12972
  */
12848
- findApplicantConsents(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicantConsent[], any>>;
12973
+ findApplicantConsents(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicantConsent[], any, {}>>;
12849
12974
  /**
12850
12975
  * Retrieves a single check. Returns a check object.
12851
12976
  * @summary Retrieve a Check
@@ -12854,7 +12979,7 @@ export declare class DefaultApi extends BaseAPI {
12854
12979
  * @throws {RequiredError}
12855
12980
  * @memberof DefaultApi
12856
12981
  */
12857
- findCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Check, any>>;
12982
+ findCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Check, any, {}>>;
12858
12983
  /**
12859
12984
  * A single document can be retrieved by calling this endpoint with the document\'s unique identifier.
12860
12985
  * @summary Retrieve document
@@ -12863,7 +12988,7 @@ export declare class DefaultApi extends BaseAPI {
12863
12988
  * @throws {RequiredError}
12864
12989
  * @memberof DefaultApi
12865
12990
  */
12866
- findDocument(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Document, any>>;
12991
+ findDocument(documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Document, any, {}>>;
12867
12992
  /**
12868
12993
  * Retrieves a single ID photo. Returns a ID photo object.
12869
12994
  * @summary Retrieve ID photo
@@ -12872,7 +12997,7 @@ export declare class DefaultApi extends BaseAPI {
12872
12997
  * @throws {RequiredError}
12873
12998
  * @memberof DefaultApi
12874
12999
  */
12875
- findIdPhoto(idPhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhoto, any>>;
13000
+ findIdPhoto(idPhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhoto, any, {}>>;
12876
13001
  /**
12877
13002
  * Retrieves a single live photo. Returns a live photo object.
12878
13003
  * @summary Retrieve live photo
@@ -12881,7 +13006,7 @@ export declare class DefaultApi extends BaseAPI {
12881
13006
  * @throws {RequiredError}
12882
13007
  * @memberof DefaultApi
12883
13008
  */
12884
- findLivePhoto(livePhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhoto, any>>;
13009
+ findLivePhoto(livePhotoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhoto, any, {}>>;
12885
13010
  /**
12886
13011
  * Retrieves a single live video. Returns the corresponding live video object.
12887
13012
  * @summary Retrieve live video
@@ -12890,7 +13015,7 @@ export declare class DefaultApi extends BaseAPI {
12890
13015
  * @throws {RequiredError}
12891
13016
  * @memberof DefaultApi
12892
13017
  */
12893
- findLiveVideo(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LiveVideo, any>>;
13018
+ findLiveVideo(liveVideoId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LiveVideo, any, {}>>;
12894
13019
  /**
12895
13020
  * Retrieves a single motion capture. Returns the corresponding motion capture object.
12896
13021
  * @summary Retrieve motion capture
@@ -12899,7 +13024,7 @@ export declare class DefaultApi extends BaseAPI {
12899
13024
  * @throws {RequiredError}
12900
13025
  * @memberof DefaultApi
12901
13026
  */
12902
- findMotionCapture(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MotionCapture, any>>;
13027
+ findMotionCapture(motionCaptureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MotionCapture, any, {}>>;
12903
13028
  /**
12904
13029
  * A single report can be retrieved using this endpoint with the corresponding unique identifier.
12905
13030
  * @summary Retrieve report
@@ -12908,7 +13033,7 @@ export declare class DefaultApi extends BaseAPI {
12908
13033
  * @throws {RequiredError}
12909
13034
  * @memberof DefaultApi
12910
13035
  */
12911
- findReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Report, any>>;
13036
+ findReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Report, any, {}>>;
12912
13037
  /**
12913
13038
  * A single task can be retrieved by calling this endpoint with the unique identifier of the Task and Workflow Run.
12914
13039
  * @summary Retrieve Task
@@ -12918,7 +13043,7 @@ export declare class DefaultApi extends BaseAPI {
12918
13043
  * @throws {RequiredError}
12919
13044
  * @memberof DefaultApi
12920
13045
  */
12921
- findTask(workflowRunId: string, taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
13046
+ findTask(workflowRunId: string, taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any, {}>>;
12922
13047
  /**
12923
13048
  * Retrieves the Timeline File for the designated Workflow Run.
12924
13049
  * @summary Retrieve Timeline File for Workflow Run
@@ -12928,7 +13053,7 @@ export declare class DefaultApi extends BaseAPI {
12928
13053
  * @throws {RequiredError}
12929
13054
  * @memberof DefaultApi
12930
13055
  */
12931
- findTimelineFile(workflowRunId: string, timelineFileId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any>>;
13056
+ findTimelineFile(workflowRunId: string, timelineFileId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTransfer, any, {}>>;
12932
13057
  /**
12933
13058
  * Retrieves a single monitor
12934
13059
  * @summary Retrieve monitor
@@ -12937,7 +13062,7 @@ export declare class DefaultApi extends BaseAPI {
12937
13062
  * @throws {RequiredError}
12938
13063
  * @memberof DefaultApi
12939
13064
  */
12940
- findWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitor, any>>;
13065
+ findWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitor, any, {}>>;
12941
13066
  /**
12942
13067
  * Retrieves a single webhook. Returns a webhook object.
12943
13068
  * @summary Retrieve a Webhook
@@ -12946,7 +13071,7 @@ export declare class DefaultApi extends BaseAPI {
12946
13071
  * @throws {RequiredError}
12947
13072
  * @memberof DefaultApi
12948
13073
  */
12949
- findWebhook(webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any>>;
13074
+ findWebhook(webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any, {}>>;
12950
13075
  /**
12951
13076
  * A single workflow run can be retrieved by calling this endpoint with the unique identifier of the Workflow Run.
12952
13077
  * @summary Retrieve Workflow Run
@@ -12955,7 +13080,7 @@ export declare class DefaultApi extends BaseAPI {
12955
13080
  * @throws {RequiredError}
12956
13081
  * @memberof DefaultApi
12957
13082
  */
12958
- findWorkflowRun(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun, any>>;
13083
+ findWorkflowRun(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun, any, {}>>;
12959
13084
  /**
12960
13085
  * Triggers a new check with an updated report to be generated by the monitor, as if the monitor had received an update.
12961
13086
  * @summary Force new report creation (BETA)
@@ -12964,7 +13089,7 @@ export declare class DefaultApi extends BaseAPI {
12964
13089
  * @throws {RequiredError}
12965
13090
  * @memberof DefaultApi
12966
13091
  */
12967
- forceReportCreationFromWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13092
+ forceReportCreationFromWatchlistMonitor(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12968
13093
  /**
12969
13094
  * Generates an SDK token. Returns a token object containing the SDK token.
12970
13095
  * @summary Generate a SDK token
@@ -12973,7 +13098,7 @@ export declare class DefaultApi extends BaseAPI {
12973
13098
  * @throws {RequiredError}
12974
13099
  * @memberof DefaultApi
12975
13100
  */
12976
- generateSdkToken(sdkTokenBuilder: SdkTokenBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SdkToken, any>>;
13101
+ generateSdkToken(sdkTokenBuilder: SdkTokenBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SdkToken, any, {}>>;
12977
13102
  /**
12978
13103
  * Lists all applicants you\'ve created, sorted by creation date in descending order.
12979
13104
  * @summary List Applicants
@@ -12984,7 +13109,7 @@ export declare class DefaultApi extends BaseAPI {
12984
13109
  * @throws {RequiredError}
12985
13110
  * @memberof DefaultApi
12986
13111
  */
12987
- listApplicants(page?: number, perPage?: number, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicantsList, any>>;
13112
+ listApplicants(page?: number, perPage?: number, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicantsList, any, {}>>;
12988
13113
  /**
12989
13114
  * Retrieves a single check. Returns a check object.
12990
13115
  * @summary Retrieve Checks
@@ -12993,7 +13118,7 @@ export declare class DefaultApi extends BaseAPI {
12993
13118
  * @throws {RequiredError}
12994
13119
  * @memberof DefaultApi
12995
13120
  */
12996
- listChecks(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChecksList, any>>;
13121
+ listChecks(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChecksList, any, {}>>;
12997
13122
  /**
12998
13123
  * All documents belonging to an applicant can be listed from this endpoint
12999
13124
  * @summary List documents
@@ -13002,7 +13127,7 @@ export declare class DefaultApi extends BaseAPI {
13002
13127
  * @throws {RequiredError}
13003
13128
  * @memberof DefaultApi
13004
13129
  */
13005
- listDocuments(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentsList, any>>;
13130
+ listDocuments(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentsList, any, {}>>;
13006
13131
  /**
13007
13132
  * Lists the ID photos that belong to an applicant.
13008
13133
  * @summary List ID photos
@@ -13011,7 +13136,7 @@ export declare class DefaultApi extends BaseAPI {
13011
13136
  * @throws {RequiredError}
13012
13137
  * @memberof DefaultApi
13013
13138
  */
13014
- listIdPhotos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhotosList, any>>;
13139
+ listIdPhotos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhotosList, any, {}>>;
13015
13140
  /**
13016
13141
  * Lists the live photos that belong to an applicant.
13017
13142
  * @summary List live photos
@@ -13020,7 +13145,7 @@ export declare class DefaultApi extends BaseAPI {
13020
13145
  * @throws {RequiredError}
13021
13146
  * @memberof DefaultApi
13022
13147
  */
13023
- listLivePhotos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhotosList, any>>;
13148
+ listLivePhotos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhotosList, any, {}>>;
13024
13149
  /**
13025
13150
  * Lists all the live videos that belong to an applicant.
13026
13151
  * @summary List live videos
@@ -13029,7 +13154,7 @@ export declare class DefaultApi extends BaseAPI {
13029
13154
  * @throws {RequiredError}
13030
13155
  * @memberof DefaultApi
13031
13156
  */
13032
- listLiveVideos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LiveVideosList, any>>;
13157
+ listLiveVideos(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LiveVideosList, any, {}>>;
13033
13158
  /**
13034
13159
  * Lists all the motion captures that belong to an applicant.
13035
13160
  * @summary List motion captures
@@ -13038,7 +13163,7 @@ export declare class DefaultApi extends BaseAPI {
13038
13163
  * @throws {RequiredError}
13039
13164
  * @memberof DefaultApi
13040
13165
  */
13041
- listMotionCaptures(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MotionCapturesList, any>>;
13166
+ listMotionCaptures(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MotionCapturesList, any, {}>>;
13042
13167
  /**
13043
13168
  * Returns all repeat attempts for a given Document report
13044
13169
  * @summary Retrieve repeat attempts
@@ -13047,7 +13172,7 @@ export declare class DefaultApi extends BaseAPI {
13047
13172
  * @throws {RequiredError}
13048
13173
  * @memberof DefaultApi
13049
13174
  */
13050
- listRepeatAttempts(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RepeatAttemptsList, any>>;
13175
+ listRepeatAttempts(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RepeatAttemptsList, any, {}>>;
13051
13176
  /**
13052
13177
  * All the reports belonging to a particular check can be listed from this endpoint.
13053
13178
  * @summary List reports
@@ -13056,7 +13181,7 @@ export declare class DefaultApi extends BaseAPI {
13056
13181
  * @throws {RequiredError}
13057
13182
  * @memberof DefaultApi
13058
13183
  */
13059
- listReports(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportsList, any>>;
13184
+ listReports(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportsList, any, {}>>;
13060
13185
  /**
13061
13186
  * The tasks of a Workflow can be retrieved by calling this endpoint with the unique identifier of the Workflow Run.
13062
13187
  * @summary List Tasks
@@ -13065,7 +13190,7 @@ export declare class DefaultApi extends BaseAPI {
13065
13190
  * @throws {RequiredError}
13066
13191
  * @memberof DefaultApi
13067
13192
  */
13068
- listTasks(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskItem[], any>>;
13193
+ listTasks(workflowRunId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskItem[], any, {}>>;
13069
13194
  /**
13070
13195
  * List match IDs on this monitor, as well as their enabled/disabled status
13071
13196
  * @summary List matches (BETA)
@@ -13074,7 +13199,7 @@ export declare class DefaultApi extends BaseAPI {
13074
13199
  * @throws {RequiredError}
13075
13200
  * @memberof DefaultApi
13076
13201
  */
13077
- listWatchlistMonitorMatches(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorMatchesList, any>>;
13202
+ listWatchlistMonitorMatches(monitorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorMatchesList, any, {}>>;
13078
13203
  /**
13079
13204
  * List all available monitors for an applicant
13080
13205
  * @summary List monitors
@@ -13084,7 +13209,7 @@ export declare class DefaultApi extends BaseAPI {
13084
13209
  * @throws {RequiredError}
13085
13210
  * @memberof DefaultApi
13086
13211
  */
13087
- listWatchlistMonitors(applicantId: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorsList, any>>;
13212
+ listWatchlistMonitors(applicantId: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorsList, any, {}>>;
13088
13213
  /**
13089
13214
  * Lists all webhooks you\'ve created.
13090
13215
  * @summary List webhooks
@@ -13092,7 +13217,7 @@ export declare class DefaultApi extends BaseAPI {
13092
13217
  * @throws {RequiredError}
13093
13218
  * @memberof DefaultApi
13094
13219
  */
13095
- listWebhooks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhooksList, any>>;
13220
+ listWebhooks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhooksList, any, {}>>;
13096
13221
  /**
13097
13222
  * Retrieves the Workflow Runs of the client. Returns a list of Workflow Run objects.
13098
13223
  * @summary List Workflow Runs
@@ -13106,7 +13231,7 @@ export declare class DefaultApi extends BaseAPI {
13106
13231
  * @throws {RequiredError}
13107
13232
  * @memberof DefaultApi
13108
13233
  */
13109
- listWorkflowRuns(page?: number, status?: string, createdAtGt?: string, createdAtLt?: string, sort?: ListWorkflowRunsSortEnum, applicantId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun[], any>>;
13234
+ listWorkflowRuns(page?: number, status?: string, createdAtGt?: string, createdAtLt?: string, sort?: ListWorkflowRunsSortEnum, applicantId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowRun[], any, {}>>;
13110
13235
  /**
13111
13236
  * Run a health check on the Onfido API
13112
13237
  * @summary Ping
@@ -13114,7 +13239,7 @@ export declare class DefaultApi extends BaseAPI {
13114
13239
  * @throws {RequiredError}
13115
13240
  * @memberof DefaultApi
13116
13241
  */
13117
- ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
13242
+ ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
13118
13243
  /**
13119
13244
  * Create Feedback on checks and reports
13120
13245
  * @summary Fraud reporting (ALPHA)
@@ -13123,7 +13248,7 @@ export declare class DefaultApi extends BaseAPI {
13123
13248
  * @throws {RequiredError}
13124
13249
  * @memberof DefaultApi
13125
13250
  */
13126
- postResultsFeedback(resultsFeedback: ResultsFeedback, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResultsFeedback, any>>;
13251
+ postResultsFeedback(resultsFeedback: ResultsFeedback, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResultsFeedback, any, {}>>;
13127
13252
  /**
13128
13253
  * Resends events to all webhooks registered with a matching environment in your account.
13129
13254
  * @summary Resends webhooks
@@ -13132,7 +13257,7 @@ export declare class DefaultApi extends BaseAPI {
13132
13257
  * @throws {RequiredError}
13133
13258
  * @memberof DefaultApi
13134
13259
  */
13135
- resendWebhooks(webhookResend: WebhookResend, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13260
+ resendWebhooks(webhookResend: WebhookResend, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13136
13261
  /**
13137
13262
  * Restores a single applicant scheduled for deletion.
13138
13263
  * @summary Restore Applicant
@@ -13141,7 +13266,7 @@ export declare class DefaultApi extends BaseAPI {
13141
13266
  * @throws {RequiredError}
13142
13267
  * @memberof DefaultApi
13143
13268
  */
13144
- restoreApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13269
+ restoreApplicant(applicantId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13145
13270
  /**
13146
13271
  * Resumes a paused check.
13147
13272
  * @summary Resume a Check
@@ -13150,7 +13275,7 @@ export declare class DefaultApi extends BaseAPI {
13150
13275
  * @throws {RequiredError}
13151
13276
  * @memberof DefaultApi
13152
13277
  */
13153
- resumeCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13278
+ resumeCheck(checkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13154
13279
  /**
13155
13280
  * Resumes a single paused report.
13156
13281
  * @summary Resume report
@@ -13159,7 +13284,7 @@ export declare class DefaultApi extends BaseAPI {
13159
13284
  * @throws {RequiredError}
13160
13285
  * @memberof DefaultApi
13161
13286
  */
13162
- resumeReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13287
+ resumeReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13163
13288
  /**
13164
13289
  * Allows updating applicant\'s information before any checks is created. - Partial updates - Addresses and ID numbers present will replace existing ones - Same applicant validations to create applicant
13165
13290
  * @summary Update Applicant
@@ -13169,7 +13294,7 @@ export declare class DefaultApi extends BaseAPI {
13169
13294
  * @throws {RequiredError}
13170
13295
  * @memberof DefaultApi
13171
13296
  */
13172
- updateApplicant(applicantId: string, applicantUpdater: ApplicantUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any>>;
13297
+ updateApplicant(applicantId: string, applicantUpdater: ApplicantUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Applicant, any, {}>>;
13173
13298
  /**
13174
13299
  * Update the status of the given matches
13175
13300
  * @summary Set match status (BETA)
@@ -13179,7 +13304,7 @@ export declare class DefaultApi extends BaseAPI {
13179
13304
  * @throws {RequiredError}
13180
13305
  * @memberof DefaultApi
13181
13306
  */
13182
- updateWatchlistMonitorMatch(monitorId: string, watchlistMonitorMatchesUpdater: WatchlistMonitorMatchesUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorMatchesList, any>>;
13307
+ updateWatchlistMonitorMatch(monitorId: string, watchlistMonitorMatchesUpdater: WatchlistMonitorMatchesUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchlistMonitorMatchesList, any, {}>>;
13183
13308
  /**
13184
13309
  * Edits a webhook. Returns the updated webhook object.
13185
13310
  * @summary Edit a webhook
@@ -13189,7 +13314,7 @@ export declare class DefaultApi extends BaseAPI {
13189
13314
  * @throws {RequiredError}
13190
13315
  * @memberof DefaultApi
13191
13316
  */
13192
- updateWebhook(webhookId: string, webhookUpdater: WebhookUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any>>;
13317
+ updateWebhook(webhookId: string, webhookUpdater: WebhookUpdater, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Webhook, any, {}>>;
13193
13318
  /**
13194
13319
  * Documents are uploaded using this endpoint. Along with the file upload the relevant document type must be specified. Documents must be uploaded as a multipart form. The valid file types are: jpg, png and pdf. The file size must be between 2KB and 3MB.
13195
13320
  * @summary Upload a document
@@ -13205,7 +13330,7 @@ export declare class DefaultApi extends BaseAPI {
13205
13330
  * @throws {RequiredError}
13206
13331
  * @memberof DefaultApi
13207
13332
  */
13208
- uploadDocument(type: DocumentTypes, applicantId: string, file: FileTransfer, fileType?: string, side?: UploadDocumentSideEnum, issuingCountry?: CountryCodes, validateImageQuality?: boolean, location?: LocationBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Document, any>>;
13333
+ uploadDocument(type: DocumentTypes, applicantId: string, file: FileTransfer, fileType?: string, side?: UploadDocumentSideEnum, issuingCountry?: CountryCodes, validateImageQuality?: boolean, location?: LocationBuilder, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Document, any, {}>>;
13209
13334
  /**
13210
13335
  * You can upload ID photos to this endpoint. Like document upload, files must be uploaded as a multipart form. Valid file types are jpg, png and pdf. The file size must be between 32KB and 10MB.
13211
13336
  * @summary Upload ID photo
@@ -13215,7 +13340,7 @@ export declare class DefaultApi extends BaseAPI {
13215
13340
  * @throws {RequiredError}
13216
13341
  * @memberof DefaultApi
13217
13342
  */
13218
- uploadIdPhoto(applicantId?: string, file?: FileTransfer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhoto, any>>;
13343
+ uploadIdPhoto(applicantId?: string, file?: FileTransfer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdPhoto, any, {}>>;
13219
13344
  /**
13220
13345
  * You can upload live photos to this endpoint. Like document upload, files must be uploaded as a multipart form. Valid file types are jpg, png and pdf. The file size must be between 32KB and 10MB. Live photos are validated at the point of upload to check that they contain exactly one face. This validation can be disabled by setting the advanced_validation argument to false.
13221
13346
  * @summary Upload live photo
@@ -13226,7 +13351,7 @@ export declare class DefaultApi extends BaseAPI {
13226
13351
  * @throws {RequiredError}
13227
13352
  * @memberof DefaultApi
13228
13353
  */
13229
- uploadLivePhoto(applicantId?: string, file?: FileTransfer, advancedValidation?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhoto, any>>;
13354
+ uploadLivePhoto(applicantId?: string, file?: FileTransfer, advancedValidation?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LivePhoto, any, {}>>;
13230
13355
  }
13231
13356
  /**
13232
13357
  * @export