@seekora-ai/admin-api 1.1.53 → 1.1.55

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
@@ -10211,6 +10211,32 @@ export interface DataTypesFieldMetadata {
10211
10211
  */
10212
10212
  'type'?: string;
10213
10213
  }
10214
+ /**
10215
+ *
10216
+ * @export
10217
+ * @interface DataTypesForgotPasswordRequest
10218
+ */
10219
+ export interface DataTypesForgotPasswordRequest {
10220
+ /**
10221
+ *
10222
+ * @type {string}
10223
+ * @memberof DataTypesForgotPasswordRequest
10224
+ */
10225
+ 'email': string;
10226
+ }
10227
+ /**
10228
+ *
10229
+ * @export
10230
+ * @interface DataTypesForgotPasswordResponse
10231
+ */
10232
+ export interface DataTypesForgotPasswordResponse {
10233
+ /**
10234
+ *
10235
+ * @type {string}
10236
+ * @memberof DataTypesForgotPasswordResponse
10237
+ */
10238
+ 'message'?: string;
10239
+ }
10214
10240
  /**
10215
10241
  *
10216
10242
  * @export
@@ -17729,6 +17755,12 @@ export interface DataTypesReceipt {
17729
17755
  * @memberof DataTypesReceipt
17730
17756
  */
17731
17757
  'pdf_s3_key'?: string;
17758
+ /**
17759
+ * Presigned URLs for PDF download (populated by service layer)
17760
+ * @type {string}
17761
+ * @memberof DataTypesReceipt
17762
+ */
17763
+ 'receipt_download_path'?: string;
17732
17764
  /**
17733
17765
  *
17734
17766
  * @type {number}
@@ -17741,6 +17773,12 @@ export interface DataTypesReceipt {
17741
17773
  * @memberof DataTypesReceipt
17742
17774
  */
17743
17775
  'receipt_number'?: string;
17776
+ /**
17777
+ * Presigned S3 URL for receipt PDF
17778
+ * @type {string}
17779
+ * @memberof DataTypesReceipt
17780
+ */
17781
+ 'receipt_pdf_url'?: string;
17744
17782
  /**
17745
17783
  * generated, sent, viewed
17746
17784
  * @type {string}
@@ -18211,6 +18249,25 @@ export interface DataTypesRemoveWordsFromLanguageListRequest {
18211
18249
  */
18212
18250
  'words': Array<string>;
18213
18251
  }
18252
+ /**
18253
+ *
18254
+ * @export
18255
+ * @interface DataTypesResetPasswordRequest
18256
+ */
18257
+ export interface DataTypesResetPasswordRequest {
18258
+ /**
18259
+ *
18260
+ * @type {string}
18261
+ * @memberof DataTypesResetPasswordRequest
18262
+ */
18263
+ 'newPassword': string;
18264
+ /**
18265
+ *
18266
+ * @type {string}
18267
+ * @memberof DataTypesResetPasswordRequest
18268
+ */
18269
+ 'token': string;
18270
+ }
18214
18271
  /**
18215
18272
  *
18216
18273
  * @export
@@ -23134,6 +23191,31 @@ export interface DataTypesVerifyPaymentRequest {
23134
23191
  */
23135
23192
  'gateway_signature': string;
23136
23193
  }
23194
+ /**
23195
+ *
23196
+ * @export
23197
+ * @interface DataTypesVerifyResetTokenResponse
23198
+ */
23199
+ export interface DataTypesVerifyResetTokenResponse {
23200
+ /**
23201
+ *
23202
+ * @type {string}
23203
+ * @memberof DataTypesVerifyResetTokenResponse
23204
+ */
23205
+ 'email'?: string;
23206
+ /**
23207
+ *
23208
+ * @type {string}
23209
+ * @memberof DataTypesVerifyResetTokenResponse
23210
+ */
23211
+ 'message'?: string;
23212
+ /**
23213
+ *
23214
+ * @type {boolean}
23215
+ * @memberof DataTypesVerifyResetTokenResponse
23216
+ */
23217
+ 'valid'?: boolean;
23218
+ }
23137
23219
  /**
23138
23220
  *
23139
23221
  * @export
@@ -25287,17 +25369,17 @@ export interface QuerySuggestionsServiceQuerySuggestionConfig {
25287
25369
  */
25288
25370
  'show_top_categories'?: number;
