@seekora-ai/admin-api 1.1.28 → 1.1.29

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.1.28
1
+ ## @seekora-ai/admin-api@1.1.29
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.1.28 --save
39
+ npm install @seekora-ai/admin-api@1.1.29 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -637,6 +637,8 @@ Class | Method | HTTP request | Description
637
637
  - [DataTypesCombinedSearchResult](docs/DataTypesCombinedSearchResult.md)
638
638
  - [DataTypesCompanyConfig](docs/DataTypesCompanyConfig.md)
639
639
  - [DataTypesCompanyConfigRequest](docs/DataTypesCompanyConfigRequest.md)
640
+ - [DataTypesComponentCheck](docs/DataTypesComponentCheck.md)
641
+ - [DataTypesComponentStatusDetail](docs/DataTypesComponentStatusDetail.md)
640
642
  - [DataTypesConfigGroup](docs/DataTypesConfigGroup.md)
641
643
  - [DataTypesConfigurationSchema](docs/DataTypesConfigurationSchema.md)
642
644
  - [DataTypesConfigurationSchemaResponseWrapper](docs/DataTypesConfigurationSchemaResponseWrapper.md)
@@ -710,6 +712,7 @@ Class | Method | HTTP request | Description
710
712
  - [DataTypesGenericResponseDataTypesPayInvoiceResponse](docs/DataTypesGenericResponseDataTypesPayInvoiceResponse.md)
711
713
  - [DataTypesGenericResponseDataTypesReceipt](docs/DataTypesGenericResponseDataTypesReceipt.md)
712
714
  - [DataTypesGenericResponseDataTypesSearchRequestsGraphResponse](docs/DataTypesGenericResponseDataTypesSearchRequestsGraphResponse.md)
715
+ - [DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse](docs/DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse.md)
713
716
  - [DataTypesGenericResponseDataTypesTaxCalculationResponse](docs/DataTypesGenericResponseDataTypesTaxCalculationResponse.md)
714
717
  - [DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse](docs/DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse.md)
715
718
  - [DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse](docs/DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse.md)
@@ -783,6 +786,7 @@ Class | Method | HTTP request | Description
783
786
  - [DataTypesOnboardingRequest](docs/DataTypesOnboardingRequest.md)
784
787
  - [DataTypesOnboardingResponse](docs/DataTypesOnboardingResponse.md)
785
788
  - [DataTypesOnboardingResponseWrapper](docs/DataTypesOnboardingResponseWrapper.md)
789
+ - [DataTypesOnboardingStatus](docs/DataTypesOnboardingStatus.md)
786
790
  - [DataTypesOnboardingTestSearchResponse](docs/DataTypesOnboardingTestSearchResponse.md)
787
791
  - [DataTypesOnboardingTestSearchResponseWrapper](docs/DataTypesOnboardingTestSearchResponseWrapper.md)
788
792
  - [DataTypesOnboardingTestSearchResultItem](docs/DataTypesOnboardingTestSearchResultItem.md)
@@ -877,6 +881,7 @@ Class | Method | HTTP request | Description
877
881
  - [DataTypesStoreAccessRequest](docs/DataTypesStoreAccessRequest.md)
878
882
  - [DataTypesStoreAccessResponse](docs/DataTypesStoreAccessResponse.md)
879
883
  - [DataTypesStoreAccessWithDetails](docs/DataTypesStoreAccessWithDetails.md)
884
+ - [DataTypesStoreConfigWithOnboardingResponse](docs/DataTypesStoreConfigWithOnboardingResponse.md)
880
885
  - [DataTypesStoreCreationRequest](docs/DataTypesStoreCreationRequest.md)
881
886
  - [DataTypesStoreCreationResponse](docs/DataTypesStoreCreationResponse.md)
882
887
  - [DataTypesStoreCreationResponseWrapper](docs/DataTypesStoreCreationResponseWrapper.md)
package/api.ts CHANGED
@@ -8434,6 +8434,74 @@ export interface DataTypesCompanyConfigRequest {
8434
8434
  */
8435
8435
  'website'?: string;
8436
8436
  }
