@seekora-ai/admin-api 1.1.54 → 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/esm/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
@@ -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; }}
@@ -26108,6 +26196,12 @@ export interface QuerySuggestionsServiceUpdateSuggestionRequest {
26108
26196
  'metadata'?: {
26109
26197
  [key: string]: string;
26110
26198
  };
26199
+ /**
26200
+ * Optional popularity update
26201
+ * @type {number}
26202
+ * @memberof QuerySuggestionsServiceUpdateSuggestionRequest
26203
+ */
26204
+ 'popularity'?: number;
26111
26205
  /**
26112
26206
  * Optional priority update
26113
26207
  * @type {number}
@@ -31444,6 +31538,14 @@ export declare class ArticlesApi extends BaseAPI {
31444
31538
  * @export
31445
31539
  */
31446
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>;
31447
31549
  /**
31448
31550
  * Authenticates a user with username and password
31449
31551
  * @summary Login a user
@@ -31459,6 +31561,22 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
31459
31561
  * @throws {RequiredError}
31460
31562
  */
31461
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>;
31462
31580
  /**
31463
31581
  * Returns refreshed session data for authenticated user
31464
31582
  * @summary Get current auth session
@@ -31481,6 +31599,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
31481
31599
  * @export
31482
31600
  */
31483
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>>;
31484
31610
  /**
31485
31611
  * Authenticates a user with username and password
31486
31612
  * @summary Login a user
@@ -31496,6 +31622,22 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
31496
31622
  * @throws {RequiredError}
31497
31623
  */
31498
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>>;
31499
31641
  /**
31500
31642
  * Returns refreshed session data for authenticated user
31501
31643
  * @summary Get current auth session
@@ -31518,6 +31660,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
31518
31660
  * @export
31519
31661
  */
31520
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>;
31521
31671
  /**
31522
31672
  * Authenticates a user with username and password
31523
31673
  * @summary Login a user
@@ -31533,6 +31683,22 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
31533
31683
  * @throws {RequiredError}
31534
31684
  */
31535
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>;
31536
31702
  /**
31537
31703
  * Returns refreshed session data for authenticated user
31538
31704
  * @summary Get current auth session
@@ -31557,6 +31723,15 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
31557
31723
  * @extends {BaseAPI}
31558
31724
  */
31559
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, {}>>;
31560
31735
  /**
31561
31736
  * Authenticates a user with username and password
31562
31737
  * @summary Login a user
@@ -31574,6 +31749,24 @@ export declare class AuthApi extends BaseAPI {
31574
31749
  * @memberof AuthApi
31575
31750
  */
31576
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, {}>>;
31577
31770
  /**
31578
31771
  * Returns refreshed session data for authenticated user
31579
31772
  * @summary Get current auth session
@@ -44587,12 +44780,15 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
44587
44780
  * @param {string} [endDate] End date (ISO 8601 format)
44588
44781
  * @param {string} [method] HTTP method filter
44589
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)
44590
44786
  * @param {number} [page] Page number (default: 1)
44591
44787
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44592
44788
  * @param {*} [options] Override http request option.
44593
44789
  * @throws {RequiredError}
44594
44790
  */
44595
- 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>;
44596
44792
  /**
44597
44793
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44598
44794
  * @summary Get Store Config
@@ -44756,12 +44952,15 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
44756
44952
  * @param {string} [endDate] End date (ISO 8601 format)
44757
44953
  * @param {string} [method] HTTP method filter
44758
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)
44759
44958
  * @param {number} [page] Page number (default: 1)
44760
44959
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44761
44960
  * @param {*} [options] Override http request option.
44762
44961
  * @throws {RequiredError}
44763
44962
  */
44764
- 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>>;
44765
44964
  /**
44766
44965
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44767
44966
  * @summary Get Store Config
@@ -44925,12 +45124,15 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
44925
45124
  * @param {string} [endDate] End date (ISO 8601 format)
44926
45125
  * @param {string} [method] HTTP method filter
44927
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)
44928
45130
  * @param {number} [page] Page number (default: 1)
44929
45131
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
44930
45132
  * @param {*} [options] Override http request option.
44931
45133
  * @throws {RequiredError}
44932
45134
  */
44933
- 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>;
44934
45136
  /**
44935
45137
  * Retrieves the store configuration using x-store ID, including onboarding status validation
44936
45138
  * @summary Get Store Config
@@ -45104,13 +45306,16 @@ export declare class StoresApi extends BaseAPI {
45104
45306
  * @param {string} [endDate] End date (ISO 8601 format)
45105
45307
  * @param {string} [method] HTTP method filter
45106
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)
45107
45312
  * @param {number} [page] Page number (default: 1)
45108
45313
  * @param {number} [perPage] Results per page (default: 50, max: 1000)
45109
45314
  * @param {*} [options] Override http request option.
45110
45315
  * @throws {RequiredError}
45111
45316
  * @memberof StoresApi
45112
45317
  */
45113
- 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, {}>>;
45114
45319
  /**
45115
45320
  * Retrieves the store configuration using x-store ID, including onboarding status validation
45116
45321
  * @summary Get Store Config