@seekora-ai/admin-api 1.0.7 → 1.0.8
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/README.md +16 -3
- package/api.ts +429 -17
- package/dist/api.d.ts +360 -23
- package/dist/api.js +129 -0
- package/dist/esm/api.d.ts +360 -23
- package/dist/esm/api.js +129 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.8.tgz +0 -0
- package/seekora-ai-admin-api-1.0.7.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -953,6 +953,50 @@ export interface DataTypesGenericStringArrayResponse {
|
|
|
953
953
|
*/
|
|
954
954
|
'status'?: number;
|
|
955
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
*
|
|
958
|
+
* @export
|
|
959
|
+
* @interface DataTypesJobStatusResponse
|
|
960
|
+
*/
|
|
961
|
+
export interface DataTypesJobStatusResponse {
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {string}
|
|
965
|
+
* @memberof DataTypesJobStatusResponse
|
|
966
|
+
*/
|
|
967
|
+
'jobId'?: string;
|
|
968
|
+
/**
|
|
969
|
+
*
|
|
970
|
+
* @type {string}
|
|
971
|
+
* @memberof DataTypesJobStatusResponse
|
|
972
|
+
*/
|
|
973
|
+
'jobStatus'?: string;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
*
|
|
977
|
+
* @export
|
|
978
|
+
* @interface DataTypesJobStatusResponseWrapper
|
|
979
|
+
*/
|
|
980
|
+
export interface DataTypesJobStatusResponseWrapper {
|
|
981
|
+
/**
|
|
982
|
+
*
|
|
983
|
+
* @type {DataTypesJobStatusResponse}
|
|
984
|
+
* @memberof DataTypesJobStatusResponseWrapper
|
|
985
|
+
*/
|
|
986
|
+
'data'?: DataTypesJobStatusResponse;
|
|
987
|
+
/**
|
|
988
|
+
*
|
|
989
|
+
* @type {string}
|
|
990
|
+
* @memberof DataTypesJobStatusResponseWrapper
|
|
991
|
+
*/
|
|
992
|
+
'message'?: string;
|
|
993
|
+
/**
|
|
994
|
+
*
|
|
995
|
+
* @type {number}
|
|
996
|
+
* @memberof DataTypesJobStatusResponseWrapper
|
|
997
|
+
*/
|
|
998
|
+
'status'?: number;
|
|
999
|
+
}
|
|
956
1000
|
/**
|
|
957
1001
|
*
|
|
958
1002
|
* @export
|
|
@@ -1708,6 +1752,143 @@ export interface DataTypesOnboardingRequest {
|
|
|
1708
1752
|
*/
|
|
1709
1753
|
'step': string;
|
|
1710
1754
|
}
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @export
|
|
1758
|
+
* @interface DataTypesOnboardingResponse
|
|
1759
|
+
*/
|
|
1760
|
+
export interface DataTypesOnboardingResponse {
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof DataTypesOnboardingResponse
|
|
1765
|
+
*/
|
|
1766
|
+
'jobId'?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @type {object}
|
|
1770
|
+
* @memberof DataTypesOnboardingResponse
|
|
1771
|
+
*/
|
|
1772
|
+
'state'?: object;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {string}
|
|
1776
|
+
* @memberof DataTypesOnboardingResponse
|
|
1777
|
+
*/
|
|
1778
|
+
'step'?: string;
|
|
1779
|
+
}
|
|
1780
|
+
/**
|
|
1781
|
+
*
|
|
1782
|
+
* @export
|
|
1783
|
+
* @interface DataTypesOnboardingResponseWrapper
|
|
1784
|
+
*/
|
|
1785
|
+
export interface DataTypesOnboardingResponseWrapper {
|
|
1786
|
+
/**
|
|
1787
|
+
*
|
|
1788
|
+
* @type {DataTypesOnboardingResponse}
|
|
1789
|
+
* @memberof DataTypesOnboardingResponseWrapper
|
|
1790
|
+
*/
|
|
1791
|
+
'data'?: DataTypesOnboardingResponse;
|
|
1792
|
+
/**
|
|
1793
|
+
*
|
|
1794
|
+
* @type {string}
|
|
1795
|
+
* @memberof DataTypesOnboardingResponseWrapper
|
|
1796
|
+
*/
|
|
1797
|
+
'message'?: string;
|
|
1798
|
+
/**
|
|
1799
|
+
*
|
|
1800
|
+
* @type {number}
|
|
1801
|
+
* @memberof DataTypesOnboardingResponseWrapper
|
|
1802
|
+
*/
|
|
1803
|
+
'status'?: number;
|
|
1804
|
+
}
|
|
1805
|
+
/**
|
|
1806
|
+
*
|
|
1807
|
+
* @export
|
|
1808
|
+
* @interface DataTypesOnboardingTestSearchResponse
|
|
1809
|
+
*/
|
|
1810
|
+
export interface DataTypesOnboardingTestSearchResponse {
|
|
1811
|
+
/**
|
|
1812
|
+
*
|
|
1813
|
+
* @type {number}
|
|
1814
|
+
* @memberof DataTypesOnboardingTestSearchResponse
|
|
1815
|
+
*/
|
|
1816
|
+
'page': number;
|
|
1817
|
+
/**
|
|
1818
|
+
*
|
|
1819
|
+
* @type {number}
|
|
1820
|
+
* @memberof DataTypesOnboardingTestSearchResponse
|
|
1821
|
+
*/
|
|
1822
|
+
'perPage': number;
|
|
1823
|
+
/**
|
|
1824
|
+
*
|
|
1825
|
+
* @type {Array<DataTypesOnboardingTestSearchResultItem>}
|
|
1826
|
+
* @memberof DataTypesOnboardingTestSearchResponse
|
|
1827
|
+
*/
|
|
1828
|
+
'results': Array<DataTypesOnboardingTestSearchResultItem>;
|
|
1829
|
+
/**
|
|
1830
|
+
*
|
|
1831
|
+
* @type {number}
|
|
1832
|
+
* @memberof DataTypesOnboardingTestSearchResponse
|
|
1833
|
+
*/
|
|
1834
|
+
'totalResults': number;
|
|
1835
|
+
}
|
|
1836
|
+
/**
|
|
1837
|
+
*
|
|
1838
|
+
* @export
|
|
1839
|
+
* @interface DataTypesOnboardingTestSearchResponseWrapper
|
|
1840
|
+
*/
|
|
1841
|
+
export interface DataTypesOnboardingTestSearchResponseWrapper {
|
|
1842
|
+
/**
|
|
1843
|
+
*
|
|
1844
|
+
* @type {DataTypesOnboardingTestSearchResponse}
|
|
1845
|
+
* @memberof DataTypesOnboardingTestSearchResponseWrapper
|
|
1846
|
+
*/
|
|
1847
|
+
'data'?: DataTypesOnboardingTestSearchResponse;
|
|
1848
|
+
/**
|
|
1849
|
+
*
|
|
1850
|
+
* @type {string}
|
|
1851
|
+
* @memberof DataTypesOnboardingTestSearchResponseWrapper
|
|
1852
|
+
*/
|
|
1853
|
+
'message'?: string;
|
|
1854
|
+
/**
|
|
1855
|
+
*
|
|
1856
|
+
* @type {number}
|
|
1857
|
+
* @memberof DataTypesOnboardingTestSearchResponseWrapper
|
|
1858
|
+
*/
|
|
1859
|
+
'status'?: number;
|
|
1860
|
+
}
|
|
1861
|
+
/**
|
|
1862
|
+
*
|
|
1863
|
+
* @export
|
|
1864
|
+
* @interface DataTypesOnboardingTestSearchResultItem
|
|
1865
|
+
*/
|
|
1866
|
+
export interface DataTypesOnboardingTestSearchResultItem {
|
|
1867
|
+
/**
|
|
1868
|
+
*
|
|
1869
|
+
* @type {string}
|
|
1870
|
+
* @memberof DataTypesOnboardingTestSearchResultItem
|
|
1871
|
+
*/
|
|
1872
|
+
'image_url'?: string;
|
|
1873
|
+
/**
|
|
1874
|
+
*
|
|
1875
|
+
* @type {string}
|
|
1876
|
+
* @memberof DataTypesOnboardingTestSearchResultItem
|
|
1877
|
+
*/
|
|
1878
|
+
'primary_text'?: string;
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @type {string}
|
|
1882
|
+
* @memberof DataTypesOnboardingTestSearchResultItem
|
|
1883
|
+
*/
|
|
1884
|
+
'secondary_text'?: string;
|
|
1885
|
+
/**
|
|
1886
|
+
*
|
|
1887
|
+
* @type {string}
|
|
1888
|
+
* @memberof DataTypesOnboardingTestSearchResultItem
|
|
1889
|
+
*/
|
|
1890
|
+
'tertiary_text'?: string;
|
|
1891
|
+
}
|
|
1711
1892
|
/**
|
|
1712
1893
|
*
|
|
1713
1894
|
* @export
|
|
@@ -2593,6 +2774,56 @@ export interface DataTypesRolesListResponse {
|
|
|
2593
2774
|
*/
|
|
2594
2775
|
'status'?: number;
|
|
2595
2776
|
}
|
|
2777
|
+
/**
|
|
2778
|
+
*
|
|
2779
|
+
* @export
|
|
2780
|
+
* @interface DataTypesSchemaOptionsResponse
|
|
2781
|
+
*/
|
|
2782
|
+
export interface DataTypesSchemaOptionsResponse {
|
|
2783
|
+
/**
|
|
2784
|
+
*
|
|
2785
|
+
* @type {Array<string>}
|
|
2786
|
+
* @memberof DataTypesSchemaOptionsResponse
|
|
2787
|
+
*/
|
|
2788
|
+
'displayAttributesOptions'?: Array<string>;
|
|
2789
|
+
/**
|
|
2790
|
+
*
|
|
2791
|
+
* @type {Array<string>}
|
|
2792
|
+
* @memberof DataTypesSchemaOptionsResponse
|
|
2793
|
+
*/
|
|
2794
|
+
'relevancyOrderOptions'?: Array<string>;
|
|
2795
|
+
/**
|
|
2796
|
+
*
|
|
2797
|
+
* @type {Array<string>}
|
|
2798
|
+
* @memberof DataTypesSchemaOptionsResponse
|
|
2799
|
+
*/
|
|
2800
|
+
'searchableAttributesOptions'?: Array<string>;
|
|
2801
|
+
}
|
|
2802
|
+
/**
|
|
2803
|
+
*
|
|
2804
|
+
* @export
|
|
2805
|
+
* @interface DataTypesSchemaOptionsResponseWrapper
|
|
2806
|
+
*/
|
|
2807
|
+
export interface DataTypesSchemaOptionsResponseWrapper {
|
|
2808
|
+
/**
|
|
2809
|
+
*
|
|
2810
|
+
* @type {DataTypesSchemaOptionsResponse}
|
|
2811
|
+
* @memberof DataTypesSchemaOptionsResponseWrapper
|
|
2812
|
+
*/
|
|
2813
|
+
'data'?: DataTypesSchemaOptionsResponse;
|
|
2814
|
+
/**
|
|
2815
|
+
*
|
|
2816
|
+
* @type {string}
|
|
2817
|
+
* @memberof DataTypesSchemaOptionsResponseWrapper
|
|
2818
|
+
*/
|
|
2819
|
+
'message'?: string;
|
|
2820
|
+
/**
|
|
2821
|
+
*
|
|
2822
|
+
* @type {number}
|
|
2823
|
+
* @memberof DataTypesSchemaOptionsResponseWrapper
|
|
2824
|
+
*/
|
|
2825
|
+
'status'?: number;
|
|
2826
|
+
}
|
|
2596
2827
|
/**
|
|
2597
2828
|
*
|
|
2598
2829
|
* @export
|
|
@@ -3614,28 +3845,72 @@ export interface DataTypesUpdateSchemaResponse {
|
|
|
3614
3845
|
/**
|
|
3615
3846
|
*
|
|
3616
3847
|
* @export
|
|
3617
|
-
* @interface
|
|
3848
|
+
* @interface DataTypesUpdateSourceConfigResponseWrapper
|
|
3618
3849
|
*/
|
|
3619
|
-
export interface
|
|
3850
|
+
export interface DataTypesUpdateSourceConfigResponseWrapper {
|
|
3620
3851
|
/**
|
|
3621
3852
|
*
|
|
3622
3853
|
* @type {DataTypesSource}
|
|
3623
|
-
* @memberof
|
|
3854
|
+
* @memberof DataTypesUpdateSourceConfigResponseWrapper
|
|
3624
3855
|
*/
|
|
3625
3856
|
'data'?: DataTypesSource;
|
|
3626
3857
|
/**
|
|
3627
3858
|
*
|
|
3628
3859
|
* @type {string}
|
|
3629
|
-
* @memberof
|
|
3860
|
+
* @memberof DataTypesUpdateSourceConfigResponseWrapper
|
|
3861
|
+
*/
|
|
3862
|
+
'message'?: string;
|
|
3863
|
+
/**
|
|
3864
|
+
*
|
|
3865
|
+
* @type {number}
|
|
3866
|
+
* @memberof DataTypesUpdateSourceConfigResponseWrapper
|
|
3867
|
+
*/
|
|
3868
|
+
'status'?: number;
|
|
3869
|
+
}
|
|
3870
|
+
/**
|
|
3871
|
+
*
|
|
3872
|
+
* @export
|
|
3873
|
+
* @interface DataTypesUploadSourceDataResponseWrapper
|
|
3874
|
+
*/
|
|
3875
|
+
export interface DataTypesUploadSourceDataResponseWrapper {
|
|
3876
|
+
/**
|
|
3877
|
+
*
|
|
3878
|
+
* @type {DataTypesUploadsourceDataResponse}
|
|
3879
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
3880
|
+
*/
|
|
3881
|
+
'data'?: DataTypesUploadsourceDataResponse;
|
|
3882
|
+
/**
|
|
3883
|
+
*
|
|
3884
|
+
* @type {string}
|
|
3885
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
3630
3886
|
*/
|
|
3631
3887
|
'message'?: string;
|
|
3632
3888
|
/**
|
|
3633
3889
|
*
|
|
3634
3890
|
* @type {number}
|
|
3635
|
-
* @memberof
|
|
3891
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
3636
3892
|
*/
|
|
3637
3893
|
'status'?: number;
|
|
3638
3894
|
}
|
|
3895
|
+
/**
|
|
3896
|
+
*
|
|
3897
|
+
* @export
|
|
3898
|
+
* @interface DataTypesUploadsourceDataResponse
|
|
3899
|
+
*/
|
|
3900
|
+
export interface DataTypesUploadsourceDataResponse {
|
|
3901
|
+
/**
|
|
3902
|
+
*
|
|
3903
|
+
* @type {string}
|
|
3904
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
3905
|
+
*/
|
|
3906
|
+
'JobId'?: string;
|
|
3907
|
+
/**
|
|
3908
|
+
*
|
|
3909
|
+
* @type {DataTypesSource}
|
|
3910
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
3911
|
+
*/
|
|
3912
|
+
'Source'?: DataTypesSource;
|
|
3913
|
+
}
|
|
3639
3914
|
/**
|
|
3640
3915
|
*
|
|
3641
3916
|
* @export
|
|
@@ -4703,7 +4978,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
|
|
|
4703
4978
|
* @param {*} [options] Override http request option.
|
|
4704
4979
|
* @throws {RequiredError}
|
|
4705
4980
|
*/
|
|
4706
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4981
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>>;
|
|
4707
4982
|
/**
|
|
4708
4983
|
* Update Index schema
|
|
4709
4984
|
* @summary Update Index schema
|
|
@@ -4720,7 +4995,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
|
|
|
4720
4995
|
* @param {*} [options] Override http request option.
|
|
4721
4996
|
* @throws {RequiredError}
|
|
4722
4997
|
*/
|
|
4723
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4998
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
|
|
4724
4999
|
/**
|
|
4725
5000
|
* Create task
|
|
4726
5001
|
* @summary Create task
|
|
@@ -4785,7 +5060,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
|
|
|
4785
5060
|
* @param {*} [options] Override http request option.
|
|
4786
5061
|
* @throws {RequiredError}
|
|
4787
5062
|
*/
|
|
4788
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5063
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>;
|
|
4789
5064
|
/**
|
|
4790
5065
|
* Update Index schema
|
|
4791
5066
|
* @summary Update Index schema
|
|
@@ -4802,7 +5077,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
|
|
|
4802
5077
|
* @param {*} [options] Override http request option.
|
|
4803
5078
|
* @throws {RequiredError}
|
|
4804
5079
|
*/
|
|
4805
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5080
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
|
|
4806
5081
|
/**
|
|
4807
5082
|
* Create task
|
|
4808
5083
|
* @summary Create task
|
|
@@ -4874,7 +5149,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
4874
5149
|
* @throws {RequiredError}
|
|
4875
5150
|
* @memberof ConnectorsApi
|
|
4876
5151
|
*/
|
|
4877
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5152
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any>>;
|
|
4878
5153
|
/**
|
|
4879
5154
|
* Update Index schema
|
|
4880
5155
|
* @summary Update Index schema
|
|
@@ -4893,7 +5168,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
4893
5168
|
* @throws {RequiredError}
|
|
4894
5169
|
* @memberof ConnectorsApi
|
|
4895
5170
|
*/
|
|
4896
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5171
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
4897
5172
|
/**
|
|
4898
5173
|
* Create task
|
|
4899
5174
|
* @summary Create task
|
|
@@ -6222,6 +6497,14 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6222
6497
|
* @throws {RequiredError}
|
|
6223
6498
|
*/
|
|
6224
6499
|
adminV1UsersOnboardingGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6500
|
+
/**
|
|
6501
|
+
* Get job status
|
|
6502
|
+
* @summary Get job status
|
|
6503
|
+
* @param {string} jobid Job ID
|
|
6504
|
+
* @param {*} [options] Override http request option.
|
|
6505
|
+
* @throws {RequiredError}
|
|
6506
|
+
*/
|
|
6507
|
+
adminV1UsersOnboardingJobstatusJobidGet: (jobid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6225
6508
|
/**
|
|
6226
6509
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
6227
6510
|
* @summary Update user onboarding step
|
|
@@ -6238,6 +6521,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6238
6521
|
* @throws {RequiredError}
|
|
6239
6522
|
*/
|
|
6240
6523
|
adminV1UsersOnboardingSchemaUploadPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6524
|
+
/**
|
|
6525
|
+
* Get schema options
|
|
6526
|
+
* @summary Get schema options
|
|
6527
|
+
* @param {*} [options] Override http request option.
|
|
6528
|
+
* @throws {RequiredError}
|
|
6529
|
+
*/
|
|
6530
|
+
adminV1UsersOnboardingSchemaoptionsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6241
6531
|
/**
|
|
6242
6532
|
* Test search endpoint
|
|
6243
6533
|
* @summary Test search
|
|
@@ -6266,7 +6556,15 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6266
6556
|
* @param {*} [options] Override http request option.
|
|
6267
6557
|
* @throws {RequiredError}
|
|
6268
6558
|
*/
|
|
6269
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6559
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingResponseWrapper>>;
|
|
6560
|
+
/**
|
|
6561
|
+
* Get job status
|
|
6562
|
+
* @summary Get job status
|
|
6563
|
+
* @param {string} jobid Job ID
|
|
6564
|
+
* @param {*} [options] Override http request option.
|
|
6565
|
+
* @throws {RequiredError}
|
|
6566
|
+
*/
|
|
6567
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesJobStatusResponseWrapper>>;
|
|
6270
6568
|
/**
|
|
6271
6569
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
6272
6570
|
* @summary Update user onboarding step
|
|
@@ -6274,7 +6572,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6274
6572
|
* @param {*} [options] Override http request option.
|
|
6275
6573
|
* @throws {RequiredError}
|
|
6276
6574
|
*/
|
|
6277
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6575
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingResponseWrapper>>;
|
|
6278
6576
|
/**
|
|
6279
6577
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
6280
6578
|
* @summary Upload custom schema JSON
|
|
@@ -6283,6 +6581,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6283
6581
|
* @throws {RequiredError}
|
|
6284
6582
|
*/
|
|
6285
6583
|
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
6584
|
+
/**
|
|
6585
|
+
* Get schema options
|
|
6586
|
+
* @summary Get schema options
|
|
6587
|
+
* @param {*} [options] Override http request option.
|
|
6588
|
+
* @throws {RequiredError}
|
|
6589
|
+
*/
|
|
6590
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
|
|
6286
6591
|
/**
|
|
6287
6592
|
* Test search endpoint
|
|
6288
6593
|
* @summary Test search
|
|
@@ -6290,7 +6595,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6290
6595
|
* @param {*} [options] Override http request option.
|
|
6291
6596
|
* @throws {RequiredError}
|
|
6292
6597
|
*/
|
|
6293
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6598
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
|
|
6294
6599
|
/**
|
|
6295
6600
|
* Upload source data
|
|
6296
6601
|
* @summary Upload source data
|
|
@@ -6298,7 +6603,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6298
6603
|
* @param {*} [options] Override http request option.
|
|
6299
6604
|
* @throws {RequiredError}
|
|
6300
6605
|
*/
|
|
6301
|
-
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6606
|
+
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
|
|
6302
6607
|
};
|
|
6303
6608
|
/**
|
|
6304
6609
|
* OnboardingApi - factory interface
|
|
@@ -6311,7 +6616,15 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6311
6616
|
* @param {*} [options] Override http request option.
|
|
6312
6617
|
* @throws {RequiredError}
|
|
6313
6618
|
*/
|
|
6314
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6619
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingResponseWrapper>;
|
|
6620
|
+
/**
|
|
6621
|
+
* Get job status
|
|
6622
|
+
* @summary Get job status
|
|
6623
|
+
* @param {string} jobid Job ID
|
|
6624
|
+
* @param {*} [options] Override http request option.
|
|
6625
|
+
* @throws {RequiredError}
|
|
6626
|
+
*/
|
|
6627
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesJobStatusResponseWrapper>;
|
|
6315
6628
|
/**
|
|
6316
6629
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
6317
6630
|
* @summary Update user onboarding step
|
|
@@ -6319,7 +6632,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6319
6632
|
* @param {*} [options] Override http request option.
|
|
6320
6633
|
* @throws {RequiredError}
|
|
6321
6634
|
*/
|
|
6322
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6635
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingResponseWrapper>;
|
|
6323
6636
|
/**
|
|
6324
6637
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
6325
6638
|
* @summary Upload custom schema JSON
|
|
@@ -6328,6 +6641,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6328
6641
|
* @throws {RequiredError}
|
|
6329
6642
|
*/
|
|
6330
6643
|
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
6644
|
+
/**
|
|
6645
|
+
* Get schema options
|
|
6646
|
+
* @summary Get schema options
|
|
6647
|
+
* @param {*} [options] Override http request option.
|
|
6648
|
+
* @throws {RequiredError}
|
|
6649
|
+
*/
|
|
6650
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
|
|
6331
6651
|
/**
|
|
6332
6652
|
* Test search endpoint
|
|
6333
6653
|
* @summary Test search
|
|
@@ -6335,7 +6655,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6335
6655
|
* @param {*} [options] Override http request option.
|
|
6336
6656
|
* @throws {RequiredError}
|
|
6337
6657
|
*/
|
|
6338
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6658
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
|
|
6339
6659
|
/**
|
|
6340
6660
|
* Upload source data
|
|
6341
6661
|
* @summary Upload source data
|
|
@@ -6343,7 +6663,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6343
6663
|
* @param {*} [options] Override http request option.
|
|
6344
6664
|
* @throws {RequiredError}
|
|
6345
6665
|
*/
|
|
6346
|
-
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6666
|
+
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
|
|
6347
6667
|
};
|
|
6348
6668
|
/**
|
|
6349
6669
|
* OnboardingApi - object-oriented interface
|
|
@@ -6359,7 +6679,16 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6359
6679
|
* @throws {RequiredError}
|
|
6360
6680
|
* @memberof OnboardingApi
|
|
6361
6681
|
*/
|
|
6362
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6682
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
6683
|
+
/**
|
|
6684
|
+
* Get job status
|
|
6685
|
+
* @summary Get job status
|
|
6686
|
+
* @param {string} jobid Job ID
|
|
6687
|
+
* @param {*} [options] Override http request option.
|
|
6688
|
+
* @throws {RequiredError}
|
|
6689
|
+
* @memberof OnboardingApi
|
|
6690
|
+
*/
|
|
6691
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any>>;
|
|
6363
6692
|
/**
|
|
6364
6693
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
6365
6694
|
* @summary Update user onboarding step
|
|
@@ -6368,7 +6697,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6368
6697
|
* @throws {RequiredError}
|
|
6369
6698
|
* @memberof OnboardingApi
|
|
6370
6699
|
*/
|
|
6371
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6700
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
6372
6701
|
/**
|
|
6373
6702
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
6374
6703
|
* @summary Upload custom schema JSON
|
|
@@ -6378,6 +6707,14 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6378
6707
|
* @memberof OnboardingApi
|
|
6379
6708
|
*/
|
|
6380
6709
|
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
6710
|
+
/**
|
|
6711
|
+
* Get schema options
|
|
6712
|
+
* @summary Get schema options
|
|
6713
|
+
* @param {*} [options] Override http request option.
|
|
6714
|
+
* @throws {RequiredError}
|
|
6715
|
+
* @memberof OnboardingApi
|
|
6716
|
+
*/
|
|
6717
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any>>;
|
|
6381
6718
|
/**
|
|
6382
6719
|
* Test search endpoint
|
|
6383
6720
|
* @summary Test search
|
|
@@ -6386,7 +6723,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6386
6723
|
* @throws {RequiredError}
|
|
6387
6724
|
* @memberof OnboardingApi
|
|
6388
6725
|
*/
|
|
6389
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6726
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
6390
6727
|
/**
|
|
6391
6728
|
* Upload source data
|
|
6392
6729
|
* @summary Upload source data
|
|
@@ -6395,7 +6732,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6395
6732
|
* @throws {RequiredError}
|
|
6396
6733
|
* @memberof OnboardingApi
|
|
6397
6734
|
*/
|
|
6398
|
-
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6735
|
+
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
6399
6736
|
}
|
|
6400
6737
|
/**
|
|
6401
6738
|
* OrganizationsApi - axios parameter creator
|