8437
+ /**
8438
+ *
8439
+ * @export
8440
+ * @interface DataTypesComponentCheck
8441
+ */
8442
+ export interface DataTypesComponentCheck {
8443
+ /**
8444
+ * Whether component exists
8445
+ * @type {boolean}
8446
+ * @memberof DataTypesComponentCheck
8447
+ */
8448
+ 'exists'?: boolean;
8449
+ /**
8450
+ * Whether component is valid/complete
8451
+ * @type {boolean}
8452
+ * @memberof DataTypesComponentCheck
8453
+ */
8454
+ 'is_valid'?: boolean;
8455
+ /**
8456
+ * Status message
8457
+ * @type {string}
8458
+ * @memberof DataTypesComponentCheck
8459
+ */
8460
+ 'message'?: string;
8461
+ /**
8462
+ * What step to continue from
8463
+ * @type {string}
8464
+ * @memberof DataTypesComponentCheck
8465
+ */
8466
+ 'next_step'?: string;
8467
+ }
8468
+ /**
8469
+ *
8470
+ * @export
8471
+ * @interface DataTypesComponentStatusDetail
8472
+ */
8473
+ export interface DataTypesComponentStatusDetail {
8474
+ /**
8475
+ * Typesense collection exists
8476
+ * @type {DataTypesComponentCheck}
8477
+ * @memberof DataTypesComponentStatusDetail
8478
+ */
8479
+ 'collection'?: DataTypesComponentCheck;
8480
+ /**
8481
+ * Config is properly set up
8482
+ * @type {DataTypesComponentCheck}
8483
+ * @memberof DataTypesComponentStatusDetail
8484
+ */
8485
+ 'config'?: DataTypesComponentCheck;
8486
+ /**
8487
+ * Destination exists
8488
+ * @type {DataTypesComponentCheck}
8489
+ * @memberof DataTypesComponentStatusDetail
8490
+ */
8491
+ 'destination'?: DataTypesComponentCheck;
8492
+ /**
8493
+ * Source exists
8494
+ * @type {DataTypesComponentCheck}
8495
+ * @memberof DataTypesComponentStatusDetail
8496
+ */
8497
+ 'source'?: DataTypesComponentCheck;
8498
+ /**
8499
+ * Store record exists
8500
+ * @type {DataTypesComponentCheck}
8501
+ * @memberof DataTypesComponentStatusDetail
8502
+ */
8503
+ 'store'?: DataTypesComponentCheck;
8504
+ }
8437
8505
  /**
8438
8506
  *
8439
8507
  * @export
@@ -11663,6 +11731,31 @@ export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
11663
11731
  */
11664
11732
  'status'?: number;
11665
11733
  }
11734
+ /**
11735
+ *
11736
+ * @export
11737
+ * @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11738
+ */
11739
+ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
11740
+ /**
11741
+ *
11742
+ * @type {DataTypesStoreConfigWithOnboardingResponse}
11743
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11744
+ */
11745
+ 'data'?: DataTypesStoreConfigWithOnboardingResponse;
11746
+ /**
11747
+ *
11748
+ * @type {string}
11749
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11750
+ */
11751
+ 'message'?: string;
11752
+ /**
11753
+ *
11754
+ * @type {number}
11755
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11756
+ */
11757
+ 'status'?: number;
11758
+ }
11666
11759
  /**
11667
11760
  *
11668
11761
  * @export
@@ -11860,6 +11953,12 @@ export interface DataTypesGetStoreResult {
11860
11953
  * @memberof DataTypesGetStoreResult
11861
11954
  */
11862
11955
  'index_name'?: string;
11956
+ /**
11957
+ * Onboarding validation status
11958
+ * @type {DataTypesOnboardingStatus}
11959
+ * @memberof DataTypesGetStoreResult
11960
+ */
11961
+ 'onboarding_status'?: DataTypesOnboardingStatus;
11863
11962
  /**
11864
11963
  *
11865
11964
  * @type {DataTypesIndexConfig}
@@ -15583,6 +15682,31 @@ export interface DataTypesOnboardingResponseWrapper {
15583
15682
  */
15584
15683
  'status'?: number;
15585
15684
  }
