@seekora-ai/admin-api 1.1.42 → 1.1.44

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/api.d.ts CHANGED
@@ -6735,6 +6735,12 @@ export interface DataTypesCombinedSearchResponse {
6735
6735
  * @memberof DataTypesCombinedSearchResponse
6736
6736
  */
6737
6737
  'results'?: Array<DataTypesCombinedSearchResult>;
6738
+ /**
6739
+ * Unique search identifier for analytics linking
6740
+ * @type {string}
6741
+ * @memberof DataTypesCombinedSearchResponse
6742
+ */
6743
+ 'search_id'?: string;
6738
6744
  /**
6739
6745
  *
6740
6746
  * @type {Array<DataTypesAutocompleteSuggestion>}
@@ -9383,6 +9389,12 @@ export interface DataTypesEventPayload {
9383
9389
  * @memberof DataTypesEventPayload
9384
9390
  */
9385
9391
  'clicked_item_id'?: string;
9392
+ /**
9393
+ * Primary journey key across search → clicks → conversions
9394
+ * @type {string}
9395
+ * @memberof DataTypesEventPayload
9396
+ */
9397
+ 'correlation_id'?: string;
9386
9398
  /**
9387
9399
  * Enhanced Geo data fields for direct submission
9388
9400
  * @type {string}
@@ -9475,6 +9487,12 @@ export interface DataTypesEventPayload {
9475
9487
  * @memberof DataTypesEventPayload
9476
9488
  */
9477
9489
  'results_count'?: number;
9490
+ /**
9491
+ * Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
9492
+ * @type {string}
9493
+ * @memberof DataTypesEventPayload
9494
+ */
9495
+ 'search_id'?: string;
9478
9496
  /**
9479
9497
  * Session identifier for journey tracking
9480
9498
  * @type {string}
@@ -10455,6 +10473,56 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
10455
10473
  */
10456
10474
  'status'?: number;
10457
10475
  }
10476
+ /**
10477
+ *
10478
+ * @export
10479
+ * @interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse
10480
+ */
10481
+ export interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse {
10482
+ /**
10483
+ *
10484
+ * @type {DataTypesPublicCreateStoreResponse}
10485
+ * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
10486
+ */
10487
+ 'data'?: DataTypesPublicCreateStoreResponse;
10488
+ /**
10489
+ *
10490
+ * @type {string}
10491
+ * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
10492
+ */
10493
+ 'message'?: string;
10494
+ /**
10495
+ *
10496
+ * @type {number}
10497
+ * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
10498
+ */
10499
+ 'status'?: number;
10500
+ }
10501
+ /**
10502
+ *
10503
+ * @export
10504
+ * @interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse
10505
+ */
10506
+ export interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse {
10507
+ /**
10508
+ *
10509
+ * @type {DataTypesPublicStoreInfoResponse}
10510
+ * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
10511
+ */
10512
+ 'data'?: DataTypesPublicStoreInfoResponse;
10513
+ /**
10514
+ *
10515
+ * @type {string}
10516
+ * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
10517
+ */
10518
+ 'message'?: string;
10519
+ /**
10520
+ *
10521
+ * @type {number}
10522
+ * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
10523
+ */
10524
+ 'status'?: number;
10525
+ }
10458
10526
  /**
10459
10527
  *
10460
10528
  * @export
@@ -14464,6 +14532,12 @@ export interface DataTypesOfficialSearchResponse {
14464
14532
  * @memberof DataTypesOfficialSearchResponse
14465
14533
  */
14466
14534
  'results'?: Array<DataTypesOfficialSearchResult>;
14535
+ /**
14536
+ * Unique search identifier for analytics linking
14537
+ * @type {string}
14538
+ * @memberof DataTypesOfficialSearchResponse
14539
+ */
14540
+ 'search_id'?: string;
14467
14541
  /**
14468
14542
  *
14469
14543
  * @type {Array<DataTypesAutocompleteSuggestion>}
@@ -16658,6 +16732,88 @@ export interface DataTypesProfileResponseWrapper {
16658
16732
  */
16659
16733
  'status'?: number;
16660
16734
  }
