@seekora-ai/admin-api 1.0.94 → 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}
10603
+ * @memberof DataTypesCreditConsumptionSummary
10604
+ */
10605
+ 'consumption_pagination'?: DataTypesPaginationMetadata;
10606
+ /**
10607
+ *
10608
+ * @type {DataTypesPaginationMetadata}
10591
10609
  * @memberof DataTypesCreditConsumptionSummary
10592
10610
  */
10593
- 'daily_consumption'?: Array<DataTypesDailyConsumption>;
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
@@ -15699,6 +15704,43 @@ export interface DataTypesPaginationInfo {
15699
15704
  */
15700
15705
  'total_pages'?: number;
15701
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
+ }
15702
15744
  /**
15703
15745
  *
15704
15746
  * @export
@@ -16064,7 +16106,13 @@ export interface DataTypesPeriodInfo {
16064
16106
  */
16065
16107
  'end_date'?: string;
16066
16108
  /**
16067
- * \"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\"
16068
16116
  * @type {string}
16069
16117
  * @memberof DataTypesPeriodInfo
16070
16118
  */
@@ -19471,6 +19519,12 @@ export interface DataTypesSynonymEntry {
19471
19519
  * @interface DataTypesTableCell
19472
19520
  */
19473
19521
  export interface DataTypesTableCell {
19522
+ /**
19523
+ * Optional: raw datetime for headers with dates
19524
+ * @type {string}
19525
+ * @memberof DataTypesTableCell
19526
+ */
19527
+ 'date'?: string;
19474
19528
  /**
19475
19529
  * \"header\", \"data\", \"total\"
19476
19530
  * @type {string}
@@ -19654,6 +19708,37 @@ export interface DataTypesTaskRun {
19654
19708
  */
19655
19709
  'task_run_id'?: number;
19656
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
+ }
19657
19742
  /**
19658
19743
  *
19659
19744
  * @export
@@ -20173,6 +20258,12 @@ export interface DataTypesUploadsourceDataResponse {
20173
20258
  * @interface DataTypesUsageBreakdown
20174
20259
  */
20175
20260
  export interface DataTypesUsageBreakdown {
20261
+ /**
20262
+ *
20263
+ * @type {string}
20264
+ * @memberof DataTypesUsageBreakdown
20265
+ */
20266
+ 'granularity'?: string;
20176
20267
  /**
20177
20268
  *
20178
20269
  * @type {Array<DataTypesMetricData>}
@@ -20191,6 +20282,12 @@ export interface DataTypesUsageBreakdown {
20191
20282
  * @memberof DataTypesUsageBreakdown
20192
20283
  */
20193
20284
  'table_data'?: Array<Array<DataTypesTableCell>>;
20285
+ /**
20286
+ *
20287
+ * @type {number}
20288
+ * @memberof DataTypesUsageBreakdown
20289
+ */
20290
+ 'total_buckets'?: number;
20194
20291
  }
20195
20292
  /**
20196
20293
  *
@@ -20205,13 +20302,13 @@ export interface DataTypesUsageDetailsResponse {
20205
20302
  */
20206
20303
  'breakdown'?: DataTypesUsageBreakdown;
20207
20304
  /**
20208
- * Credit consumption charts
20305
+ * Credit consumption charts with pagination
20209
20306
  * @type {Array<DataTypesCreditChart>}
20210
20307
  * @memberof DataTypesUsageDetailsResponse
20211
20308
  */
20212
20309
  'credit_charts'?: Array<DataTypesCreditChart>;
20213
20310
  /**
20214
- * Credit consumption summary
20311
+ * Credit consumption summary with pagination
20215
20312
  * @type {DataTypesCreditConsumptionSummary}
20216
20313
  * @memberof DataTypesUsageDetailsResponse
20217
20314
  */
@@ -25496,14 +25593,22 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
25496
25593
  */
25497
25594
  adminBillingSavedCardsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25498
25595
  /**
25499
- * Returns detailed usage information with charts and breakdown
25500
- * @summary Get usage details
25501
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25502
- * @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
25503
25608
  * @param {*} [options] Override http request option.
25504
25609
  * @throws {RequiredError}
25505
25610
  */
25506
- 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>;
25507
25612
  };
25508
25613
  /**
25509
25614
  * BillingDashboardApi - functional programming interface
@@ -25713,14 +25818,22 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
25713
25818
  */
25714
25819
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>>;
25715
25820
  /**
25716
- * Returns detailed usage information with charts and breakdown
25717
- * @summary Get usage details
25718
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25719
- * @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
25720
25833
  * @param {*} [options] Override http request option.
25721
25834
  * @throws {RequiredError}
25722
25835
  */
25723
- 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>>;
25724
25837
  };
25725
25838
  /**
25726
25839
  * BillingDashboardApi - factory interface
@@ -25930,14 +26043,22 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
25930
26043
  */
25931
26044
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>;
25932
26045
  /**
25933
- * Returns detailed usage information with charts and breakdown
25934
- * @summary Get usage details
25935
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
25936
- * @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
25937
26058
  * @param {*} [options] Override http request option.
25938
26059
  * @throws {RequiredError}
25939
26060
  */
25940
- 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>;
25941
26062
  };
25942
26063
  /**
25943
26064
  * BillingDashboardApi - object-oriented interface
@@ -26170,16 +26291,35 @@ export declare class BillingDashboardApi extends BaseAPI {
26170
26291
  */
26171
26292
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSavedCardsResponse, any, {}>>;
26172
26293
  /**
26173
- * Returns detailed usage information with charts and breakdown
26174
- * @summary Get usage details
26175
- * @param {string} [startDate] Start date (YYYY-MM-DD format)
26176
- * @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
26177
26306
  * @param {*} [options] Override http request option.
26178
26307
  * @throws {RequiredError}
26179
26308
  * @memberof BillingDashboardApi
26180
26309
  */
26181
- 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, {}>>;
26182
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];
26183
26323
  /**
26184
26324
  * CommonApi - axios parameter creator
26185
26325
  * @export
@@ -35385,6 +35525,35 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
35385
35525
  * @throws {RequiredError}
35386
35526
  */
35387
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>;
35388
35557
  /**
35389
35558
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35390
35559
  * @summary Regenerate X-Store Secret
@@ -35481,6 +35650,35 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
35481
35650
  * @throws {RequiredError}
35482
35651
  */
35483
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>>;
35484
35682
  /**
35485
35683
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35486
35684
  * @summary Regenerate X-Store Secret
@@ -35577,6 +35775,35 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
35577
35775
  * @throws {RequiredError}
35578
35776
  */
35579
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>;
35580
35807
  /**
35581
35808
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35582
35809
  * @summary Regenerate X-Store Secret
@@ -35685,6 +35912,38 @@ export declare class StoresApi extends BaseAPI {
35685
35912
  * @memberof StoresApi
35686
35913
  */
35687
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, {}>>;
35688
35947
  /**
35689
35948
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35690
35949
  * @summary Regenerate X-Store Secret