@seekora-ai/admin-api 1.0.93 → 1.0.95

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
@@ -10446,6 +10446,12 @@ export interface DataTypesCreditChart {
10446
10446
  * @memberof DataTypesCreditChart
10447
10447
  */
10448
10448
  'metric'?: string;
10449
+ /**
10450
+ *
10451
+ * @type {DataTypesPaginationMetadata}
10452
+ * @memberof DataTypesCreditChart
10453
+ */
10454
+ 'pagination'?: DataTypesPaginationMetadata;
10449
10455
  /**
10450
10456
  *
10451
10457
  * @type {string}
@@ -10458,6 +10464,12 @@ export interface DataTypesCreditChart {
10458
10464
  * @memberof DataTypesCreditChart
10459
10465
  */
10460
10466
  'total_credits'?: number;
10467
+ /**
10468
+ *
10469
+ * @type {number}
10470
+ * @memberof DataTypesCreditChart
10471
+ */
10472
+ 'total_points'?: number;
10461
10473
  }
10462
10474
  /**
10463
10475
  *
@@ -10587,10 +10599,16 @@ export interface DataTypesCreditConsumptionResult {
10587
10599
  export interface DataTypesCreditConsumptionSummary {
10588
10600
  /**
10589
10601
  *
10590
- * @type {Array<DataTypesDailyConsumption>}
10602
+ * @type {DataTypesPaginationMetadata}
10591
10603
  * @memberof DataTypesCreditConsumptionSummary
10592
10604
  */
10593
- 'daily_consumption'?: Array<DataTypesDailyConsumption>;
10605
+ 'consumption_pagination'?: DataTypesPaginationMetadata;
10606
+ /**
10607
+ *
10608
+ * @type {DataTypesPaginationMetadata}
10609
+ * @memberof DataTypesCreditConsumptionSummary
10610
+ */
10611
+ 'endpoint_pagination'?: DataTypesPaginationMetadata;
10594
10612
  /**
10595
10613
  *
10596
10614
  * @type {number}
@@ -10603,18 +10621,36 @@ export interface DataTypesCreditConsumptionSummary {
10603
10621
  * @memberof DataTypesCreditConsumptionSummary
10604
10622
  */
10605
10623
  'search_requests'?: number;
10624
+ /**
10625
+ * Renamed from daily_consumption
10626
+ * @type {Array<DataTypesTimeSeriesConsumption>}
10627
+ * @memberof DataTypesCreditConsumptionSummary
10628
+ */
10629
+ 'time_series_consumption'?: Array<DataTypesTimeSeriesConsumption>;
10606
10630
  /**
10607
10631
  *
10608
10632
  * @type {Array<DataTypesEndpointUsage>}
10609
10633
  * @memberof DataTypesCreditConsumptionSummary
10610
10634
  */
10611
10635
  'top_endpoints'?: Array<DataTypesEndpointUsage>;
10636
+ /**
10637
+ *
10638
+ * @type {number}
10639
+ * @memberof DataTypesCreditConsumptionSummary
10640
+ */
10641
+ 'total_buckets'?: number;
10612
10642
  /**
10613
10643
  *
10614
10644
  * @type {number}
10615
10645
  * @memberof DataTypesCreditConsumptionSummary
10616
10646
  */
10617
10647
  'total_credits_consumed'?: number;
10648
+ /**
10649
+ *
10650
+ * @type {number}
10651
+ * @memberof DataTypesCreditConsumptionSummary
10652
+ */
10653
+ 'total_endpoints'?: number;
10618
10654
  }
10619
10655
  /**
10620
10656
  *
@@ -11075,37 +11111,6 @@ export interface DataTypesCustomerInfoDto {
11075
11111
  */
11076
11112
  'phone'?: string;
11077
11113
  }
11078
- /**
11079
- *
11080
- * @export
11081
- * @interface DataTypesDailyConsumption
11082
- */
11083
- export interface DataTypesDailyConsumption {
11084
- /**
11085
- *
11086
- * @type {number}
11087
- * @memberof DataTypesDailyConsumption
11088
- */
11089
- 'credits_used'?: number;
11090
- /**
11091
- *
11092
- * @type {string}
11093
- * @memberof DataTypesDailyConsumption
11094
- */
11095
- 'date'?: string;
11096
- /**
11097
- *
11098
- * @type {number}
11099
- * @memberof DataTypesDailyConsumption
11100
- */
11101
- 'record_count'?: number;
11102
- /**
11103
- *
11104
- * @type {number}
11105
- * @memberof DataTypesDailyConsumption
11106
- */
11107
- 'search_count'?: number;
11108
- }
11109
11114
  /**
11110
11115
  *
11111
11116
  * @export
@@ -14153,6 +14158,12 @@ export interface DataTypesLoginRequest {
14153
14158
  * @memberof DataTypesLoginRequest
14154
14159
  */