16735
+ /**
16736
+ *
16737
+ * @export
16738
+ * @interface DataTypesPublicCreateStoreRequest
16739
+ */
16740
+ export interface DataTypesPublicCreateStoreRequest {
16741
+ /**
16742
+ * Optional: array of documents to import immediately
16743
+ * @type {Array<{ [key: string]: any; }>}
16744
+ * @memberof DataTypesPublicCreateStoreRequest
16745
+ */
16746
+ 'dataset'?: Array<{
16747
+ [key: string]: any;
16748
+ }>;
16749
+ /**
16750
+ *
16751
+ * @type {string}
16752
+ * @memberof DataTypesPublicCreateStoreRequest
16753
+ */
16754
+ 'industry'?: string;
16755
+ /**
16756
+ *
16757
+ * @type {string}
16758
+ * @memberof DataTypesPublicCreateStoreRequest
16759
+ */
16760
+ 'location'?: string;
16761
+ /**
16762
+ *
16763
+ * @type {string}
16764
+ * @memberof DataTypesPublicCreateStoreRequest
16765
+ */
16766
+ 'storeName': string;
16767
+ }
16768
+ /**
16769
+ *
16770
+ * @export
16771
+ * @interface DataTypesPublicCreateStoreResponse
16772
+ */
16773
+ export interface DataTypesPublicCreateStoreResponse {
16774
+ /**
16775
+ * Job ID if dataset was imported
16776
+ * @type {string}
16777
+ * @memberof DataTypesPublicCreateStoreResponse
16778
+ */
16779
+ 'importJobId'?: string;
16780
+ /**
16781
+ * Number of documents imported
16782
+ * @type {number}
16783
+ * @memberof DataTypesPublicCreateStoreResponse
16784
+ */
16785
+ 'importedCount'?: number;
16786
+ /**
16787
+ *
16788
+ * @type {number}
16789
+ * @memberof DataTypesPublicCreateStoreResponse
16790
+ */
16791
+ 'storeId'?: number;
16792
+ /**
16793
+ *
16794
+ * @type {string}
16795
+ * @memberof DataTypesPublicCreateStoreResponse
16796
+ */
16797
+ 'storeName'?: string;
16798
+ /**
16799
+ *
16800
+ * @type {string}
16801
+ * @memberof DataTypesPublicCreateStoreResponse
16802
+ */
16803
+ 'xStoreId'?: string;
16804
+ /**
16805
+ *
16806
+ * @type {string}
16807
+ * @memberof DataTypesPublicCreateStoreResponse
16808
+ */
16809
+ 'xStoreSecret'?: string;
16810
+ /**
16811
+ *
16812
+ * @type {string}
16813
+ * @memberof DataTypesPublicCreateStoreResponse
16814
+ */
16815
+ 'xStoreWriteSecret'?: string;
16816
+ }
16661
16817
  /**
16662
16818
  *
16663
16819
  * @export
@@ -16743,6 +16899,49 @@ export interface DataTypesPublicSearchRequest {
16743
16899
  */
16744
16900
  'widget_mode'?: boolean;
16745
16901
  }
16902
+ /**
16903
+ *
16904
+ * @export
16905
+ * @interface DataTypesPublicStoreInfoResponse
16906
+ */
16907
+ export interface DataTypesPublicStoreInfoResponse {
16908
+ /**
16909
+ *
16910
+ * @type {string}
16911
+ * @memberof DataTypesPublicStoreInfoResponse
16912
+ */
16913
+ 'createdAt'?: string;
16914
+ /**
16915
+ *
16916
+ * @type {boolean}
16917
+ * @memberof DataTypesPublicStoreInfoResponse
16918
+ */
16919
+ 'isActive'?: boolean;
16920
+ /**
16921
+ *
16922
+ * @type {string}
16923
+ * @memberof DataTypesPublicStoreInfoResponse
16924
+ */
16925
+ 'location'?: string;
16926
+ /**
16927
+ *
16928
+ * @type {number}
16929
+ * @memberof DataTypesPublicStoreInfoResponse
16930
+ */
16931
+ 'storeId'?: number;
16932
+ /**
16933
+ *
16934
+ * @type {string}
16935
+ * @memberof DataTypesPublicStoreInfoResponse
16936
+ */
16937
+ 'storeName'?: string;
16938
+ /**
16939
+ *
16940
+ * @type {string}
16941
+ * @memberof DataTypesPublicStoreInfoResponse
16942
+ */
16943
+ 'xStoreId'?: string;
16944
+ }
16746
16945
  /**
16747
16946
  *
16748
16947
  * @export
@@ -26206,7 +26405,7 @@ export declare class AccountSettingsApi extends BaseAPI {
26206
26405
  */
