@seekora-ai/admin-api 1.0.7 → 1.0.9

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/esm/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
@@ -3022,6 +3253,50 @@ export interface DataTypesStore {
3022
3253
  */
3023
3254
  'StoreName'?: string;
3024
3255
  }
3256
+ /**
3257
+ *
3258
+ * @export
3259
+ * @interface DataTypesStoreKeyResponse
3260
+ */
3261
+ export interface DataTypesStoreKeyResponse {
3262
+ /**
3263
+ *
3264
+ * @type {string}
3265
+ * @memberof DataTypesStoreKeyResponse
3266
+ */
3267
+ 'storeId'?: string;
3268
+ /**
3269
+ *
3270
+ * @type {string}
3271
+ * @memberof DataTypesStoreKeyResponse
3272
+ */
3273
+ 'storeSecret'?: string;
3274
+ }
3275
+ /**
3276
+ *
3277
+ * @export
3278
+ * @interface DataTypesStoreKeyResponseWrapper
3279
+ */
3280
+ export interface DataTypesStoreKeyResponseWrapper {
3281
+ /**
3282
+ *
3283
+ * @type {DataTypesStoreKeyResponse}
3284
+ * @memberof DataTypesStoreKeyResponseWrapper
3285
+ */
3286
+ 'data'?: DataTypesStoreKeyResponse;
3287
+ /**
3288
+ *
3289
+ * @type {string}
3290
+ * @memberof DataTypesStoreKeyResponseWrapper
3291
+ */
3292
+ 'message'?: string;
3293
+ /**
3294
+ *
3295
+ * @type {number}
3296
+ * @memberof DataTypesStoreKeyResponseWrapper
3297
+ */
3298
+ 'status'?: number;
3299
+ }
3025
3300
  /**
3026
3301
  *
3027
3302
  * @export
@@ -3614,28 +3889,72 @@ export interface DataTypesUpdateSchemaResponse {
3614
3889
  /**
3615
3890
  *
3616
3891
  * @export
3617
- * @interface DataTypesUploadSourceDataResponse
3892
+ * @interface DataTypesUpdateSourceConfigResponseWrapper
3618
3893
  */
