@seekora-ai/admin-api 1.0.94 → 1.0.96

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
@@ -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
@@ -14159,6 +14164,12 @@ export interface DataTypesLoginRequest {
14159
14164
  * @memberof DataTypesLoginRequest
14160
14165
  */
14161
14166
  'token'?: string;
14167
+ /**
14168
+ * e.g., \"google\" for Google login
14169
+ * @type {string}
14170
+ * @memberof DataTypesLoginRequest
14171
+ */
14172
+ 'type'?: string;
14162
14173
  /**
14163
14174
  *
14164
14175
  * @type {string}
@@ -15699,6 +15710,43 @@ export interface DataTypesPaginationInfo {
15699
15710
  */
15700
15711
  'total_pages'?: number;
15701
15712
  }
15713
+ /**
15714
+ *
15715
+ * @export
15716
+ * @interface DataTypesPaginationMetadata
15717
+ */
15718
+ export interface DataTypesPaginationMetadata {
15719
+ /**
15720
+ * Whether there are more pages
15721
+ * @type {boolean}
15722
+ * @memberof DataTypesPaginationMetadata
15723
+ */
15724
+ 'has_more'?: boolean;
15725
+ /**
15726
+ * Current page number (1-based)
15727
+ * @type {number}
15728
+ * @memberof DataTypesPaginationMetadata
15729
+ */
15730
+ 'page'?: number;
15731
+ /**
15732
+ * Items per page
15733
+ * @type {number}
15734
+ * @memberof DataTypesPaginationMetadata
15735
+ */
15736
+ 'page_size'?: number;
15737
+ /**
15738
+ * Total number of items
15739
+ * @type {number}
15740
+ * @memberof DataTypesPaginationMetadata
15741
+ */
15742
+ 'total_items'?: number;
15743
+ /**
15744
+ * Total number of pages
15745
+ * @type {number}
15746
+ * @memberof DataTypesPaginationMetadata
15747
+ */
15748
+ 'total_pages'?: number;
15749
+ }
15702
15750
  /**
15703
15751
  *
15704
15752
  * @export
@@ -16064,7 +16112,13 @@ export interface DataTypesPeriodInfo {
16064
16112
  */
16065
16113
  'end_date'?: string;
16066
16114
  /**
16067
- * \"April 1, 2025 to October 31, 2025\"
16115
+ * \"minute\", \"hour\", \"day\", \"week\", \"month\"
16116
+ * @type {string}
16117
+ * @memberof DataTypesPeriodInfo
16118
+ */
16119
+ 'granularity'?: string;
16120
+ /**
16121
+ * \"October 2025\"
16068
16122
  * @type {string}
16069
16123
  * @memberof DataTypesPeriodInfo
16070
16124
  */