14155
14160
  'password': string;
14161
+ /**
14162
+ *
14163
+ * @type {string}
14164
+ * @memberof DataTypesLoginRequest
14165
+ */
14166
+ 'token'?: string;
14156
14167
  /**
14157
14168
  *
14158
14169
  * @type {string}
@@ -15693,6 +15704,43 @@ export interface DataTypesPaginationInfo {
15693
15704
  */
15694
15705
  'total_pages'?: number;
15695
15706
  }
15707
+ /**
15708
+ *
15709
+ * @export
15710
+ * @interface DataTypesPaginationMetadata
15711
+ */
15712
+ export interface DataTypesPaginationMetadata {
15713
+ /**
15714
+ * Whether there are more pages
15715
+ * @type {boolean}
15716
+ * @memberof DataTypesPaginationMetadata
15717
+ */
15718
+ 'has_more'?: boolean;
15719
+ /**
15720
+ * Current page number (1-based)
15721
+ * @type {number}
15722
+ * @memberof DataTypesPaginationMetadata
15723
+ */
15724
+ 'page'?: number;
15725
+ /**
15726
+ * Items per page
15727
+ * @type {number}
15728
+ * @memberof DataTypesPaginationMetadata
15729
+ */
15730
+ 'page_size'?: number;
15731
+ /**
15732
+ * Total number of items
15733
+ * @type {number}
15734
+ * @memberof DataTypesPaginationMetadata
15735
+ */
15736
+ 'total_items'?: number;
15737
+ /**
15738
+ * Total number of pages
15739
+ * @type {number}
15740
+ * @memberof DataTypesPaginationMetadata
15741
+ */
15742
+ 'total_pages'?: number;
15743
+ }
15696
15744
  /**
15697
15745
  *
15698
15746
  * @export
@@ -16058,7 +16106,13 @@ export interface DataTypesPeriodInfo {
16058
16106
  */
16059
16107
  'end_date'?: string;
16060
16108
  /**
16061
- * \"April 1, 2025 to October 31, 2025\"
16109
+ * \"minute\", \"hour\", \"day\", \"week\", \"month\"
16110
+ * @type {string}
16111
+ * @memberof DataTypesPeriodInfo
16112
+ */
16113
+ 'granularity'?: string;
16114
+ /**
16115
+ * \"October 2025\"
16062
16116
  * @type {string}
16063
16117
  * @memberof DataTypesPeriodInfo
16064
16118
  */