15685
+ /**
15686
+ *
15687
+ * @export
15688
+ * @interface DataTypesOnboardingStatus
15689
+ */
15690
+ export interface DataTypesOnboardingStatus {
15691
+ /**
15692
+ * Detailed status of each component
15693
+ * @type {DataTypesComponentStatusDetail}
15694
+ * @memberof DataTypesOnboardingStatus
15695
+ */
15696
+ 'component_status'?: DataTypesComponentStatusDetail;
15697
+ /**
15698
+ * Whether store is fully onboarded
15699
+ * @type {boolean}
15700
+ * @memberof DataTypesOnboardingStatus
15701
+ */
15702
+ 'is_complete'?: boolean;
15703
+ /**
15704
+ * List of missing components
15705
+ * @type {Array<string>}
15706
+ * @memberof DataTypesOnboardingStatus
15707
+ */
15708
+ 'missing_components'?: Array<string>;
15709
+ }
15586
15710
  /**
15587
15711
  *
15588
15712
  * @export
@@ -20080,6 +20204,25 @@ export interface DataTypesStoreAccessWithDetails {
20080
20204
  */
20081
20205
  'user_id'?: number;
20082
20206
  }
20207
+ /**
20208
+ *
20209
+ * @export
20210
+ * @interface DataTypesStoreConfigWithOnboardingResponse
20211
+ */
20212
+ export interface DataTypesStoreConfigWithOnboardingResponse {
20213
+ /**
20214
+ * Store configuration
20215
+ * @type {DataTypesIndexConfig}
20216
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20217
+ */
20218
+ 'config'?: DataTypesIndexConfig;
20219
+ /**
20220
+ * Onboarding validation status
20221
+ * @type {DataTypesOnboardingStatus}
20222
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20223
+ */
20224
+ 'onboarding_status'?: DataTypesOnboardingStatus;
20225
+ }
20083
20226
  /**
20084
20227
  *
20085
20228
  * @export
@@ -59052,7 +59195,7 @@ export const StoresApiAxiosParamCreator = function (configuration?: Configuratio
59052
59195
  };
59053
59196
  },
59054
59197
  /**
59055
- * Retrieves the store configuration using x-store ID
59198
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
59056
59199
  * @summary Get Store Config
59057
59200
  * @param {string} xStoreID X-Store ID
59058
59201
  * @param {*} [options] Override http request option.
@@ -59556,13 +59699,13 @@ export const StoresApiFp = function(configuration?: Configuration) {
59556
59699
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
59557
59700
  },
59558
59701
  /**
59559
- * Retrieves the store configuration using x-store ID
59702
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
59560
59703
  * @summary Get Store Config
59561
59704
  * @param {string} xStoreID X-Store ID
59562
59705
  * @param {*} [options] Override http request option.
59563
59706
  * @throws {RequiredError}
59564
59707
  */
