@seekora-ai/admin-api 1.0.9 → 1.0.10

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.0.9
1
+ ## @seekora-ai/admin-api@1.0.10
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @seekora-ai/admin-api@1.0.9 --save
39
+ npm install @seekora-ai/admin-api@1.0.10 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -250,6 +250,8 @@ Class | Method | HTTP request | Description
250
250
  - [DataTypesRoleRightResponse](docs/DataTypesRoleRightResponse.md)
251
251
  - [DataTypesRoleRightsListResponse](docs/DataTypesRoleRightsListResponse.md)
252
252
  - [DataTypesRolesListResponse](docs/DataTypesRolesListResponse.md)
253
+ - [DataTypesSampleDatasetResponse](docs/DataTypesSampleDatasetResponse.md)
254
+ - [DataTypesSampleDatasetsResponseWrapper](docs/DataTypesSampleDatasetsResponseWrapper.md)
253
255
  - [DataTypesSchemaOptionsResponse](docs/DataTypesSchemaOptionsResponse.md)
254
256
  - [DataTypesSchemaOptionsResponseWrapper](docs/DataTypesSchemaOptionsResponseWrapper.md)
255
257
  - [DataTypesSearchResult](docs/DataTypesSearchResult.md)
package/api.ts CHANGED
@@ -2779,6 +2779,62 @@ export interface DataTypesRolesListResponse {
2779
2779
  */
2780
2780
  'status'?: number;
2781
2781
  }
2782
+ /**
2783
+ *
2784
+ * @export
2785
+ * @interface DataTypesSampleDatasetResponse
2786
+ */
2787
+ export interface DataTypesSampleDatasetResponse {
2788
+ /**
2789
+ *
2790
+ * @type {string}
2791
+ * @memberof DataTypesSampleDatasetResponse
2792
+ */
2793
+ 'datasetName'?: string;
2794
+ /**
2795
+ *
2796
+ * @type {string}
2797
+ * @memberof DataTypesSampleDatasetResponse
2798
+ */
2799
+ 'description'?: string;
2800
+ /**
2801
+ *
2802
+ * @type {string}
2803
+ * @memberof DataTypesSampleDatasetResponse
2804
+ */
2805
+ 'imageUrl'?: string;
2806
+ /**
2807
+ *
2808
+ * @type {string}
2809
+ * @memberof DataTypesSampleDatasetResponse
2810
+ */
2811
+ 'storeName'?: string;
2812
+ }
2813
+ /**
2814
+ *
2815
+ * @export
2816
+ * @interface DataTypesSampleDatasetsResponseWrapper
2817
+ */
2818
+ export interface DataTypesSampleDatasetsResponseWrapper {
2819
+ /**
2820
+ *
2821
+ * @type {Array<DataTypesSampleDatasetResponse>}
2822
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2823
+ */
2824
+ 'data'?: Array<DataTypesSampleDatasetResponse>;
2825
+ /**
2826
+ *
2827
+ * @type {string}
2828
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2829
+ */
2830
+ 'message'?: string;
2831
+ /**
2832
+ *
2833
+ * @type {number}
2834
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2835
+ */
2836
+ 'status'?: number;
2837
+ }
2782
2838
  /**
2783
2839
  *
2784
2840
  * @export
@@ -9278,7 +9334,7 @@ export const OnboardingApiFp = function(configuration?: Configuration) {
9278
9334
  * @param {*} [options] Override http request option.
9279
9335
  * @throws {RequiredError}
9280
9336
  */
9281
- async adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
9337
+ async adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSampleDatasetsResponseWrapper>> {
9282
9338
  const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1UsersSampledatasetsGet(options);
9283
9339
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9284
9340
  const localVarOperationServerBasePath = operationServerMap['OnboardingApi.adminV1UsersSampledatasetsGet']?.[localVarOperationServerIndex]?.url;
@@ -9377,7 +9433,7 @@ export const OnboardingApiFactory = function (configuration?: Configuration, bas
9377
9433
  * @param {*} [options] Override http request option.
9378
9434
  * @throws {RequiredError}
9379
9435
  */
9380
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object> {
9436
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSampleDatasetsResponseWrapper> {
9381
9437
  return localVarFp.adminV1UsersSampledatasetsGet(options).then((request) => request(axios, basePath));
9382
9438
  },
9383
9439
  };
package/dist/api.d.ts CHANGED
@@ -2774,6 +2774,62 @@ export interface DataTypesRolesListResponse {
2774
2774
  */
2775
2775
  'status'?: number;
2776
2776
  }
2777
+ /**
2778
+ *
2779
+ * @export
2780
+ * @interface DataTypesSampleDatasetResponse
2781
+ */
2782
+ export interface DataTypesSampleDatasetResponse {
2783
+ /**
2784
+ *
2785
+ * @type {string}
2786
+ * @memberof DataTypesSampleDatasetResponse
2787
+ */
2788
+ 'datasetName'?: string;
2789
+ /**
2790
+ *
2791
+ * @type {string}
2792
+ * @memberof DataTypesSampleDatasetResponse
2793
+ */
2794
+ 'description'?: string;
2795
+ /**
2796
+ *
2797
+ * @type {string}
2798
+ * @memberof DataTypesSampleDatasetResponse
2799
+ */
2800
+ 'imageUrl'?: string;
2801
+ /**
2802
+ *
2803
+ * @type {string}
2804
+ * @memberof DataTypesSampleDatasetResponse
2805
+ */
2806
+ 'storeName'?: string;
2807
+ }
2808
+ /**
2809
+ *
2810
+ * @export
2811
+ * @interface DataTypesSampleDatasetsResponseWrapper
2812
+ */
2813
+ export interface DataTypesSampleDatasetsResponseWrapper {
2814
+ /**
2815
+ *
2816
+ * @type {Array<DataTypesSampleDatasetResponse>}
2817
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2818
+ */
2819
+ 'data'?: Array<DataTypesSampleDatasetResponse>;
2820
+ /**
2821
+ *
2822
+ * @type {string}
2823
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2824
+ */
2825
+ 'message'?: string;
2826
+ /**
2827
+ *
2828
+ * @type {number}
2829
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2830
+ */
2831
+ 'status'?: number;
2832
+ }
2777
2833
  /**
2778
2834
  *
2779
2835
  * @export
@@ -6675,7 +6731,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6675
6731
  * @param {*} [options] Override http request option.
6676
6732
  * @throws {RequiredError}
6677
6733
  */
6678
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
6734
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSampleDatasetsResponseWrapper>>;
6679
6735
  };
6680
6736
  /**
6681
6737
  * OnboardingApi - factory interface
@@ -6749,7 +6805,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6749
6805
  * @param {*} [options] Override http request option.
6750
6806
  * @throws {RequiredError}
6751
6807
  */
6752
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
6808
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSampleDatasetsResponseWrapper>;
6753
6809
  };