@@ -19465,6 +19519,12 @@ export interface DataTypesSynonymEntry {
19465
19519
  * @interface DataTypesTableCell
19466
19520
  */
19467
19521
  export interface DataTypesTableCell {
19522
+ /**
19523
+ * Optional: raw datetime for headers with dates
19524
+ * @type {string}
19525
+ * @memberof DataTypesTableCell
19526
+ */
19527
+ 'date'?: string;
19468
19528
  /**
19469
19529
  * \"header\", \"data\", \"total\"
19470
19530
  * @type {string}
@@ -19648,6 +19708,37 @@ export interface DataTypesTaskRun {
19648
19708
  */
19649
19709
  'task_run_id'?: number;
19650
19710
  }
19711
+ /**
19712
+ *
19713
+ * @export
19714
+ * @interface DataTypesTimeSeriesConsumption
19715
+ */
19716
+ export interface DataTypesTimeSeriesConsumption {
19717
+ /**
19718
+ *
19719
+ * @type {number}
19720
+ * @memberof DataTypesTimeSeriesConsumption
19721
+ */
19722
+ 'credits_used'?: number;
19723
+ /**
19724
+ *
19725
+ * @type {string}
19726
+ * @memberof DataTypesTimeSeriesConsumption
19727
+ */
19728
+ 'date'?: string;
19729
+ /**
19730
+ *
19731
+ * @type {number}
19732
+ * @memberof DataTypesTimeSeriesConsumption
19733
+ */
19734
+ 'record_count'?: number;
19735
+ /**
19736
+ *
19737
+ * @type {number}
19738
+ * @memberof DataTypesTimeSeriesConsumption
19739
+ */
19740
+ 'search_count'?: number;
19741
+ }
19651
19742
  /**
19652
19743
  *
19653
19744
  * @export
@@ -20167,6 +20258,12 @@ export interface DataTypesUploadsourceDataResponse {
20167
20258
  * @interface DataTypesUsageBreakdown
20168
20259
  */
20169
20260
  export interface DataTypesUsageBreakdown {
20261
+ /**
20262
+ *
20263
+ * @type {string}
20264
+ * @memberof DataTypesUsageBreakdown
20265
+ */
20266
+ 'granularity'?: string;
20170
20267
  /**
20171
20268
  *
20172
20269
  * @type {Array<DataTypesMetricData>}
@@ -20185,6 +20282,12 @@ export interface DataTypesUsageBreakdown {
20185
20282
  * @memberof DataTypesUsageBreakdown
20186
20283
  */
20187
20284
  'table_data'?: Array<Array<DataTypesTableCell>>;
20285
+ /**
20286
+ *
20287
+ * @type {number}
20288
+ * @memberof DataTypesUsageBreakdown
20289
+ */
20290
+ 'total_buckets'?: number;
20188
20291
  }
20189
20292
  /**
20190
20293
  *
@@ -20199,13 +20302,13 @@ export interface DataTypesUsageDetailsResponse {
20199
20302
  */
20200
20303
  'breakdown'?: DataTypesUsageBreakdown;
20201
20304
  /**
20202
- * Credit consumption charts
20305
+ * Credit consumption charts with pagination
20203
20306
  * @type {Array<DataTypesCreditChart>}
20204
20307
  * @memberof DataTypesUsageDetailsResponse
20205
20308
  */
20206
20309
  'credit_charts'?: Array<DataTypesCreditChart>;
20207
20310
  /**
20208
- * Credit consumption summary
20311
+ * Credit consumption summary with pagination
20209
20312
  * @type {DataTypesCreditConsumptionSummary}
20210
20313
  * @memberof DataTypesUsageDetailsResponse
20211
20314
  */
@@ -25490,14 +25593,22 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
25490
25593
  */
25491
25594
  adminBillingSavedCardsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25492
25595
  /**
25493
- * Returns detailed usage information with charts and breakdown
25494
- * @summary Get usage details
25495
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25496
- * @param {string} [endDate] End date (YYYY-MM-DD format)
25596
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
25597
+ * @summary Get usage details with granularity and pagination
25598
+ * @param {string} [xstoreid] Filter by specific store ID
25599
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
25600
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
25601
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
25602
+ * @param {number} [chartPage] Chart data page number (1-based)
25603
+ * @param {number} [chartPageSize] Chart data items per page
25604
+ * @param {number} [endpointPage] Endpoints page number (1-based)
25605
+ * @param {number} [endpointPageSize] Endpoints items per page
25606
+ * @param {number} [consumptionPage] Consumption page number (1-based)
25607
+ * @param {number} [consumptionPageSize] Consumption items per page
25497
25608
  * @param {*} [options] Override http request option.
25498
25609
  * @throws {RequiredError}
25499
25610
  */
25500
- adminBillingUsageDetailsGet: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25611
+ adminBillingUsageDetailsGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25501
25612
  };
25502
25613
  /**
25503
25614
  * BillingDashboardApi - functional programming interface
@@ -25707,14 +25818,22 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
25707
25818
  */
25708
25819
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>>;
25709
25820
  /**
25710
- * Returns detailed usage information with charts and breakdown
25711
- * @summary Get usage details
25712
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25713
- * @param {string} [endDate] End date (YYYY-MM-DD format)
25821
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
25822
+ * @summary Get usage details with granularity and pagination
25823
+ * @param {string} [xstoreid] Filter by specific store ID
25824
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
25825
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
25826
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
25827
+ * @param {number} [chartPage] Chart data page number (1-based)
25828
+ * @param {number} [chartPageSize] Chart data items per page
25829
+ * @param {number} [endpointPage] Endpoints page number (1-based)
25830
+ * @param {number} [endpointPageSize] Endpoints items per page
25831
+ * @param {number} [consumptionPage] Consumption page number (1-based)
25832
+ * @param {number} [consumptionPageSize] Consumption items per page
25714
25833
  * @param {*} [options] Override http request option.
25715
25834
  * @throws {RequiredError}
25716
25835
  */