@@ -19471,6 +19525,12 @@ export interface DataTypesSynonymEntry {
19471
19525
  * @interface DataTypesTableCell
19472
19526
  */
19473
19527
  export interface DataTypesTableCell {
19528
+ /**
19529
+ * Optional: raw datetime for headers with dates
19530
+ * @type {string}
19531
+ * @memberof DataTypesTableCell
19532
+ */
19533
+ 'date'?: string;
19474
19534
  /**
19475
19535
  * \"header\", \"data\", \"total\"
19476
19536
  * @type {string}
@@ -19654,6 +19714,37 @@ export interface DataTypesTaskRun {
19654
19714
  */
19655
19715
  'task_run_id'?: number;
19656
19716
  }
19717
+ /**
19718
+ *
19719
+ * @export
19720
+ * @interface DataTypesTimeSeriesConsumption
19721
+ */
19722
+ export interface DataTypesTimeSeriesConsumption {
19723
+ /**
19724
+ *
19725
+ * @type {number}
19726
+ * @memberof DataTypesTimeSeriesConsumption
19727
+ */
19728
+ 'credits_used'?: number;
19729
+ /**
19730
+ *
19731
+ * @type {string}
19732
+ * @memberof DataTypesTimeSeriesConsumption
19733
+ */
19734
+ 'date'?: string;
19735
+ /**
19736
+ *
19737
+ * @type {number}
19738
+ * @memberof DataTypesTimeSeriesConsumption
19739
+ */
19740
+ 'record_count'?: number;
19741
+ /**
19742
+ *
19743
+ * @type {number}
19744
+ * @memberof DataTypesTimeSeriesConsumption
19745
+ */
19746
+ 'search_count'?: number;
19747
+ }
19657
19748
  /**
19658
19749
  *
19659
19750
  * @export
@@ -20173,6 +20264,12 @@ export interface DataTypesUploadsourceDataResponse {
20173
20264
  * @interface DataTypesUsageBreakdown
20174
20265
  */
20175
20266
  export interface DataTypesUsageBreakdown {
20267
+ /**
20268
+ *
20269
+ * @type {string}
20270
+ * @memberof DataTypesUsageBreakdown
20271
+ */
20272
+ 'granularity'?: string;
20176
20273
  /**
20177
20274
  *
20178
20275
  * @type {Array<DataTypesMetricData>}
@@ -20191,6 +20288,12 @@ export interface DataTypesUsageBreakdown {
20191
20288
  * @memberof DataTypesUsageBreakdown
20192
20289
  */
20193
20290
  'table_data'?: Array<Array<DataTypesTableCell>>;
20291
+ /**
20292
+ *
20293
+ * @type {number}
20294
+ * @memberof DataTypesUsageBreakdown
20295
+ */
20296
+ 'total_buckets'?: number;
20194
20297
  }
20195
20298
  /**
20196
20299
  *
@@ -20205,13 +20308,13 @@ export interface DataTypesUsageDetailsResponse {
20205
20308
  */
20206
20309
  'breakdown'?: DataTypesUsageBreakdown;
20207
20310
  /**
20208
- * Credit consumption charts
20311
+ * Credit consumption charts with pagination
20209
20312
  * @type {Array<DataTypesCreditChart>}
20210
20313
  * @memberof DataTypesUsageDetailsResponse
20211
20314
  */
20212
20315
  'credit_charts'?: Array<DataTypesCreditChart>;
20213
20316
  /**
20214
- * Credit consumption summary
20317
+ * Credit consumption summary with pagination
20215
20318
  * @type {DataTypesCreditConsumptionSummary}
20216
20319
  * @memberof DataTypesUsageDetailsResponse
20217
20320
  */
@@ -20296,6 +20399,12 @@ export interface DataTypesUser {
20296
20399
  * @memberof DataTypesUser
20297
20400
  */
20298
20401
  'isTwoFactor'?: boolean;
20402
+ /**
20403
+ *
20404
+ * @type {boolean}
20405
+ * @memberof DataTypesUser
20406
+ */
20407
+ 'isVerified'?: boolean;
20299
20408
  /**
20300
20409
  *
20301
20410
  * @type {string}
@@ -20386,6 +20495,12 @@ export interface DataTypesUser {
20386
20495
  * @memberof DataTypesUser
20387
20496
  */
20388
20497
  'roleId': number;
20498
+ /**
20499
+ *
20500
+ * @type {string}
20501
+ * @memberof DataTypesUser
20502
+ */
20503
+ 'sso_config'?: string;
20389
20504
  /**
20390
20505
  *
20391
20506
  * @type {string}
@@ -25496,14 +25611,22 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
25496
25611
  */
25497
25612
  adminBillingSavedCardsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25498
25613
  /**
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)
25614
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
25615
+ * @summary Get usage details with granularity and pagination
25616
+ * @param {string} [xstoreid] Filter by specific store ID
25617
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
25618
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
25619
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
25620
+ * @param {number} [chartPage] Chart data page number (1-based)
25621
+ * @param {number} [chartPageSize] Chart data items per page
25622
+ * @param {number} [endpointPage] Endpoints page number (1-based)
25623
+ * @param {number} [endpointPageSize] Endpoints items per page
25624
+ * @param {number} [consumptionPage] Consumption page number (1-based)
25625
+ * @param {number} [consumptionPageSize] Consumption items per page
25503
25626
  * @param {*} [options] Override http request option.
25504
25627
  * @throws {RequiredError}
25505
25628
  */
25506
- adminBillingUsageDetailsGet: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25629
+ 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
25630
  };
25508
25631
  /**
25509
25632
  * BillingDashboardApi - functional programming interface
@@ -25713,14 +25836,22 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
25713
25836
  */
25714
25837
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>>;
25715
25838
  /**
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)
25839
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
25840
+ * @summary Get usage details with granularity and pagination
25841
+ * @param {string} [xstoreid] Filter by specific store ID
25842
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
25843
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
25844
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
25845
+ * @param {number} [chartPage] Chart data page number (1-based)
25846
+ * @param {number} [chartPageSize] Chart data items per page
25847
+ * @param {number} [endpointPage] Endpoints page number (1-based)
25848
+ * @param {number} [endpointPageSize] Endpoints items per page
25849
+ * @param {number} [consumptionPage] Consumption page number (1-based)
25850
+ * @param {number} [consumptionPageSize] Consumption items per page
25720
25851
  * @param {*} [options] Override http request option.
25721
25852
  * @throws {RequiredError}
25722
25853
  */
25723
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>>;
25854
+ 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
25855
  };