59565
- async adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>> {
59708
+ async adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>> {
59566
59709
  const localVarAxiosArgs = await localVarAxiosParamCreator.adminStoresXStoreIDConfigGet(xStoreID, options);
59567
59710
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
59568
59711
  const localVarOperationServerBasePath = operationServerMap['StoresApi.adminStoresXStoreIDConfigGet']?.[localVarOperationServerIndex]?.url;
@@ -59792,13 +59935,13 @@ export const StoresApiFactory = function (configuration?: Configuration, basePat
59792
59935
  return localVarFp.adminStoresXStoreIDApiUsageGet(xStoreID, startDate, endDate, method, path, page, perPage, options).then((request) => request(axios, basePath));
59793
59936
  },
59794
59937
  /**
59795
- * Retrieves the store configuration using x-store ID
59938
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
59796
59939
  * @summary Get Store Config
59797
59940
  * @param {string} xStoreID X-Store ID
59798
59941
  * @param {*} [options] Override http request option.
59799
59942
  * @throws {RequiredError}
59800
59943
  */
59801
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper> {
59944
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse> {
59802
59945
  return localVarFp.adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
59803
59946
  },
59804
59947
  /**
@@ -60019,7 +60162,7 @@ export class StoresApi extends BaseAPI {
60019
60162
  }
60020
60163
 
60021
60164
  /**
60022
- * Retrieves the store configuration using x-store ID
60165
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
60023
60166
  * @summary Get Store Config
60024
60167
  * @param {string} xStoreID X-Store ID
60025
60168
  * @param {*} [options] Override http request option.
package/dist/api.d.ts CHANGED
@@ -8442,6 +8442,74 @@ export interface DataTypesCompanyConfigRequest {
8442
8442
  */
8443
8443
  'website'?: string;
8444
8444
  }
8445
+ /**
8446
+ *
8447
+ * @export
8448
+ * @interface DataTypesComponentCheck
8449
+ */
8450
+ export interface DataTypesComponentCheck {
8451
+ /**
8452
+ * Whether component exists
8453
+ * @type {boolean}
8454
+ * @memberof DataTypesComponentCheck
8455
+ */
8456
+ 'exists'?: boolean;
8457
+ /**
8458
+ * Whether component is valid/complete
8459
+ * @type {boolean}
8460
+ * @memberof DataTypesComponentCheck
8461
+ */
8462
+ 'is_valid'?: boolean;
8463
+ /**
8464
+ * Status message
8465
+ * @type {string}
8466
+ * @memberof DataTypesComponentCheck
8467
+ */
8468
+ 'message'?: string;
8469
+ /**
8470
+ * What step to continue from
8471
+ * @type {string}
8472
+ * @memberof DataTypesComponentCheck
8473
+ */
8474
+ 'next_step'?: string;
8475
+ }
8476
+ /**
8477
+ *
8478
+ * @export
8479
+ * @interface DataTypesComponentStatusDetail
8480
+ */
8481
+ export interface DataTypesComponentStatusDetail {
8482
+ /**
8483
+ * Typesense collection exists
8484
+ * @type {DataTypesComponentCheck}
8485
+ * @memberof DataTypesComponentStatusDetail
8486
+ */
8487
+ 'collection'?: DataTypesComponentCheck;
8488
+ /**
8489
+ * Config is properly set up
8490
+ * @type {DataTypesComponentCheck}
8491
+ * @memberof DataTypesComponentStatusDetail
8492
+ */
8493
+ 'config'?: DataTypesComponentCheck;
8494
+ /**
8495
+ * Destination exists
8496
+ * @type {DataTypesComponentCheck}
8497
+ * @memberof DataTypesComponentStatusDetail
8498
+ */
8499
+ 'destination'?: DataTypesComponentCheck;
8500
+ /**
8501
+ * Source exists
8502
+ * @type {DataTypesComponentCheck}
8503
+ * @memberof DataTypesComponentStatusDetail
8504
+ */
8505
+ 'source'?: DataTypesComponentCheck;
8506
+ /**
8507
+ * Store record exists
8508
+ * @type {DataTypesComponentCheck}
8509
+ * @memberof DataTypesComponentStatusDetail
8510
+ */
8511
+ 'store'?: DataTypesComponentCheck;
8512
+ }
8445
8513
  /**
8446
8514
  *
8447
8515
  * @export
@@ -11676,6 +11744,31 @@ export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
11676
11744
  */
11677
11745
  'status'?: number;
11678
11746
  }
11747
+ /**
11748
+ *
11749
+ * @export
11750
+ * @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11751
+ */
11752
+ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
11753
+ /**
11754
+ *
11755
+ * @type {DataTypesStoreConfigWithOnboardingResponse}
11756
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11757
+ */
11758
+ 'data'?: DataTypesStoreConfigWithOnboardingResponse;
11759
+ /**
11760
+ *
11761
+ * @type {string}
11762
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11763
+ */
11764
+ 'message'?: string;
11765
+ /**
11766
+ *
11767
+ * @type {number}
11768
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11769
+ */
11770
+ 'status'?: number;
11771
+ }
11679
11772
  /**
11680
11773
  *
11681
11774
  * @export
@@ -11873,6 +11966,12 @@ export interface DataTypesGetStoreResult {
11873
11966
  * @memberof DataTypesGetStoreResult
11874
11967
  */
11875
11968
  'index_name'?: string;
11969
+ /**
11970
+ * Onboarding validation status
11971
+ * @type {DataTypesOnboardingStatus}
11972
+ * @memberof DataTypesGetStoreResult
11973
+ */
11974
+ 'onboarding_status'?: DataTypesOnboardingStatus;
11876
11975
  /**
11877
11976
  *
11878
11977
  * @type {DataTypesIndexConfig}
@@ -15612,6 +15711,31 @@ export interface DataTypesOnboardingResponseWrapper {
15612
15711
  */