25717
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>>;
25836
+ adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>>;
25718
25837
  };
25719
25838
  /**
25720
25839
  * BillingDashboardApi - factory interface
@@ -25924,14 +26043,22 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
25924
26043
  */
25925
26044
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>;
25926
26045
  /**
25927
- * Returns detailed usage information with charts and breakdown
25928
- * @summary Get usage details
25929
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25930
- * @param {string} [endDate] End date (YYYY-MM-DD format)
26046
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
26047
+ * @summary Get usage details with granularity and pagination
26048
+ * @param {string} [xstoreid] Filter by specific store ID
26049
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
26050
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
26051
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
26052
+ * @param {number} [chartPage] Chart data page number (1-based)
26053
+ * @param {number} [chartPageSize] Chart data items per page
26054
+ * @param {number} [endpointPage] Endpoints page number (1-based)
26055
+ * @param {number} [endpointPageSize] Endpoints items per page
26056
+ * @param {number} [consumptionPage] Consumption page number (1-based)
26057
+ * @param {number} [consumptionPageSize] Consumption items per page
25931
26058
  * @param {*} [options] Override http request option.
25932
26059
  * @throws {RequiredError}
25933
26060
  */
25934
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>;
26061
+ adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>;
25935
26062
  };
25936
26063
  /**
25937
26064
  * BillingDashboardApi - object-oriented interface
@@ -26164,16 +26291,35 @@ export declare class BillingDashboardApi extends BaseAPI {
26164
26291
  */
26165
26292
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSavedCardsResponse, any, {}>>;
26166
26293
  /**
26167
- * Returns detailed usage information with charts and breakdown
26168
- * @summary Get usage details
26169
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
26170
- * @param {string} [endDate] End date (YYYY-MM-DD format)
26294
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
26295
+ * @summary Get usage details with granularity and pagination
26296
+ * @param {string} [xstoreid] Filter by specific store ID
26297
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
26298
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
26299
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
26300
+ * @param {number} [chartPage] Chart data page number (1-based)
26301
+ * @param {number} [chartPageSize] Chart data items per page
26302
+ * @param {number} [endpointPage] Endpoints page number (1-based)
26303
+ * @param {number} [endpointPageSize] Endpoints items per page
26304
+ * @param {number} [consumptionPage] Consumption page number (1-based)
26305
+ * @param {number} [consumptionPageSize] Consumption items per page
26171
26306
  * @param {*} [options] Override http request option.
26172
26307
  * @throws {RequiredError}
26173
26308
  * @memberof BillingDashboardApi
26174
26309
  */
26175
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageDetailsResponse, any, {}>>;
26310
+ adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageDetailsResponse, any, {}>>;
26176
26311
  }
26312
+ /**
26313
+ * @export
26314
+ */
26315
+ export declare const AdminBillingUsageDetailsGetGranularityEnum: {
26316
+ readonly Minute: "minute";
26317
+ readonly Hour: "hour";
26318
+ readonly Day: "day";
26319
+ readonly Week: "week";
26320
+ readonly Month: "month";
26321
+ };
26322
+ export type AdminBillingUsageDetailsGetGranularityEnum = typeof AdminBillingUsageDetailsGetGranularityEnum[keyof typeof AdminBillingUsageDetailsGetGranularityEnum];
26177
26323
  /**
26178
26324
  * CommonApi - axios parameter creator
26179
26325
  * @export
@@ -35379,6 +35525,35 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
35379
35525
  * @throws {RequiredError}
35380
35526
  */
35381
35527
  adminStoresXStoreIDDefaultsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35528