25725
25856
  /**
25726
25857
  * BillingDashboardApi - factory interface
@@ -25930,14 +26061,22 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
25930
26061
  */
25931
26062
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>;
25932
26063
  /**
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)
26064
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
26065
+ * @summary Get usage details with granularity and pagination
26066
+ * @param {string} [xstoreid] Filter by specific store ID
26067
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
26068
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
26069
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
26070
+ * @param {number} [chartPage] Chart data page number (1-based)
26071
+ * @param {number} [chartPageSize] Chart data items per page
26072
+ * @param {number} [endpointPage] Endpoints page number (1-based)
26073
+ * @param {number} [endpointPageSize] Endpoints items per page
26074
+ * @param {number} [consumptionPage] Consumption page number (1-based)
26075
+ * @param {number} [consumptionPageSize] Consumption items per page
25937
26076
  * @param {*} [options] Override http request option.
25938
26077
  * @throws {RequiredError}
25939
26078
  */
25940
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>;
26079
+ 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
26080
  };
25942
26081
  /**
25943
26082
  * BillingDashboardApi - object-oriented interface
@@ -26170,16 +26309,35 @@ export declare class BillingDashboardApi extends BaseAPI {
26170
26309
  */
26171
26310
  adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSavedCardsResponse, any, {}>>;
26172
26311
  /**
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)
26312
+ * Returns detailed usage information with charts and breakdown, supports time granularity and pagination
26313
+ * @summary Get usage details with granularity and pagination
26314
+ * @param {string} [xstoreid] Filter by specific store ID
26315
+ * @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339 format)
26316
+ * @param {string} [endDate] End date (YYYY-MM-DD or RFC3339 format)
26317
+ * @param {AdminBillingUsageDetailsGetGranularityEnum} [granularity] Time granularity
26318
+ * @param {number} [chartPage] Chart data page number (1-based)
26319
+ * @param {number} [chartPageSize] Chart data items per page
26320
+ * @param {number} [endpointPage] Endpoints page number (1-based)
26321
+ * @param {number} [endpointPageSize] Endpoints items per page
26322
+ * @param {number} [consumptionPage] Consumption page number (1-based)
26323
+ * @param {number} [consumptionPageSize] Consumption items per page
26177
26324
  * @param {*} [options] Override http request option.
26178
26325
  * @throws {RequiredError}
26179
26326
  * @memberof BillingDashboardApi
26180
26327
  */
26181
- adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageDetailsResponse, any, {}>>;
26328
+ 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
26329
  }
26330
+ /**
26331
+ * @export
26332
+ */
26333
+ export declare const AdminBillingUsageDetailsGetGranularityEnum: {
26334
+ readonly Minute: "minute";
26335
+ readonly Hour: "hour";
26336
+ readonly Day: "day";
26337
+ readonly Week: "week";
26338
+ readonly Month: "month";
26339
+ };
26340
+ export type AdminBillingUsageDetailsGetGranularityEnum = typeof AdminBillingUsageDetailsGetGranularityEnum[keyof typeof AdminBillingUsageDetailsGetGranularityEnum];
26183
26341
  /**
26184
26342
  * CommonApi - axios parameter creator
26185
26343
  * @export
@@ -35385,6 +35543,35 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
35385
35543
  * @throws {RequiredError}
35386
35544
  */
35387
35545
  adminStoresXStoreIDDefaultsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35546