15613
15712
  'status'?: number;
15614
15713
  }
15714
+ /**
15715
+ *
15716
+ * @export
15717
+ * @interface DataTypesOnboardingStatus
15718
+ */
15719
+ export interface DataTypesOnboardingStatus {
15720
+ /**
15721
+ * Detailed status of each component
15722
+ * @type {DataTypesComponentStatusDetail}
15723
+ * @memberof DataTypesOnboardingStatus
15724
+ */
15725
+ 'component_status'?: DataTypesComponentStatusDetail;
15726
+ /**
15727
+ * Whether store is fully onboarded
15728
+ * @type {boolean}
15729
+ * @memberof DataTypesOnboardingStatus
15730
+ */
15731
+ 'is_complete'?: boolean;
15732
+ /**
15733
+ * List of missing components
15734
+ * @type {Array<string>}
15735
+ * @memberof DataTypesOnboardingStatus
15736
+ */
15737
+ 'missing_components'?: Array<string>;
15738
+ }
15615
15739
  /**
15616
15740
  *
15617
15741
  * @export
@@ -20131,6 +20255,25 @@ export interface DataTypesStoreAccessWithDetails {
20131
20255
  */
20132
20256
  'user_id'?: number;
20133
20257
  }
20258
+ /**
20259
+ *
20260
+ * @export
20261
+ * @interface DataTypesStoreConfigWithOnboardingResponse
20262
+ */
20263
+ export interface DataTypesStoreConfigWithOnboardingResponse {
20264
+ /**
20265
+ * Store configuration
20266
+ * @type {DataTypesIndexConfig}
20267
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20268
+ */
20269
+ 'config'?: DataTypesIndexConfig;
20270
+ /**
20271
+ * Onboarding validation status
20272
+ * @type {DataTypesOnboardingStatus}
20273
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20274
+ */
20275
+ 'onboarding_status'?: DataTypesOnboardingStatus;
20276
+ }
20134
20277
  /**
20135
20278
  *
20136
20279
  * @export
@@ -41384,7 +41527,7 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
41384
41527
  */
41385
41528
  adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41386
41529
  /**
41387
- * Retrieves the store configuration using x-store ID
41530
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41388
41531
  * @summary Get Store Config
41389
41532
  * @param {string} xStoreID X-Store ID
41390
41533
  * @param {*} [options] Override http request option.
@@ -41553,13 +41696,13 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
41553
41696
  */
41554
41697
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
41555
41698
  /**
41556
- * Retrieves the store configuration using x-store ID
41699
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41557
41700
  * @summary Get Store Config
41558
41701
  * @param {string} xStoreID X-Store ID
41559
41702
  * @param {*} [options] Override http request option.
41560
41703
  * @throws {RequiredError}
41561
41704
  */
41562
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
41705
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>>;
41563
41706
  /**
41564
41707
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41565
41708
  * @summary Update Store Config (Partial)
@@ -41722,13 +41865,13 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
41722
41865
  */
41723
41866
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
41724
41867
  /**
41725
- * Retrieves the store configuration using x-store ID
41868
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41726
41869
  * @summary Get Store Config
41727
41870
  * @param {string} xStoreID X-Store ID
41728
41871
  * @param {*} [options] Override http request option.
41729
41872
  * @throws {RequiredError}
41730
41873
  */
41731
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
41874
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>;
41732
41875
  /**
41733
41876
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41734
41877
  * @summary Update Store Config (Partial)
@@ -41902,14 +42045,14 @@ export declare class StoresApi extends BaseAPI {
41902
42045
  */
41903
42046
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
41904
42047
  /**
41905
- * Retrieves the store configuration using x-store ID
42048
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41906
42049
  * @summary Get Store Config
41907
42050
  * @param {string} xStoreID X-Store ID
41908
42051
  * @param {*} [options] Override http request option.
41909
42052
  * @throws {RequiredError}
41910
42053
  * @memberof StoresApi
41911
42054
  */