+ /**
35529
+ * Get schema options for a specific store by xStoreID
35530
+ * @summary Get store schema options
35531
+ * @param {string} xStoreID X-Store ID
35532
+ * @param {*} [options] Override http request option.
35533
+ * @throws {RequiredError}
35534
+ */
35535
+ adminStoresXStoreIDSchemaOptionsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35536
+ /**
35537
+ * Perform search on a specific store by xStoreID
35538
+ * @summary Get store search results
35539
+ * @param {string} xStoreID X-Store ID
35540
+ * @param {string} query Search query
35541
+ * @param {number} [page] Page number
35542
+ * @param {number} [pageSize] Page size
35543
+ * @param {*} [options] Override http request option.
35544
+ * @throws {RequiredError}
35545
+ */
35546
+ adminStoresXStoreIDSearchGet: (xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35547
+ /**
35548
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35549
+ * @summary Update store step configuration
35550
+ * @param {string} xStoreID X-Store ID
35551
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35552
+ * @param {object} body Configuration data
35553
+ * @param {*} [options] Override http request option.
35554
+ * @throws {RequiredError}
35555
+ */
35556
+ adminStoresXStoreIDStepStepPut: (xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35382
35557
  /**
35383
35558
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35384
35559
  * @summary Regenerate X-Store Secret
@@ -35475,6 +35650,35 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
35475
35650
  * @throws {RequiredError}
35476
35651
  */
35477
35652
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
35653
+ /**
35654
+ * Get schema options for a specific store by xStoreID
35655
+ * @summary Get store schema options
35656
+ * @param {string} xStoreID X-Store ID
35657
+ * @param {*} [options] Override http request option.
35658
+ * @throws {RequiredError}
35659
+ */
35660
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
35661
+ /**
35662
+ * Perform search on a specific store by xStoreID
35663
+ * @summary Get store search results
35664
+ * @param {string} xStoreID X-Store ID
35665
+ * @param {string} query Search query
35666
+ * @param {number} [page] Page number
35667
+ * @param {number} [pageSize] Page size
35668
+ * @param {*} [options] Override http request option.
35669
+ * @throws {RequiredError}
35670
+ */
35671
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
35672
+ /**
35673
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35674
+ * @summary Update store step configuration
35675
+ * @param {string} xStoreID X-Store ID
35676
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35677
+ * @param {object} body Configuration data
35678
+ * @param {*} [options] Override http request option.
35679
+ * @throws {RequiredError}
35680
+ */
35681
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
35478
35682
  /**
35479
35683
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35480
35684
  * @summary Regenerate X-Store Secret
@@ -35571,6 +35775,35 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
35571
35775
  * @throws {RequiredError}
35572
35776
  */
35573
35777
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
35778
+ /**
35779
+ * Get schema options for a specific store by xStoreID
35780
+ * @summary Get store schema options
35781
+ * @param {string} xStoreID X-Store ID
35782
+ * @param {*} [options] Override http request option.
35783
+ * @throws {RequiredError}
35784
+ */
35785
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
35786
+ /**
35787
+ * Perform search on a specific store by xStoreID
35788
+ * @summary Get store search results
35789
+ * @param {string} xStoreID X-Store ID
35790
+ * @param {string} query Search query
35791
+ * @param {number} [page] Page number
35792
+ * @param {number} [pageSize] Page size
35793
+ * @param {*} [options] Override http request option.
35794
+ * @throws {RequiredError}
35795
+ */
35796
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
35797
+ /**
35798
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35799
+ * @summary Update store step configuration
35800
+ * @param {string} xStoreID X-Store ID
35801
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35802
+ * @param {object} body Configuration data
35803
+ * @param {*} [options] Override http request option.
35804
+ * @throws {RequiredError}
35805
+ */
35806
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
35574
35807
  /**
35575
35808
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35576
35809
  * @summary Regenerate X-Store Secret
@@ -35679,6 +35912,38 @@ export declare class StoresApi extends BaseAPI {
35679
35912
  * @memberof StoresApi
35680
35913
  */
35681
35914
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
35915
+ /**
35916
+ * Get schema options for a specific store by xStoreID
35917
+ * @summary Get store schema options
35918
+ * @param {string} xStoreID X-Store ID
35919
+ * @param {*} [options] Override http request option.
35920
+ * @throws {RequiredError}
35921
+ * @memberof StoresApi
35922
+ */
35923
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
35924
+ /**
35925
+ * Perform search on a specific store by xStoreID
35926
+ * @summary Get store search results
35927
+ * @param {string} xStoreID X-Store ID
35928
+ * @param {string} query Search query
35929
+ * @param {number} [page] Page number
35930
+ * @param {number} [pageSize] Page size
35931
+ * @param {*} [options] Override http request option.
35932
+ * @throws {RequiredError}
35933
+ * @memberof StoresApi
35934
+ */
35935
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
35936
+ /**
35937
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35938
+ * @summary Update store step configuration
35939
+ * @param {string} xStoreID X-Store ID
35940
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35941
+ * @param {object} body Configuration data
35942
+ * @param {*} [options] Override http request option.
35943
+ * @throws {RequiredError}
35944
+ * @memberof StoresApi
35945
+ */
35946
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
35682
35947
  /**
35683
35948
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35684
35949
  * @summary Regenerate X-Store Secret