6754
6810
  /**
6755
6811
  * OnboardingApi - object-oriented interface
@@ -6834,7 +6890,7 @@ export declare class OnboardingApi extends BaseAPI {
6834
6890
  * @throws {RequiredError}
6835
6891
  * @memberof OnboardingApi
6836
6892
  */
6837
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
6893
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any>>;
6838
6894
  }
6839
6895
  /**
6840
6896
  * OrganizationsApi - axios parameter creator
package/dist/esm/api.d.ts CHANGED
@@ -2774,6 +2774,62 @@ export interface DataTypesRolesListResponse {
2774
2774
  */
2775
2775
  'status'?: number;
2776
2776
  }
2777
+ /**
2778
+ *
2779
+ * @export
2780
+ * @interface DataTypesSampleDatasetResponse
2781
+ */
2782
+ export interface DataTypesSampleDatasetResponse {
2783
+ /**
2784
+ *
2785
+ * @type {string}
2786
+ * @memberof DataTypesSampleDatasetResponse
2787
+ */
2788
+ 'datasetName'?: string;
2789
+ /**
2790
+ *
2791
+ * @type {string}
2792
+ * @memberof DataTypesSampleDatasetResponse
2793
+ */
2794
+ 'description'?: string;
2795
+ /**
2796
+ *
2797
+ * @type {string}
2798
+ * @memberof DataTypesSampleDatasetResponse
2799
+ */
2800
+ 'imageUrl'?: string;
2801
+ /**
2802
+ *
2803
+ * @type {string}
2804
+ * @memberof DataTypesSampleDatasetResponse
2805
+ */
2806
+ 'storeName'?: string;
2807
+ }
2808
+ /**
2809
+ *
2810
+ * @export
2811
+ * @interface DataTypesSampleDatasetsResponseWrapper
2812
+ */
2813
+ export interface DataTypesSampleDatasetsResponseWrapper {
2814
+ /**
2815
+ *
2816
+ * @type {Array<DataTypesSampleDatasetResponse>}
2817
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2818
+ */
2819
+ 'data'?: Array<DataTypesSampleDatasetResponse>;
2820
+ /**
2821
+ *
2822
+ * @type {string}
2823
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2824
+ */
2825
+ 'message'?: string;
2826
+ /**
2827
+ *
2828
+ * @type {number}
2829
+ * @memberof DataTypesSampleDatasetsResponseWrapper
2830
+ */
2831
+ 'status'?: number;
2832
+ }
2777
2833
  /**
2778
2834
  *
2779
2835
  * @export
@@ -6675,7 +6731,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
6675
6731
  * @param {*} [options] Override http request option.
6676
6732
  * @throws {RequiredError}
6677
6733
  */
6678
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
6734
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSampleDatasetsResponseWrapper>>;
6679
6735
  };
6680
6736
  /**
6681
6737
  * OnboardingApi - factory interface
@@ -6749,7 +6805,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
6749
6805
  * @param {*} [options] Override http request option.
6750
6806
  * @throws {RequiredError}
6751
6807
  */
6752
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
6808
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSampleDatasetsResponseWrapper>;
6753
6809
  };
6754
6810
  /**
6755
6811
  * OnboardingApi - object-oriented interface
@@ -6834,7 +6890,7 @@ export declare class OnboardingApi extends BaseAPI {
6834
6890
  * @throws {RequiredError}
6835
6891
  * @memberof OnboardingApi
6836
6892
  */
6837
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
6893
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any>>;
6838
6894
  }
6839
6895
  /**
6840
6896
  * OrganizationsApi - axios parameter creator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file