41912
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
42055
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse, any, {}>>;
41913
42056
  /**
41914
42057
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41915
42058
  * @summary Update Store Config (Partial)
package/dist/api.js CHANGED
@@ -32308,7 +32308,7 @@ const StoresApiAxiosParamCreator = function (configuration) {
32308
32308
  };
32309
32309
  }),
32310
32310
  /**
32311
- * Retrieves the store configuration using x-store ID
32311
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
32312
32312
  * @summary Get Store Config
32313
32313
  * @param {string} xStoreID X-Store ID
32314
32314
  * @param {*} [options] Override http request option.
@@ -32780,7 +32780,7 @@ const StoresApiFp = function (configuration) {
32780
32780
  });
32781
32781
  },
32782
32782
  /**
32783
- * Retrieves the store configuration using x-store ID
32783
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
32784
32784
  * @summary Get Store Config
32785
32785
  * @param {string} xStoreID X-Store ID
32786
32786
  * @param {*} [options] Override http request option.
@@ -33043,7 +33043,7 @@ const StoresApiFactory = function (configuration, basePath, axios) {
33043
33043
  return localVarFp.adminStoresXStoreIDApiUsageGet(xStoreID, startDate, endDate, method, path, page, perPage, options).then((request) => request(axios, basePath));
33044
33044
  },
33045
33045
  /**
33046
- * Retrieves the store configuration using x-store ID
33046
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
33047
33047
  * @summary Get Store Config
33048
33048
  * @param {string} xStoreID X-Store ID
33049
33049
  * @param {*} [options] Override http request option.
@@ -33261,7 +33261,7 @@ class StoresApi extends base_1.BaseAPI {
33261
33261
  return (0, exports.StoresApiFp)(this.configuration).adminStoresXStoreIDApiUsageGet(xStoreID, startDate, endDate, method, path, page, perPage, options).then((request) => request(this.axios, this.basePath));
33262
33262
  }
33263
33263
  /**
33264
- * Retrieves the store configuration using x-store ID
33264
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
33265
33265
  * @summary Get Store Config
33266
33266
  * @param {string} xStoreID X-Store ID
33267
33267
  * @param {*} [options] Override http request option.
package/dist/esm/api.d.ts CHANGED
@@ -8442,6 +8442,74 @@ export interface DataTypesCompanyConfigRequest {
8442
8442
  */
8443
8443
  'website'?: string;
8444
8444
  }
8445
+ /**
8446
+ *
8447
+ * @export
8448
+ * @interface DataTypesComponentCheck
8449
+ */
8450
+ export interface DataTypesComponentCheck {
8451
+ /**
8452
+ * Whether component exists
8453
+ * @type {boolean}
8454
+ * @memberof DataTypesComponentCheck
8455
+ */
8456
+ 'exists'?: boolean;
8457
+ /**
8458
+ * Whether component is valid/complete
8459
+ * @type {boolean}
8460
+ * @memberof DataTypesComponentCheck
8461
+ */
8462
+ 'is_valid'?: boolean;
8463
+ /**
8464
+ * Status message
8465
+ * @type {string}
8466
+ * @memberof DataTypesComponentCheck
8467
+ */
8468
+ 'message'?: string;
8469
+ /**
8470
+ * What step to continue from
8471
+ * @type {string}
8472
+ * @memberof DataTypesComponentCheck
8473
+ */
8474
+ 'next_step'?: string;
8475
+ }
8476
+ /**
8477
+ *
8478
+ * @export
8479
+ * @interface DataTypesComponentStatusDetail
8480
+ */
8481
+ export interface DataTypesComponentStatusDetail {
8482
+ /**
8483
+ * Typesense collection exists
8484
+ * @type {DataTypesComponentCheck}
8485
+ * @memberof DataTypesComponentStatusDetail
8486
+ */
8487
+ 'collection'?: DataTypesComponentCheck;
8488
+ /**
8489
+ * Config is properly set up
8490
+ * @type {DataTypesComponentCheck}
8491
+ * @memberof DataTypesComponentStatusDetail
8492
+ */
8493
+ 'config'?: DataTypesComponentCheck;
8494
+ /**
8495
+ * Destination exists
8496
+ * @type {DataTypesComponentCheck}
8497
+ * @memberof DataTypesComponentStatusDetail
8498
+ */
8499
+ 'destination'?: DataTypesComponentCheck;
8500
+ /**
8501
+ * Source exists
8502
+ * @type {DataTypesComponentCheck}
8503
+ * @memberof DataTypesComponentStatusDetail
8504
+ */
8505
+ 'source'?: DataTypesComponentCheck;
8506
+ /**
8507
+ * Store record exists
8508
+ * @type {DataTypesComponentCheck}
8509
+ * @memberof DataTypesComponentStatusDetail
8510
+ */
8511
+ 'store'?: DataTypesComponentCheck;
8512
+ }
8445
8513
  /**
8446
8514
  *
8447
8515
  * @export
@@ -11676,6 +11744,31 @@ export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
11676
11744
  */