3619
- export interface DataTypesUploadSourceDataResponse {
3894
+ export interface DataTypesUpdateSourceConfigResponseWrapper {
3620
3895
  /**
3621
3896
  *
3622
3897
  * @type {DataTypesSource}
3623
- * @memberof DataTypesUploadSourceDataResponse
3898
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
3624
3899
  */
3625
3900
  'data'?: DataTypesSource;
3626
3901
  /**
3627
3902
  *
3628
3903
  * @type {string}
3629
- * @memberof DataTypesUploadSourceDataResponse
3904
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
3905
+ */
3906
+ 'message'?: string;
3907
+ /**
3908
+ *
3909
+ * @type {number}
3910
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
3911
+ */
3912
+ 'status'?: number;
3913
+ }
3914
+ /**
3915
+ *
3916
+ * @export
3917
+ * @interface DataTypesUploadSourceDataResponseWrapper
3918
+ */
3919
+ export interface DataTypesUploadSourceDataResponseWrapper {
3920
+ /**
3921
+ *
3922
+ * @type {DataTypesUploadsourceDataResponse}
3923
+ * @memberof DataTypesUploadSourceDataResponseWrapper
3924
+ */
3925
+ 'data'?: DataTypesUploadsourceDataResponse;
3926
+ /**
3927
+ *
3928
+ * @type {string}
3929
+ * @memberof DataTypesUploadSourceDataResponseWrapper
3630
3930
  */
3631
3931
  'message'?: string;
3632
3932
  /**
3633
3933
  *
3634
3934
  * @type {number}
3635
- * @memberof DataTypesUploadSourceDataResponse
3935
+ * @memberof DataTypesUploadSourceDataResponseWrapper
3636
3936
  */
3637
3937
  'status'?: number;
3638
3938
  }
3939
+ /**
3940
+ *
3941
+ * @export
3942
+ * @interface DataTypesUploadsourceDataResponse
3943
+ */
3944
+ export interface DataTypesUploadsourceDataResponse {
3945
+ /**
3946
+ *
3947
+ * @type {string}
3948
+ * @memberof DataTypesUploadsourceDataResponse
3949
+ */
3950
+ 'JobId'?: string;
3951
+ /**
3952
+ *
3953
+ * @type {DataTypesSource}
3954
+ * @memberof DataTypesUploadsourceDataResponse
3955
+ */
3956
+ 'Source'?: DataTypesSource;
3957
+ }
3639
3958
  /**
3640
3959
  *
3641
3960
  * @export
@@ -4703,7 +5022,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
4703
5022
  * @param {*} [options] Override http request option.
4704
5023
  * @throws {RequiredError}
4705
5024
  */
4706
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponse>>;
5025
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>>;
4707
5026
  /**
4708
5027
  * Update Index schema
4709
5028
  * @summary Update Index schema
@@ -4720,7 +5039,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
4720
5039
  * @param {*} [options] Override http request option.
4721
5040
  * @throws {RequiredError}
4722
5041
  */
4723
- v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponse>>;
5042
+ v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
4724
5043
  /**
4725
5044
  * Create task
4726
5045
  * @summary Create task
@@ -4785,7 +5104,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
4785
5104
  * @param {*} [options] Override http request option.
4786
5105
  * @throws {RequiredError}
4787
5106
  */
4788
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponse>;
5107
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>;
4789
5108
  /**
4790
5109
  * Update Index schema
4791
5110
  * @summary Update Index schema
@@ -4802,7 +5121,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
4802
5121
  * @param {*} [options] Override http request option.
4803
5122
  * @throws {RequiredError}
4804
5123
  */
4805
- v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponse>;
5124
+ v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
4806
5125
  /**
4807
5126
  * Create task
4808
5127
  * @summary Create task
@@ -4874,7 +5193,7 @@ export declare class ConnectorsApi extends BaseAPI {
4874
5193
  * @throws {RequiredError}
4875
5194
  * @memberof ConnectorsApi
4876
5195
  */
4877
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponse, any>>;
5196
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any>>;
4878
5197
  /**
4879
5198
  * Update Index schema
4880
5199
  * @summary Update Index schema
@@ -4893,7 +5212,7 @@ export declare class ConnectorsApi extends BaseAPI {
4893
5212
  * @throws {RequiredError}
4894
5213
  * @memberof ConnectorsApi
4895
5214
  */
4896
- v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponse, any>>;
5215
+ v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
4897
5216
  /**
4898
5217
  * Create task
4899
5218
  * @summary Create task
@@ -6222,6 +6541,14 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
6222
6541
  * @throws {RequiredError}
6223
6542
  */
6224
6543
  adminV1UsersOnboardingGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6544
+ /**
6545
+ * Get job status
6546
+ * @summary Get job status
6547
+ * @param {string} jobid Job ID
6548
+ * @param {*} [options] Override http request option.
6549
+ * @throws {RequiredError}
6550
+ */
6551
+ adminV1UsersOnboardingJobstatusJobidGet: (jobid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6225
6552
  /**
6226
6553
  * Updates onboardingstep and merges new data into onboardingdata JSON
6227
6554
  * @summary Update user onboarding step
@@ -6238,6 +6565,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
6238
6565
  * @throws {RequiredError}
6239
6566
  */
6240
6567
  adminV1UsersOnboardingSchemaUploadPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6568
+ /**
6569
+ * Get schema options
6570
+ * @summary Get schema options
6571
+ * @param {*} [options] Override http request option.
6572
+ * @throws {RequiredError}
6573
+ */
6574
+ adminV1UsersOnboardingSchemaoptionsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6241
6575
  /**
6242
6576
  * Test search endpoint
6243
6577
  * @summary Test search
@@ -6246,6 +6580,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
6246
6580
  * @throws {RequiredError}
6247
6581
  */
6248
6582
  adminV1UsersOnboardingSearchGet: (q: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6583
+ /**
6584
+ * Get store key
6585
+ * @summary Get store key
6586
+ * @param {*} [options] Override http request option.
6587
+ * @throws {RequiredError}
6588
+ */
6589
+ adminV1UsersOnboardingStorekeyGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6249
6590
  /**
6250
6591
  * Upload source data
6251
6592
  * @summary Upload source data
@@ -6254,6 +6595,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
6254
6595
  * @throws {RequiredError}
6255
6596
  */
6256
6597
  adminV1UsersOnboardingUploaddataPost: (adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6598
+ /**
6599
+ * Get sample datasets
6600
+ * @summary Get sample datasets
6601
+ * @param {*} [options] Override http request option.
6602
+ * @throws {RequiredError}
6603
+ */
6604
+ adminV1UsersSampledatasetsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6257
6605
  };
6258
6606
  /**
6259
6607
  * OnboardingApi - functional programming interface
@@ -6266,7 +6614,15 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6266
6614
  * @param {*} [options] Override http request option.
6267
6615
  * @throws {RequiredError}
6268
6616
  */
6269
- adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
6617
+ adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingResponseWrapper>>;
6618
+ /**
6619
+ * Get job status
6620
+ * @summary Get job status
6621
+ * @param {string} jobid Job ID
6622
+ * @param {*} [options] Override http request option.
6623
+ * @throws {RequiredError}
6624
+ */
6625
+ adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesJobStatusResponseWrapper>>;
6270
6626
  /**
6271
6627
  * Updates onboardingstep and merges new data into onboardingdata JSON
6272
6628
  * @summary Update user onboarding step
@@ -6274,7 +6630,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6274
6630
  * @param {*} [options] Override http request option.
6275
6631
  * @throws {RequiredError}
6276
6632
  */
6277
- adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
6633
+ adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingResponseWrapper>>;
6278
6634
  /**
6279
6635
  * Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
6280
6636
  * @summary Upload custom schema JSON
@@ -6283,6 +6639,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6283
6639
  * @throws {RequiredError}
6284
6640
  */
6285
6641
  adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
6642
+ /**
6643
+ * Get schema options
6644
+ * @summary Get schema options
6645
+ * @param {*} [options] Override http request option.
6646
+ * @throws {RequiredError}
6647
+ */
6648
+ adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
6286
6649
  /**
6287
6650
  * Test search endpoint
6288
6651
  * @summary Test search
@@ -6290,7 +6653,14 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6290
6653
  * @param {*} [options] Override http request option.
6291
6654
  * @throws {RequiredError}
6292
6655
  */
6293
- adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
6656
+ adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
6657
+ /**
6658
+ * Get store key
6659
+ * @summary Get store key
6660
+ * @param {*} [options] Override http request option.
6661
+ * @throws {RequiredError}
6662
+ */
6663
+ adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreKeyResponseWrapper>>;
6294
6664
  /**
6295
6665
  * Upload source data
6296
6666
  * @summary Upload source data
@@ -6298,7 +6668,14 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6298
6668
  * @param {*} [options] Override http request option.
6299
6669
  * @throws {RequiredError}
6300
6670
  */
6301
- adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponse>>;
6671
+ adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
6672
+ /**
6673
+ * Get sample datasets
6674
+ * @summary Get sample datasets
6675
+ * @param {*} [options] Override http request option.
6676
+ * @throws {RequiredError}
6677
+ */
6678
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
6302
6679
  };
6303
6680
  /**
6304
6681
  * OnboardingApi - factory interface
@@ -6311,7 +6688,15 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6311
6688
  * @param {*} [options] Override http request option.
6312
6689
  * @throws {RequiredError}
6313
6690
  */
6314
- adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
6691
+ adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingResponseWrapper>;
6692
+ /**
6693
+ * Get job status
6694
+ * @summary Get job status
6695
+ * @param {string} jobid Job ID
6696
+ * @param {*} [options] Override http request option.
6697
+ * @throws {RequiredError}
6698
+ */
6699
+ adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesJobStatusResponseWrapper>;
6315
6700
  /**
6316
6701
  * Updates onboardingstep and merges new data into onboardingdata JSON
6317
6702
  * @summary Update user onboarding step
@@ -6319,7 +6704,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6319
6704
  * @param {*} [options] Override http request option.
6320
6705
  * @throws {RequiredError}
6321
6706
  */
6322
- adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
6707
+ adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingResponseWrapper>;
6323
6708
  /**
6324
6709
  * Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
6325
6710
  * @summary Upload custom schema JSON
@@ -6328,6 +6713,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6328
6713
  * @throws {RequiredError}
6329
6714
  */
6330
6715
  adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
6716
+ /**
6717
+ * Get schema options
6718
+ * @summary Get schema options
6719
+ * @param {*} [options] Override http request option.
6720
+ * @throws {RequiredError}
6721
+ */
6722
+ adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
6331
6723
  /**
6332
6724
  * Test search endpoint
6333
6725
  * @summary Test search
@@ -6335,7 +6727,14 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6335
6727
  * @param {*} [options] Override http request option.
6336
6728
  * @throws {RequiredError}
6337
6729
  */
6338
- adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
6730
+ adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
6731
+ /**
6732
+ * Get store key
6733
+ * @summary Get store key
6734
+ * @param {*} [options] Override http request option.
6735
+ * @throws {RequiredError}
6736
+ */
6737
+ adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreKeyResponseWrapper>;
6339
6738
  /**
6340
6739
  * Upload source data
6341
6740
  * @summary Upload source data
@@ -6343,7 +6742,14 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6343
6742
  * @param {*} [options] Override http request option.
6344
6743
  * @throws {RequiredError}
6345
6744
  */
6346
- adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponse>;
6745
+ adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
6746
+ /**
6747
+ * Get sample datasets
6748
+ * @summary Get sample datasets
6749
+ * @param {*} [options] Override http request option.
6750
+ * @throws {RequiredError}
6751
+ */
6752
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
6347
6753
  };
6348
6754
  /**
6349
6755
  * OnboardingApi - object-oriented interface
@@ -6359,7 +6765,16 @@ export declare class OnboardingApi extends BaseAPI {
6359
6765
  * @throws {RequiredError}
6360
6766
  * @memberof OnboardingApi
6361
6767
  */
6362
- adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
6768
+ adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
6769
+ /**
6770
+ * Get job status
6771
+ * @summary Get job status
6772
+ * @param {string} jobid Job ID
6773
+ * @param {*} [options] Override http request option.
6774
+ * @throws {RequiredError}
6775
+ * @memberof OnboardingApi
6776
+ */
6777
+ adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any>>;
6363
6778
  /**
6364
6779
  * Updates onboardingstep and merges new data into onboardingdata JSON
6365
6780
  * @summary Update user onboarding step
@@ -6368,7 +6783,7 @@ export declare class OnboardingApi extends BaseAPI {
6368
6783
  * @throws {RequiredError}
6369
6784
  * @memberof OnboardingApi
6370
6785
  */
6371
- adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
6786
+ adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
6372
6787
  /**
6373
6788
  * Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
6374
6789
  * @summary Upload custom schema JSON
@@ -6378,6 +6793,14 @@ export declare class OnboardingApi extends BaseAPI {
6378
6793
  * @memberof OnboardingApi
6379
6794
  */
6380
6795
  adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
6796
+ /**
6797
+ * Get schema options
6798
+ * @summary Get schema options
6799
+ * @param {*} [options] Override http request option.
6800
+ * @throws {RequiredError}
6801
+ * @memberof OnboardingApi
6802
+ */
6803
+ adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any>>;
6381
6804
  /**
6382
6805
  * Test search endpoint
6383
6806
  * @summary Test search
@@ -6386,7 +6809,15 @@ export declare class OnboardingApi extends BaseAPI {
6386
6809
  * @throws {RequiredError}
6387
6810
  * @memberof OnboardingApi
6388
6811
  */
6389
- adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
6812
+ adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
6813
+ /**
6814
+ * Get store key
6815
+ * @summary Get store key
6816
+ * @param {*} [options] Override http request option.
6817
+ * @throws {RequiredError}
6818
+ * @memberof OnboardingApi
6819
+ */
6820
+ adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
6390
6821
  /**
6391
6822
  * Upload source data
6392
6823
  * @summary Upload source data
@@ -6395,7 +6826,15 @@ export declare class OnboardingApi extends BaseAPI {
6395
6826
  * @throws {RequiredError}
6396
6827
  * @memberof OnboardingApi
6397
6828
  */
6398
- adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponse, any>>;
6829
+ adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
6830
+ /**
6831
+ * Get sample datasets
6832
+ * @summary Get sample datasets
6833
+ * @param {*} [options] Override http request option.
6834
+ * @throws {RequiredError}
6835
+ * @memberof OnboardingApi
6836
+ */
6837
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
6399
6838
  }
6400
6839
  /**
6401
6840
  * OrganizationsApi - axios parameter creator