@nestbox-ai/admin 1.0.63 → 1.0.64
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/.openapi-generator/FILES +1 -0
- package/README.md +27 -2
- package/api.ts +1999 -0
- package/dist/api.d.ts +972 -0
- package/dist/api.js +1950 -2
- package/dist/esm/api.d.ts +972 -0
- package/dist/esm/api.js +1944 -0
- package/docs/DocumentProcessingApi.md +1521 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -646,6 +646,978 @@ export declare class AuthApi extends BaseAPI {
|
|
|
646
646
|
*/
|
|
647
647
|
authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any, {}>>;
|
|
648
648
|
}
|
|
649
|
+
/**
|
|
650
|
+
* DocumentProcessingApi - axios parameter creator
|
|
651
|
+
*/
|
|
652
|
+
export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
653
|
+
/**
|
|
654
|
+
*
|
|
655
|
+
* @summary Create batch query from YAML file
|
|
656
|
+
* @param {string} projectId
|
|
657
|
+
* @param {string} instanceId
|
|
658
|
+
* @param {*} [options] Override http request option.
|
|
659
|
+
* @throws {RequiredError}
|
|
660
|
+
*/
|
|
661
|
+
documentProcessingControllerCreateBatchQuery: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @summary Create document processing job by uploading file
|
|
665
|
+
* @param {string} projectId
|
|
666
|
+
* @param {string} instanceId
|
|
667
|
+
* @param {*} [options] Override http request option.
|
|
668
|
+
* @throws {RequiredError}
|
|
669
|
+
*/
|
|
670
|
+
documentProcessingControllerCreateDocumentProcessingJob: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
671
|
+
/**
|
|
672
|
+
*
|
|
673
|
+
* @summary Create evaluation from YAML file
|
|
674
|
+
* @param {string} projectId
|
|
675
|
+
* @param {string} instanceId
|
|
676
|
+
* @param {*} [options] Override http request option.
|
|
677
|
+
* @throws {RequiredError}
|
|
678
|
+
*/
|
|
679
|
+
documentProcessingControllerCreateEval: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @summary Create processing profile from YAML
|
|
683
|
+
* @param {string} projectId
|
|
684
|
+
* @param {string} instanceId
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
*/
|
|
688
|
+
documentProcessingControllerCreateProfile: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
689
|
+
/**
|
|
690
|
+
*
|
|
691
|
+
* @summary Create webhook for receiving notifications
|
|
692
|
+
* @param {string} projectId
|
|
693
|
+
* @param {string} instanceId
|
|
694
|
+
* @param {*} [options] Override http request option.
|
|
695
|
+
* @throws {RequiredError}
|
|
696
|
+
*/
|
|
697
|
+
documentProcessingControllerCreateWebhook: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @summary Delete webhook
|
|
701
|
+
* @param {string} projectId
|
|
702
|
+
* @param {string} instanceId
|
|
703
|
+
* @param {string} webhookId
|
|
704
|
+
* @param {*} [options] Override http request option.
|
|
705
|
+
* @throws {RequiredError}
|
|
706
|
+
*/
|
|
707
|
+
documentProcessingControllerDeleteWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
708
|
+
/**
|
|
709
|
+
*
|
|
710
|
+
* @summary Download document artifacts as archive
|
|
711
|
+
* @param {string} projectId
|
|
712
|
+
* @param {string} instanceId
|
|
713
|
+
* @param {string} documentId
|
|
714
|
+
* @param {*} [options] Override http request option.
|
|
715
|
+
* @throws {RequiredError}
|
|
716
|
+
*/
|
|
717
|
+
documentProcessingControllerDownloadDocumentArtifacts: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
718
|
+
/**
|
|
719
|
+
*
|
|
720
|
+
* @summary Get processed document by ID
|
|
721
|
+
* @param {string} projectId
|
|
722
|
+
* @param {string} instanceId
|
|
723
|
+
* @param {string} documentId
|
|
724
|
+
* @param {*} [options] Override http request option.
|
|
725
|
+
* @throws {RequiredError}
|
|
726
|
+
*/
|
|
727
|
+
documentProcessingControllerGetDocument: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* @summary Get evaluation details by document ID and eval ID
|
|
731
|
+
* @param {string} projectId
|
|
732
|
+
* @param {string} instanceId
|
|
733
|
+
* @param {string} documentId
|
|
734
|
+
* @param {string} evalId
|
|
735
|
+
* @param {*} [options] Override http request option.
|
|
736
|
+
* @throws {RequiredError}
|
|
737
|
+
*/
|
|
738
|
+
documentProcessingControllerGetEval: (projectId: string, instanceId: string, documentId: string, evalId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
739
|
+
/**
|
|
740
|
+
*
|
|
741
|
+
* @summary Get document processing API client health
|
|
742
|
+
* @param {string} projectId
|
|
743
|
+
* @param {string} instanceId
|
|
744
|
+
* @param {*} [options] Override http request option.
|
|
745
|
+
* @throws {RequiredError}
|
|
746
|
+
*/
|
|
747
|
+
documentProcessingControllerGetHealth: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
748
|
+
/**
|
|
749
|
+
*
|
|
750
|
+
* @summary Get processing job details by ID
|
|
751
|
+
* @param {string} projectId
|
|
752
|
+
* @param {string} instanceId
|
|
753
|
+
* @param {string} jobId
|
|
754
|
+
* @param {*} [options] Override http request option.
|
|
755
|
+
* @throws {RequiredError}
|
|
756
|
+
*/
|
|
757
|
+
documentProcessingControllerGetJob: (projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* @summary Get processing job status (lightweight)
|
|
761
|
+
* @param {string} projectId
|
|
762
|
+
* @param {string} instanceId
|
|
763
|
+
* @param {string} jobId
|
|
764
|
+
* @param {*} [options] Override http request option.
|
|
765
|
+
* @throws {RequiredError}
|
|
766
|
+
*/
|
|
767
|
+
documentProcessingControllerGetJobStatus: (projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* @summary Get processing profile by ID
|
|
771
|
+
* @param {string} projectId
|
|
772
|
+
* @param {string} instanceId
|
|
773
|
+
* @param {string} profileId
|
|
774
|
+
* @param {*} [options] Override http request option.
|
|
775
|
+
* @throws {RequiredError}
|
|
776
|
+
*/
|
|
777
|
+
documentProcessingControllerGetProfile: (projectId: string, instanceId: string, profileId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
778
|
+
/**
|
|
779
|
+
*
|
|
780
|
+
* @summary Get profile schema for YAML configuration
|
|
781
|
+
* @param {string} projectId
|
|
782
|
+
* @param {string} instanceId
|
|
783
|
+
* @param {*} [options] Override http request option.
|
|
784
|
+
* @throws {RequiredError}
|
|
785
|
+
*/
|
|
786
|
+
documentProcessingControllerGetProfileSchema: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
787
|
+
/**
|
|
788
|
+
*
|
|
789
|
+
* @summary Get batch query details by ID
|
|
790
|
+
* @param {string} projectId
|
|
791
|
+
* @param {string} instanceId
|
|
792
|
+
* @param {string} queryId
|
|
793
|
+
* @param {*} [options] Override http request option.
|
|
794
|
+
* @throws {RequiredError}
|
|
795
|
+
*/
|
|
796
|
+
documentProcessingControllerGetQuery: (projectId: string, instanceId: string, queryId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @summary Get webhook details by ID
|
|
800
|
+
* @param {string} projectId
|
|
801
|
+
* @param {string} instanceId
|
|
802
|
+
* @param {string} webhookId
|
|
803
|
+
* @param {*} [options] Override http request option.
|
|
804
|
+
* @throws {RequiredError}
|
|
805
|
+
*/
|
|
806
|
+
documentProcessingControllerGetWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
807
|
+
/**
|
|
808
|
+
*
|
|
809
|
+
* @summary List processed documents with pagination and filters
|
|
810
|
+
* @param {string} projectId
|
|
811
|
+
* @param {string} instanceId
|
|
812
|
+
* @param {*} [options] Override http request option.
|
|
813
|
+
* @throws {RequiredError}
|
|
814
|
+
*/
|
|
815
|
+
documentProcessingControllerListDocuments: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
816
|
+
/**
|
|
817
|
+
*
|
|
818
|
+
* @summary List evaluations for a document with pagination
|
|
819
|
+
* @param {string} projectId
|
|
820
|
+
* @param {string} instanceId
|
|
821
|
+
* @param {string} documentId
|
|
822
|
+
* @param {*} [options] Override http request option.
|
|
823
|
+
* @throws {RequiredError}
|
|
824
|
+
*/
|
|
825
|
+
documentProcessingControllerListEvals: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
826
|
+
/**
|
|
827
|
+
*
|
|
828
|
+
* @summary List processing jobs with pagination
|
|
829
|
+
* @param {string} projectId
|
|
830
|
+
* @param {string} instanceId
|
|
831
|
+
* @param {*} [options] Override http request option.
|
|
832
|
+
* @throws {RequiredError}
|
|
833
|
+
*/
|
|
834
|
+
documentProcessingControllerListJobs: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @summary List processing profiles with pagination
|
|
838
|
+
* @param {string} projectId
|
|
839
|
+
* @param {string} instanceId
|
|
840
|
+
* @param {*} [options] Override http request option.
|
|
841
|
+
* @throws {RequiredError}
|
|
842
|
+
*/
|
|
843
|
+
documentProcessingControllerListProfiles: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @summary List batch queries with pagination and filters
|
|
847
|
+
* @param {string} projectId
|
|
848
|
+
* @param {string} instanceId
|
|
849
|
+
* @param {*} [options] Override http request option.
|
|
850
|
+
* @throws {RequiredError}
|
|
851
|
+
*/
|
|
852
|
+
documentProcessingControllerListQueries: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
853
|
+
/**
|
|
854
|
+
*
|
|
855
|
+
* @summary List webhooks with pagination
|
|
856
|
+
* @param {string} projectId
|
|
857
|
+
* @param {string} instanceId
|
|
858
|
+
* @param {*} [options] Override http request option.
|
|
859
|
+
* @throws {RequiredError}
|
|
860
|
+
*/
|
|
861
|
+
documentProcessingControllerListWebhooks: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
862
|
+
/**
|
|
863
|
+
*
|
|
864
|
+
* @summary Update webhook configuration
|
|
865
|
+
* @param {string} projectId
|
|
866
|
+
* @param {string} instanceId
|
|
867
|
+
* @param {string} webhookId
|
|
868
|
+
* @param {*} [options] Override http request option.
|
|
869
|
+
* @throws {RequiredError}
|
|
870
|
+
*/
|
|
871
|
+
documentProcessingControllerUpdateWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
872
|
+
/**
|
|
873
|
+
*
|
|
874
|
+
* @summary Validate eval YAML without creating evaluation
|
|
875
|
+
* @param {string} projectId
|
|
876
|
+
* @param {string} instanceId
|
|
877
|
+
* @param {string} documentId
|
|
878
|
+
* @param {*} [options] Override http request option.
|
|
879
|
+
* @throws {RequiredError}
|
|
880
|
+
*/
|
|
881
|
+
documentProcessingControllerValidateEvalYaml: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
882
|
+
/**
|
|
883
|
+
*
|
|
884
|
+
* @summary Validate batch query YAML without creating query
|
|
885
|
+
* @param {string} projectId
|
|
886
|
+
* @param {string} instanceId
|
|
887
|
+
* @param {*} [options] Override http request option.
|
|
888
|
+
* @throws {RequiredError}
|
|
889
|
+
*/
|
|
890
|
+
documentProcessingControllerValidateQueryYaml: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
891
|
+
};
|
|
892
|
+
/**
|
|
893
|
+
* DocumentProcessingApi - functional programming interface
|
|
894
|
+
*/
|
|
895
|
+
export declare const DocumentProcessingApiFp: (configuration?: Configuration) => {
|
|
896
|
+
/**
|
|
897
|
+
*
|
|
898
|
+
* @summary Create batch query from YAML file
|
|
899
|
+
* @param {string} projectId
|
|
900
|
+
* @param {string} instanceId
|
|
901
|
+
* @param {*} [options] Override http request option.
|
|
902
|
+
* @throws {RequiredError}
|
|
903
|
+
*/
|
|
904
|
+
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
905
|
+
/**
|
|
906
|
+
*
|
|
907
|
+
* @summary Create document processing job by uploading file
|
|
908
|
+
* @param {string} projectId
|
|
909
|
+
* @param {string} instanceId
|
|
910
|
+
* @param {*} [options] Override http request option.
|
|
911
|
+
* @throws {RequiredError}
|
|
912
|
+
*/
|
|
913
|
+
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
914
|
+
/**
|
|
915
|
+
*
|
|
916
|
+
* @summary Create evaluation from YAML file
|
|
917
|
+
* @param {string} projectId
|
|
918
|
+
* @param {string} instanceId
|
|
919
|
+
* @param {*} [options] Override http request option.
|
|
920
|
+
* @throws {RequiredError}
|
|
921
|
+
*/
|
|
922
|
+
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
923
|
+
/**
|
|
924
|
+
*
|
|
925
|
+
* @summary Create processing profile from YAML
|
|
926
|
+
* @param {string} projectId
|
|
927
|
+
* @param {string} instanceId
|
|
928
|
+
* @param {*} [options] Override http request option.
|
|
929
|
+
* @throws {RequiredError}
|
|
930
|
+
*/
|
|
931
|
+
documentProcessingControllerCreateProfile(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @summary Create webhook for receiving notifications
|
|
935
|
+
* @param {string} projectId
|
|
936
|
+
* @param {string} instanceId
|
|
937
|
+
* @param {*} [options] Override http request option.
|
|
938
|
+
* @throws {RequiredError}
|
|
939
|
+
*/
|
|
940
|
+
documentProcessingControllerCreateWebhook(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
941
|
+
/**
|
|
942
|
+
*
|
|
943
|
+
* @summary Delete webhook
|
|
944
|
+
* @param {string} projectId
|
|
945
|
+
* @param {string} instanceId
|
|
946
|
+
* @param {string} webhookId
|
|
947
|
+
* @param {*} [options] Override http request option.
|
|
948
|
+
* @throws {RequiredError}
|
|
949
|
+
*/
|
|
950
|
+
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
951
|
+
/**
|
|
952
|
+
*
|
|
953
|
+
* @summary Download document artifacts as archive
|
|
954
|
+
* @param {string} projectId
|
|
955
|
+
* @param {string} instanceId
|
|
956
|
+
* @param {string} documentId
|
|
957
|
+
* @param {*} [options] Override http request option.
|
|
958
|
+
* @throws {RequiredError}
|
|
959
|
+
*/
|
|
960
|
+
documentProcessingControllerDownloadDocumentArtifacts(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
961
|
+
/**
|
|
962
|
+
*
|
|
963
|
+
* @summary Get processed document by ID
|
|
964
|
+
* @param {string} projectId
|
|
965
|
+
* @param {string} instanceId
|
|
966
|
+
* @param {string} documentId
|
|
967
|
+
* @param {*} [options] Override http request option.
|
|
968
|
+
* @throws {RequiredError}
|
|
969
|
+
*/
|
|
970
|
+
documentProcessingControllerGetDocument(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
971
|
+
/**
|
|
972
|
+
*
|
|
973
|
+
* @summary Get evaluation details by document ID and eval ID
|
|
974
|
+
* @param {string} projectId
|
|
975
|
+
* @param {string} instanceId
|
|
976
|
+
* @param {string} documentId
|
|
977
|
+
* @param {string} evalId
|
|
978
|
+
* @param {*} [options] Override http request option.
|
|
979
|
+
* @throws {RequiredError}
|
|
980
|
+
*/
|
|
981
|
+
documentProcessingControllerGetEval(projectId: string, instanceId: string, documentId: string, evalId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @summary Get document processing API client health
|
|
985
|
+
* @param {string} projectId
|
|
986
|
+
* @param {string} instanceId
|
|
987
|
+
* @param {*} [options] Override http request option.
|
|
988
|
+
* @throws {RequiredError}
|
|
989
|
+
*/
|
|
990
|
+
documentProcessingControllerGetHealth(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
991
|
+
/**
|
|
992
|
+
*
|
|
993
|
+
* @summary Get processing job details by ID
|
|
994
|
+
* @param {string} projectId
|
|
995
|
+
* @param {string} instanceId
|
|
996
|
+
* @param {string} jobId
|
|
997
|
+
* @param {*} [options] Override http request option.
|
|
998
|
+
* @throws {RequiredError}
|
|
999
|
+
*/
|
|
1000
|
+
documentProcessingControllerGetJob(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1001
|
+
/**
|
|
1002
|
+
*
|
|
1003
|
+
* @summary Get processing job status (lightweight)
|
|
1004
|
+
* @param {string} projectId
|
|
1005
|
+
* @param {string} instanceId
|
|
1006
|
+
* @param {string} jobId
|
|
1007
|
+
* @param {*} [options] Override http request option.
|
|
1008
|
+
* @throws {RequiredError}
|
|
1009
|
+
*/
|
|
1010
|
+
documentProcessingControllerGetJobStatus(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @summary Get processing profile by ID
|
|
1014
|
+
* @param {string} projectId
|
|
1015
|
+
* @param {string} instanceId
|
|
1016
|
+
* @param {string} profileId
|
|
1017
|
+
* @param {*} [options] Override http request option.
|
|
1018
|
+
* @throws {RequiredError}
|
|
1019
|
+
*/
|
|
1020
|
+
documentProcessingControllerGetProfile(projectId: string, instanceId: string, profileId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1021
|
+
/**
|
|
1022
|
+
*
|
|
1023
|
+
* @summary Get profile schema for YAML configuration
|
|
1024
|
+
* @param {string} projectId
|
|
1025
|
+
* @param {string} instanceId
|
|
1026
|
+
* @param {*} [options] Override http request option.
|
|
1027
|
+
* @throws {RequiredError}
|
|
1028
|
+
*/
|
|
1029
|
+
documentProcessingControllerGetProfileSchema(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @summary Get batch query details by ID
|
|
1033
|
+
* @param {string} projectId
|
|
1034
|
+
* @param {string} instanceId
|
|
1035
|
+
* @param {string} queryId
|
|
1036
|
+
* @param {*} [options] Override http request option.
|
|
1037
|
+
* @throws {RequiredError}
|
|
1038
|
+
*/
|
|
1039
|
+
documentProcessingControllerGetQuery(projectId: string, instanceId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1040
|
+
/**
|
|
1041
|
+
*
|
|
1042
|
+
* @summary Get webhook details by ID
|
|
1043
|
+
* @param {string} projectId
|
|
1044
|
+
* @param {string} instanceId
|
|
1045
|
+
* @param {string} webhookId
|
|
1046
|
+
* @param {*} [options] Override http request option.
|
|
1047
|
+
* @throws {RequiredError}
|
|
1048
|
+
*/
|
|
1049
|
+
documentProcessingControllerGetWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1050
|
+
/**
|
|
1051
|
+
*
|
|
1052
|
+
* @summary List processed documents with pagination and filters
|
|
1053
|
+
* @param {string} projectId
|
|
1054
|
+
* @param {string} instanceId
|
|
1055
|
+
* @param {*} [options] Override http request option.
|
|
1056
|
+
* @throws {RequiredError}
|
|
1057
|
+
*/
|
|
1058
|
+
documentProcessingControllerListDocuments(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1059
|
+
/**
|
|
1060
|
+
*
|
|
1061
|
+
* @summary List evaluations for a document with pagination
|
|
1062
|
+
* @param {string} projectId
|
|
1063
|
+
* @param {string} instanceId
|
|
1064
|
+
* @param {string} documentId
|
|
1065
|
+
* @param {*} [options] Override http request option.
|
|
1066
|
+
* @throws {RequiredError}
|
|
1067
|
+
*/
|
|
1068
|
+
documentProcessingControllerListEvals(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1069
|
+
/**
|
|
1070
|
+
*
|
|
1071
|
+
* @summary List processing jobs with pagination
|
|
1072
|
+
* @param {string} projectId
|
|
1073
|
+
* @param {string} instanceId
|
|
1074
|
+
* @param {*} [options] Override http request option.
|
|
1075
|
+
* @throws {RequiredError}
|
|
1076
|
+
*/
|
|
1077
|
+
documentProcessingControllerListJobs(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1078
|
+
/**
|
|
1079
|
+
*
|
|
1080
|
+
* @summary List processing profiles with pagination
|
|
1081
|
+
* @param {string} projectId
|
|
1082
|
+
* @param {string} instanceId
|
|
1083
|
+
* @param {*} [options] Override http request option.
|
|
1084
|
+
* @throws {RequiredError}
|
|
1085
|
+
*/
|
|
1086
|
+
documentProcessingControllerListProfiles(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1087
|
+
/**
|
|
1088
|
+
*
|
|
1089
|
+
* @summary List batch queries with pagination and filters
|
|
1090
|
+
* @param {string} projectId
|
|
1091
|
+
* @param {string} instanceId
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
documentProcessingControllerListQueries(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1096
|
+
/**
|
|
1097
|
+
*
|
|
1098
|
+
* @summary List webhooks with pagination
|
|
1099
|
+
* @param {string} projectId
|
|
1100
|
+
* @param {string} instanceId
|
|
1101
|
+
* @param {*} [options] Override http request option.
|
|
1102
|
+
* @throws {RequiredError}
|
|
1103
|
+
*/
|
|
1104
|
+
documentProcessingControllerListWebhooks(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @summary Update webhook configuration
|
|
1108
|
+
* @param {string} projectId
|
|
1109
|
+
* @param {string} instanceId
|
|
1110
|
+
* @param {string} webhookId
|
|
1111
|
+
* @param {*} [options] Override http request option.
|
|
1112
|
+
* @throws {RequiredError}
|
|
1113
|
+
*/
|
|
1114
|
+
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1115
|
+
/**
|
|
1116
|
+
*
|
|
1117
|
+
* @summary Validate eval YAML without creating evaluation
|
|
1118
|
+
* @param {string} projectId
|
|
1119
|
+
* @param {string} instanceId
|
|
1120
|
+
* @param {string} documentId
|
|
1121
|
+
* @param {*} [options] Override http request option.
|
|
1122
|
+
* @throws {RequiredError}
|
|
1123
|
+
*/
|
|
1124
|
+
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1125
|
+
/**
|
|
1126
|
+
*
|
|
1127
|
+
* @summary Validate batch query YAML without creating query
|
|
1128
|
+
* @param {string} projectId
|
|
1129
|
+
* @param {string} instanceId
|
|
1130
|
+
* @param {*} [options] Override http request option.
|
|
1131
|
+
* @throws {RequiredError}
|
|
1132
|
+
*/
|
|
1133
|
+
documentProcessingControllerValidateQueryYaml(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1134
|
+
};
|
|
1135
|
+
/**
|
|
1136
|
+
* DocumentProcessingApi - factory interface
|
|
1137
|
+
*/
|
|
1138
|
+
export declare const DocumentProcessingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* @summary Create batch query from YAML file
|
|
1142
|
+
* @param {string} projectId
|
|
1143
|
+
* @param {string} instanceId
|
|
1144
|
+
* @param {*} [options] Override http request option.
|
|
1145
|
+
* @throws {RequiredError}
|
|
1146
|
+
*/
|
|
1147
|
+
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1148
|
+
/**
|
|
1149
|
+
*
|
|
1150
|
+
* @summary Create document processing job by uploading file
|
|
1151
|
+
* @param {string} projectId
|
|
1152
|
+
* @param {string} instanceId
|
|
1153
|
+
* @param {*} [options] Override http request option.
|
|
1154
|
+
* @throws {RequiredError}
|
|
1155
|
+
*/
|
|
1156
|
+
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1157
|
+
/**
|
|
1158
|
+
*
|
|
1159
|
+
* @summary Create evaluation from YAML file
|
|
1160
|
+
* @param {string} projectId
|
|
1161
|
+
* @param {string} instanceId
|
|
1162
|
+
* @param {*} [options] Override http request option.
|
|
1163
|
+
* @throws {RequiredError}
|
|
1164
|
+
*/
|
|
1165
|
+
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1166
|
+
/**
|
|
1167
|
+
*
|
|
1168
|
+
* @summary Create processing profile from YAML
|
|
1169
|
+
* @param {string} projectId
|
|
1170
|
+
* @param {string} instanceId
|
|
1171
|
+
* @param {*} [options] Override http request option.
|
|
1172
|
+
* @throws {RequiredError}
|
|
1173
|
+
*/
|
|
1174
|
+
documentProcessingControllerCreateProfile(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1175
|
+
/**
|
|
1176
|
+
*
|
|
1177
|
+
* @summary Create webhook for receiving notifications
|
|
1178
|
+
* @param {string} projectId
|
|
1179
|
+
* @param {string} instanceId
|
|
1180
|
+
* @param {*} [options] Override http request option.
|
|
1181
|
+
* @throws {RequiredError}
|
|
1182
|
+
*/
|
|
1183
|
+
documentProcessingControllerCreateWebhook(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1184
|
+
/**
|
|
1185
|
+
*
|
|
1186
|
+
* @summary Delete webhook
|
|
1187
|
+
* @param {string} projectId
|
|
1188
|
+
* @param {string} instanceId
|
|
1189
|
+
* @param {string} webhookId
|
|
1190
|
+
* @param {*} [options] Override http request option.
|
|
1191
|
+
* @throws {RequiredError}
|
|
1192
|
+
*/
|
|
1193
|
+
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1194
|
+
/**
|
|
1195
|
+
*
|
|
1196
|
+
* @summary Download document artifacts as archive
|
|
1197
|
+
* @param {string} projectId
|
|
1198
|
+
* @param {string} instanceId
|
|
1199
|
+
* @param {string} documentId
|
|
1200
|
+
* @param {*} [options] Override http request option.
|
|
1201
|
+
* @throws {RequiredError}
|
|
1202
|
+
*/
|
|
1203
|
+
documentProcessingControllerDownloadDocumentArtifacts(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* @summary Get processed document by ID
|
|
1207
|
+
* @param {string} projectId
|
|
1208
|
+
* @param {string} instanceId
|
|
1209
|
+
* @param {string} documentId
|
|
1210
|
+
* @param {*} [options] Override http request option.
|
|
1211
|
+
* @throws {RequiredError}
|
|
1212
|
+
*/
|
|
1213
|
+
documentProcessingControllerGetDocument(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1214
|
+
/**
|
|
1215
|
+
*
|
|
1216
|
+
* @summary Get evaluation details by document ID and eval ID
|
|
1217
|
+
* @param {string} projectId
|
|
1218
|
+
* @param {string} instanceId
|
|
1219
|
+
* @param {string} documentId
|
|
1220
|
+
* @param {string} evalId
|
|
1221
|
+
* @param {*} [options] Override http request option.
|
|
1222
|
+
* @throws {RequiredError}
|
|
1223
|
+
*/
|
|
1224
|
+
documentProcessingControllerGetEval(projectId: string, instanceId: string, documentId: string, evalId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1225
|
+
/**
|
|
1226
|
+
*
|
|
1227
|
+
* @summary Get document processing API client health
|
|
1228
|
+
* @param {string} projectId
|
|
1229
|
+
* @param {string} instanceId
|
|
1230
|
+
* @param {*} [options] Override http request option.
|
|
1231
|
+
* @throws {RequiredError}
|
|
1232
|
+
*/
|
|
1233
|
+
documentProcessingControllerGetHealth(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1234
|
+
/**
|
|
1235
|
+
*
|
|
1236
|
+
* @summary Get processing job details by ID
|
|
1237
|
+
* @param {string} projectId
|
|
1238
|
+
* @param {string} instanceId
|
|
1239
|
+
* @param {string} jobId
|
|
1240
|
+
* @param {*} [options] Override http request option.
|
|
1241
|
+
* @throws {RequiredError}
|
|
1242
|
+
*/
|
|
1243
|
+
documentProcessingControllerGetJob(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1244
|
+
/**
|
|
1245
|
+
*
|
|
1246
|
+
* @summary Get processing job status (lightweight)
|
|
1247
|
+
* @param {string} projectId
|
|
1248
|
+
* @param {string} instanceId
|
|
1249
|
+
* @param {string} jobId
|
|
1250
|
+
* @param {*} [options] Override http request option.
|
|
1251
|
+
* @throws {RequiredError}
|
|
1252
|
+
*/
|
|
1253
|
+
documentProcessingControllerGetJobStatus(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* @summary Get processing profile by ID
|
|
1257
|
+
* @param {string} projectId
|
|
1258
|
+
* @param {string} instanceId
|
|
1259
|
+
* @param {string} profileId
|
|
1260
|
+
* @param {*} [options] Override http request option.
|
|
1261
|
+
* @throws {RequiredError}
|
|
1262
|
+
*/
|
|
1263
|
+
documentProcessingControllerGetProfile(projectId: string, instanceId: string, profileId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @summary Get profile schema for YAML configuration
|
|
1267
|
+
* @param {string} projectId
|
|
1268
|
+
* @param {string} instanceId
|
|
1269
|
+
* @param {*} [options] Override http request option.
|
|
1270
|
+
* @throws {RequiredError}
|
|
1271
|
+
*/
|
|
1272
|
+
documentProcessingControllerGetProfileSchema(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1273
|
+
/**
|
|
1274
|
+
*
|
|
1275
|
+
* @summary Get batch query details by ID
|
|
1276
|
+
* @param {string} projectId
|
|
1277
|
+
* @param {string} instanceId
|
|
1278
|
+
* @param {string} queryId
|
|
1279
|
+
* @param {*} [options] Override http request option.
|
|
1280
|
+
* @throws {RequiredError}
|
|
1281
|
+
*/
|
|
1282
|
+
documentProcessingControllerGetQuery(projectId: string, instanceId: string, queryId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1283
|
+
/**
|
|
1284
|
+
*
|
|
1285
|
+
* @summary Get webhook details by ID
|
|
1286
|
+
* @param {string} projectId
|
|
1287
|
+
* @param {string} instanceId
|
|
1288
|
+
* @param {string} webhookId
|
|
1289
|
+
* @param {*} [options] Override http request option.
|
|
1290
|
+
* @throws {RequiredError}
|
|
1291
|
+
*/
|
|
1292
|
+
documentProcessingControllerGetWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @summary List processed documents with pagination and filters
|
|
1296
|
+
* @param {string} projectId
|
|
1297
|
+
* @param {string} instanceId
|
|
1298
|
+
* @param {*} [options] Override http request option.
|
|
1299
|
+
* @throws {RequiredError}
|
|
1300
|
+
*/
|
|
1301
|
+
documentProcessingControllerListDocuments(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1302
|
+
/**
|
|
1303
|
+
*
|
|
1304
|
+
* @summary List evaluations for a document with pagination
|
|
1305
|
+
* @param {string} projectId
|
|
1306
|
+
* @param {string} instanceId
|
|
1307
|
+
* @param {string} documentId
|
|
1308
|
+
* @param {*} [options] Override http request option.
|
|
1309
|
+
* @throws {RequiredError}
|
|
1310
|
+
*/
|
|
1311
|
+
documentProcessingControllerListEvals(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
* @summary List processing jobs with pagination
|
|
1315
|
+
* @param {string} projectId
|
|
1316
|
+
* @param {string} instanceId
|
|
1317
|
+
* @param {*} [options] Override http request option.
|
|
1318
|
+
* @throws {RequiredError}
|
|
1319
|
+
*/
|
|
1320
|
+
documentProcessingControllerListJobs(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @summary List processing profiles with pagination
|
|
1324
|
+
* @param {string} projectId
|
|
1325
|
+
* @param {string} instanceId
|
|
1326
|
+
* @param {*} [options] Override http request option.
|
|
1327
|
+
* @throws {RequiredError}
|
|
1328
|
+
*/
|
|
1329
|
+
documentProcessingControllerListProfiles(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @summary List batch queries with pagination and filters
|
|
1333
|
+
* @param {string} projectId
|
|
1334
|
+
* @param {string} instanceId
|
|
1335
|
+
* @param {*} [options] Override http request option.
|
|
1336
|
+
* @throws {RequiredError}
|
|
1337
|
+
*/
|
|
1338
|
+
documentProcessingControllerListQueries(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* @summary List webhooks with pagination
|
|
1342
|
+
* @param {string} projectId
|
|
1343
|
+
* @param {string} instanceId
|
|
1344
|
+
* @param {*} [options] Override http request option.
|
|
1345
|
+
* @throws {RequiredError}
|
|
1346
|
+
*/
|
|
1347
|
+
documentProcessingControllerListWebhooks(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @summary Update webhook configuration
|
|
1351
|
+
* @param {string} projectId
|
|
1352
|
+
* @param {string} instanceId
|
|
1353
|
+
* @param {string} webhookId
|
|
1354
|
+
* @param {*} [options] Override http request option.
|
|
1355
|
+
* @throws {RequiredError}
|
|
1356
|
+
*/
|
|
1357
|
+
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1358
|
+
/**
|
|
1359
|
+
*
|
|
1360
|
+
* @summary Validate eval YAML without creating evaluation
|
|
1361
|
+
* @param {string} projectId
|
|
1362
|
+
* @param {string} instanceId
|
|
1363
|
+
* @param {string} documentId
|
|
1364
|
+
* @param {*} [options] Override http request option.
|
|
1365
|
+
* @throws {RequiredError}
|
|
1366
|
+
*/
|
|
1367
|
+
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1368
|
+
/**
|
|
1369
|
+
*
|
|
1370
|
+
* @summary Validate batch query YAML without creating query
|
|
1371
|
+
* @param {string} projectId
|
|
1372
|
+
* @param {string} instanceId
|
|
1373
|
+
* @param {*} [options] Override http request option.
|
|
1374
|
+
* @throws {RequiredError}
|
|
1375
|
+
*/
|
|
1376
|
+
documentProcessingControllerValidateQueryYaml(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1377
|
+
};
|
|
1378
|
+
/**
|
|
1379
|
+
* DocumentProcessingApi - object-oriented interface
|
|
1380
|
+
*/
|
|
1381
|
+
export declare class DocumentProcessingApi extends BaseAPI {
|
|
1382
|
+
/**
|
|
1383
|
+
*
|
|
1384
|
+
* @summary Create batch query from YAML file
|
|
1385
|
+
* @param {string} projectId
|
|
1386
|
+
* @param {string} instanceId
|
|
1387
|
+
* @param {*} [options] Override http request option.
|
|
1388
|
+
* @throws {RequiredError}
|
|
1389
|
+
*/
|
|
1390
|
+
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1391
|
+
/**
|
|
1392
|
+
*
|
|
1393
|
+
* @summary Create document processing job by uploading file
|
|
1394
|
+
* @param {string} projectId
|
|
1395
|
+
* @param {string} instanceId
|
|
1396
|
+
* @param {*} [options] Override http request option.
|
|
1397
|
+
* @throws {RequiredError}
|
|
1398
|
+
*/
|
|
1399
|
+
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1400
|
+
/**
|
|
1401
|
+
*
|
|
1402
|
+
* @summary Create evaluation from YAML file
|
|
1403
|
+
* @param {string} projectId
|
|
1404
|
+
* @param {string} instanceId
|
|
1405
|
+
* @param {*} [options] Override http request option.
|
|
1406
|
+
* @throws {RequiredError}
|
|
1407
|
+
*/
|
|
1408
|
+
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1409
|
+
/**
|
|
1410
|
+
*
|
|
1411
|
+
* @summary Create processing profile from YAML
|
|
1412
|
+
* @param {string} projectId
|
|
1413
|
+
* @param {string} instanceId
|
|
1414
|
+
* @param {*} [options] Override http request option.
|
|
1415
|
+
* @throws {RequiredError}
|
|
1416
|
+
*/
|
|
1417
|
+
documentProcessingControllerCreateProfile(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1418
|
+
/**
|
|
1419
|
+
*
|
|
1420
|
+
* @summary Create webhook for receiving notifications
|
|
1421
|
+
* @param {string} projectId
|
|
1422
|
+
* @param {string} instanceId
|
|
1423
|
+
* @param {*} [options] Override http request option.
|
|
1424
|
+
* @throws {RequiredError}
|
|
1425
|
+
*/
|
|
1426
|
+
documentProcessingControllerCreateWebhook(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1427
|
+
/**
|
|
1428
|
+
*
|
|
1429
|
+
* @summary Delete webhook
|
|
1430
|
+
* @param {string} projectId
|
|
1431
|
+
* @param {string} instanceId
|
|
1432
|
+
* @param {string} webhookId
|
|
1433
|
+
* @param {*} [options] Override http request option.
|
|
1434
|
+
* @throws {RequiredError}
|
|
1435
|
+
*/
|
|
1436
|
+
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1437
|
+
/**
|
|
1438
|
+
*
|
|
1439
|
+
* @summary Download document artifacts as archive
|
|
1440
|
+
* @param {string} projectId
|
|
1441
|
+
* @param {string} instanceId
|
|
1442
|
+
* @param {string} documentId
|
|
1443
|
+
* @param {*} [options] Override http request option.
|
|
1444
|
+
* @throws {RequiredError}
|
|
1445
|
+
*/
|
|
1446
|
+
documentProcessingControllerDownloadDocumentArtifacts(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1447
|
+
/**
|
|
1448
|
+
*
|
|
1449
|
+
* @summary Get processed document by ID
|
|
1450
|
+
* @param {string} projectId
|
|
1451
|
+
* @param {string} instanceId
|
|
1452
|
+
* @param {string} documentId
|
|
1453
|
+
* @param {*} [options] Override http request option.
|
|
1454
|
+
* @throws {RequiredError}
|
|
1455
|
+
*/
|
|
1456
|
+
documentProcessingControllerGetDocument(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1457
|
+
/**
|
|
1458
|
+
*
|
|
1459
|
+
* @summary Get evaluation details by document ID and eval ID
|
|
1460
|
+
* @param {string} projectId
|
|
1461
|
+
* @param {string} instanceId
|
|
1462
|
+
* @param {string} documentId
|
|
1463
|
+
* @param {string} evalId
|
|
1464
|
+
* @param {*} [options] Override http request option.
|
|
1465
|
+
* @throws {RequiredError}
|
|
1466
|
+
*/
|
|
1467
|
+
documentProcessingControllerGetEval(projectId: string, instanceId: string, documentId: string, evalId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @summary Get document processing API client health
|
|
1471
|
+
* @param {string} projectId
|
|
1472
|
+
* @param {string} instanceId
|
|
1473
|
+
* @param {*} [options] Override http request option.
|
|
1474
|
+
* @throws {RequiredError}
|
|
1475
|
+
*/
|
|
1476
|
+
documentProcessingControllerGetHealth(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1477
|
+
/**
|
|
1478
|
+
*
|
|
1479
|
+
* @summary Get processing job details by ID
|
|
1480
|
+
* @param {string} projectId
|
|
1481
|
+
* @param {string} instanceId
|
|
1482
|
+
* @param {string} jobId
|
|
1483
|
+
* @param {*} [options] Override http request option.
|
|
1484
|
+
* @throws {RequiredError}
|
|
1485
|
+
*/
|
|
1486
|
+
documentProcessingControllerGetJob(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1487
|
+
/**
|
|
1488
|
+
*
|
|
1489
|
+
* @summary Get processing job status (lightweight)
|
|
1490
|
+
* @param {string} projectId
|
|
1491
|
+
* @param {string} instanceId
|
|
1492
|
+
* @param {string} jobId
|
|
1493
|
+
* @param {*} [options] Override http request option.
|
|
1494
|
+
* @throws {RequiredError}
|
|
1495
|
+
*/
|
|
1496
|
+
documentProcessingControllerGetJobStatus(projectId: string, instanceId: string, jobId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1497
|
+
/**
|
|
1498
|
+
*
|
|
1499
|
+
* @summary Get processing profile by ID
|
|
1500
|
+
* @param {string} projectId
|
|
1501
|
+
* @param {string} instanceId
|
|
1502
|
+
* @param {string} profileId
|
|
1503
|
+
* @param {*} [options] Override http request option.
|
|
1504
|
+
* @throws {RequiredError}
|
|
1505
|
+
*/
|
|
1506
|
+
documentProcessingControllerGetProfile(projectId: string, instanceId: string, profileId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1507
|
+
/**
|
|
1508
|
+
*
|
|
1509
|
+
* @summary Get profile schema for YAML configuration
|
|
1510
|
+
* @param {string} projectId
|
|
1511
|
+
* @param {string} instanceId
|
|
1512
|
+
* @param {*} [options] Override http request option.
|
|
1513
|
+
* @throws {RequiredError}
|
|
1514
|
+
*/
|
|
1515
|
+
documentProcessingControllerGetProfileSchema(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1516
|
+
/**
|
|
1517
|
+
*
|
|
1518
|
+
* @summary Get batch query details by ID
|
|
1519
|
+
* @param {string} projectId
|
|
1520
|
+
* @param {string} instanceId
|
|
1521
|
+
* @param {string} queryId
|
|
1522
|
+
* @param {*} [options] Override http request option.
|
|
1523
|
+
* @throws {RequiredError}
|
|
1524
|
+
*/
|
|
1525
|
+
documentProcessingControllerGetQuery(projectId: string, instanceId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1526
|
+
/**
|
|
1527
|
+
*
|
|
1528
|
+
* @summary Get webhook details by ID
|
|
1529
|
+
* @param {string} projectId
|
|
1530
|
+
* @param {string} instanceId
|
|
1531
|
+
* @param {string} webhookId
|
|
1532
|
+
* @param {*} [options] Override http request option.
|
|
1533
|
+
* @throws {RequiredError}
|
|
1534
|
+
*/
|
|
1535
|
+
documentProcessingControllerGetWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1536
|
+
/**
|
|
1537
|
+
*
|
|
1538
|
+
* @summary List processed documents with pagination and filters
|
|
1539
|
+
* @param {string} projectId
|
|
1540
|
+
* @param {string} instanceId
|
|
1541
|
+
* @param {*} [options] Override http request option.
|
|
1542
|
+
* @throws {RequiredError}
|
|
1543
|
+
*/
|
|
1544
|
+
documentProcessingControllerListDocuments(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1545
|
+
/**
|
|
1546
|
+
*
|
|
1547
|
+
* @summary List evaluations for a document with pagination
|
|
1548
|
+
* @param {string} projectId
|
|
1549
|
+
* @param {string} instanceId
|
|
1550
|
+
* @param {string} documentId
|
|
1551
|
+
* @param {*} [options] Override http request option.
|
|
1552
|
+
* @throws {RequiredError}
|
|
1553
|
+
*/
|
|
1554
|
+
documentProcessingControllerListEvals(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @summary List processing jobs with pagination
|
|
1558
|
+
* @param {string} projectId
|
|
1559
|
+
* @param {string} instanceId
|
|
1560
|
+
* @param {*} [options] Override http request option.
|
|
1561
|
+
* @throws {RequiredError}
|
|
1562
|
+
*/
|
|
1563
|
+
documentProcessingControllerListJobs(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1564
|
+
/**
|
|
1565
|
+
*
|
|
1566
|
+
* @summary List processing profiles with pagination
|
|
1567
|
+
* @param {string} projectId
|
|
1568
|
+
* @param {string} instanceId
|
|
1569
|
+
* @param {*} [options] Override http request option.
|
|
1570
|
+
* @throws {RequiredError}
|
|
1571
|
+
*/
|
|
1572
|
+
documentProcessingControllerListProfiles(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1573
|
+
/**
|
|
1574
|
+
*
|
|
1575
|
+
* @summary List batch queries with pagination and filters
|
|
1576
|
+
* @param {string} projectId
|
|
1577
|
+
* @param {string} instanceId
|
|
1578
|
+
* @param {*} [options] Override http request option.
|
|
1579
|
+
* @throws {RequiredError}
|
|
1580
|
+
*/
|
|
1581
|
+
documentProcessingControllerListQueries(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1582
|
+
/**
|
|
1583
|
+
*
|
|
1584
|
+
* @summary List webhooks with pagination
|
|
1585
|
+
* @param {string} projectId
|
|
1586
|
+
* @param {string} instanceId
|
|
1587
|
+
* @param {*} [options] Override http request option.
|
|
1588
|
+
* @throws {RequiredError}
|
|
1589
|
+
*/
|
|
1590
|
+
documentProcessingControllerListWebhooks(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1591
|
+
/**
|
|
1592
|
+
*
|
|
1593
|
+
* @summary Update webhook configuration
|
|
1594
|
+
* @param {string} projectId
|
|
1595
|
+
* @param {string} instanceId
|
|
1596
|
+
* @param {string} webhookId
|
|
1597
|
+
* @param {*} [options] Override http request option.
|
|
1598
|
+
* @throws {RequiredError}
|
|
1599
|
+
*/
|
|
1600
|
+
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1601
|
+
/**
|
|
1602
|
+
*
|
|
1603
|
+
* @summary Validate eval YAML without creating evaluation
|
|
1604
|
+
* @param {string} projectId
|
|
1605
|
+
* @param {string} instanceId
|
|
1606
|
+
* @param {string} documentId
|
|
1607
|
+
* @param {*} [options] Override http request option.
|
|
1608
|
+
* @throws {RequiredError}
|
|
1609
|
+
*/
|
|
1610
|
+
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1611
|
+
/**
|
|
1612
|
+
*
|
|
1613
|
+
* @summary Validate batch query YAML without creating query
|
|
1614
|
+
* @param {string} projectId
|
|
1615
|
+
* @param {string} instanceId
|
|
1616
|
+
* @param {*} [options] Override http request option.
|
|
1617
|
+
* @throws {RequiredError}
|
|
1618
|
+
*/
|
|
1619
|
+
documentProcessingControllerValidateQueryYaml(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1620
|
+
}
|
|
649
1621
|
/**
|
|
650
1622
|
* DocumentsApi - axios parameter creator
|
|
651
1623
|
*/
|