11677
11745
  'status'?: number;
11678
11746
  }
11747
+ /**
11748
+ *
11749
+ * @export
11750
+ * @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11751
+ */
11752
+ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
11753
+ /**
11754
+ *
11755
+ * @type {DataTypesStoreConfigWithOnboardingResponse}
11756
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11757
+ */
11758
+ 'data'?: DataTypesStoreConfigWithOnboardingResponse;
11759
+ /**
11760
+ *
11761
+ * @type {string}
11762
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11763
+ */
11764
+ 'message'?: string;
11765
+ /**
11766
+ *
11767
+ * @type {number}
11768
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
11769
+ */
11770
+ 'status'?: number;
11771
+ }
11679
11772
  /**
11680
11773
  *
11681
11774
  * @export
@@ -11873,6 +11966,12 @@ export interface DataTypesGetStoreResult {
11873
11966
  * @memberof DataTypesGetStoreResult
11874
11967
  */
11875
11968
  'index_name'?: string;
11969
+ /**
11970
+ * Onboarding validation status
11971
+ * @type {DataTypesOnboardingStatus}
11972
+ * @memberof DataTypesGetStoreResult
11973
+ */
11974
+ 'onboarding_status'?: DataTypesOnboardingStatus;
11876
11975
  /**
11877
11976
  *
11878
11977
  * @type {DataTypesIndexConfig}
@@ -15612,6 +15711,31 @@ export interface DataTypesOnboardingResponseWrapper {
15612
15711
  */
15613
15712
  'status'?: number;
15614
15713
  }
15714
+ /**
15715
+ *
15716
+ * @export
15717
+ * @interface DataTypesOnboardingStatus
15718
+ */
15719
+ export interface DataTypesOnboardingStatus {
15720
+ /**
15721
+ * Detailed status of each component
15722
+ * @type {DataTypesComponentStatusDetail}
15723
+ * @memberof DataTypesOnboardingStatus
15724
+ */
15725
+ 'component_status'?: DataTypesComponentStatusDetail;
15726
+ /**
15727
+ * Whether store is fully onboarded
15728
+ * @type {boolean}
15729
+ * @memberof DataTypesOnboardingStatus
15730
+ */
15731
+ 'is_complete'?: boolean;
15732
+ /**
15733
+ * List of missing components
15734
+ * @type {Array<string>}
15735
+ * @memberof DataTypesOnboardingStatus
15736
+ */
15737
+ 'missing_components'?: Array<string>;
15738
+ }
15615
15739
  /**
15616
15740
  *
15617
15741
  * @export
@@ -20131,6 +20255,25 @@ export interface DataTypesStoreAccessWithDetails {
20131
20255
  */
20132
20256
  'user_id'?: number;
20133
20257
  }
20258
+ /**
20259
+ *
20260
+ * @export
20261
+ * @interface DataTypesStoreConfigWithOnboardingResponse
20262
+ */
20263
+ export interface DataTypesStoreConfigWithOnboardingResponse {
20264
+ /**
20265
+ * Store configuration
20266
+ * @type {DataTypesIndexConfig}
20267
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20268
+ */
20269
+ 'config'?: DataTypesIndexConfig;
20270
+ /**
20271
+ * Onboarding validation status
20272
+ * @type {DataTypesOnboardingStatus}
20273
+ * @memberof DataTypesStoreConfigWithOnboardingResponse
20274
+ */
20275
+ 'onboarding_status'?: DataTypesOnboardingStatus;
20276
+ }
20134
20277
  /**
20135
20278
  *
20136
20279
  * @export
@@ -41384,7 +41527,7 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
41384
41527
  */
