@seekora-ai/admin-api 1.1.50 → 1.1.52
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 +524 -185
- package/dist/api.d.ts +351 -180
- package/dist/api.js +347 -42
- package/dist/esm/api.d.ts +351 -180
- package/dist/esm/api.js +347 -42
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.52.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
|
|
@@ -26029,12 +26060,6 @@ export interface StoreRouteTimeSeriesResponse {
|
|
|
26029
26060
|
* @interface SubscriptionRouteCancelPreviewRequest
|
|
26030
26061
|
*/
|
|
26031
26062
|
export interface SubscriptionRouteCancelPreviewRequest {
|
|
26032
|
-
/**
|
|
26033
|
-
*
|
|
26034
|
-
* @type {number}
|
|
26035
|
-
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26036
|
-
*/
|
|
26037
|
-
'org_id': number;
|
|
26038
26063
|
/**
|
|
26039
26064
|
*
|
|
26040
26065
|
* @type {string}
|
|
@@ -26060,12 +26085,6 @@ export interface SubscriptionRouteCancelProcessRequest {
|
|
|
26060
26085
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26061
26086
|
*/
|
|
26062
26087
|
'immediate_cancellation'?: boolean;
|
|
26063
|
-
/**
|
|
26064
|
-
*
|
|
26065
|
-
* @type {number}
|
|
26066
|
-
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26067
|
-
*/
|
|
26068
|
-
'org_id': number;
|
|
26069
26088
|
/**
|
|
26070
26089
|
*
|
|
26071
26090
|
* @type {string}
|
|
@@ -30984,6 +31003,13 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
|
|
|
30984
31003
|
* @export
|
|
30985
31004
|
*/
|
|
30986
31005
|
export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
31006
|
+
/**
|
|
31007
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31008
|
+
* @summary Get current active plan details
|
|
31009
|
+
* @param {*} [options] Override http request option.
|
|
31010
|
+
* @throws {RequiredError}
|
|
31011
|
+
*/
|
|
31012
|
+
adminBillingActivePlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30987
31013
|
/**
|
|
30988
31014
|
* 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
31015
|
* @summary Get billing alerts
|
|
@@ -31324,6 +31350,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
31324
31350
|
* @export
|
|
31325
31351
|
*/
|
|
31326
31352
|
export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
31353
|
+
/**
|
|
31354
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31355
|
+
* @summary Get current active plan details
|
|
31356
|
+
* @param {*} [options] Override http request option.
|
|
31357
|
+
* @throws {RequiredError}
|
|
31358
|
+
*/
|
|
31359
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCurrentPlanInfo>>;
|
|
31327
31360
|
/**
|
|
31328
31361
|
* 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
31362
|
* @summary Get billing alerts
|
|
@@ -31664,6 +31697,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
31664
31697
|
* @export
|
|
31665
31698
|
*/
|
|
31666
31699
|
export declare const BillingDashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
31700
|
+
/**
|
|
31701
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
31702
|
+
* @summary Get current active plan details
|
|
31703
|
+
* @param {*} [options] Override http request option.
|
|
31704
|
+
* @throws {RequiredError}
|
|
31705
|
+
*/
|
|
31706
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCurrentPlanInfo>;
|
|
31667
31707
|
/**
|
|
31668
31708
|
* 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
31709
|
* @summary Get billing alerts
|
|
@@ -32006,6 +32046,14 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
32006
32046
|
* @extends {BaseAPI}
|
|
32007
32047
|
*/
|
|
32008
32048
|
export declare class BillingDashboardApi extends BaseAPI {
|
|
32049
|
+
/**
|
|
32050
|
+
* Returns the current active plan details including subscription_id required for cancellation
|
|
32051
|
+
* @summary Get current active plan details
|
|
32052
|
+
* @param {*} [options] Override http request option.
|
|
32053
|
+
* @throws {RequiredError}
|
|
32054
|
+
* @memberof BillingDashboardApi
|
|
32055
|
+
*/
|
|
32056
|
+
adminBillingActivePlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCurrentPlanInfo, any, {}>>;
|
|
32009
32057
|
/**
|
|
32010
32058
|
* 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
32059
|
* @summary Get billing alerts
|
|
@@ -37122,6 +37170,14 @@ export declare class NotificationPreferencesApi extends BaseAPI {
|
|
|
37122
37170
|
* @export
|
|
37123
37171
|
*/
|
|
37124
37172
|
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
37173
|
+
/**
|
|
37174
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37175
|
+
* @summary Republish notification to RabbitMQ
|
|
37176
|
+
* @param {number} id Notification ID
|
|
37177
|
+
* @param {*} [options] Override http request option.
|
|
37178
|
+
* @throws {RequiredError}
|
|
37179
|
+
*/
|
|
37180
|
+
v1AdminNotificationsIdRepublishPost: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37125
37181
|
/**
|
|
37126
37182
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37127
37183
|
* @summary Get user notifications
|
|
@@ -37183,6 +37239,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
37183
37239
|
* @export
|
|
37184
37240
|
*/
|
|
37185
37241
|
export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
37242
|
+
/**
|
|
37243
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37244
|
+
* @summary Republish notification to RabbitMQ
|
|
37245
|
+
* @param {number} id Notification ID
|
|
37246
|
+
* @param {*} [options] Override http request option.
|
|
37247
|
+
* @throws {RequiredError}
|
|
37248
|
+
*/
|
|
37249
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
37186
37250
|
/**
|
|
37187
37251
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37188
37252
|
* @summary Get user notifications
|
|
@@ -37244,6 +37308,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
37244
37308
|
* @export
|
|
37245
37309
|
*/
|
|
37246
37310
|
export declare const NotificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
37311
|
+
/**
|
|
37312
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37313
|
+
* @summary Republish notification to RabbitMQ
|
|
37314
|
+
* @param {number} id Notification ID
|
|
37315
|
+
* @param {*} [options] Override http request option.
|
|
37316
|
+
* @throws {RequiredError}
|
|
37317
|
+
*/
|
|
37318
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
37247
37319
|
/**
|
|
37248
37320
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37249
37321
|
* @summary Get user notifications
|
|
@@ -37307,6 +37379,15 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
37307
37379
|
* @extends {BaseAPI}
|
|
37308
37380
|
*/
|
|
37309
37381
|
export declare class NotificationsApi extends BaseAPI {
|
|
37382
|
+
/**
|
|
37383
|
+
* Republishes an existing notification to RabbitMQ queue for processing
|
|
37384
|
+
* @summary Republish notification to RabbitMQ
|
|
37385
|
+
* @param {number} id Notification ID
|
|
37386
|
+
* @param {*} [options] Override http request option.
|
|
37387
|
+
* @throws {RequiredError}
|
|
37388
|
+
* @memberof NotificationsApi
|
|
37389
|
+
*/
|
|
37390
|
+
v1AdminNotificationsIdRepublishPost(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
37310
37391
|
/**
|
|
37311
37392
|
* Retrieves paginated notifications for the authenticated user with optional filters, search, and sorting. Supports both page/page_size and limit/offset pagination.
|
|
37312
37393
|
* @summary Get user notifications
|
|
@@ -39526,10 +39607,13 @@ export declare const QuerySuggestionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
39526
39607
|
*/
|
|
39527
39608
|
v1SuggestionsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39528
39609
|
/**
|
|
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.
|
|
39610
|
+
* 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
39611
|
* @summary Get Query Suggestions
|
|
39531
39612
|
* @param {string} xStoreid Store ID
|
|
39532
39613
|
* @param {string} xStoresecret Store Secret
|
|
39614
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39615
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39616
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39533
39617
|
* @param {string} [query] Partial query to get suggestions for
|
|
39534
39618
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39535
39619
|
* @param {number} [page] Page number for pagination
|
|
@@ -39545,7 +39629,7 @@ export declare const QuerySuggestionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
39545
39629
|
* @param {*} [options] Override http request option.
|
|
39546
39630
|
* @throws {RequiredError}
|
|
39547
39631
|
*/
|
|
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>;
|
|
39632
|
+
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
39633
|
};
|
|
39550
39634
|
/**
|
|
39551
39635
|
* QuerySuggestionsApi - functional programming interface
|
|
@@ -39562,10 +39646,13 @@ export declare const QuerySuggestionsApiFp: (configuration?: Configuration) => {
|
|
|
39562
39646
|
*/
|
|
39563
39647
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SuggestionsConfigGet200Response>>;
|
|
39564
39648
|
/**
|
|
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.
|
|
39649
|
+
* 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
39650
|
* @summary Get Query Suggestions
|
|
39567
39651
|
* @param {string} xStoreid Store ID
|
|
39568
39652
|
* @param {string} xStoresecret Store Secret
|
|
39653
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39654
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39655
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39569
39656
|
* @param {string} [query] Partial query to get suggestions for
|
|
39570
39657
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39571
39658
|
* @param {number} [page] Page number for pagination
|
|
@@ -39581,7 +39668,7 @@ export declare const QuerySuggestionsApiFp: (configuration?: Configuration) => {
|
|
|
39581
39668
|
* @param {*} [options] Override http request option.
|
|
39582
39669
|
* @throws {RequiredError}
|
|
39583
39670
|
*/
|
|
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>>;
|
|
39671
|
+
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
39672
|
};
|
|
39586
39673
|
/**
|
|
39587
39674
|
* QuerySuggestionsApi - factory interface
|
|
@@ -39598,10 +39685,13 @@ export declare const QuerySuggestionsApiFactory: (configuration?: Configuration,
|
|
|
39598
39685
|
*/
|
|
39599
39686
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<V1SuggestionsConfigGet200Response>;
|
|
39600
39687
|
/**
|
|
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.
|
|
39688
|
+
* 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
39689
|
* @summary Get Query Suggestions
|
|
39603
39690
|
* @param {string} xStoreid Store ID
|
|
39604
39691
|
* @param {string} xStoresecret Store Secret
|
|
39692
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39693
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39694
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39605
39695
|
* @param {string} [query] Partial query to get suggestions for
|
|
39606
39696
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39607
39697
|
* @param {number} [page] Page number for pagination
|
|
@@ -39617,7 +39707,7 @@ export declare const QuerySuggestionsApiFactory: (configuration?: Configuration,
|
|
|
39617
39707
|
* @param {*} [options] Override http request option.
|
|
39618
39708
|
* @throws {RequiredError}
|
|
39619
39709
|
*/
|
|
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>;
|
|
39710
|
+
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
39711
|
};
|
|
39622
39712
|
/**
|
|
39623
39713
|
* QuerySuggestionsApi - object-oriented interface
|
|
@@ -39637,10 +39727,13 @@ export declare class QuerySuggestionsApi extends BaseAPI {
|
|
|
39637
39727
|
*/
|
|
39638
39728
|
v1SuggestionsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SuggestionsConfigGet200Response, any, {}>>;
|
|
39639
39729
|
/**
|
|
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.
|
|
39730
|
+
* 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
39731
|
* @summary Get Query Suggestions
|
|
39642
39732
|
* @param {string} xStoreid Store ID
|
|
39643
39733
|
* @param {string} xStoresecret Store Secret
|
|
39734
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
39735
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
39736
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
39644
39737
|
* @param {string} [query] Partial query to get suggestions for
|
|
39645
39738
|
* @param {number} [hitsPerPage] Number of suggestions to return
|
|
39646
39739
|
* @param {number} [page] Page number for pagination
|
|
@@ -39657,7 +39750,7 @@ export declare class QuerySuggestionsApi extends BaseAPI {
|
|
|
39657
39750
|
* @throws {RequiredError}
|
|
39658
39751
|
* @memberof QuerySuggestionsApi
|
|
39659
39752
|
*/
|
|
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, {}>>;
|
|
39753
|
+
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
39754
|
}
|
|
39662
39755
|
/**
|
|
39663
39756
|
* @export
|
|
@@ -42493,15 +42586,18 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
42493
42586
|
*/
|
|
42494
42587
|
v1IndexIndexnameDefaultsGet: (indexname: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42495
42588
|
/**
|
|
42496
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42589
|
+
* 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
42590
|
* @summary Public Search API
|
|
42498
42591
|
* @param {string} xStoreid Store ID
|
|
42499
42592
|
* @param {string} xStoresecret Store Secret
|
|
42500
42593
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42594
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42595
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42596
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42501
42597
|
* @param {*} [options] Override http request option.
|
|
42502
42598
|
* @throws {RequiredError}
|
|
42503
42599
|
*/
|
|
42504
|
-
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42600
|
+
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42505
42601
|
};
|
|
42506
42602
|
/**
|
|
42507
42603
|
* SearchApi - functional programming interface
|
|
@@ -42561,15 +42657,18 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
42561
42657
|
*/
|
|
42562
42658
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
|
|
42563
42659
|
/**
|
|
42564
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42660
|
+
* 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
42661
|
* @summary Public Search API
|
|
42566
42662
|
* @param {string} xStoreid Store ID
|
|
42567
42663
|
* @param {string} xStoresecret Store Secret
|
|
42568
42664
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42665
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42666
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42667
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42569
42668
|
* @param {*} [options] Override http request option.
|
|
42570
42669
|
* @throws {RequiredError}
|
|
42571
42670
|
*/
|
|
42572
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
42671
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
42573
42672
|
};
|
|
42574
42673
|
/**
|
|
42575
42674
|
* SearchApi - factory interface
|
|
@@ -42629,15 +42728,18 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
42629
42728
|
*/
|
|
42630
42729
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
|
|
42631
42730
|
/**
|
|
42632
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42731
|
+
* 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
42732
|
* @summary Public Search API
|
|
42634
42733
|
* @param {string} xStoreid Store ID
|
|
42635
42734
|
* @param {string} xStoresecret Store Secret
|
|
42636
42735
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42736
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42737
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42738
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42637
42739
|
* @param {*} [options] Override http request option.
|
|
42638
42740
|
* @throws {RequiredError}
|
|
42639
42741
|
*/
|
|
42640
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
42742
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
42641
42743
|
};
|
|
42642
42744
|
/**
|
|
42643
42745
|
* SearchApi - object-oriented interface
|
|
@@ -42705,16 +42807,19 @@ export declare class SearchApi extends BaseAPI {
|
|
|
42705
42807
|
*/
|
|
42706
42808
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
42707
42809
|
/**
|
|
42708
|
-
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
42810
|
+
* 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
42811
|
* @summary Public Search API
|
|
42710
42812
|
* @param {string} xStoreid Store ID
|
|
42711
42813
|
* @param {string} xStoresecret Store Secret
|
|
42712
42814
|
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
42815
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
42816
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
42817
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
42713
42818
|
* @param {*} [options] Override http request option.
|
|
42714
42819
|
* @throws {RequiredError}
|
|
42715
42820
|
* @memberof SearchApi
|
|
42716
42821
|
*/
|
|
42717
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
42822
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
42718
42823
|
}
|
|
42719
42824
|
/**
|
|
42720
42825
|
* StopwordsApi - axios parameter creator
|
|
@@ -44264,17 +44369,17 @@ export declare class StoresApi extends BaseAPI {
|
|
|
44264
44369
|
*/
|
|
44265
44370
|
export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
44266
44371
|
/**
|
|
44267
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
44372
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44268
44373
|
* @summary Preview subscription cancellation details
|
|
44269
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
44374
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44270
44375
|
* @param {*} [options] Override http request option.
|
|
44271
44376
|
* @throws {RequiredError}
|
|
44272
44377
|
*/
|
|
44273
44378
|
adminSubscriptionsCancelPreviewPost: (subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44274
44379
|
/**
|
|
44275
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
44380
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44276
44381
|
* @summary Process subscription cancellation
|
|
44277
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
44382
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44278
44383
|
* @param {*} [options] Override http request option.
|
|
44279
44384
|
* @throws {RequiredError}
|
|
44280
44385
|
*/
|
|
@@ -44327,17 +44432,17 @@ export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
44327
44432
|
*/
|
|
44328
44433
|
export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
|
|
44329
44434
|
/**
|
|
44330
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
44435
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44331
44436
|
* @summary Preview subscription cancellation details
|
|
44332
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
44437
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44333
44438
|
* @param {*} [options] Override http request option.
|
|
44334
44439
|
* @throws {RequiredError}
|
|
44335
44440
|
*/
|
|
44336
44441
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44337
44442
|
/**
|
|
44338
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
44443
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44339
44444
|
* @summary Process subscription cancellation
|
|
44340
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
44445
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44341
44446
|
* @param {*} [options] Override http request option.
|
|
44342
44447
|
* @throws {RequiredError}
|
|
44343
44448
|
*/
|
|
@@ -44390,17 +44495,17 @@ export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
|
|
|
44390
44495
|
*/
|
|
44391
44496
|
export declare const SubscriptionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
44392
44497
|
/**
|
|
44393
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
44498
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44394
44499
|
* @summary Preview subscription cancellation details
|
|
44395
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
44500
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44396
44501
|
* @param {*} [options] Override http request option.
|
|
44397
44502
|
* @throws {RequiredError}
|
|
44398
44503
|
*/
|
|
44399
44504
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
44400
44505
|
/**
|
|
44401
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
44506
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44402
44507
|
* @summary Process subscription cancellation
|
|
44403
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
44508
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44404
44509
|
* @param {*} [options] Override http request option.
|
|
44405
44510
|
* @throws {RequiredError}
|
|
44406
44511
|
*/
|
|
@@ -44455,18 +44560,18 @@ export declare const SubscriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
44455
44560
|
*/
|
|
44456
44561
|
export declare class SubscriptionsApi extends BaseAPI {
|
|
44457
44562
|
/**
|
|
44458
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
44563
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44459
44564
|
* @summary Preview subscription cancellation details
|
|
44460
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
44565
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44461
44566
|
* @param {*} [options] Override http request option.
|
|
44462
44567
|
* @throws {RequiredError}
|
|
44463
44568
|
* @memberof SubscriptionsApi
|
|
44464
44569
|
*/
|
|
44465
44570
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
44466
44571
|
/**
|
|
44467
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
44572
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44468
44573
|
* @summary Process subscription cancellation
|
|
44469
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
44574
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44470
44575
|
* @param {*} [options] Override http request option.
|
|
44471
44576
|
* @throws {RequiredError}
|
|
44472
44577
|
* @memberof SubscriptionsApi
|
|
@@ -44712,6 +44817,14 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
44712
44817
|
* @throws {RequiredError}
|
|
44713
44818
|
*/
|
|
44714
44819
|
v1InvitationsInvitationIdPermissionsRolePut: (invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44820
|
+
/**
|
|
44821
|
+
* Resends the invitation email for an existing pending invitation
|
|
44822
|
+
* @summary Resend invitation email
|
|
44823
|
+
* @param {number} invitationId Invitation ID
|
|
44824
|
+
* @param {*} [options] Override http request option.
|
|
44825
|
+
* @throws {RequiredError}
|
|
44826
|
+
*/
|
|
44827
|
+
v1InvitationsInvitationIdResendPost: (invitationId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44715
44828
|
/**
|
|
44716
44829
|
* Accepts a team invitation using token
|
|
44717
44830
|
* @summary Accept invitation
|
|
@@ -44737,6 +44850,14 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
44737
44850
|
* @throws {RequiredError}
|
|
44738
44851
|
*/
|
|
44739
44852
|
v1InvitationsTokenGet: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44853
|
+
/**
|
|
44854
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
44855
|
+
* @summary Resend invitation email by token (public)
|
|
44856
|
+
* @param {string} token Invitation Token
|
|
44857
|
+
* @param {*} [options] Override http request option.
|
|
44858
|
+
* @throws {RequiredError}
|
|
44859
|
+
*/
|
|
44860
|
+
v1InvitationsTokenResendPost: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44740
44861
|
/**
|
|
44741
44862
|
* Retrieves all users with access to a store
|
|
44742
44863
|
* @summary Get store access list
|
|
@@ -44860,6 +44981,14 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
44860
44981
|
* @throws {RequiredError}
|
|
44861
44982
|
*/
|
|
44862
44983
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44984
|
+
/**
|
|
44985
|
+
* Resends the invitation email for an existing pending invitation
|
|
44986
|
+
* @summary Resend invitation email
|
|
44987
|
+
* @param {number} invitationId Invitation ID
|
|
44988
|
+
* @param {*} [options] Override http request option.
|
|
44989
|
+
* @throws {RequiredError}
|
|
44990
|
+
*/
|
|
44991
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44863
44992
|
/**
|
|
44864
44993
|
* Accepts a team invitation using token
|
|
44865
44994
|
* @summary Accept invitation
|
|
@@ -44885,6 +45014,14 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
44885
45014
|
* @throws {RequiredError}
|
|
44886
45015
|
*/
|
|
44887
45016
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationDetailsResponse>>;
|
|
45017
|
+
/**
|
|
45018
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45019
|
+
* @summary Resend invitation email by token (public)
|
|
45020
|
+
* @param {string} token Invitation Token
|
|
45021
|
+
* @param {*} [options] Override http request option.
|
|
45022
|
+
* @throws {RequiredError}
|
|
45023
|
+
*/
|
|
45024
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44888
45025
|
/**
|
|
44889
45026
|
* Retrieves all users with access to a store
|
|
44890
45027
|
* @summary Get store access list
|
|
@@ -45008,6 +45145,14 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45008
45145
|
* @throws {RequiredError}
|
|
45009
45146
|
*/
|
|
45010
45147
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45148
|
+
/**
|
|
45149
|
+
* Resends the invitation email for an existing pending invitation
|
|
45150
|
+
* @summary Resend invitation email
|
|
45151
|
+
* @param {number} invitationId Invitation ID
|
|
45152
|
+
* @param {*} [options] Override http request option.
|
|
45153
|
+
* @throws {RequiredError}
|
|
45154
|
+
*/
|
|
45155
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45011
45156
|
/**
|
|
45012
45157
|
* Accepts a team invitation using token
|
|
45013
45158
|
* @summary Accept invitation
|
|
@@ -45033,6 +45178,14 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45033
45178
|
* @throws {RequiredError}
|
|
45034
45179
|
*/
|
|
45035
45180
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationDetailsResponse>;
|
|
45181
|
+
/**
|
|
45182
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45183
|
+
* @summary Resend invitation email by token (public)
|
|
45184
|
+
* @param {string} token Invitation Token
|
|
45185
|
+
* @param {*} [options] Override http request option.
|
|
45186
|
+
* @throws {RequiredError}
|
|
45187
|
+
*/
|
|
45188
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45036
45189
|
/**
|
|
45037
45190
|
* Retrieves all users with access to a store
|
|
45038
45191
|
* @summary Get store access list
|
|
@@ -45162,6 +45315,15 @@ export declare class TeamApi extends BaseAPI {
|
|
|
45162
45315
|
* @memberof TeamApi
|
|
45163
45316
|
*/
|
|
45164
45317
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45318
|
+
/**
|
|
45319
|
+
* Resends the invitation email for an existing pending invitation
|
|
45320
|
+
* @summary Resend invitation email
|
|
45321
|
+
* @param {number} invitationId Invitation ID
|
|
45322
|
+
* @param {*} [options] Override http request option.
|
|
45323
|
+
* @throws {RequiredError}
|
|
45324
|
+
* @memberof TeamApi
|
|
45325
|
+
*/
|
|
45326
|
+
v1InvitationsInvitationIdResendPost(invitationId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45165
45327
|
/**
|
|
45166
45328
|
* Accepts a team invitation using token
|
|
45167
45329
|
* @summary Accept invitation
|
|
@@ -45190,6 +45352,15 @@ export declare class TeamApi extends BaseAPI {
|
|
|
45190
45352
|
* @memberof TeamApi
|
|
45191
45353
|
*/
|
|
45192
45354
|
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesInvitationDetailsResponse, any, {}>>;
|
|
45355
|
+
/**
|
|
45356
|
+
* Resends the invitation email using the invitation token. This is a public endpoint that doesn\'t require authentication - the token itself serves as authentication.
|
|
45357
|
+
* @summary Resend invitation email by token (public)
|
|
45358
|
+
* @param {string} token Invitation Token
|
|
45359
|
+
* @param {*} [options] Override http request option.
|
|
45360
|
+
* @throws {RequiredError}
|
|
45361
|
+
* @memberof TeamApi
|
|
45362
|
+
*/
|
|
45363
|
+
v1InvitationsTokenResendPost(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45193
45364
|
/**
|
|
45194
45365
|
* Retrieves all users with access to a store
|
|
45195
45366
|
* @summary Get store access list
|
|
@@ -45347,7 +45518,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
45347
45518
|
*/
|
|
45348
45519
|
adminUsersResetpasswordIdPut: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45349
45520
|
/**
|
|
45350
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45521
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45351
45522
|
* @summary Get user\'s custom permissions
|
|
45352
45523
|
* @param {number} userId User ID
|
|
45353
45524
|
* @param {*} [options] Override http request option.
|
|
@@ -45453,13 +45624,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
45453
45624
|
*/
|
|
45454
45625
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
45455
45626
|
/**
|
|
45456
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45627
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45457
45628
|
* @summary Get user\'s custom permissions
|
|
45458
45629
|
* @param {number} userId User ID
|
|
45459
45630
|
* @param {*} [options] Override http request option.
|
|
45460
45631
|
* @throws {RequiredError}
|
|
45461
45632
|
*/
|
|
45462
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45633
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRolePermissionsResponse>>;
|
|
45463
45634
|
/**
|
|
45464
45635
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45465
45636
|
* @summary Set user to custom permissions mode or regular role
|
|
@@ -45559,13 +45730,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
45559
45730
|
*/
|
|
45560
45731
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
45561
45732
|
/**
|
|
45562
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45733
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45563
45734
|
* @summary Get user\'s custom permissions
|
|
45564
45735
|
* @param {number} userId User ID
|
|
45565
45736
|
* @param {*} [options] Override http request option.
|
|
45566
45737
|
* @throws {RequiredError}
|
|
45567
45738
|
*/
|
|
45568
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45739
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRolePermissionsResponse>;
|
|
45569
45740
|
/**
|
|
45570
45741
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45571
45742
|
* @summary Set user to custom permissions mode or regular role
|
|
@@ -45674,14 +45845,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
45674
45845
|
*/
|
|
45675
45846
|
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
45676
45847
|
/**
|
|
45677
|
-
* Retrieves user\'s permission configuration (route-level and store-level)
|
|
45848
|
+
* Retrieves user\'s permission configuration in the same format as role permissions API (route-level and store-level with grouped structures)
|
|
45678
45849
|
* @summary Get user\'s custom permissions
|
|
45679
45850
|
* @param {number} userId User ID
|
|
45680
45851
|
* @param {*} [options] Override http request option.
|
|
45681
45852
|
* @throws {RequiredError}
|
|
45682
45853
|
* @memberof UserApi
|
|
45683
45854
|
*/
|
|
45684
|
-
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45855
|
+
adminUsersUserIdPermissionsGet(userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRolePermissionsResponse, any, {}>>;
|
|
45685
45856
|
/**
|
|
45686
45857
|
* Sets a user to use custom permissions (creates user-specific role) or assigns a regular role
|
|
45687
45858
|
* @summary Set user to custom permissions mode or regular role
|