@seekora-ai/admin-api 1.1.54 → 1.1.56
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/README.md +9 -2
- package/api.ts +448 -11
- package/dist/api.d.ts +321 -8
- package/dist/api.js +228 -7
- package/dist/esm/api.d.ts +321 -8
- package/dist/esm/api.js +228 -7
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.56.tgz +0 -0
- package/seekora-ai-admin-api-1.1.54.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -7091,7 +7091,19 @@ export interface DataTypesCompanyConfigRequest {
|
|
|
7091
7091
|
* @type {string}
|
|
7092
7092
|
* @memberof DataTypesCompanyConfigRequest
|
|
7093
7093
|
*/
|
|
7094
|
+
'phone_country_code'?: string;
|
|
7095
|
+
/**
|
|
7096
|
+
* Deprecated, use PhoneCountryCode and PhoneNumberOnly
|
|
7097
|
+
* @type {string}
|
|
7098
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
7099
|
+
*/
|
|
7094
7100
|
'phone_number': string;
|
|
7101
|
+
/**
|
|
7102
|
+
*
|
|
7103
|
+
* @type {string}
|
|
7104
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
7105
|
+
*/
|
|
7106
|
+
'phone_number_only'?: string;
|
|
7095
7107
|
/**
|
|
7096
7108
|
*
|
|
7097
7109
|
* @type {string}
|
|
@@ -7610,7 +7622,19 @@ export interface DataTypesCreateOrganizationRequest {
|
|
|
7610
7622
|
* @type {string}
|
|
7611
7623
|
* @memberof DataTypesCreateOrganizationRequest
|
|
7612
7624
|
*/
|
|
7625
|
+
'PhoneCountryCode'?: string;
|
|
7626
|
+
/**
|
|
7627
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
7628
|
+
* @type {string}
|
|
7629
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
7630
|
+
*/
|
|
7613
7631
|
'PhoneNo'?: string;
|
|
7632
|
+
/**
|
|
7633
|
+
*
|
|
7634
|
+
* @type {string}
|
|
7635
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
7636
|
+
*/
|
|
7637
|
+
'PhoneNumber'?: string;
|
|
7614
7638
|
/**
|
|
7615
7639
|
*
|
|
7616
7640
|
* @type {string}
|
|
@@ -8366,6 +8390,18 @@ export interface DataTypesCreateUserRequestDto {
|
|
|
8366
8390
|
* @memberof DataTypesCreateUserRequestDto
|
|
8367
8391
|
*/
|
|
8368
8392
|
'passwordExpiryDate'?: string;
|
|
8393
|
+
/**
|
|
8394
|
+
*
|
|
8395
|
+
* @type {string}
|
|
8396
|
+
* @memberof DataTypesCreateUserRequestDto
|
|
8397
|
+
*/
|
|
8398
|
+
'phoneCountryCode'?: string;
|
|
8399
|
+
/**
|
|
8400
|
+
*
|
|
8401
|
+
* @type {string}
|
|
8402
|
+
* @memberof DataTypesCreateUserRequestDto
|
|
8403
|
+
*/
|
|
8404
|
+
'phoneNumber'?: string;
|
|
8369
8405
|
/**
|
|
8370
8406
|
*
|
|
8371
8407
|
* @type {string}
|
|
@@ -8403,7 +8439,7 @@ export interface DataTypesCreateUserRequestDto {
|
|
|
8403
8439
|
*/
|
|
8404
8440
|
'userPassword'?: string;
|
|
8405
8441
|
/**
|
|
8406
|
-
*
|
|
8442
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
8407
8443
|
* @type {string}
|
|
8408
8444
|
* @memberof DataTypesCreateUserRequestDto
|
|
8409
8445
|
*/
|
|
@@ -10211,6 +10247,32 @@ export interface DataTypesFieldMetadata {
|
|
|
10211
10247
|
*/
|
|
10212
10248
|
'type'?: string;
|
|
10213
10249
|
}
|
|
10250
|
+
/**
|
|
10251
|
+
*
|
|
10252
|
+
* @export
|
|
10253
|
+
* @interface DataTypesForgotPasswordRequest
|
|
10254
|
+
*/
|
|
10255
|
+
export interface DataTypesForgotPasswordRequest {
|
|
10256
|
+
/**
|
|
10257
|
+
*
|
|
10258
|
+
* @type {string}
|
|
10259
|
+
* @memberof DataTypesForgotPasswordRequest
|
|
10260
|
+
*/
|
|
10261
|
+
'email': string;
|
|
10262
|
+
}
|
|
10263
|
+
/**
|
|
10264
|
+
*
|
|
10265
|
+
* @export
|
|
10266
|
+
* @interface DataTypesForgotPasswordResponse
|
|
10267
|
+
*/
|
|
10268
|
+
export interface DataTypesForgotPasswordResponse {
|
|
10269
|
+
/**
|
|
10270
|
+
*
|
|
10271
|
+
* @type {string}
|
|
10272
|
+
* @memberof DataTypesForgotPasswordResponse
|
|
10273
|
+
*/
|
|
10274
|
+
'message'?: string;
|
|
10275
|
+
}
|
|
10214
10276
|
/**
|
|
10215
10277
|
*
|
|
10216
10278
|
* @export
|
|
@@ -15150,7 +15212,19 @@ export interface DataTypesOnboardingOrgDetails {
|
|
|
15150
15212
|
* @type {string}
|
|
15151
15213
|
* @memberof DataTypesOnboardingOrgDetails
|
|
15152
15214
|
*/
|
|
15215
|
+
'phoneCountryCode'?: string;
|
|
15216
|
+
/**
|
|
15217
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
15218
|
+
* @type {string}
|
|
15219
|
+
* @memberof DataTypesOnboardingOrgDetails
|
|
15220
|
+
*/
|
|
15153
15221
|
'phoneNo'?: string;
|
|
15222
|
+
/**
|
|
15223
|
+
*
|
|
15224
|
+
* @type {string}
|
|
15225
|
+
* @memberof DataTypesOnboardingOrgDetails
|
|
15226
|
+
*/
|
|
15227
|
+
'phoneNumber'?: string;
|
|
15154
15228
|
/**
|
|
15155
15229
|
*
|
|
15156
15230
|
* @type {string}
|
|
@@ -15949,11 +16023,23 @@ export interface DataTypesOrganization {
|
|
|
15949
16023
|
*/
|
|
15950
16024
|
'PAN'?: string;
|
|
15951
16025
|
/**
|
|
15952
|
-
* Nullable field
|
|
16026
|
+
* Nullable field - Country code (e.g., +1, +91, +44)
|
|
16027
|
+
* @type {string}
|
|
16028
|
+
* @memberof DataTypesOrganization
|
|
16029
|
+
*/
|
|
16030
|
+
'PhoneCountryCode'?: string;
|
|
16031
|
+
/**
|
|
16032
|
+
* Nullable field (deprecated, use PhoneCountryCode and PhoneNumber)
|
|
15953
16033
|
* @type {string}
|
|
15954
16034
|
* @memberof DataTypesOrganization
|
|
15955
16035
|
*/
|
|
15956
16036
|
'PhoneNo'?: string;
|
|
16037
|
+
/**
|
|
16038
|
+
* Nullable field - Phone number without country code
|
|
16039
|
+
* @type {string}
|
|
16040
|
+
* @memberof DataTypesOrganization
|
|
16041
|
+
*/
|
|
16042
|
+
'PhoneNumber'?: string;
|
|
15957
16043
|
/**
|
|
15958
16044
|
* State/Province for tax
|
|
15959
16045
|
* @type {string}
|
|
@@ -17154,6 +17240,18 @@ export interface DataTypesProfileResponse {
|
|
|
17154
17240
|
* @memberof DataTypesProfileResponse
|
|
17155
17241
|
*/
|
|
17156
17242
|
'lastname'?: string;
|
|
17243
|
+
/**
|
|
17244
|
+
*
|
|
17245
|
+
* @type {string}
|
|
17246
|
+
* @memberof DataTypesProfileResponse
|
|
17247
|
+
*/
|
|
17248
|
+
'phoneCountryCode'?: string;
|
|
17249
|
+
/**
|
|
17250
|
+
*
|
|
17251
|
+
* @type {string}
|
|
17252
|
+
* @memberof DataTypesProfileResponse
|
|
17253
|
+
*/
|
|
17254
|
+
'phoneNumber'?: string;
|
|
17157
17255
|
/**
|
|
17158
17256
|
*
|
|
17159
17257
|
* @type {string}
|
|
@@ -17193,7 +17291,7 @@ export interface DataTypesProfileResponse {
|
|
|
17193
17291
|
*/
|
|
17194
17292
|
'username'?: string;
|
|
17195
17293
|
/**
|
|
17196
|
-
*
|
|
17294
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
17197
17295
|
* @type {string}
|
|
17198
17296
|
* @memberof DataTypesProfileResponse
|
|
17199
17297
|
*/
|
|
@@ -17729,6 +17827,12 @@ export interface DataTypesReceipt {
|
|
|
17729
17827
|
* @memberof DataTypesReceipt
|
|
17730
17828
|
*/
|
|
17731
17829
|
'pdf_s3_key'?: string;
|
|
17830
|
+
/**
|
|
17831
|
+
* Presigned URLs for PDF download (populated by service layer)
|
|
17832
|
+
* @type {string}
|
|
17833
|
+
* @memberof DataTypesReceipt
|
|
17834
|
+
*/
|
|
17835
|
+
'receipt_download_path'?: string;
|
|
17732
17836
|
/**
|
|
17733
17837
|
*
|
|
17734
17838
|
* @type {number}
|
|
@@ -17741,6 +17845,12 @@ export interface DataTypesReceipt {
|
|
|
17741
17845
|
* @memberof DataTypesReceipt
|
|
17742
17846
|
*/
|
|
17743
17847
|
'receipt_number'?: string;
|
|
17848
|
+
/**
|
|
17849
|
+
* Presigned S3 URL for receipt PDF
|
|
17850
|
+
* @type {string}
|
|
17851
|
+
* @memberof DataTypesReceipt
|
|
17852
|
+
*/
|
|
17853
|
+
'receipt_pdf_url'?: string;
|
|
17744
17854
|
/**
|
|
17745
17855
|
* generated, sent, viewed
|
|
17746
17856
|
* @type {string}
|
|
@@ -18211,6 +18321,25 @@ export interface DataTypesRemoveWordsFromLanguageListRequest {
|
|
|
18211
18321
|
*/
|
|
18212
18322
|
'words': Array<string>;
|
|
18213
18323
|
}
|
|
18324
|
+
/**
|
|
18325
|
+
*
|
|
18326
|
+
* @export
|
|
18327
|
+
* @interface DataTypesResetPasswordRequest
|
|
18328
|
+
*/
|
|
18329
|
+
export interface DataTypesResetPasswordRequest {
|
|
18330
|
+
/**
|
|
18331
|
+
*
|
|
18332
|
+
* @type {string}
|
|
18333
|
+
* @memberof DataTypesResetPasswordRequest
|
|
18334
|
+
*/
|
|
18335
|
+
'newPassword': string;
|
|
18336
|
+
/**
|
|
18337
|
+
*
|
|
18338
|
+
* @type {string}
|
|
18339
|
+
* @memberof DataTypesResetPasswordRequest
|
|
18340
|
+
*/
|
|
18341
|
+
'token': string;
|
|
18342
|
+
}
|
|
18214
18343
|
/**
|
|
18215
18344
|
*
|
|
18216
18345
|
* @export
|
|
@@ -21831,7 +21960,19 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
21831
21960
|
* @type {string}
|
|
21832
21961
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
21833
21962
|
*/
|
|
21963
|
+
'PhoneCountryCode'?: string;
|
|
21964
|
+
/**
|
|
21965
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
21966
|
+
* @type {string}
|
|
21967
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
21968
|
+
*/
|
|
21834
21969
|
'PhoneNo'?: string;
|
|
21970
|
+
/**
|
|
21971
|
+
*
|
|
21972
|
+
* @type {string}
|
|
21973
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
21974
|
+
*/
|
|
21975
|
+
'PhoneNumber'?: string;
|
|
21835
21976
|
/**
|
|
21836
21977
|
*
|
|
21837
21978
|
* @type {string}
|
|
@@ -22047,6 +22188,18 @@ export interface DataTypesUpdateProfileRequest {
|
|
|
22047
22188
|
* @memberof DataTypesUpdateProfileRequest
|
|
22048
22189
|
*/
|
|
22049
22190
|
'lastname': string;
|
|
22191
|
+
/**
|
|
22192
|
+
*
|
|
22193
|
+
* @type {string}
|
|
22194
|
+
* @memberof DataTypesUpdateProfileRequest
|
|
22195
|
+
*/
|
|
22196
|
+
'phoneCountryCode'?: string;
|
|
22197
|
+
/**
|
|
22198
|
+
*
|
|
22199
|
+
* @type {string}
|
|
22200
|
+
* @memberof DataTypesUpdateProfileRequest
|
|
22201
|
+
*/
|
|
22202
|
+
'phoneNumber'?: string;
|
|
22050
22203
|
/**
|
|
22051
22204
|
*
|
|
22052
22205
|
* @type {string}
|
|
@@ -22605,6 +22758,18 @@ export interface DataTypesUser {
|
|
|
22605
22758
|
* @memberof DataTypesUser
|
|
22606
22759
|
*/
|
|
22607
22760
|
'passwordExpiryDate'?: string;
|
|
22761
|
+
/**
|
|
22762
|
+
* Nullable field - Country code (e.g., +1, +91, +44)
|
|
22763
|
+
* @type {string}
|
|
22764
|
+
* @memberof DataTypesUser
|
|
22765
|
+
*/
|
|
22766
|
+
'phoneCountryCode'?: string;
|
|
22767
|
+
/**
|
|
22768
|
+
* Nullable field - Phone number without country code
|
|
22769
|
+
* @type {string}
|
|
22770
|
+
* @memberof DataTypesUser
|
|
22771
|
+
*/
|
|
22772
|
+
'phoneNumber'?: string;
|
|
22608
22773
|
/**
|
|
22609
22774
|
*
|
|
22610
22775
|
* @type {string}
|
|
@@ -22654,7 +22819,7 @@ export interface DataTypesUser {
|
|
|
22654
22819
|
*/
|
|
22655
22820
|
'userPassword'?: string;
|
|
22656
22821
|
/**
|
|
22657
|
-
*
|
|
22822
|
+
* Deprecated, use PhoneCountryCode and PhoneNumber
|
|
22658
22823
|
* @type {string}
|
|
22659
22824
|
* @memberof DataTypesUser
|
|
22660
22825
|
*/
|
|
@@ -23134,6 +23299,31 @@ export interface DataTypesVerifyPaymentRequest {
|
|
|
23134
23299
|
*/
|
|
23135
23300
|
'gateway_signature': string;
|
|
23136
23301
|
}
|
|
23302
|
+
/**
|
|
23303
|
+
*
|
|
23304
|
+
* @export
|
|
23305
|
+
* @interface DataTypesVerifyResetTokenResponse
|
|
23306
|
+
*/
|
|
23307
|
+
export interface DataTypesVerifyResetTokenResponse {
|
|
23308
|
+
/**
|
|
23309
|
+
*
|
|
23310
|
+
* @type {string}
|
|
23311
|
+
* @memberof DataTypesVerifyResetTokenResponse
|
|
23312
|
+
*/
|
|
23313
|
+
'email'?: string;
|
|
23314
|
+
/**
|
|
23315
|
+
*
|
|
23316
|
+
* @type {string}
|
|
23317
|
+
* @memberof DataTypesVerifyResetTokenResponse
|
|
23318
|
+
*/
|
|
23319
|
+
'message'?: string;
|
|
23320
|
+
/**
|
|
23321
|
+
*
|
|
23322
|
+
* @type {boolean}
|
|
23323
|
+
* @memberof DataTypesVerifyResetTokenResponse
|
|
23324
|
+
*/
|
|
23325
|
+
'valid'?: boolean;
|
|
23326
|
+
}
|
|
23137
23327
|
/**
|
|
23138
23328
|
*
|
|
23139
23329
|
* @export
|
|
@@ -25446,6 +25636,12 @@ export interface QuerySuggestionsServiceQuerySuggestionRecord {
|
|
|
25446
25636
|
* @memberof QuerySuggestionsServiceQuerySuggestionRecord
|
|
25447
25637
|
*/
|
|
25448
25638
|
'id'?: string;
|
|
25639
|
+
/**
|
|
25640
|
+
*
|
|
25641
|
+
* @type {string}
|
|
25642
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionRecord
|
|
25643
|
+
*/
|
|
25644
|
+
'match_type'?: string;
|
|
25449
25645
|
/**
|
|
25450
25646
|
* Additional metadata
|
|
25451
25647
|
* @type {{ [key: string]: string; }}
|
|
@@ -26108,6 +26304,12 @@ export interface QuerySuggestionsServiceUpdateSuggestionRequest {
|
|
|
26108
26304
|
'metadata'?: {
|
|
26109
26305
|
[key: string]: string;
|
|
26110
26306
|
};
|
|
26307
|
+
/**
|
|
26308
|
+
* Optional popularity update
|
|
26309
|
+
* @type {number}
|
|
26310
|
+
* @memberof QuerySuggestionsServiceUpdateSuggestionRequest
|
|
26311
|
+
*/
|
|
26312
|
+
'popularity'?: number;
|
|
26111
26313
|
/**
|
|
26112
26314
|
* Optional priority update
|
|
26113
26315
|
* @type {number}
|
|
@@ -31444,6 +31646,14 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
31444
31646
|
* @export
|
|
31445
31647
|
*/
|
|
31446
31648
|
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
31649
|
+
/**
|
|
31650
|
+
* Sends a password reset link to the user\'s email address
|
|
31651
|
+
* @summary Request password reset
|
|
31652
|
+
* @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
|
|
31653
|
+
* @param {*} [options] Override http request option.
|
|
31654
|
+
* @throws {RequiredError}
|
|
31655
|
+
*/
|
|
31656
|
+
authForgotPasswordPost: (dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31447
31657
|
/**
|
|
31448
31658
|
* Authenticates a user with username and password
|
|
31449
31659
|
* @summary Login a user
|
|
@@ -31459,6 +31669,22 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
31459
31669
|
* @throws {RequiredError}
|
|
31460
31670
|
*/
|
|
31461
31671
|
authLogoutPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31672
|
+
/**
|
|
31673
|
+
* Resets user password using a valid reset token
|
|
31674
|
+
* @summary Reset password with token
|
|
31675
|
+
* @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
|
|
31676
|
+
* @param {*} [options] Override http request option.
|
|
31677
|
+
* @throws {RequiredError}
|
|
31678
|
+
*/
|
|
31679
|
+
authResetPasswordPost: (dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31680
|
+
/**
|
|
31681
|
+
* Checks if a password reset token is valid and not expired
|
|
31682
|
+
* @summary Verify reset token validity
|
|
31683
|
+
* @param {string} token Reset token
|
|
31684
|
+
* @param {*} [options] Override http request option.
|
|
31685
|
+
* @throws {RequiredError}
|
|
31686
|
+
*/
|
|
31687
|
+
authResetPasswordTokenGet: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31462
31688
|
/**
|
|
31463
31689
|
* Returns refreshed session data for authenticated user
|
|
31464
31690
|
* @summary Get current auth session
|
|
@@ -31481,6 +31707,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
31481
31707
|
* @export
|
|
31482
31708
|
*/
|
|
31483
31709
|
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
31710
|
+
/**
|
|
31711
|
+
* Sends a password reset link to the user\'s email address
|
|
31712
|
+
* @summary Request password reset
|
|
31713
|
+
* @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
|
|
31714
|
+
* @param {*} [options] Override http request option.
|
|
31715
|
+
* @throws {RequiredError}
|
|
31716
|
+
*/
|
|
31717
|
+
authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesForgotPasswordResponse>>;
|
|
31484
31718
|
/**
|
|
31485
31719
|
* Authenticates a user with username and password
|
|
31486
31720
|
* @summary Login a user
|
|
@@ -31496,6 +31730,22 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
31496
31730
|
* @throws {RequiredError}
|
|
31497
31731
|
*/
|
|
31498
31732
|
authLogoutPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
31733
|
+
/**
|
|
31734
|
+
* Resets user password using a valid reset token
|
|
31735
|
+
* @summary Reset password with token
|
|
31736
|
+
* @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
|
|
31737
|
+
* @param {*} [options] Override http request option.
|
|
31738
|
+
* @throws {RequiredError}
|
|
31739
|
+
*/
|
|
31740
|
+
authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
31741
|
+
/**
|
|
31742
|
+
* Checks if a password reset token is valid and not expired
|
|
31743
|
+
* @summary Verify reset token validity
|
|
31744
|
+
* @param {string} token Reset token
|
|
31745
|
+
* @param {*} [options] Override http request option.
|
|
31746
|
+
* @throws {RequiredError}
|
|
31747
|
+
*/
|
|
31748
|
+
authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesVerifyResetTokenResponse>>;
|
|
31499
31749
|
/**
|
|
31500
31750
|
* Returns refreshed session data for authenticated user
|
|
31501
31751
|
* @summary Get current auth session
|
|
@@ -31518,6 +31768,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
31518
31768
|
* @export
|
|
31519
31769
|
*/
|
|
31520
31770
|
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
31771
|
+
/**
|
|
31772
|
+
* Sends a password reset link to the user\'s email address
|
|
31773
|
+
* @summary Request password reset
|
|
31774
|
+
* @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
|
|
31775
|
+
* @param {*} [options] Override http request option.
|
|
31776
|
+
* @throws {RequiredError}
|
|
31777
|
+
*/
|
|
31778
|
+
authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesForgotPasswordResponse>;
|
|
31521
31779
|
/**
|
|
31522
31780
|
* Authenticates a user with username and password
|
|
31523
31781
|
* @summary Login a user
|
|
@@ -31533,6 +31791,22 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
31533
31791
|
* @throws {RequiredError}
|
|
31534
31792
|
*/
|
|
31535
31793
|
authLogoutPost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
31794
|
+
/**
|
|
31795
|
+
* Resets user password using a valid reset token
|
|
31796
|
+
* @summary Reset password with token
|
|
31797
|
+
* @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
|
|
31798
|
+
* @param {*} [options] Override http request option.
|
|
31799
|
+
* @throws {RequiredError}
|
|
31800
|
+
*/
|
|
31801
|
+
authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
31802
|
+
/**
|
|
31803
|
+
* Checks if a password reset token is valid and not expired
|
|
31804
|
+
* @summary Verify reset token validity
|
|
31805
|
+
* @param {string} token Reset token
|
|
31806
|
+
* @param {*} [options] Override http request option.
|
|
31807
|
+
* @throws {RequiredError}
|
|
31808
|
+
*/
|
|
31809
|
+
authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesVerifyResetTokenResponse>;
|
|
31536
31810
|
/**
|
|
31537
31811
|
* Returns refreshed session data for authenticated user
|
|
31538
31812
|
* @summary Get current auth session
|
|
@@ -31557,6 +31831,15 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
31557
31831
|
* @extends {BaseAPI}
|
|
31558
31832
|
*/
|
|
31559
31833
|
export declare class AuthApi extends BaseAPI {
|
|
31834
|
+
/**
|
|
31835
|
+
* Sends a password reset link to the user\'s email address
|
|
31836
|
+
* @summary Request password reset
|
|
31837
|
+
* @param {DataTypesForgotPasswordRequest} dataTypesForgotPasswordRequest Forgot password request
|
|
31838
|
+
* @param {*} [options] Override http request option.
|
|
31839
|
+
* @throws {RequiredError}
|
|
31840
|
+
* @memberof AuthApi
|
|
31841
|
+
*/
|
|
31842
|
+
authForgotPasswordPost(dataTypesForgotPasswordRequest: DataTypesForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesForgotPasswordResponse, any, {}>>;
|
|
31560
31843
|
/**
|
|
31561
31844
|
* Authenticates a user with username and password
|
|
31562
31845
|
* @summary Login a user
|
|
@@ -31574,6 +31857,24 @@ export declare class AuthApi extends BaseAPI {
|
|
|
31574
31857
|
* @memberof AuthApi
|
|
31575
31858
|
*/
|
|
31576
31859
|
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
31860
|
+
/**
|
|
31861
|
+
* Resets user password using a valid reset token
|
|
31862
|
+
* @summary Reset password with token
|
|
31863
|
+
* @param {DataTypesResetPasswordRequest} dataTypesResetPasswordRequest Reset password request
|
|
31864
|
+
* @param {*} [options] Override http request option.
|
|
31865
|
+
* @throws {RequiredError}
|
|
31866
|
+
* @memberof AuthApi
|
|
31867
|
+
*/
|
|
31868
|
+
authResetPasswordPost(dataTypesResetPasswordRequest: DataTypesResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
31869
|
+
/**
|
|
31870
|
+
* Checks if a password reset token is valid and not expired
|
|
31871
|
+
* @summary Verify reset token validity
|
|
31872
|
+
* @param {string} token Reset token
|
|
31873
|
+
* @param {*} [options] Override http request option.
|
|
31874
|
+
* @throws {RequiredError}
|
|
31875
|
+
* @memberof AuthApi
|
|
31876
|
+
*/
|
|
31877
|
+
authResetPasswordTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyResetTokenResponse, any, {}>>;
|
|
31577
31878
|
/**
|
|
31578
31879
|
* Returns refreshed session data for authenticated user
|
|
31579
31880
|
* @summary Get current auth session
|
|
@@ -44587,12 +44888,15 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
44587
44888
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
44588
44889
|
* @param {string} [method] HTTP method filter
|
|
44589
44890
|
* @param {string} [path] Path filter (partial match)
|
|
44891
|
+
* @param {string} [statusCode] Status code filter: \'2xx\', \'4xx\', \'5xx\', or specific code like \'200\', \'404\'
|
|
44892
|
+
* @param {string} [endpointType] Endpoint type filter: \'search\', \'stores\', \'analytics\', \'connectors\', \'credits\'
|
|
44893
|
+
* @param {string} [responseTime] Response time filter: \'fast\' (<100ms), \'medium\' (100-500ms), \'slow\' (>500ms)
|
|
44590
44894
|
* @param {number} [page] Page number (default: 1)
|
|
44591
44895
|
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
44592
44896
|
* @param {*} [options] Override http request option.
|
|
44593
44897
|
* @throws {RequiredError}
|
|
44594
44898
|
*/
|
|
44595
|
-
adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44899
|
+
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
44900
|
/**
|
|
44597
44901
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
44598
44902
|
* @summary Get Store Config
|
|
@@ -44756,12 +45060,15 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
44756
45060
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
44757
45061
|
* @param {string} [method] HTTP method filter
|
|
44758
45062
|
* @param {string} [path] Path filter (partial match)
|
|
45063
|
+
* @param {string} [statusCode] Status code filter: \'2xx\', \'4xx\', \'5xx\', or specific code like \'200\', \'404\'
|
|
45064
|
+
* @param {string} [endpointType] Endpoint type filter: \'search\', \'stores\', \'analytics\', \'connectors\', \'credits\'
|
|
45065
|
+
* @param {string} [responseTime] Response time filter: \'fast\' (<100ms), \'medium\' (100-500ms), \'slow\' (>500ms)
|
|
44759
45066
|
* @param {number} [page] Page number (default: 1)
|
|
44760
45067
|
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
44761
45068
|
* @param {*} [options] Override http request option.
|
|
44762
45069
|
* @throws {RequiredError}
|
|
44763
45070
|
*/
|
|
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>>;
|
|
45071
|
+
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
45072
|
/**
|
|
44766
45073
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
44767
45074
|
* @summary Get Store Config
|
|
@@ -44925,12 +45232,15 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
44925
45232
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
44926
45233
|
* @param {string} [method] HTTP method filter
|
|
44927
45234
|
* @param {string} [path] Path filter (partial match)
|
|
45235
|
+
* @param {string} [statusCode] Status code filter: \'2xx\', \'4xx\', \'5xx\', or specific code like \'200\', \'404\'
|
|
45236
|
+
* @param {string} [endpointType] Endpoint type filter: \'search\', \'stores\', \'analytics\', \'connectors\', \'credits\'
|
|
45237
|
+
* @param {string} [responseTime] Response time filter: \'fast\' (<100ms), \'medium\' (100-500ms), \'slow\' (>500ms)
|
|
44928
45238
|
* @param {number} [page] Page number (default: 1)
|
|
44929
45239
|
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
44930
45240
|
* @param {*} [options] Override http request option.
|
|
44931
45241
|
* @throws {RequiredError}
|
|
44932
45242
|
*/
|
|
44933
|
-
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
|
|
45243
|
+
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
45244
|
/**
|
|
44935
45245
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
44936
45246
|
* @summary Get Store Config
|
|
@@ -45104,13 +45414,16 @@ export declare class StoresApi extends BaseAPI {
|
|
|
45104
45414
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
45105
45415
|
* @param {string} [method] HTTP method filter
|
|
45106
45416
|
* @param {string} [path] Path filter (partial match)
|
|
45417
|
+
* @param {string} [statusCode] Status code filter: \'2xx\', \'4xx\', \'5xx\', or specific code like \'200\', \'404\'
|
|
45418
|
+
* @param {string} [endpointType] Endpoint type filter: \'search\', \'stores\', \'analytics\', \'connectors\', \'credits\'
|
|
45419
|
+
* @param {string} [responseTime] Response time filter: \'fast\' (<100ms), \'medium\' (100-500ms), \'slow\' (>500ms)
|
|
45107
45420
|
* @param {number} [page] Page number (default: 1)
|
|
45108
45421
|
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
45109
45422
|
* @param {*} [options] Override http request option.
|
|
45110
45423
|
* @throws {RequiredError}
|
|
45111
45424
|
* @memberof StoresApi
|
|
45112
45425
|
*/
|
|
45113
|
-
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
|
|
45426
|
+
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
45427
|
/**
|
|
45115
45428
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
45116
45429
|
* @summary Get Store Config
|