41385
41528
  adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41386
41529
  /**
41387
- * Retrieves the store configuration using x-store ID
41530
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41388
41531
  * @summary Get Store Config
41389
41532
  * @param {string} xStoreID X-Store ID
41390
41533
  * @param {*} [options] Override http request option.
@@ -41553,13 +41696,13 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
41553
41696
  */
41554
41697
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
41555
41698
  /**
41556
- * Retrieves the store configuration using x-store ID
41699
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41557
41700
  * @summary Get Store Config
41558
41701
  * @param {string} xStoreID X-Store ID
41559
41702
  * @param {*} [options] Override http request option.
41560
41703
  * @throws {RequiredError}
41561
41704
  */
41562
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
41705
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>>;
41563
41706
  /**
41564
41707
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41565
41708
  * @summary Update Store Config (Partial)
@@ -41722,13 +41865,13 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
41722
41865
  */
41723
41866
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
41724
41867
  /**
41725
- * Retrieves the store configuration using x-store ID
41868
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41726
41869
  * @summary Get Store Config
41727
41870
  * @param {string} xStoreID X-Store ID
41728
41871
  * @param {*} [options] Override http request option.
41729
41872
  * @throws {RequiredError}
41730
41873
  */
41731
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
41874
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>;
41732
41875
  /**
41733
41876
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41734
41877
  * @summary Update Store Config (Partial)
@@ -41902,14 +42045,14 @@ export declare class StoresApi extends BaseAPI {
41902
42045
  */
41903
42046
  adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
41904
42047
  /**
41905
- * Retrieves the store configuration using x-store ID
42048
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
41906
42049
  * @summary Get Store Config
41907
42050
  * @param {string} xStoreID X-Store ID
41908
42051
  * @param {*} [options] Override http request option.
41909
42052
  * @throws {RequiredError}
41910
42053
  * @memberof StoresApi
41911
42054
  */
41912
- adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
42055
+ adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse, any, {}>>;
41913
42056
  /**
41914
42057
  * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
41915
42058
  * @summary Update Store Config (Partial)
package/dist/esm/api.js CHANGED
@@ -32103,7 +32103,7 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32103
32103
  };
32104
32104
  }),
32105
32105
  /**
32106
- * Retrieves the store configuration using x-store ID
32106
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
32107
32107
  * @summary Get Store Config
32108
32108
  * @param {string} xStoreID X-Store ID
32109
32109
  * @param {*} [options] Override http request option.
@@ -32574,7 +32574,7 @@ export const StoresApiFp = function (configuration) {
32574
32574
  });
32575
32575
  },
32576
32576
  /**
32577
- * Retrieves the store configuration using x-store ID
32577
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
32578
32578
  * @summary Get Store Config
32579
32579
  * @param {string} xStoreID X-Store ID
32580
32580
  * @param {*} [options] Override http request option.
@@ -32836,7 +32836,7 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
32836
32836
  return localVarFp.adminStoresXStoreIDApiUsageGet(xStoreID, startDate, endDate, method, path, page, perPage, options).then((request) => request(axios, basePath));
32837
32837
  },
32838
32838
  /**
32839
- * Retrieves the store configuration using x-store ID
32839
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
32840
32840
  * @summary Get Store Config
32841
32841
  * @param {string} xStoreID X-Store ID
32842
32842
  * @param {*} [options] Override http request option.
@@ -33053,7 +33053,7 @@ export class StoresApi extends BaseAPI {
33053
33053
  return StoresApiFp(this.configuration).adminStoresXStoreIDApiUsageGet(xStoreID, startDate, endDate, method, path, page, perPage, options).then((request) => request(this.axios, this.basePath));
33054
33054
  }
33055
33055
  /**
33056
- * Retrieves the store configuration using x-store ID
33056
+ * Retrieves the store configuration using x-store ID, including onboarding status validation
33057
33057
  * @summary Get Store Config
33058
33058
  * @param {string} xStoreID X-Store ID
33059
33059
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.1.28",
3
+ "version": "1.1.29",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file