25289
25371
  /**
25290
- * Whether to sync enabled suggestions to Typesense
25372
+ * Enable special characters in tokenization (maps to token_separators and symbols_to_index)
25291
25373
  * @type {boolean}
25292
25374
  * @memberof QuerySuggestionsServiceQuerySuggestionConfig
25293
25375
  */
25294
- 'sync_to_typesense'?: boolean;
25376
+ 'special_chars'?: boolean;
25295
25377
  /**
25296
- * Tokenization method
25297
- * @type {string}
25378
+ * Whether to sync enabled suggestions to Typesense
25379
+ * @type {boolean}
25298
25380
  * @memberof QuerySuggestionsServiceQuerySuggestionConfig
25299
25381
  */
25300
- 'tokenization'?: string;
25382
+ 'sync_to_typesense'?: boolean;
25301
25383
  /**
25302
25384
  * Whether to sync to Typesense
25303
25385
  * @type {boolean}
@@ -25446,6 +25528,12 @@ export interface QuerySuggestionsServiceQuerySuggestionRecord {
25446
25528
  * @memberof QuerySuggestionsServiceQuerySuggestionRecord
25447
25529
  */
25448
25530
  'id'?: string;
25531
+ /**
25532
+ *
25533
+ * @type {string}
25534
+ * @memberof QuerySuggestionsServiceQuerySuggestionRecord
25535
+ */
25536
+ 'match_type'?: string;
25449
25537
  /**
25450
25538
  * Additional metadata
25451
25539
  * @type {{ [key: string]: string; }}
@@ -26052,11 +26140,17 @@ export interface QuerySuggestionsServiceUpdateSuggestionConfigRequest {
26052
26140
  */
26053
26141
  'show_top_categories'?: number;
26054
26142
  /**
26055
- * Tokenization method
26056
- * @type {string}
26143
+ * Enable special characters in tokenization
26144
+ * @type {boolean}
26145
+ * @memberof QuerySuggestionsServiceUpdateSuggestionConfigRequest
26146
+ */
26147
+ 'special_chars'?: boolean;
26148
+ /**
26149
+ * Enable/disable syncing suggestions to Typesense
26150
+ * @type {boolean}
26057
26151
  * @memberof QuerySuggestionsServiceUpdateSuggestionConfigRequest
26058
26152
  */
26059
- 'tokenization'?: string;
26153
+ 'sync_to_typesense'?: boolean;
26060
26154
  /**
26061
26155
  * Typo tolerance
26062
26156
  * @type {number}
@@ -26102,6 +26196,12 @@ export interface QuerySuggestionsServiceUpdateSuggestionRequest {
26102
26196
  'metadata'?: {
26103
26197
  [key: string]: string;
26104
26198
  };
26199
+ /**
26200
+ * Optional popularity update
26201
+ * @type {number}
26202
+ * @memberof QuerySuggestionsServiceUpdateSuggestionRequest
26203
+ */
26204
+ 'popularity'?: number;
26105
26205
  /**
26106
26206
  * Optional priority update
26107
26207
  * @type {number}
@@ -28561,7 +28661,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
28561
28661
  * @param {string} [path] Path filter (partial match)
28562
28662
  * @param {string} [storeId] Store ID filter
28563
28663
  * @param {number} [page] Page number (default: 1)
28564
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
28664
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
28565
28665
  * @param {*} [options] Override http request option.
28566
28666
  * @throws {RequiredError}
28567
28667
  */
@@ -28574,7 +28674,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
28574
28674
  * @param {string} [endDate] End date (ISO 8601 format)
28575
28675
  * @param {string} [method] HTTP method filter
28576
28676
  * @param {number} [page] Page number (default: 1)
28577
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
28677
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
28578
28678
  * @param {*} [options] Override http request option.
28579
28679
  * @throws {RequiredError}
28580
28680
  */
@@ -29010,7 +29110,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
29010
29110
  * @param {string} [path] Path filter (partial match)
29011
29111
  * @param {string} [storeId] Store ID filter
29012
29112
  * @param {number} [page] Page number (default: 1)
29013
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
29113
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29014
29114
  * @param {*} [options] Override http request option.
29015
29115
  * @throws {RequiredError}
29016
29116
  */
@@ -29023,7 +29123,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
29023
29123
  * @param {string} [endDate] End date (ISO 8601 format)
29024
29124
  * @param {string} [method] HTTP method filter
29025
29125
  * @param {number} [page] Page number (default: 1)
29026
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
29126
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29027
29127
  * @param {*} [options] Override http request option.