26207
26406
  export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configuration) => {
26208
26407
  /**
26209
- * Retrieve user activity logs from ClickHouse system_events table with full filtering, search, and pagination.
26408
+ * Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
26210
26409
  * @summary Get Activity Logs
26211
26410
  * @param {string} [startDate] Start date (ISO 8601 format)
26212
26411
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -26226,7 +26425,7 @@ export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configur
26226
26425
  */
26227
26426
  export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
26228
26427
  /**
26229
- * Retrieve user activity logs from ClickHouse system_events table with full filtering, search, and pagination.
26428
+ * Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
26230
26429
  * @summary Get Activity Logs
26231
26430
  * @param {string} [startDate] Start date (ISO 8601 format)
26232
26431
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -26246,7 +26445,7 @@ export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
26246
26445
  */
26247
26446
  export declare const ActivityLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26248
26447
  /**
26249
- * Retrieve user activity logs from ClickHouse system_events table with full filtering, search, and pagination.
26448
+ * Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
26250
26449
  * @summary Get Activity Logs
26251
26450
  * @param {string} [startDate] Start date (ISO 8601 format)
26252
26451
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -26268,7 +26467,7 @@ export declare const ActivityLogsApiFactory: (configuration?: Configuration, bas
26268
26467
  */
26269
26468
  export declare class ActivityLogsApi extends BaseAPI {
26270
26469
  /**
26271
- * Retrieve user activity logs from ClickHouse system_events table with full filtering, search, and pagination.
26470
+ * Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
26272
26471
  * @summary Get Activity Logs
26273
26472
  * @param {string} [startDate] Start date (ISO 8601 format)
26274
26473
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -27386,7 +27585,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
27386
27585
  */
27387
27586
  adminAnalyticsStoreXStoreIDTagsSummaryGet: (xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27388
27587
  /**
27389
- * Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
27588
+ * Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
27390
27589
  * @summary Get API Usage Logs
27391
27590
  * @param {string} [startDate] Start date (ISO 8601 format)
27392
27591
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -27834,7 +28033,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
27834
28033
  */
27835
28034
  adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>>;
27836
28035
  /**
27837
- * Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
28036
+ * Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
27838
28037
  * @summary Get API Usage Logs
27839
28038
  * @param {string} [startDate] Start date (ISO 8601 format)
27840
28039
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -28282,7 +28481,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
28282
28481
  */
28283
28482
  adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse>;
28284
28483
  /**
28285
- * Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
28484
+ * Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
28286
28485
  * @summary Get API Usage Logs
28287
28486
  * @param {string} [startDate] Start date (ISO 8601 format)
28288
28487
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -28750,7 +28949,7 @@ export declare class AnalyticsApi extends BaseAPI {
28750
28949
  */
28751
28950
  adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
28752
28951
  /**
28753
- * Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
28952
+ * Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
28754
28953
  * @summary Get API Usage Logs
28755
28954
  * @param {string} [startDate] Start date (ISO 8601 format)
28756
28955
  * @param {string} [endDate] End date (ISO 8601 format)
@@ -41682,6 +41881,289 @@ export declare class RolesApi extends BaseAPI {
41682
41881
  */
41683
41882
  adminRolesRoleIdPermissionsPut(roleId: number, dataTypesUpdateRolePermissionsRequest: DataTypesUpdateRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
41684
41883
  }
41884
+ /**
41885
+ * SDKStoreConfigApi - axios parameter creator
41886
+ * @export
41887
+ */
41888
+ export declare const SDKStoreConfigApiAxiosParamCreator: (configuration?: Configuration) => {
41889
+ /**
41890
+ * Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
41891
+ * @summary Get Store Config (Public SDK API)
41892
+ * @param {string} xStoreid Store ID
41893
+ * @param {string} xStoresecret Store Read Secret (for read operations)
41894
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41895
+ * @param {*} [options] Override http request option.
41896
+ * @throws {RequiredError}
41897
+ */
41898
+ apiV1StoresXStoreIDConfigGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41899
+ /**
41900
+ * Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
41901
+ * @summary Update Store Config (Public SDK API)
41902
+ * @param {string} xStoreid Store ID
41903
+ * @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
41904
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41905
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
41906
+ * @param {*} [options] Override http request option.
41907
+ * @throws {RequiredError}
41908
+ */
41909
+ apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41910
+ /**
41911
+ * Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
41912
+ * @summary Get Store Config Schema (Public SDK API)
41913
+ * @param {string} xStoreid Store ID
41914
+ * @param {string} xStoresecret Store Secret
41915
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41916
+ * @param {*} [options] Override http request option.
41917
+ * @throws {RequiredError}
41918
+ */
41919
+ apiV1StoresXStoreIDConfigSchemaGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41920
+ };
41921
+ /**
41922
+ * SDKStoreConfigApi - functional programming interface
41923
+ * @export
41924
+ */
41925
+ export declare const SDKStoreConfigApiFp: (configuration?: Configuration) => {
41926
+ /**
41927
+ * Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
41928
+ * @summary Get Store Config (Public SDK API)
41929
+ * @param {string} xStoreid Store ID
41930
+ * @param {string} xStoresecret Store Read Secret (for read operations)
41931
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41932
+ * @param {*} [options] Override http request option.
41933
+ * @throws {RequiredError}
41934
+ */
41935
+ apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>>;
41936
+ /**
41937
+ * Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
41938
+ * @summary Update Store Config (Public SDK API)
41939
+ * @param {string} xStoreid Store ID
41940
+ * @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
41941
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41942
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
41943
+ * @param {*} [options] Override http request option.
41944
+ * @throws {RequiredError}
41945
+ */
41946
+ apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
41947
+ /**
41948
+ * Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
41949
+ * @summary Get Store Config Schema (Public SDK API)
41950
+ * @param {string} xStoreid Store ID
41951
+ * @param {string} xStoresecret Store Secret
41952
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41953
+ * @param {*} [options] Override http request option.
41954
+ * @throws {RequiredError}
41955
+ */
41956
+ apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesConfigurationSchemaResponseWrapper>>;
41957
+ };
41958
+ /**
41959
+ * SDKStoreConfigApi - factory interface
41960
+ * @export
41961
+ */
41962
+ export declare const SDKStoreConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
41963
+ /**
41964
+ * Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
41965
+ * @summary Get Store Config (Public SDK API)
41966
+ * @param {string} xStoreid Store ID
41967
+ * @param {string} xStoresecret Store Read Secret (for read operations)
41968
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41969
+ * @param {*} [options] Override http request option.
41970
+ * @throws {RequiredError}
41971
+ */
41972
+ apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>;
41973
+ /**
41974
+ * Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
41975
+ * @summary Update Store Config (Public SDK API)
41976
+ * @param {string} xStoreid Store ID
41977
+ * @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
41978
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41979
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
41980
+ * @param {*} [options] Override http request option.
41981
+ * @throws {RequiredError}
41982
+ */
41983
+ apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
41984
+ /**
41985
+ * Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
41986
+ * @summary Get Store Config Schema (Public SDK API)
41987
+ * @param {string} xStoreid Store ID
41988
+ * @param {string} xStoresecret Store Secret
41989
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
41990
+ * @param {*} [options] Override http request option.
41991
+ * @throws {RequiredError}
41992
+ */
41993
+ apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesConfigurationSchemaResponseWrapper>;
41994
+ };
41995
+ /**
41996
+ * SDKStoreConfigApi - object-oriented interface
41997
+ * @export
41998
+ * @class SDKStoreConfigApi
41999
+ * @extends {BaseAPI}
42000
+ */
42001
+ export declare class SDKStoreConfigApi extends BaseAPI {
42002
+ /**
42003
+ * Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
42004
+ * @summary Get Store Config (Public SDK API)
42005
+ * @param {string} xStoreid Store ID
42006
+ * @param {string} xStoresecret Store Read Secret (for read operations)
42007
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42008
+ * @param {*} [options] Override http request option.
42009
+ * @throws {RequiredError}
42010
+ * @memberof SDKStoreConfigApi
42011
+ */
42012
+ apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse, any, {}>>;
42013
+ /**
42014
+ * Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
42015
+ * @summary Update Store Config (Public SDK API)
42016
+ * @param {string} xStoreid Store ID
42017
+ * @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
42018
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42019
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
42020
+ * @param {*} [options] Override http request option.
42021
+ * @throws {RequiredError}
42022
+ * @memberof SDKStoreConfigApi
42023
+ */
42024
+ apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
42025
+ /**
42026
+ * Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
42027
+ * @summary Get Store Config Schema (Public SDK API)
42028
+ * @param {string} xStoreid Store ID
42029
+ * @param {string} xStoresecret Store Secret
42030
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42031
+ * @param {*} [options] Override http request option.
42032
+ * @throws {RequiredError}
42033
+ * @memberof SDKStoreConfigApi
42034
+ */
42035
+ apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
42036
+ }
42037
+ /**
42038
+ * SDKStoreCreationApi - axios parameter creator
42039
+ * @export
42040
+ */
42041
+ export declare const SDKStoreCreationApiAxiosParamCreator: (configuration?: Configuration) => {
42042
+ /**
42043
+ * Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
42044
+ * @summary Create Store (Public SDK API)
42045
+ * @param {string} authorization Bearer JWT Token
42046
+ * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
42047
+ * @param {*} [options] Override http request option.
42048
+ * @throws {RequiredError}
42049
+ */
42050
+ apiV1StoresPost: (authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
42051
+ };
42052
+ /**
42053
+ * SDKStoreCreationApi - functional programming interface
42054
+ * @export
42055
+ */
42056
+ export declare const SDKStoreCreationApiFp: (configuration?: Configuration) => {
42057
+ /**
42058
+ * Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
42059
+ * @summary Create Store (Public SDK API)
42060
+ * @param {string} authorization Bearer JWT Token
42061
+ * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
42062
+ * @param {*} [options] Override http request option.
42063
+ * @throws {RequiredError}
42064
+ */
42065
+ apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse>>;
42066
+ };
42067
+ /**
42068
+ * SDKStoreCreationApi - factory interface
42069
+ * @export
42070
+ */
42071
+ export declare const SDKStoreCreationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
42072
+ /**
42073
+ * Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
42074
+ * @summary Create Store (Public SDK API)
42075
+ * @param {string} authorization Bearer JWT Token
42076
+ * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
42077
+ * @param {*} [options] Override http request option.
42078
+ * @throws {RequiredError}
42079
+ */
42080
+ apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse>;
42081
+ };
42082
+ /**
42083
+ * SDKStoreCreationApi - object-oriented interface
42084
+ * @export
42085
+ * @class SDKStoreCreationApi
42086
+ * @extends {BaseAPI}
42087
+ */
42088
+ export declare class SDKStoreCreationApi extends BaseAPI {
42089
+ /**
42090
+ * Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
42091
+ * @summary Create Store (Public SDK API)
42092
+ * @param {string} authorization Bearer JWT Token
42093
+ * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
42094
+ * @param {*} [options] Override http request option.
42095
+ * @throws {RequiredError}
42096
+ * @memberof SDKStoreCreationApi
42097
+ */
42098
+ apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPublicCreateStoreResponse, any, {}>>;
42099
+ }
42100
+ /**
42101
+ * SDKStoreInfoApi - axios parameter creator
42102
+ * @export
42103
+ */
42104
+ export declare const SDKStoreInfoApiAxiosParamCreator: (configuration?: Configuration) => {
42105
+ /**
42106
+ * Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
42107
+ * @summary Get Store Info (Public SDK API)
42108
+ * @param {string} xStoreid Store ID
42109
+ * @param {string} xStoresecret Store Read Secret (for read operations)
42110
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42111
+ * @param {*} [options] Override http request option.
42112
+ * @throws {RequiredError}
42113
+ */
42114
+ apiV1StoresXStoreIDGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
42115
+ };
42116
+ /**
42117
+ * SDKStoreInfoApi - functional programming interface
42118
+ * @export
42119
+ */
42120
+ export declare const SDKStoreInfoApiFp: (configuration?: Configuration) => {
42121
+ /**
42122
+ * Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
42123
+ * @summary Get Store Info (Public SDK API)
42124
+ * @param {string} xStoreid Store ID
42125
+ * @param {string} xStoresecret Store Read Secret (for read operations)
42126
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42127
+ * @param {*} [options] Override http request option.
42128
+ * @throws {RequiredError}
42129
+ */
42130
+ apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>>;
42131
+ };
42132
+ /**
42133
+ * SDKStoreInfoApi - factory interface
42134
+ * @export
42135
+ */
42136
+ export declare const SDKStoreInfoApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
42137
+ /**
42138
+ * Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
42139
+ * @summary Get Store Info (Public SDK API)
42140
+ * @param {string} xStoreid Store ID
42141
+ * @param {string} xStoresecret Store Read Secret (for read operations)
42142
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42143
+ * @param {*} [options] Override http request option.
42144
+ * @throws {RequiredError}
42145
+ */
42146
+ apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>;
42147
+ };
42148
+ /**
42149
+ * SDKStoreInfoApi - object-oriented interface
42150
+ * @export
42151
+ * @class SDKStoreInfoApi
42152
+ * @extends {BaseAPI}
42153
+ */
42154
+ export declare class SDKStoreInfoApi extends BaseAPI {
42155
+ /**
42156
+ * Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
42157
+ * @summary Get Store Info (Public SDK API)
42158
+ * @param {string} xStoreid Store ID
42159
+ * @param {string} xStoresecret Store Read Secret (for read operations)
42160
+ * @param {string} xStoreID X-Store ID (must match x-storeid header)
42161
+ * @param {*} [options] Override http request option.
42162
+ * @throws {RequiredError}
42163
+ * @memberof SDKStoreInfoApi
42164
+ */
42165
+ apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPublicStoreInfoResponse, any, {}>>;
42166
+ }
41685
42167
  /**
41686
42168
  * SearchApi - axios parameter creator
41687
42169
  * @export