@seekora-ai/admin-api 1.1.50 → 1.1.51
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 -4
- package/api.ts +508 -157
- package/dist/api.d.ts +335 -152
- package/dist/api.js +331 -26
- package/dist/esm/api.d.ts +335 -152
- package/dist/esm/api.js +331 -26
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.51.tgz +0 -0
- package/seekora-ai-admin-api-1.1.50.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -6027,6 +6027,12 @@ export interface DataTypesAdminSearchRequest {
|
|
|
6027
6027
|
* @memberof DataTypesAdminSearchRequest
|
|
6028
6028
|
*/
|
|
6029
6029
|
'analytics_tags'?: Array<string>;
|
|
6030
|
+
/**
|
|
6031
|
+
* Anonymous/cookie ID for personalization
|
|
6032
|
+
* @type {string}
|
|
6033
|
+
* @memberof DataTypesAdminSearchRequest
|
|
6034
|
+
*/
|
|
6035
|
+
'anon_id'?: string;
|
|
6030
6036
|
/**
|
|
6031
6037
|
*
|
|
6032
6038
|
* @type {string}
|
|
@@ -6075,6 +6081,12 @@ export interface DataTypesAdminSearchRequest {
|
|
|
6075
6081
|
* @memberof DataTypesAdminSearchRequest
|
|
6076
6082
|
*/
|
|
6077
6083
|
'q': string;
|
|
6084
|
+
/**
|
|
6085
|
+
* Session ID for session-based personalization
|
|
6086
|
+
* @type {string}
|
|
6087
|
+
* @memberof DataTypesAdminSearchRequest
|
|
6088
|
+
*/
|
|
6089
|
+
'session_id'?: string;
|
|
6078
6090
|
/**
|
|
6079
6091
|
*
|
|
6080
6092
|
* @type {string}
|
|
@@ -6099,6 +6111,12 @@ export interface DataTypesAdminSearchRequest {
|
|
|
6099
6111
|
* @memberof DataTypesAdminSearchRequest
|
|
6100
6112
|
*/
|
|
6101
6113
|
'synonym_sets'?: Array<string>;
|
|
6114
|
+
/**
|
|
6115
|
+
* Personalization fields (optional, backward compatible)
|
|
6116
|
+
* @type {string}
|
|
6117
|
+
* @memberof DataTypesAdminSearchRequest
|
|
6118
|
+
*/
|
|
6119
|
+
'user_id'?: string;
|
|
6102
6120
|
/**
|
|
6103
6121
|
* If true, returns only display fields instead of full document (used in public API only)
|
|
6104
6122
|
* @type {boolean}
|
|
@@ -6887,6 +6905,12 @@ export interface DataTypesCompanyConfig {
|
|
|
6887
6905
|
* @memberof DataTypesCompanyConfig
|
|
6888
6906
|
*/
|
|
6889
6907
|
'billing_email'?: string;
|
|
6908
|
+
/**
|
|
6909
|
+
* Corporate Identification Number (e.g., \"U72900MH2016OPC286023\")
|
|
6910
|
+
* @type {string}
|
|
6911
|
+
* @memberof DataTypesCompanyConfig
|
|
6912
|
+
*/
|
|
6913
|
+
'cin'?: string;
|
|
6890
6914
|
/**
|
|
6891
6915
|
*
|
|
6892
6916
|
* @type {string}
|
|
@@ -6923,6 +6947,12 @@ export interface DataTypesCompanyConfig {
|
|
|
6923
6947
|
* @memberof DataTypesCompanyConfig
|
|
6924
6948
|
*/
|
|
6925
6949
|
'ifsc_code'?: string;
|
|
6950
|
+
/**
|
|
6951
|
+
* Legal business name (e.g., \"INVENTIVEPEAK IT SOLUTIONS PRIVATE LIMITED\")
|
|
6952
|
+
* @type {string}
|
|
6953
|
+
* @memberof DataTypesCompanyConfig
|
|
6954
|
+
*/
|
|
6955
|
+
'legal_name'?: string;
|
|
6926
6956
|
/**
|
|
6927
6957
|
*
|
|
6928
6958
|
* @type {string}
|
|
@@ -8687,6 +8717,67 @@ export interface DataTypesCreditsConsumedGraphResponse {
|
|
|
8687
8717
|
*/
|
|
8688
8718
|
'total_credits'?: number;
|
|
8689
8719
|
}
|
|
8720
|
+
/**
|
|
8721
|
+
*
|
|
8722
|
+
* @export
|
|
8723
|
+
* @interface DataTypesCurrentPlanInfo
|
|
8724
|
+
*/
|
|
8725
|
+
export interface DataTypesCurrentPlanInfo {
|
|
8726
|
+
/**
|
|
8727
|
+
*
|
|
8728
|
+
* @type {boolean}
|
|
8729
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8730
|
+
*/
|
|
8731
|
+
'auto_renewal'?: boolean;
|
|
8732
|
+
/**
|
|
8733
|
+
*
|
|
8734
|
+
* @type {string}
|
|
8735
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8736
|
+
*/
|
|
8737
|
+
'billing_cycle'?: string;
|
|
8738
|
+
/**
|
|
8739
|
+
*
|
|
8740
|
+
* @type {string}
|
|
8741
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8742
|
+
*/
|
|
8743
|
+
'end_date'?: string;
|
|
8744
|
+
/**
|
|
8745
|
+
*
|
|
8746
|
+
* @type {number}
|
|
8747
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8748
|
+
*/
|
|
8749
|
+
'plan_id'?: number;
|
|
8750
|
+
/**
|
|
8751
|
+
*
|
|
8752
|
+
* @type {string}
|
|
8753
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8754
|
+
*/
|
|
8755
|
+
'plan_name'?: string;
|
|
8756
|
+
/**
|
|
8757
|
+
*
|
|
8758
|
+
* @type {string}
|
|
8759
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8760
|
+
*/
|
|
8761
|
+
'plan_type'?: string;
|
|
8762
|
+
/**
|
|
8763
|
+
*
|
|
8764
|
+
* @type {string}
|
|
8765
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8766
|
+
*/
|
|
8767
|
+
'start_date'?: string;
|
|
8768
|
+
/**
|
|
8769
|
+
*
|
|
8770
|
+
* @type {string}
|
|
8771
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8772
|
+
*/
|
|
8773
|
+
'status'?: string;
|
|
8774
|
+
/**
|
|
8775
|
+
* Gateway subscription ID (Razorpay subscription ID)
|
|
8776
|
+
* @type {string}
|
|
8777
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
8778
|
+
*/
|
|
8779
|
+
'subscription_id'?: string;
|
|
8780
|
+
}
|
|
8690
8781
|
/**
|
|
8691
8782
|
*
|
|
8692
8783
|
* @export
|
|
@@ -10373,6 +10464,31 @@ export interface DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse {
|
|
|
10373
10464
|
*/
|
|
10374
10465
|
'status'?: number;
|
|
10375
10466
|
}
|
|
10467
|
+
/**
|
|
10468
|
+
*
|
|
10469
|
+
* @export
|
|
10470
|
+
* @interface DataTypesGenericResponseDataTypesCurrentPlanInfo
|
|
10471
|
+
*/
|
|
10472
|
+
export interface DataTypesGenericResponseDataTypesCurrentPlanInfo {
|
|
10473
|
+
/**
|
|
10474
|
+
*
|
|
10475
|
+
* @type {DataTypesCurrentPlanInfo}
|
|
10476
|
+
* @memberof DataTypesGenericResponseDataTypesCurrentPlanInfo
|
|
10477
|
+
*/
|
|
10478
|
+
'data'?: DataTypesCurrentPlanInfo;
|
|
10479
|
+
/**
|
|
10480
|
+
*
|
|
10481
|
+
* @type {string}
|
|
10482
|
+
* @memberof DataTypesGenericResponseDataTypesCurrentPlanInfo
|
|
10483
|
+
*/
|
|
10484
|
+
'message'?: string;
|
|
10485
|
+
/**
|
|
10486
|
+
*
|
|
10487
|
+
* @type {number}
|
|
10488
|
+
* @memberof DataTypesGenericResponseDataTypesCurrentPlanInfo
|
|
10489
|
+
*/
|
|
10490
|
+
'status'?: number;
|
|
10491
|
+
}
|
|
10376
10492
|
/**
|
|
10377
10493
|
*
|
|
10378
10494
|
* @export
|
|
@@ -10648,6 +10764,31 @@ export interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
|
|
|
10648
10764
|
*/
|
|
10649
10765
|
'status'?: number;
|
|
10650
10766
|
}
|
|
10767
|
+
/**
|
|
10768
|
+
*
|
|
10769
|
+
* @export
|
|
10770
|
+
* @interface DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
10771
|
+
*/
|
|
10772
|
+
export interface DataTypesGenericResponseDataTypesRolePermissionsResponse {
|
|
10773
|
+
/**
|
|
10774
|
+
*
|
|
10775
|
+
* @type {DataTypesRolePermissionsResponse}
|
|
10776
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
10777
|
+
*/
|
|
10778
|
+
'data'?: DataTypesRolePermissionsResponse;
|
|
10779
|
+
/**
|
|
10780
|
+
*
|
|
10781
|
+
* @type {string}
|
|
10782
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
10783
|
+
*/
|
|
10784
|
+
'message'?: string;
|
|
10785
|
+
/**
|
|
10786
|
+
*
|
|
10787
|
+
* @type {number}
|
|
10788
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
10789
|
+
*/
|
|
10790
|
+
'status'?: number;
|
|
10791
|
+
}
|
|
10651
10792
|
/**
|
|
10652
10793
|
*
|
|
10653
10794
|
* @export
|
|
@@ -11781,7 +11922,7 @@ export interface DataTypesInviteMemberRequest {
|
|
|
11781
11922
|
*/
|
|
11782
11923
|
'member_role'?: any;
|
|
11783
11924
|
/**
|
|
11784
|
-
* Whether to send invitation email
|
|
11925
|
+
* Whether to send invitation email (defaults to true if not specified)
|
|
11785
11926
|
* @type {boolean}
|
|
11786
11927
|
* @memberof DataTypesInviteMemberRequest
|
|
11787
11928
|
*/
|
|
@@ -17038,6 +17179,12 @@ export interface DataTypesPublicSearchRequest {
|
|
|
17038
17179
|
* @memberof DataTypesPublicSearchRequest
|
|
17039
17180
|
*/
|
|
17040
17181
|
'analytics_tags'?: Array<string>;
|
|
17182
|
+
/**
|
|
17183
|
+
* Anonymous/cookie ID for personalization
|
|
17184
|
+
* @type {string}
|
|
17185
|
+
* @memberof DataTypesPublicSearchRequest
|
|
17186
|
+
*/
|
|
17187
|
+
'anon_id'?: string;
|
|
17041
17188
|
/**
|
|
17042
17189
|
*
|
|
17043
17190
|
* @type {string}
|
|
@@ -17080,6 +17227,12 @@ export interface DataTypesPublicSearchRequest {
|
|
|
17080
17227
|
* @memberof DataTypesPublicSearchRequest
|
|
17081
17228
|
*/
|
|
17082
17229
|
'q': string;
|
|
17230
|
+
/**
|
|
17231
|
+
* Session ID for session-based personalization
|
|
17232
|
+
* @type {string}
|
|
17233
|
+
* @memberof DataTypesPublicSearchRequest
|
|
17234
|
+
*/
|
|
17235
|
+
'session_id'?: string;
|
|
17083
17236
|
/**
|
|
17084
17237
|
*
|
|
17085
17238
|
* @type {string}
|
|
@@ -17104,6 +17257,12 @@ export interface DataTypesPublicSearchRequest {
|
|
|
17104
17257
|
* @memberof DataTypesPublicSearchRequest
|
|
17105
17258
|
*/
|
|
17106
17259
|
'synonym_sets'?: Array<string>;
|
|
17260
|
+
/**
|
|
17261
|
+
* Personalization fields (optional, backward compatible)
|
|
17262
|
+
* @type {string}
|
|
17263
|
+
* @memberof DataTypesPublicSearchRequest
|
|
17264
|
+
*/
|
|
17265
|
+
'user_id'?: string;
|
|
17107
17266
|
/**
|
|
17108
17267
|
* If true, returns only display fields instead of full document (used in public API only)
|
|
17109
17268
|
* @type {boolean}
|
|
@@ -22418,55 +22577,6 @@ export interface DataTypesUserCustomPermissionsRequest {
|
|
|
22418
22577
|
*/
|
|
22419
22578
|
'useCustomPermissions': boolean;
|
|
22420
22579
|
}
|
|
22421
|
-
/**
|
|
22422
|
-
*
|
|
22423
|
-
* @export
|
|
22424
|
-
* @interface DataTypesUserCustomPermissionsResponse
|
|
22425
|
-
*/
|
|
22426
|
-
export interface DataTypesUserCustomPermissionsResponse {
|
|
22427
|
-
/**
|
|
22428
|
-
* Regular role ID if not using custom
|
|
22429
|
-
* @type {number}
|
|
22430
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22431
|
-
*/
|
|
22432
|
-
'roleId'?: number;
|
|
22433
|
-
/**
|
|
22434
|
-
*
|
|
22435
|
-
* @type {string}
|
|
22436
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22437
|
-
*/
|
|
22438
|
-
'roleName'?: string;
|
|
22439
|
-
/**
|
|
22440
|
-
* Route-level permissions
|
|
22441
|
-
* @type {Array<DataTypesRoleRight>}
|
|
22442
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22443
|
-
*/
|
|
22444
|
-
'roleRights'?: Array<DataTypesRoleRight>;
|
|
22445
|
-
/**
|
|
22446
|
-
* Store-level permissions
|
|
22447
|
-
* @type {Array<DataTypesUserStoreAccessWithPermissions>}
|
|
22448
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22449
|
-
*/
|
|
22450
|
-
'storeAccess'?: Array<DataTypesUserStoreAccessWithPermissions>;
|
|
22451
|
-
/**
|
|
22452
|
-
*
|
|
22453
|
-
* @type {boolean}
|
|
22454
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22455
|
-
*/
|
|
22456
|
-
'useCustomPermissions'?: boolean;
|
|
22457
|
-
/**
|
|
22458
|
-
*
|
|
22459
|
-
* @type {number}
|
|
22460
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22461
|
-
*/
|
|
22462
|
-
'userId'?: number;
|
|
22463
|
-
/**
|
|
22464
|
-
* User-specific role ID if using custom
|
|
22465
|
-
* @type {number}
|
|
22466
|
-
* @memberof DataTypesUserCustomPermissionsResponse
|
|
22467
|
-
*/
|
|
22468
|
-
'userSpecificRoleId'?: number;
|
|
22469
|
-
}
|
|
22470
22580
|
/**
|
|
22471
22581
|
*
|
|
22472
22582
|
* @export
|
|
@@ -22656,85 +22766,6 @@ export interface DataTypesUserStoreAccess {
|
|
|
22656
22766
|
*/
|
|
22657
22767
|
'x_store_id'?: string;
|
|
22658
22768
|
}
|
|
22659
|
-
/**
|
|
22660
|
-
*
|
|
22661
|
-
* @export
|
|
22662
|
-
* @interface DataTypesUserStoreAccessWithPermissions
|
|
22663
|
-
*/
|
|
22664
|
-
export interface DataTypesUserStoreAccessWithPermissions {
|
|
22665
|
-
/**
|
|
22666
|
-
*
|
|
22667
|
-
* @type {string}
|
|
22668
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22669
|
-
*/
|
|
22670
|
-
'access_level'?: string;
|
|
22671
|
-
/**
|
|
22672
|
-
*
|
|
22673
|
-
* @type {boolean}
|
|
22674
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22675
|
-
*/
|
|
22676
|
-
'can_add'?: boolean;
|
|
22677
|
-
/**
|
|
22678
|
-
*
|
|
22679
|
-
* @type {boolean}
|
|
22680
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22681
|
-
*/
|
|
22682
|
-
'can_approve'?: boolean;
|
|
22683
|
-
/**
|
|
22684
|
-
*
|
|
22685
|
-
* @type {boolean}
|
|
22686
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22687
|
-
*/
|
|
22688
|
-
'can_delete'?: boolean;
|
|
22689
|
-
/**
|
|
22690
|
-
*
|
|
22691
|
-
* @type {boolean}
|
|
22692
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22693
|
-
*/
|
|
22694
|
-
'can_modify'?: boolean;
|
|
22695
|
-
/**
|
|
22696
|
-
*
|
|
22697
|
-
* @type {boolean}
|
|
22698
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22699
|
-
*/
|
|
22700
|
-
'can_view'?: boolean;
|
|
22701
|
-
/**
|
|
22702
|
-
*
|
|
22703
|
-
* @type {boolean}
|
|
22704
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22705
|
-
*/
|
|
22706
|
-
'full_access'?: boolean;
|
|
22707
|
-
/**
|
|
22708
|
-
*
|
|
22709
|
-
* @type {number}
|
|
22710
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22711
|
-
*/
|
|
22712
|
-
'org_id'?: number;
|
|
22713
|
-
/**
|
|
22714
|
-
*
|
|
22715
|
-
* @type {string}
|
|
22716
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22717
|
-
*/
|
|
22718
|
-
'org_name'?: string;
|
|
22719
|
-
/**
|
|
22720
|
-
*
|
|
22721
|
-
* @type {number}
|
|
22722
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22723
|
-
*/
|
|
22724
|
-
'store_id'?: number;
|
|
22725
|
-
/**
|
|
22726
|
-
*
|
|
22727
|
-
* @type {string}
|
|
22728
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22729
|
-
*/
|
|
22730
|
-
'store_name'?: string;
|
|
22731
|
-
/**
|
|
22732
|
-
*
|
|
22733
|
-
* @type {string}
|
|
22734
|
-
* @memberof DataTypesUserStoreAccessWithPermissions
|
|
22735
|
-
*/
|
|
22736
|
-
'x_store_id'?: string;
|
|
22737
|
-
}
|
|
22738
22769
|
/**
|
|
22739
22770
|
*
|
|
22740
22771
|
* @export
|
|
@@ -30984,6 +31015,13 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
|
|
|
30984
31015
|
* @export
|
|
30985
31016
|
*/
|
|
30986
31017
|
export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
31018
|
+
/**
|
|
31019
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31020
|
+
* @summary Get current active plan details
|
|
31021
|
+
* @param {*} [options] Override http request option.
|
|
31022
|
+
* @throws {RequiredError}
|
|
31023
|
+
*/
|
|
31024
|
+
adminBillingActivePlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30987
31025
|
/**
|
|
30988
31026
|
* Retrieves paginated billing alerts with store filtering and full-text search across: alert ID, alert name, alert type, threshold values, units, org/store name, created by name, emails, and JSON fields.
|
|
30989
31027
|
* @summary Get billing alerts
|
|
@@ -31324,6 +31362,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
31324
31362
|
* @export
|
|
31325
31363
|
*/
|
|
31326
31364
|
export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
31365
|
+
/**
|
|
31366
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31367
|
+
* @summary Get current active plan details
|
|
31368
|
+
* @param {*} [options] Override http request option.
|
|
31369
|
+
* @throws {RequiredError}
|
|
31370
|
+
*/
|
|
31371
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCurrentPlanInfo>>;
|
|
31327
31372
|
/**
|
|
31328
31373
|
* Retrieves paginated billing alerts with store filtering and full-text search across: alert ID, alert name, alert type, threshold values, units, org/store name, created by name, emails, and JSON fields.
|
|
31329
31374
|
* @summary Get billing alerts
|
|
@@ -31664,6 +31709,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
31664
31709
|
* @export
|
|
31665
31710
|
*/
|
|
31666
31711
|
export declare const BillingDashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
31712
|
+
/**
|
|
31713
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31714
|
+
* @summary Get current active plan details
|
|
31715
|
+
* @param {*} [options] Override http request option.
|
|
31716
|
+
* @throws {RequiredError}
|
|
31717
|
+
*/
|
|
31718
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCurrentPlanInfo>;
|
|
31667
31719
|
/**
|
|
31668
31720
|
* Retrieves paginated billing alerts with store filtering and full-text search across: alert ID, alert name, alert type, threshold values, units, org/store name, created by name, emails, and JSON fields.
|
|
31669
31721
|
* @summary Get billing alerts
|
|
@@ -32006,6 +32058,14 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
32006
32058
|
* @extends {BaseAPI}
|
|
32007
32059
|
*/
|
|
32008
32060
|
export declare class BillingDashboardApi extends BaseAPI {
|
|
32061
|
+
/**
|
|
32062
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
32063
|
+
* @summary Get current active plan details
|
|
32064
|
+
* @param {*} [options] Override http request option.
|
|
32065
|
+
* @throws {RequiredError}
|
|
32066
|
+
* @memberof BillingDashboardApi
|
|
32067
|
+
*/
|
|
32068
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCurrentPlanInfo, any, {}>>;
|
|
32009
32069
|
/**
|
|
32010
32070
|
* Retrieves paginated billing alerts with store filtering and full-text search across: alert ID, alert name, alert type, threshold values, units, org/store name, created by name, emails, and JSON fields.
|
|
32011
32071
|
* @summary Get billing alerts
|
|
@@ -37122,6 +37182,14 @@ export declare class NotificationPreferencesApi extends BaseAPI {
|
|
|
37122
37182
|
* @export
|
|
37123
37183
|
*/
|
|
37124
37184
|
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
37185
|
+
/**
|
|
37186
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37187
|
+
* @summary Republish notification to RabbitMQ
|
|
37188
|
+
* @param {number} id Notification ID
|
|
37189
|
+
* @param {*} [options] Override http request option.
|
|
37190
|
+
* @throws {RequiredError}
|
|
37191
|
+
*/
|
|
37192
|
+
v1AdminNotificationsIdRepublishPost: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37125
37193
|
/**
|
|
37126
37194
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37127
37195
|
* @summary Get user notifications
|
|
@@ -37183,6 +37251,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
37183
37251
|
* @export
|
|
37184
37252
|
*/
|
|
37185
37253
|
export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
37254
|
+
/**
|
|
37255
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37256
|
+
* @summary Republish notification to RabbitMQ
|
|
37257
|
+
* @param {number} id Notification ID
|
|
37258
|
+
* @param {*} [options] Override http request option.
|
|
37259
|
+
* @throws {RequiredError}
|
|
37260
|
+
*/
|
|
37261
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
37186
37262
|
/**
|
|
37187
37263
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37188
37264
|
* @summary Get user notifications
|
|
@@ -37244,6 +37320,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
37244
37320
|
* @export
|
|
37245
37321
|
*/
|
|
37246
37322
|
export declare const NotificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
37323
|
+
/**
|
|
37324
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37325
|
+
* @summary Republish notification to RabbitMQ
|
|
37326
|
+
* @param {number} id Notification ID
|
|
37327
|
+
* @param {*} [options] Override http request option.
|
|
37328
|
+
* @throws {RequiredError}
|
|
37329
|
+
*/
|
|
37330
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
37247
37331
|
/**
|
|
37248
37332
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37249
37333
|
* @summary Get user notifications
|
|
@@ -37307,6 +37391,15 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
37307
37391
|
* @extends {BaseAPI}
|
|
37308
37392
|
*/
|
|
37309
37393
|
export declare class NotificationsApi extends BaseAPI {
|
|
37394
|
+
/**
|
|
37395
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37396
|
+
* @summary Republish notification to RabbitMQ
|
|
37397
|
+
* @param {number} id Notification ID
|
|
37398
|
+
* @param {*} [options] Override http request option.
|
|
37399
|
+
* @throws {RequiredError}
|
|
37400
|
+
* @memberof NotificationsApi
|
|
37401
|
+
*/
|
|
37402
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
37310
37403
|
/**
|
|
37311
37404
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37312
37405
|
* @summary Get user notifications
|
|
@@ -39526,10 +39619,13 @@ export declare const QuerySuggestionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
39526
39619
|
*/
|
|
39527
39620
|
v1SuggestionsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39528
39621
|
/**
|
|
39529
|
-
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges.
|
|
39622
|
+
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
39530
39623
|
* @summary Get Query Suggestions
|
|
39531
39624
|
* @param {string} xStoreid Store ID
|
|
39532
39625
|
* @param {string} xStoresecret Store Secret
|
|
39626
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39627
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39628
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39533
39629
|
* @param {string} [query] Partial query to get suggestions for
|
|
39534
39630
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39535
39631
|
* @param {number} [page] Page number for pagination
|
|
@@ -39545,7 +39641,7 @@ export declare const QuerySuggestionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
39545
39641
|
* @param {*} [options] Override http request option.
|
|
39546
39642
|
* @throws {RequiredError}
|
|
39547
39643
|
*/
|
|
39548
|
-
v1SuggestionsQueriesGet: (xStoreid: string, xStoresecret: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39644
|
+
v1SuggestionsQueriesGet: (xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39549
39645
|
};
|
|
39550
39646
|
/**
|
|
39551
39647
|
* QuerySuggestionsApi - functional programming interface
|
|
@@ -39562,10 +39658,13 @@ export declare const QuerySuggestionsApiFp: (configuration?: Configuration) => {
|
|
|
39562
39658
|
*/
|
|
39563
39659
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SuggestionsConfigGet200Response>>;
|
|
39564
39660
|
/**
|
|
39565
|
-
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges.
|
|
39661
|
+
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
39566
39662
|
* @summary Get Query Suggestions
|
|
39567
39663
|
* @param {string} xStoreid Store ID
|
|
39568
39664
|
* @param {string} xStoresecret Store Secret
|
|
39665
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39666
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39667
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39569
39668
|
* @param {string} [query] Partial query to get suggestions for
|
|
39570
39669
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39571
39670
|
* @param {number} [page] Page number for pagination
|
|
@@ -39581,7 +39680,7 @@ export declare const QuerySuggestionsApiFp: (configuration?: Configuration) => {
|
|
|
39581
39680
|
* @param {*} [options] Override http request option.
|
|
39582
39681
|
* @throws {RequiredError}
|
|
39583
39682
|
*/
|
|
39584
|
-
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>>;
|
|
39683
|
+
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>>;
|
|
39585
39684
|
};
|
|
39586
39685
|
/**
|
|
39587
39686
|
* QuerySuggestionsApi - factory interface
|
|
@@ -39598,10 +39697,13 @@ export declare const QuerySuggestionsApiFactory: (configuration?: Configuration,
|
|
|
39598
39697
|
*/
|
|
39599
39698
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<V1SuggestionsConfigGet200Response>;
|
|
39600
39699
|
/**
|
|
39601
|
-
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges.
|
|
39700
|
+
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
39602
39701
|
* @summary Get Query Suggestions
|
|
39603
39702
|
* @param {string} xStoreid Store ID
|
|
39604
39703
|
* @param {string} xStoresecret Store Secret
|
|
39704
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39705
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39706
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39605
39707
|
* @param {string} [query] Partial query to get suggestions for
|
|
39606
39708
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39607
39709
|
* @param {number} [page] Page number for pagination
|
|
@@ -39617,7 +39719,7 @@ export declare const QuerySuggestionsApiFactory: (configuration?: Configuration,
|
|
|
39617
39719
|
* @param {*} [options] Override http request option.
|
|
39618
39720
|
* @throws {RequiredError}
|
|
39619
39721
|
*/
|
|
39620
|
-
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>;
|
|
39722
|
+
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>;
|
|
39621
39723
|
};
|
|
39622
39724
|
/**
|
|
39623
39725
|
* QuerySuggestionsApi - object-oriented interface
|
|
@@ -39637,10 +39739,13 @@ export declare class QuerySuggestionsApi extends BaseAPI {
|
|
|
39637
39739
|
*/
|
|
39638
39740
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SuggestionsConfigGet200Response, any, {}>>;
|
|
39639
39741
|
/**
|
|
39640
|
-
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges.
|
|
39742
|
+
* Retrieve query suggestions based on search analytics data with popularity ranking and optional category/facet enrichment. Supports partial query matching, analytics tags filtering, and configurable time ranges. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
39641
39743
|
* @summary Get Query Suggestions
|
|
39642
39744
|
* @param {string} xStoreid Store ID
|
|
39643
39745
|
* @param {string} xStoresecret Store Secret
|
|
39746
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39747
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39748
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39644
39749
|
* @param {string} [query] Partial query to get suggestions for
|
|
39645
39750
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39646
39751
|
* @param {number} [page] Page number for pagination
|
|
@@ -39657,7 +39762,7 @@ export declare class QuerySuggestionsApi extends BaseAPI {
|
|
|
39657
39762
|
* @throws {RequiredError}
|
|
39658
39763
|
* @memberof QuerySuggestionsApi
|
|
39659
39764
|
*/
|
|
39660
|
-
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QuerySuggestionsServiceQuerySuggestionsAPIResponse, any, {}>>;
|
|
39765
|
+
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QuerySuggestionsServiceQuerySuggestionsAPIResponse, any, {}>>;
|
|
39661
39766
|
}
|
|
39662
39767
|
/**
|
|
39663
39768
|
* @export
|
|
@@ -42493,15 +42598,18 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
42493
42598
|
*/
|
|
42494
42599
|
v1IndexIndexnameDefaultsGet: (indexname: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42495
42600
|
/**
|
|
42496
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42601
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
42497
42602
|
* @summary Public Search API
|
|
42498
42603
|
* @param {string} xStoreid Store ID
|
|
42499
42604
|
* @param {string} xStoresecret Store Secret
|
|
42500
42605
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42606
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42607
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42608
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42501
42609
|
* @param {*} [options] Override http request option.
|
|
42502
42610
|
* @throws {RequiredError}
|
|
42503
42611
|
*/
|
|
42504
|
-
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42612
|
+
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42505
42613
|
};
|
|
42506
42614
|
/**
|
|
42507
42615
|
* SearchApi - functional programming interface
|
|
@@ -42561,15 +42669,18 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
42561
42669
|
*/
|
|
42562
42670
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
|
|
42563
42671
|
/**
|
|
42564
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42672
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
42565
42673
|
* @summary Public Search API
|
|
42566
42674
|
* @param {string} xStoreid Store ID
|
|
42567
42675
|
* @param {string} xStoresecret Store Secret
|
|
42568
42676
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42677
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42678
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42679
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42569
42680
|
* @param {*} [options] Override http request option.
|
|
42570
42681
|
* @throws {RequiredError}
|
|
42571
42682
|
*/
|
|
42572
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
42683
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
42573
42684
|
};
|
|
42574
42685
|
/**
|
|
42575
42686
|
* SearchApi - factory interface
|
|
@@ -42629,15 +42740,18 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
42629
42740
|
*/
|
|
42630
42741
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
|
|
42631
42742
|
/**
|
|
42632
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42743
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
42633
42744
|
* @summary Public Search API
|
|
42634
42745
|
* @param {string} xStoreid Store ID
|
|
42635
42746
|
* @param {string} xStoresecret Store Secret
|
|
42636
42747
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42748
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42749
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42750
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42637
42751
|
* @param {*} [options] Override http request option.
|
|
42638
42752
|
* @throws {RequiredError}
|
|
42639
42753
|
*/
|
|
42640
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
42754
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
42641
42755
|
};
|
|
42642
42756
|
/**
|
|
42643
42757
|
* SearchApi - object-oriented interface
|
|
@@ -42705,16 +42819,19 @@ export declare class SearchApi extends BaseAPI {
|
|
|
42705
42819
|
*/
|
|
42706
42820
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
42707
42821
|
/**
|
|
42708
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42822
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
42709
42823
|
* @summary Public Search API
|
|
42710
42824
|
* @param {string} xStoreid Store ID
|
|
42711
42825
|
* @param {string} xStoresecret Store Secret
|
|
42712
42826
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42827
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42828
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42829
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42713
42830
|
* @param {*} [options] Override http request option.
|
|
42714
42831
|
* @throws {RequiredError}
|
|
42715
42832
|
* @memberof SearchApi
|
|
42716
42833
|
*/
|
|
42717
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
42834
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
42718
42835
|
}
|
|
42719
42836
|
/**
|
|
42720
42837
|
* StopwordsApi - axios parameter creator
|
|
@@ -44712,6 +44829,14 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
44712
44829
|
* @throws {RequiredError}
|
|
44713
44830
|
*/
|
|
44714
44831
|
v1InvitationsInvitationIdPermissionsRolePut: (invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44832
|
+
/**
|
|
44833
|
+
* Resends the invitation email for an existing pending invitation
|
|
44834
|
+
* @summary Resend invitation email
|
|
44835
|
+
* @param {number} invitationId Invitation ID
|
|
44836
|
+
* @param {*} [options] Override http request option.
|
|
44837
|
+
* @throws {RequiredError}
|
|
44838
|
+
*/
|
|
44839
|
+
v1InvitationsInvitationIdResendPost: (invitationId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44715
44840
|
/**
|
|
44716
44841
|
* Accepts a team invitation using token
|
|
44717
44842
|
* @summary Accept invitation
|
|
@@ -44737,6 +44862,14 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
44737
44862
|
* @throws {RequiredError}
|
|
44738
44863
|
*/
|
|
44739
44864
|
v1InvitationsTokenGet: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44865
|
+
/**
|
|
44866
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
44867
|
+
* @summary Resend invitation email by token (public)
|
|
44868
|
+
* @param {string} token Invitation Token
|
|
44869
|
+
* @param {*} [options] Override http request option.
|
|
44870
|
+
* @throws {RequiredError}
|
|
44871
|
+
*/
|
|
44872
|
+
v1InvitationsTokenResendPost: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44740
44873
|
/**
|
|
44741
44874
|
* Retrieves all users with access to a store
|
|
44742
44875
|
* @summary Get store access list
|
|
@@ -44860,6 +44993,14 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
44860
44993
|
* @throws {RequiredError}
|
|
44861
44994
|
*/
|
|
44862
44995
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44996
|
+
/**
|
|
44997
|
+
* Resends the invitation email for an existing pending invitation
|
|
44998
|
+
* @summary Resend invitation email
|
|
44999
|
+
* @param {number} invitationId Invitation ID
|
|
45000
|
+
* @param {*} [options] Override http request option.
|
|
45001
|
+
* @throws {RequiredError}
|
|
45002
|
+
*/
|
|
45003
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44863
45004
|
/**
|
|
44864
45005
|
* Accepts a team invitation using token
|
|
44865
45006
|
* @summary Accept invitation
|
|
@@ -44885,6 +45026,14 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
44885
45026
|
* @throws {RequiredError}
|
|
44886
45027
|
*/
|
|
44887
45028
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationDetailsResponse>>;
|
|
45029
|
+
/**
|
|
45030
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45031
|
+
* @summary Resend invitation email by token (public)
|
|
45032
|
+
* @param {string} token Invitation Token
|
|
45033
|
+
* @param {*} [options] Override http request option.
|
|
45034
|
+
* @throws {RequiredError}
|
|
45035
|
+
*/
|
|
45036
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44888
45037
|
/**
|
|
44889
45038
|
* Retrieves all users with access to a store
|
|
44890
45039
|
* @summary Get store access list
|
|
@@ -45008,6 +45157,14 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45008
45157
|
* @throws {RequiredError}
|
|
45009
45158
|
*/
|
|
45010
45159
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45160
|
+
/**
|
|
45161
|
+
* Resends the invitation email for an existing pending invitation
|
|
45162
|
+
* @summary Resend invitation email
|
|
45163
|
+
* @param {number} invitationId Invitation ID
|
|
45164
|
+
* @param {*} [options] Override http request option.
|
|
45165
|
+
* @throws {RequiredError}
|
|
45166
|
+
*/
|
|
45167
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45011
45168
|
/**
|
|
45012
45169
|
* Accepts a team invitation using token
|
|
45013
45170
|
* @summary Accept invitation
|
|
@@ -45033,6 +45190,14 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45033
45190
|
* @throws {RequiredError}
|
|
45034
45191
|
*/
|
|
45035
45192
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationDetailsResponse>;
|
|
45193
|
+
/**
|
|
45194
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45195
|
+
* @summary Resend invitation email by token (public)
|
|
45196
|
+
* @param {string} token Invitation Token
|
|
45197
|
+
* @param {*} [options] Override http request option.
|
|
45198
|
+
* @throws {RequiredError}
|
|
45199
|
+
*/
|
|
45200
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45036
45201
|
/**
|
|
45037
45202
|
* Retrieves all users with access to a store
|
|
45038
45203
|
* @summary Get store access list
|
|
@@ -45162,6 +45327,15 @@ export declare class TeamApi extends BaseAPI {
|
|
|
45162
45327
|
* @memberof TeamApi
|
|
45163
45328
|
*/
|
|
45164
45329
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45330
|
+
/**
|
|
45331
|
+
* Resends the invitation email for an existing pending invitation
|
|
45332
|
+
* @summary Resend invitation email
|
|
45333
|
+
* @param {number} invitationId Invitation ID
|
|
45334
|
+
* @param {*} [options] Override http request option.
|
|
45335
|
+
* @throws {RequiredError}
|
|
45336
|
+
* @memberof TeamApi
|
|
45337
|
+
*/
|
|
45338
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45165
45339
|
/**
|
|
45166
45340
|
* Accepts a team invitation using token
|
|
45167
45341
|
* @summary Accept invitation
|
|
@@ -45190,6 +45364,15 @@ export declare class TeamApi extends BaseAPI {
|
|
|
45190
45364
|
* @memberof TeamApi
|
|
45191
45365
|
*/
|
|
45192
45366
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesInvitationDetailsResponse, any, {}>>;
|
|
45367
|
+
/**
|
|
45368
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45369
|
+
* @summary Resend invitation email by token (public)
|
|
45370
|
+
* @param {string} token Invitation Token
|
|
45371
|
+
* @param {*} [options] Override http request option.
|
|
45372
|
+
* @throws {RequiredError}
|
|
45373
|
+
* @memberof TeamApi
|
|
45374
|
+
*/
|
|
45375
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45193
45376
|
/**
|
|
45194
45377
|
* Retrieves all users with access to a store
|
|
45195
45378
|
* @summary Get store access list
|
|
@@ -45347,7 +45530,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
45347
45530
|
*/
|
|
45348
45531
|
adminUsersResetpasswordIdPut: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45349
45532
|
/**
|
|
45350
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45533
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45351
45534
|
* @summary Get user\'s custom permissions
|
|
45352
45535
|
* @param {number} userId User ID
|
|
45353
45536
|
* @param {*} [options] Override http request option.
|
|
@@ -45453,13 +45636,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
45453
45636
|
*/
|
|
45454
45637
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
45455
45638
|
/**
|
|
45456
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45639
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45457
45640
|
* @summary Get user\'s custom permissions
|
|
45458
45641
|
* @param {number} userId User ID
|
|
45459
45642
|
* @param {*} [options] Override http request option.
|
|
45460
45643
|
* @throws {RequiredError}
|
|
45461
45644
|
*/
|
|
45462
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45645
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRolePermissionsResponse>>;
|
|
45463
45646
|
/**
|
|
45464
45647
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45465
45648
|
* @summary Set user to custom permissions mode or regular role
|
|
@@ -45559,13 +45742,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45559
45742
|
*/
|
|
45560
45743
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45561
45744
|
/**
|
|
45562
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45745
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45563
45746
|
* @summary Get user\'s custom permissions
|
|
45564
45747
|
* @param {number} userId User ID
|
|
45565
45748
|
* @param {*} [options] Override http request option.
|
|
45566
45749
|
* @throws {RequiredError}
|
|
45567
45750
|
*/
|
|
45568
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45751
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRolePermissionsResponse>;
|
|
45569
45752
|
/**
|
|
45570
45753
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45571
45754
|
* @summary Set user to custom permissions mode or regular role
|
|
@@ -45674,14 +45857,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
45674
45857
|
*/
|
|
45675
45858
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45676
45859
|
/**
|
|
45677
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45860
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45678
45861
|
* @summary Get user\'s custom permissions
|
|
45679
45862
|
* @param {number} userId User ID
|
|
45680
45863
|
* @param {*} [options] Override http request option.
|
|
45681
45864
|
* @throws {RequiredError}
|
|
45682
45865
|
* @memberof UserApi
|
|
45683
45866
|
*/
|
|
45684
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45867
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRolePermissionsResponse, any, {}>>;
|
|
45685
45868
|
/**
|
|
45686
45869
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45687
45870
|
* @summary Set user to custom permissions mode or regular role
|