29028
29128
  * @throws {RequiredError}
29029
29129
  */
@@ -29459,7 +29559,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
29459
29559
  * @param {string} [path] Path filter (partial match)
29460
29560
  * @param {string} [storeId] Store ID filter
29461
29561
  * @param {number} [page] Page number (default: 1)
29462
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
29562
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29463
29563
  * @param {*} [options] Override http request option.
29464
29564
  * @throws {RequiredError}
29465
29565
  */
@@ -29472,7 +29572,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
29472
29572
  * @param {string} [endDate] End date (ISO 8601 format)
29473
29573
  * @param {string} [method] HTTP method filter
29474
29574
  * @param {number} [page] Page number (default: 1)
29475
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
29575
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29476
29576
  * @param {*} [options] Override http request option.
29477
29577
  * @throws {RequiredError}
29478
29578
  */
@@ -29928,7 +30028,7 @@ export declare class AnalyticsApi extends BaseAPI {
29928
30028
  * @param {string} [path] Path filter (partial match)
29929
30029
  * @param {string} [storeId] Store ID filter
29930
30030
  * @param {number} [page] Page number (default: 1)
29931
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
30031
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29932
30032
  * @param {*} [options] Override http request option.
29933
30033
  * @throws {RequiredError}
29934
30034
  * @memberof AnalyticsApi
@@ -29942,7 +30042,7 @@ export declare class AnalyticsApi extends BaseAPI {
29942
30042
  * @param {string} [endDate] End date (ISO 8601 format)
29943
30043
  * @param {string} [method] HTTP method filter
29944
30044
  * @param {number} [page] Page number (default: 1)
29945
- * @param {number} [perPage] Results per page (default: 50, max: 1000)
30045
+ * @param {number} [perPage] Results per page (default: 100, max: 1000)
29946
30046
  * @param {*} [options] Override http request option.
29947
30047
  * @throws {RequiredError}
29948
30048
  * @memberof AnalyticsApi
@@ -31438,6 +31538,14 @@ export declare class ArticlesApi extends BaseAPI {
31438
31538
  * @export
31439
31539
  */
31440
31540
  export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
31541
+ /**
31542
+ * Sends a password reset link to the user\'s email address
31543
+ * @summary Request password reset
31544
+ * @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
31545
+ * @param {*} [options] Override http request option.
31546
+ * @throws {RequiredError}
31547
+ */
31548
+ authForgotPasswordPost: (dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31441
31549
  /**
31442
31550
  * Authenticates a user with username and password
31443
31551
  * @summary Login a user
@@ -31453,6 +31561,22 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
31453
31561
  * @throws {RequiredError}
31454
31562
  */
31455
31563
  authLogoutPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31564
+ /**
31565
+ * Resets user password using a valid reset token
31566
+ * @summary Reset password with token
31567
+ * @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
31568
+ * @param {*} [options] Override http request option.
31569
+ * @throws {RequiredError}
31570
+ */
31571
+ authResetPasswordPost: (dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31572
+ /**
31573
+ * Checks if a password reset token is valid and not expired
31574
+ * @summary Verify reset token validity
31575
+ * @param {string} token Reset token
31576
+ * @param {*} [options] Override http request option.
31577
+ * @throws {RequiredError}
31578
+ */
31579
+ authResetPasswordTokenGet: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31456
31580
  /**
31457
31581
  * Returns refreshed session data for authenticated user
31458
31582
  * @summary Get current auth session
@@ -31475,6 +31599,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
31475
31599
  * @export
31476
31600
  */
31477
31601
  export declare const AuthApiFp: (configuration?: Configuration) => {
31602
+ /**
31603
+ * Sends a password reset link to the user\'s email address
31604
+ * @summary Request password reset
31605
+ * @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
31606
+ * @param {*} [options] Override http request option.
31607
+ * @throws {RequiredError}
31608
+ */
31609
+ authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesForgotPasswordResponse>>;
31478
31610
  /**
31479
31611
  * Authenticates a user with username and password
31480
31612
  * @summary Login a user
@@ -31490,6 +31622,22 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
31490
31622
  * @throws {RequiredError}
31491
31623
  */
31492
31624
  authLogoutPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
31625
+ /**
31626
+ * Resets user password using a valid reset token
31627
+ * @summary Reset password with token
31628
+ * @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
31629
+ * @param {*} [options] Override http request option.
31630
+ * @throws {RequiredError}
31631
+ */
31632
+ authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
31633
+ /**
31634
+ * Checks if a password reset token is valid and not expired
31635
+ * @summary Verify reset token validity
31636
+ * @param {string} token Reset token
31637
+ * @param {*} [options] Override http request option.
31638
+ * @throws {RequiredError}
31639
+ */
31640
+ authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesVerifyResetTokenResponse>>;
31493
31641
  /**
31494
31642
  * Returns refreshed session data for authenticated user
31495
31643
  * @summary Get current auth session
@@ -31512,6 +31660,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
31512
31660
  * @export
31513
31661
  */
31514
31662
  export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
31663
+ /**
31664
+ * Sends a password reset link to the user\'s email address
31665
+ * @summary Request password reset
31666
+ * @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
31667
+ * @param {*} [options] Override http request option.
31668
+ * @throws {RequiredError}
31669
+ */
31670
+ authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesForgotPasswordResponse>;
31515
31671
  /**
31516
31672
  * Authenticates a user with username and password
31517
31673
  * @summary Login a user
@@ -31527,6 +31683,22 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
31527
31683
  * @throws {RequiredError}
31528
31684
  */
31529
31685
  authLogoutPost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
31686
+ /**
31687
+ * Resets user password using a valid reset token
31688
+ * @summary Reset password with token
31689
+ * @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
31690
+ * @param {*} [options] Override http request option.
31691
+ * @throws {RequiredError}
31692
+ */
31693
+ authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
31694
+ /**
31695
+ * Checks if a password reset token is valid and not expired
31696
+ * @summary Verify reset token validity
31697
+ * @param {string} token Reset token
31698
+ * @param {*} [options] Override http request option.
31699
+ * @throws {RequiredError}
31700
+ */
31701
+ authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesVerifyResetTokenResponse>;
31530
31702
  /**
31531
31703
  * Returns refreshed session data for authenticated user
31532
31704
  * @summary Get current auth session
@@ -31551,6 +31723,15 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
31551
31723
  * @extends {BaseAPI}
31552
31724
  */
31553
31725
  export declare class AuthApi extends BaseAPI {
31726
+ /**
31727
+ * Sends a password reset link to the user\'s email address
31728
+ * @summary Request password reset
31729
+ * @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
31730
+ * @param {*} [options] Override http request option.
31731
+ * @throws {RequiredError}
31732
+ * @memberof AuthApi
31733
+ */
31734
+ authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesForgotPasswordResponse, any, {}>>;
31554
31735
  /**
31555
31736
  * Authenticates a user with username and password
31556
31737
  * @summary Login a user
@@ -31568,6 +31749,24 @@ export declare class AuthApi extends BaseAPI {
31568
31749
  * @memberof AuthApi
31569
31750
  */
31570
31751
  authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
31752
+ /**
31753
+ * Resets user password using a valid reset token
31754
+ * @summary Reset password with token
31755
+ * @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
31756
+ * @param {*} [options] Override http request option.
31757
+ * @throws {RequiredError}
31758
+ * @memberof AuthApi
31759
+ */
31760
+ authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
31761
+ /**
31762
+ * Checks if a password reset token is valid and not expired
31763
+ * @summary Verify reset token validity
31764
+ * @param {string} token Reset token
31765
+ * @param {*} [options] Override http request option.
31766
+ * @throws {RequiredError}
31767
+ * @memberof AuthApi
31768
+ */
31769
+ authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyResetTokenResponse, any, {}>>;
31571
31770
  /**
31572
31771
  * Returns refreshed session data for authenticated user
31573
31772
  * @summary Get current auth session
@@ -44581,12 +44780,15 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
44581
44780
  * @param {string} [endDate] End date (ISO 8601 format)
44582
44781
  * @param {string} [method] HTTP method filter
44583
44782
  * @param {string} [path] Path filter (partial match)
44783
+ * @param {string} [statusCode] Status code filter: \&#39;2xx\&#39;, \&#39;4xx\&#39;, \&#39;5xx\&#39;, or specific code like \&#39;200\&#39;, \&#39;404\&#39;
44784
+ * @param {string} [endpointType] Endpoint type filter: \&#39;search\&#39;, \&#39;stores\&#39;, \&#39;analytics\&#39;, \&#39;connectors\&#39;, \&#39;credits\&#39;
44785
+ * @param {string} [responseTime] Response time filter: \&#39;fast\&#39; (&lt;100ms), \&#39;medium\&#39; (100-500ms), \&#39;slow\&#39; (&gt;500ms)
44584
44786
  * @param {number} [page] Page number (default: 1)
44585
44787
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44586
44788
  * @param {*} [options] Override http request option.
44587
44789
  * @throws {RequiredError}
44588
44790
  */
44589
- adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44791
+ adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44590
44792
  /**
44591
44793
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44592
44794
  * @summary Get Store Config
@@ -44750,12 +44952,15 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
44750
44952
  * @param {string} [endDate] End date (ISO 8601 format)
44751
44953
  * @param {string} [method] HTTP method filter
44752
44954
  * @param {string} [path] Path filter (partial match)
44955
+ * @param {string} [statusCode] Status code filter: \&#39;2xx\&#39;, \&#39;4xx\&#39;, \&#39;5xx\&#39;, or specific code like \&#39;200\&#39;, \&#39;404\&#39;
44956
+ * @param {string} [endpointType] Endpoint type filter: \&#39;search\&#39;, \&#39;stores\&#39;, \&#39;analytics\&#39;, \&#39;connectors\&#39;, \&#39;credits\&#39;
44957
+ * @param {string} [responseTime] Response time filter: \&#39;fast\&#39; (&lt;100ms), \&#39;medium\&#39; (100-500ms), \&#39;slow\&#39; (&gt;500ms)
44753
44958
  * @param {number} [page] Page number (default: 1)
44754
44959
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44755
44960
  * @param {*} [options] Override http request option.
44756
44961
  * @throws {RequiredError}
44757
44962
  */
44758
- adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
44963
+ adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
44759
44964
  /**
44760
44965
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44761
44966
  * @summary Get Store Config
@@ -44919,12 +45124,15 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
44919
45124
  * @param {string} [endDate] End date (ISO 8601 format)
44920
45125
  * @param {string} [method] HTTP method filter
44921
45126
  * @param {string} [path] Path filter (partial match)
45127
+ * @param {string} [statusCode] Status code filter: \&#39;2xx\&#39;, \&#39;4xx\&#39;, \&#39;5xx\&#39;, or specific code like \&#39;200\&#39;, \&#39;404\&#39;
45128
+ * @param {string} [endpointType] Endpoint type filter: \&#39;search\&#39;, \&#39;stores\&#39;, \&#39;analytics\&#39;, \&#39;connectors\&#39;, \&#39;credits\&#39;
45129
+ * @param {string} [responseTime] Response time filter: \&#39;fast\&#39; (&lt;100ms), \&#39;medium\&#39; (100-500ms), \&#39;slow\&#39; (&gt;500ms)
44922
45130
  * @param {number} [page] Page number (default: 1)
44923
45131
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44924
45132
  * @param {*} [options] Override http request option.
44925
45133
  * @throws {RequiredError}
44926
45134
  */
44927
- adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
45135
+ adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
44928
45136
  /**
44929
45137
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44930
45138
  * @summary Get Store Config
@@ -45098,13 +45306,16 @@ export declare class StoresApi extends BaseAPI {
45098
45306
  * @param {string} [endDate] End date (ISO 8601 format)
45099
45307
  * @param {string} [method] HTTP method filter
45100
45308
  * @param {string} [path] Path filter (partial match)
45309
+ * @param {string} [statusCode] Status code filter: \&#39;2xx\&#39;, \&#39;4xx\&#39;, \&#39;5xx\&#39;, or specific code like \&#39;200\&#39;, \&#39;404\&#39;
45310
+ * @param {string} [endpointType] Endpoint type filter: \&#39;search\&#39;, \&#39;stores\&#39;, \&#39;analytics\&#39;, \&#39;connectors\&#39;, \&#39;credits\&#39;
45311
+ * @param {string} [responseTime] Response time filter: \&#39;fast\&#39; (&lt;100ms), \&#39;medium\&#39; (100-500ms), \&#39;slow\&#39; (&gt;500ms)
45101
45312
  * @param {number} [page] Page number (default: 1)
45102
45313
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
45103
45314
  * @param {*} [options] Override http request option.
45104
45315
  * @throws {RequiredError}
45105
45316
  * @memberof StoresApi
45106
45317
  */
45107
- adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
45318
+ adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
45108
45319
  /**
45109
45320
  * Retrieves the store configuration using x-store ID, including onboarding status validation
45110
45321
  * @summary Get Store Config