+ /**
35547
+ * Get schema options for a specific store by xStoreID
35548
+ * @summary Get store schema options
35549
+ * @param {string} xStoreID X-Store ID
35550
+ * @param {*} [options] Override http request option.
35551
+ * @throws {RequiredError}
35552
+ */
35553
+ adminStoresXStoreIDSchemaOptionsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35554
+ /**
35555
+ * Perform search on a specific store by xStoreID
35556
+ * @summary Get store search results
35557
+ * @param {string} xStoreID X-Store ID
35558
+ * @param {string} query Search query
35559
+ * @param {number} [page] Page number
35560
+ * @param {number} [pageSize] Page size
35561
+ * @param {*} [options] Override http request option.
35562
+ * @throws {RequiredError}
35563
+ */
35564
+ adminStoresXStoreIDSearchGet: (xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35565
+ /**
35566
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35567
+ * @summary Update store step configuration
35568
+ * @param {string} xStoreID X-Store ID
35569
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35570
+ * @param {object} body Configuration data
35571
+ * @param {*} [options] Override http request option.
35572
+ * @throws {RequiredError}
35573
+ */
35574
+ adminStoresXStoreIDStepStepPut: (xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35388
35575
  /**
35389
35576
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35390
35577
  * @summary Regenerate X-Store Secret
@@ -35481,6 +35668,35 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
35481
35668
  * @throws {RequiredError}
35482
35669
  */
35483
35670
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
35671
+ /**
35672
+ * Get schema options for a specific store by xStoreID
35673
+ * @summary Get store schema options
35674
+ * @param {string} xStoreID X-Store ID
35675
+ * @param {*} [options] Override http request option.
35676
+ * @throws {RequiredError}
35677
+ */
35678
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
35679
+ /**
35680
+ * Perform search on a specific store by xStoreID
35681
+ * @summary Get store search results
35682
+ * @param {string} xStoreID X-Store ID
35683
+ * @param {string} query Search query
35684
+ * @param {number} [page] Page number
35685
+ * @param {number} [pageSize] Page size
35686
+ * @param {*} [options] Override http request option.
35687
+ * @throws {RequiredError}
35688
+ */
35689
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
35690
+ /**
35691
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35692
+ * @summary Update store step configuration
35693
+ * @param {string} xStoreID X-Store ID
35694
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35695
+ * @param {object} body Configuration data
35696
+ * @param {*} [options] Override http request option.
35697
+ * @throws {RequiredError}
35698
+ */
35699
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
35484
35700
  /**
35485
35701
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35486
35702
  * @summary Regenerate X-Store Secret
@@ -35577,6 +35793,35 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
35577
35793
  * @throws {RequiredError}
35578
35794
  */
35579
35795
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
35796
+ /**
35797
+ * Get schema options for a specific store by xStoreID
35798
+ * @summary Get store schema options
35799
+ * @param {string} xStoreID X-Store ID
35800
+ * @param {*} [options] Override http request option.
35801
+ * @throws {RequiredError}
35802
+ */
35803
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
35804
+ /**
35805
+ * Perform search on a specific store by xStoreID
35806
+ * @summary Get store search results
35807
+ * @param {string} xStoreID X-Store ID
35808
+ * @param {string} query Search query
35809
+ * @param {number} [page] Page number
35810
+ * @param {number} [pageSize] Page size
35811
+ * @param {*} [options] Override http request option.
35812
+ * @throws {RequiredError}
35813
+ */
35814
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
35815
+ /**
35816
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35817
+ * @summary Update store step configuration
35818
+ * @param {string} xStoreID X-Store ID
35819
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35820
+ * @param {object} body Configuration data
35821
+ * @param {*} [options] Override http request option.
35822
+ * @throws {RequiredError}
35823
+ */
35824
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
35580
35825
  /**
35581
35826
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35582
35827
  * @summary Regenerate X-Store Secret
@@ -35685,6 +35930,38 @@ export declare class StoresApi extends BaseAPI {
35685
35930
  * @memberof StoresApi
35686
35931
  */
35687
35932
  adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
35933
+ /**
35934
+ * Get schema options for a specific store by xStoreID
35935
+ * @summary Get store schema options
35936
+ * @param {string} xStoreID X-Store ID
35937
+ * @param {*} [options] Override http request option.
35938
+ * @throws {RequiredError}
35939
+ * @memberof StoresApi
35940
+ */
35941
+ adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
35942
+ /**
35943
+ * Perform search on a specific store by xStoreID
35944
+ * @summary Get store search results
35945
+ * @param {string} xStoreID X-Store ID
35946
+ * @param {string} query Search query
35947
+ * @param {number} [page] Page number
35948
+ * @param {number} [pageSize] Page size
35949
+ * @param {*} [options] Override http request option.
35950
+ * @throws {RequiredError}
35951
+ * @memberof StoresApi
35952
+ */
35953
+ adminStoresXStoreIDSearchGet(xStoreID: string, query: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
35954
+ /**
35955
+ * Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
35956
+ * @summary Update store step configuration
35957
+ * @param {string} xStoreID X-Store ID
35958
+ * @param {string} step Step name (displayAttributes, searchableAttributes, relevancyOrder)
35959
+ * @param {object} body Configuration data
35960
+ * @param {*} [options] Override http request option.
35961
+ * @throws {RequiredError}
35962
+ * @memberof StoresApi
35963
+ */
35964
+ adminStoresXStoreIDStepStepPut(xStoreID: string, step: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
35688
35965
  /**
35689
35966
  * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
35690
35967
  * @summary Regenerate X-Store Secret