@seekora-ai/admin-api 1.1.35 → 1.1.37
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 +27 -14
- package/api.ts +894 -131
- package/dist/api.d.ts +627 -56
- package/dist/api.js +502 -138
- package/dist/esm/api.d.ts +627 -56
- package/dist/esm/api.js +487 -131
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.37.tgz +0 -0
- package/seekora-ai-admin-api-1.1.35.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -8906,6 +8906,103 @@ export interface DataTypesDefaultDeclensionsResponseWrapper {
|
|
|
8906
8906
|
*/
|
|
8907
8907
|
'status'?: number;
|
|
8908
8908
|
}
|
|
8909
|
+
/**
|
|
8910
|
+
*
|
|
8911
|
+
* @export
|
|
8912
|
+
* @interface DataTypesDefaultMenu
|
|
8913
|
+
*/
|
|
8914
|
+
export interface DataTypesDefaultMenu {
|
|
8915
|
+
/**
|
|
8916
|
+
*
|
|
8917
|
+
* @type {string}
|
|
8918
|
+
* @memberof DataTypesDefaultMenu
|
|
8919
|
+
*/
|
|
8920
|
+
'createdDateTime'?: string;
|
|
8921
|
+
/**
|
|
8922
|
+
*
|
|
8923
|
+
* @type {number}
|
|
8924
|
+
* @memberof DataTypesDefaultMenu
|
|
8925
|
+
*/
|
|
8926
|
+
'createdUserId'?: number;
|
|
8927
|
+
/**
|
|
8928
|
+
*
|
|
8929
|
+
* @type {number}
|
|
8930
|
+
* @memberof DataTypesDefaultMenu
|
|
8931
|
+
*/
|
|
8932
|
+
'defaultMenuId'?: number;
|
|
8933
|
+
/**
|
|
8934
|
+
*
|
|
8935
|
+
* @type {string}
|
|
8936
|
+
* @memberof DataTypesDefaultMenu
|
|
8937
|
+
*/
|
|
8938
|
+
'formName'?: string;
|
|
8939
|
+
/**
|
|
8940
|
+
*
|
|
8941
|
+
* @type {string}
|
|
8942
|
+
* @memberof DataTypesDefaultMenu
|
|
8943
|
+
*/
|
|
8944
|
+
'icon'?: string;
|
|
8945
|
+
/**
|
|
8946
|
+
*
|
|
8947
|
+
* @type {boolean}
|
|
8948
|
+
* @memberof DataTypesDefaultMenu
|
|
8949
|
+
*/
|
|
8950
|
+
'isActive'?: boolean;
|
|
8951
|
+
/**
|
|
8952
|
+
*
|
|
8953
|
+
* @type {boolean}
|
|
8954
|
+
* @memberof DataTypesDefaultMenu
|
|
8955
|
+
*/
|
|
8956
|
+
'isGloballyVisible'?: boolean;
|
|
8957
|
+
/**
|
|
8958
|
+
*
|
|
8959
|
+
* @type {boolean}
|
|
8960
|
+
* @memberof DataTypesDefaultMenu
|
|
8961
|
+
*/
|
|
8962
|
+
'isParentMenu'?: boolean;
|
|
8963
|
+
/**
|
|
8964
|
+
* \'org\' or \'store\'
|
|
8965
|
+
* @type {string}
|
|
8966
|
+
* @memberof DataTypesDefaultMenu
|
|
8967
|
+
*/
|
|
8968
|
+
'menuLevel'?: string;
|
|
8969
|
+
/**
|
|
8970
|
+
*
|
|
8971
|
+
* @type {string}
|
|
8972
|
+
* @memberof DataTypesDefaultMenu
|
|
8973
|
+
*/
|
|
8974
|
+
'menuLocation'?: string;
|
|
8975
|
+
/**
|
|
8976
|
+
*
|
|
8977
|
+
* @type {string}
|
|
8978
|
+
* @memberof DataTypesDefaultMenu
|
|
8979
|
+
*/
|
|
8980
|
+
'menuName'?: string;
|
|
8981
|
+
/**
|
|
8982
|
+
*
|
|
8983
|
+
* @type {string}
|
|
8984
|
+
* @memberof DataTypesDefaultMenu
|
|
8985
|
+
*/
|
|
8986
|
+
'moduleType'?: string;
|
|
8987
|
+
/**
|
|
8988
|
+
*
|
|
8989
|
+
* @type {string}
|
|
8990
|
+
* @memberof DataTypesDefaultMenu
|
|
8991
|
+
*/
|
|
8992
|
+
'parentMenuName'?: string;
|
|
8993
|
+
/**
|
|
8994
|
+
*
|
|
8995
|
+
* @type {string}
|
|
8996
|
+
* @memberof DataTypesDefaultMenu
|
|
8997
|
+
*/
|
|
8998
|
+
'route'?: string;
|
|
8999
|
+
/**
|
|
9000
|
+
*
|
|
9001
|
+
* @type {number}
|
|
9002
|
+
* @memberof DataTypesDefaultMenu
|
|
9003
|
+
*/
|
|
9004
|
+
'sortOrder'?: number;
|
|
9005
|
+
}
|
|
8909
9006
|
/**
|
|
8910
9007
|
*
|
|
8911
9008
|
* @export
|
|
@@ -9963,6 +10060,31 @@ export interface DataTypesGenericResponseAny {
|
|
|
9963
10060
|
*/
|
|
9964
10061
|
'status'?: number;
|
|
9965
10062
|
}
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @export
|
|
10066
|
+
* @interface DataTypesGenericResponseArrayDataTypesDefaultMenu
|
|
10067
|
+
*/
|
|
10068
|
+
export interface DataTypesGenericResponseArrayDataTypesDefaultMenu {
|
|
10069
|
+
/**
|
|
10070
|
+
*
|
|
10071
|
+
* @type {Array<DataTypesDefaultMenu>}
|
|
10072
|
+
* @memberof DataTypesGenericResponseArrayDataTypesDefaultMenu
|
|
10073
|
+
*/
|
|
10074
|
+
'data'?: Array<DataTypesDefaultMenu>;
|
|
10075
|
+
/**
|
|
10076
|
+
*
|
|
10077
|
+
* @type {string}
|
|
10078
|
+
* @memberof DataTypesGenericResponseArrayDataTypesDefaultMenu
|
|
10079
|
+
*/
|
|
10080
|
+
'message'?: string;
|
|
10081
|
+
/**
|
|
10082
|
+
*
|
|
10083
|
+
* @type {number}
|
|
10084
|
+
* @memberof DataTypesGenericResponseArrayDataTypesDefaultMenu
|
|
10085
|
+
*/
|
|
10086
|
+
'status'?: number;
|
|
10087
|
+
}
|
|
9966
10088
|
/**
|
|
9967
10089
|
*
|
|
9968
10090
|
* @export
|
|
@@ -10338,6 +10460,31 @@ export interface DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse {
|
|
|
10338
10460
|
*/
|
|
10339
10461
|
'status'?: number;
|
|
10340
10462
|
}
|
|
10463
|
+
/**
|
|
10464
|
+
*
|
|
10465
|
+
* @export
|
|
10466
|
+
* @interface DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
10467
|
+
*/
|
|
10468
|
+
export interface DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse {
|
|
10469
|
+
/**
|
|
10470
|
+
*
|
|
10471
|
+
* @type {DefaultMenuRoutesUpdateMenuVisibilityResponse}
|
|
10472
|
+
* @memberof DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
10473
|
+
*/
|
|
10474
|
+
'data'?: DefaultMenuRoutesUpdateMenuVisibilityResponse;
|
|
10475
|
+
/**
|
|
10476
|
+
*
|
|
10477
|
+
* @type {string}
|
|
10478
|
+
* @memberof DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
10479
|
+
*/
|
|
10480
|
+
'message'?: string;
|
|
10481
|
+
/**
|
|
10482
|
+
*
|
|
10483
|
+
* @type {number}
|
|
10484
|
+
* @memberof DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
10485
|
+
*/
|
|
10486
|
+
'status'?: number;
|
|
10487
|
+
}
|
|
10341
10488
|
/**
|
|
10342
10489
|
*
|
|
10343
10490
|
* @export
|
|
@@ -10363,6 +10510,56 @@ export interface DataTypesGenericResponseFeatureLimitServiceLimitStatus {
|
|
|
10363
10510
|
*/
|
|
10364
10511
|
'status'?: number;
|
|
10365
10512
|
}
|
|
10513
|
+
/**
|
|
10514
|
+
*
|
|
10515
|
+
* @export
|
|
10516
|
+
* @interface DataTypesGenericResponseMenuRoutesAddMenuResponse
|
|
10517
|
+
*/
|
|
10518
|
+
export interface DataTypesGenericResponseMenuRoutesAddMenuResponse {
|
|
10519
|
+
/**
|
|
10520
|
+
*
|
|
10521
|
+
* @type {MenuRoutesAddMenuResponse}
|
|
10522
|
+
* @memberof DataTypesGenericResponseMenuRoutesAddMenuResponse
|
|
10523
|
+
*/
|
|
10524
|
+
'data'?: MenuRoutesAddMenuResponse;
|
|
10525
|
+
/**
|
|
10526
|
+
*
|
|
10527
|
+
* @type {string}
|
|
10528
|
+
* @memberof DataTypesGenericResponseMenuRoutesAddMenuResponse
|
|
10529
|
+
*/
|
|
10530
|
+
'message'?: string;
|
|
10531
|
+
/**
|
|
10532
|
+
*
|
|
10533
|
+
* @type {number}
|
|
10534
|
+
* @memberof DataTypesGenericResponseMenuRoutesAddMenuResponse
|
|
10535
|
+
*/
|
|
10536
|
+
'status'?: number;
|
|
10537
|
+
}
|
|
10538
|
+
/**
|
|
10539
|
+
*
|
|
10540
|
+
* @export
|
|
10541
|
+
* @interface DataTypesGenericResponseString
|
|
10542
|
+
*/
|
|
10543
|
+
export interface DataTypesGenericResponseString {
|
|
10544
|
+
/**
|
|
10545
|
+
*
|
|
10546
|
+
* @type {string}
|
|
10547
|
+
* @memberof DataTypesGenericResponseString
|
|
10548
|
+
*/
|
|
10549
|
+
'data'?: string;
|
|
10550
|
+
/**
|
|
10551
|
+
*
|
|
10552
|
+
* @type {string}
|
|
10553
|
+
* @memberof DataTypesGenericResponseString
|
|
10554
|
+
*/
|
|
10555
|
+
'message'?: string;
|
|
10556
|
+
/**
|
|
10557
|
+
*
|
|
10558
|
+
* @type {number}
|
|
10559
|
+
* @memberof DataTypesGenericResponseString
|
|
10560
|
+
*/
|
|
10561
|
+
'status'?: number;
|
|
10562
|
+
}
|
|
10366
10563
|
/**
|
|
10367
10564
|
*
|
|
10368
10565
|
* @export
|
|
@@ -22441,6 +22638,56 @@ export interface DataTypesWordWithStatusEnhanced {
|
|
|
22441
22638
|
*/
|
|
22442
22639
|
'wordid'?: number;
|
|
22443
22640
|
}
|
|
22641
|
+
/**
|
|
22642
|
+
*
|
|
22643
|
+
* @export
|
|
22644
|
+
* @interface DefaultMenuRoutesUpdateMenuVisibilityRequest
|
|
22645
|
+
*/
|
|
22646
|
+
export interface DefaultMenuRoutesUpdateMenuVisibilityRequest {
|
|
22647
|
+
/**
|
|
22648
|
+
*
|
|
22649
|
+
* @type {number}
|
|
22650
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityRequest
|
|
22651
|
+
*/
|
|
22652
|
+
'defaultMenuId': number;
|
|
22653
|
+
/**
|
|
22654
|
+
*
|
|
22655
|
+
* @type {boolean}
|
|
22656
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityRequest
|
|
22657
|
+
*/
|
|
22658
|
+
'isGloballyVisible'?: boolean;
|
|
22659
|
+
}
|
|
22660
|
+
/**
|
|
22661
|
+
*
|
|
22662
|
+
* @export
|
|
22663
|
+
* @interface DefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
22664
|
+
*/
|
|
22665
|
+
export interface DefaultMenuRoutesUpdateMenuVisibilityResponse {
|
|
22666
|
+
/**
|
|
22667
|
+
*
|
|
22668
|
+
* @type {number}
|
|
22669
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
22670
|
+
*/
|
|
22671
|
+
'defaultMenuId'?: number;
|
|
22672
|
+
/**
|
|
22673
|
+
*
|
|
22674
|
+
* @type {boolean}
|
|
22675
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
22676
|
+
*/
|
|
22677
|
+
'isGloballyVisible'?: boolean;
|
|
22678
|
+
/**
|
|
22679
|
+
*
|
|
22680
|
+
* @type {string}
|
|
22681
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
22682
|
+
*/
|
|
22683
|
+
'menuLevel'?: string;
|
|
22684
|
+
/**
|
|
22685
|
+
*
|
|
22686
|
+
* @type {string}
|
|
22687
|
+
* @memberof DefaultMenuRoutesUpdateMenuVisibilityResponse
|
|
22688
|
+
*/
|
|
22689
|
+
'menuName'?: string;
|
|
22690
|
+
}
|
|
22444
22691
|
/**
|
|
22445
22692
|
*
|
|
22446
22693
|
* @export
|
|
@@ -22763,6 +23010,146 @@ export interface FeatureLimitsUsageGet200Response {
|
|
|
22763
23010
|
*/
|
|
22764
23011
|
'status'?: number;
|
|
22765
23012
|
}
|
|
23013
|
+
/**
|
|
23014
|
+
*
|
|
23015
|
+
* @export
|
|
23016
|
+
* @interface MenuRoutesAddMenuRequest
|
|
23017
|
+
*/
|
|
23018
|
+
export interface MenuRoutesAddMenuRequest {
|
|
23019
|
+
/**
|
|
23020
|
+
* Optional description for audit
|
|
23021
|
+
* @type {string}
|
|
23022
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23023
|
+
*/
|
|
23024
|
+
'description'?: string;
|
|
23025
|
+
/**
|
|
23026
|
+
*
|
|
23027
|
+
* @type {string}
|
|
23028
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23029
|
+
*/
|
|
23030
|
+
'formName': string;
|
|
23031
|
+
/**
|
|
23032
|
+
*
|
|
23033
|
+
* @type {string}
|
|
23034
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23035
|
+
*/
|
|
23036
|
+
'icon': string;
|
|
23037
|
+
/**
|
|
23038
|
+
*
|
|
23039
|
+
* @type {boolean}
|
|
23040
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23041
|
+
*/
|
|
23042
|
+
'isParentMenu'?: boolean;
|
|
23043
|
+
/**
|
|
23044
|
+
*
|
|
23045
|
+
* @type {string}
|
|
23046
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23047
|
+
*/
|
|
23048
|
+
'menuLevel': MenuRoutesAddMenuRequestMenuLevelEnum;
|
|
23049
|
+
/**
|
|
23050
|
+
*
|
|
23051
|
+
* @type {string}
|
|
23052
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23053
|
+
*/
|
|
23054
|
+
'menuLocation': MenuRoutesAddMenuRequestMenuLocationEnum;
|
|
23055
|
+
/**
|
|
23056
|
+
*
|
|
23057
|
+
* @type {string}
|
|
23058
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23059
|
+
*/
|
|
23060
|
+
'menuName': string;
|
|
23061
|
+
/**
|
|
23062
|
+
*
|
|
23063
|
+
* @type {string}
|
|
23064
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23065
|
+
*/
|
|
23066
|
+
'moduleType': MenuRoutesAddMenuRequestModuleTypeEnum;
|
|
23067
|
+
/**
|
|
23068
|
+
* Only for child menus
|
|
23069
|
+
* @type {string}
|
|
23070
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23071
|
+
*/
|
|
23072
|
+
'parentMenuName'?: string;
|
|
23073
|
+
/**
|
|
23074
|
+
*
|
|
23075
|
+
* @type {string}
|
|
23076
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23077
|
+
*/
|
|
23078
|
+
'route': string;
|
|
23079
|
+
/**
|
|
23080
|
+
*
|
|
23081
|
+
* @type {number}
|
|
23082
|
+
* @memberof MenuRoutesAddMenuRequest
|
|
23083
|
+
*/
|
|
23084
|
+
'sortOrder'?: number;
|
|
23085
|
+
}
|
|
23086
|
+
export declare const MenuRoutesAddMenuRequestMenuLevelEnum: {
|
|
23087
|
+
readonly Org: "org";
|
|
23088
|
+
readonly Store: "store";
|
|
23089
|
+
};
|
|
23090
|
+
export type MenuRoutesAddMenuRequestMenuLevelEnum = typeof MenuRoutesAddMenuRequestMenuLevelEnum[keyof typeof MenuRoutesAddMenuRequestMenuLevelEnum];
|
|
23091
|
+
export declare const MenuRoutesAddMenuRequestMenuLocationEnum: {
|
|
23092
|
+
readonly Navbar: "navbar";
|
|
23093
|
+
readonly ProfileDropdown: "profile_dropdown";
|
|
23094
|
+
};
|
|
23095
|
+
export type MenuRoutesAddMenuRequestMenuLocationEnum = typeof MenuRoutesAddMenuRequestMenuLocationEnum[keyof typeof MenuRoutesAddMenuRequestMenuLocationEnum];
|
|
23096
|
+
export declare const MenuRoutesAddMenuRequestModuleTypeEnum: {
|
|
23097
|
+
readonly Admin: "Admin";
|
|
23098
|
+
readonly Search: "Search";
|
|
23099
|
+
readonly Billing: "Billing";
|
|
23100
|
+
};
|
|
23101
|
+
export type MenuRoutesAddMenuRequestModuleTypeEnum = typeof MenuRoutesAddMenuRequestModuleTypeEnum[keyof typeof MenuRoutesAddMenuRequestModuleTypeEnum];
|
|
23102
|
+
/**
|
|
23103
|
+
*
|
|
23104
|
+
* @export
|
|
23105
|
+
* @interface MenuRoutesAddMenuResponse
|
|
23106
|
+
*/
|
|
23107
|
+
export interface MenuRoutesAddMenuResponse {
|
|
23108
|
+
/**
|
|
23109
|
+
*
|
|
23110
|
+
* @type {boolean}
|
|
23111
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23112
|
+
*/
|
|
23113
|
+
'defaultMenuAdded'?: boolean;
|
|
23114
|
+
/**
|
|
23115
|
+
*
|
|
23116
|
+
* @type {number}
|
|
23117
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23118
|
+
*/
|
|
23119
|
+
'menuId'?: number;
|
|
23120
|
+
/**
|
|
23121
|
+
*
|
|
23122
|
+
* @type {number}
|
|
23123
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23124
|
+
*/
|
|
23125
|
+
'menusCreated'?: number;
|
|
23126
|
+
/**
|
|
23127
|
+
*
|
|
23128
|
+
* @type {number}
|
|
23129
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23130
|
+
*/
|
|
23131
|
+
'organizationsAffected'?: number;
|
|
23132
|
+
/**
|
|
23133
|
+
*
|
|
23134
|
+
* @type {number}
|
|
23135
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23136
|
+
*/
|
|
23137
|
+
'permissionsCreated'?: number;
|
|
23138
|
+
/**
|
|
23139
|
+
*
|
|
23140
|
+
* @type {number}
|
|
23141
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23142
|
+
*/
|
|
23143
|
+
'storesAffected'?: number;
|
|
23144
|
+
/**
|
|
23145
|
+
*
|
|
23146
|
+
* @type {{ [key: string]: any; }}
|
|
23147
|
+
* @memberof MenuRoutesAddMenuResponse
|
|
23148
|
+
*/
|
|
23149
|
+
'summary'?: {
|
|
23150
|
+
[key: string]: any;
|
|
23151
|
+
};
|
|
23152
|
+
}
|
|
22766
23153
|
/**
|
|
22767
23154
|
*
|
|
22768
23155
|
* @export
|
|
@@ -32798,6 +33185,98 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
32798
33185
|
*/
|
|
32799
33186
|
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, dataTypesCreateCustomWordListRequest: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
32800
33187
|
}
|
|
33188
|
+
/**
|
|
33189
|
+
* DefaultMenuManagementApi - axios parameter creator
|
|
33190
|
+
* @export
|
|
33191
|
+
*/
|
|
33192
|
+
export declare const DefaultMenuManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33193
|
+
/**
|
|
33194
|
+
* Retrieve all default menus with their global visibility settings
|
|
33195
|
+
* @summary Get all default menus with visibility flags
|
|
33196
|
+
* @param {string} [menuLevel] Filter by menu level (org/store)
|
|
33197
|
+
* @param {*} [options] Override http request option.
|
|
33198
|
+
* @throws {RequiredError}
|
|
33199
|
+
*/
|
|
33200
|
+
adminDefaultMenusGet: (menuLevel?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33201
|
+
/**
|
|
33202
|
+
* Update the global visibility flag for a default menu
|
|
33203
|
+
* @summary Update menu global visibility
|
|
33204
|
+
* @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
|
|
33205
|
+
* @param {*} [options] Override http request option.
|
|
33206
|
+
* @throws {RequiredError}
|
|
33207
|
+
*/
|
|
33208
|
+
adminDefaultMenusVisibilityPut: (defaultMenuRoutesUpdateMenuVisibilityRequest: DefaultMenuRoutesUpdateMenuVisibilityRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33209
|
+
};
|
|
33210
|
+
/**
|
|
33211
|
+
* DefaultMenuManagementApi - functional programming interface
|
|
33212
|
+
* @export
|
|
33213
|
+
*/
|
|
33214
|
+
export declare const DefaultMenuManagementApiFp: (configuration?: Configuration) => {
|
|
33215
|
+
/**
|
|
33216
|
+
* Retrieve all default menus with their global visibility settings
|
|
33217
|
+
* @summary Get all default menus with visibility flags
|
|
33218
|
+
* @param {string} [menuLevel] Filter by menu level (org/store)
|
|
33219
|
+
* @param {*} [options] Override http request option.
|
|
33220
|
+
* @throws {RequiredError}
|
|
33221
|
+
*/
|
|
33222
|
+
adminDefaultMenusGet(menuLevel?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayDataTypesDefaultMenu>>;
|
|
33223
|
+
/**
|
|
33224
|
+
* Update the global visibility flag for a default menu
|
|
33225
|
+
* @summary Update menu global visibility
|
|
33226
|
+
* @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
|
|
33227
|
+
* @param {*} [options] Override http request option.
|
|
33228
|
+
* @throws {RequiredError}
|
|
33229
|
+
*/
|
|
33230
|
+
adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest: DefaultMenuRoutesUpdateMenuVisibilityRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse>>;
|
|
33231
|
+
};
|
|
33232
|
+
/**
|
|
33233
|
+
* DefaultMenuManagementApi - factory interface
|
|
33234
|
+
* @export
|
|
33235
|
+
*/
|
|
33236
|
+
export declare const DefaultMenuManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33237
|
+
/**
|
|
33238
|
+
* Retrieve all default menus with their global visibility settings
|
|
33239
|
+
* @summary Get all default menus with visibility flags
|
|
33240
|
+
* @param {string} [menuLevel] Filter by menu level (org/store)
|
|
33241
|
+
* @param {*} [options] Override http request option.
|
|
33242
|
+
* @throws {RequiredError}
|
|
33243
|
+
*/
|
|
33244
|
+
adminDefaultMenusGet(menuLevel?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayDataTypesDefaultMenu>;
|
|
33245
|
+
/**
|
|
33246
|
+
* Update the global visibility flag for a default menu
|
|
33247
|
+
* @summary Update menu global visibility
|
|
33248
|
+
* @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
|
|
33249
|
+
* @param {*} [options] Override http request option.
|
|
33250
|
+
* @throws {RequiredError}
|
|
33251
|
+
*/
|
|
33252
|
+
adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest: DefaultMenuRoutesUpdateMenuVisibilityRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse>;
|
|
33253
|
+
};
|
|
33254
|
+
/**
|
|
33255
|
+
* DefaultMenuManagementApi - object-oriented interface
|
|
33256
|
+
* @export
|
|
33257
|
+
* @class DefaultMenuManagementApi
|
|
33258
|
+
* @extends {BaseAPI}
|
|
33259
|
+
*/
|
|
33260
|
+
export declare class DefaultMenuManagementApi extends BaseAPI {
|
|
33261
|
+
/**
|
|
33262
|
+
* Retrieve all default menus with their global visibility settings
|
|
33263
|
+
* @summary Get all default menus with visibility flags
|
|
33264
|
+
* @param {string} [menuLevel] Filter by menu level (org/store)
|
|
33265
|
+
* @param {*} [options] Override http request option.
|
|
33266
|
+
* @throws {RequiredError}
|
|
33267
|
+
* @memberof DefaultMenuManagementApi
|
|
33268
|
+
*/
|
|
33269
|
+
adminDefaultMenusGet(menuLevel?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesDefaultMenu, any, {}>>;
|
|
33270
|
+
/**
|
|
33271
|
+
* Update the global visibility flag for a default menu
|
|
33272
|
+
* @summary Update menu global visibility
|
|
33273
|
+
* @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
|
|
33274
|
+
* @param {*} [options] Override http request option.
|
|
33275
|
+
* @throws {RequiredError}
|
|
33276
|
+
* @memberof DefaultMenuManagementApi
|
|
33277
|
+
*/
|
|
33278
|
+
adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest: DefaultMenuRoutesUpdateMenuVisibilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDefaultMenuRoutesUpdateMenuVisibilityResponse, any, {}>>;
|
|
33279
|
+
}
|
|
32801
33280
|
/**
|
|
32802
33281
|
* DocumentsApi - axios parameter creator
|
|
32803
33282
|
* @export
|
|
@@ -34330,6 +34809,98 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
34330
34809
|
*/
|
|
34331
34810
|
miscLimitsPost(dataTypesCreateLimitRequestDto: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
34332
34811
|
}
|
|
34812
|
+
/**
|
|
34813
|
+
* MenuManagementApi - axios parameter creator
|
|
34814
|
+
* @export
|
|
34815
|
+
*/
|
|
34816
|
+
export declare const MenuManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34817
|
+
/**
|
|
34818
|
+
* Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
|
|
34819
|
+
* @summary Add new menu with permissions
|
|
34820
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34821
|
+
* @param {*} [options] Override http request option.
|
|
34822
|
+
* @throws {RequiredError}
|
|
34823
|
+
*/
|
|
34824
|
+
adminMenusAddPost: (menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34825
|
+
/**
|
|
34826
|
+
* Preview what would happen when adding a menu (dry run)
|
|
34827
|
+
* @summary Get menu addition preview
|
|
34828
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34829
|
+
* @param {*} [options] Override http request option.
|
|
34830
|
+
* @throws {RequiredError}
|
|
34831
|
+
*/
|
|
34832
|
+
adminMenusPreviewPost: (menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34833
|
+
};
|
|
34834
|
+
/**
|
|
34835
|
+
* MenuManagementApi - functional programming interface
|
|
34836
|
+
* @export
|
|
34837
|
+
*/
|
|
34838
|
+
export declare const MenuManagementApiFp: (configuration?: Configuration) => {
|
|
34839
|
+
/**
|
|
34840
|
+
* Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
|
|
34841
|
+
* @summary Add new menu with permissions
|
|
34842
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34843
|
+
* @param {*} [options] Override http request option.
|
|
34844
|
+
* @throws {RequiredError}
|
|
34845
|
+
*/
|
|
34846
|
+
adminMenusAddPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseMenuRoutesAddMenuResponse>>;
|
|
34847
|
+
/**
|
|
34848
|
+
* Preview what would happen when adding a menu (dry run)
|
|
34849
|
+
* @summary Get menu addition preview
|
|
34850
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34851
|
+
* @param {*} [options] Override http request option.
|
|
34852
|
+
* @throws {RequiredError}
|
|
34853
|
+
*/
|
|
34854
|
+
adminMenusPreviewPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseString>>;
|
|
34855
|
+
};
|
|
34856
|
+
/**
|
|
34857
|
+
* MenuManagementApi - factory interface
|
|
34858
|
+
* @export
|
|
34859
|
+
*/
|
|
34860
|
+
export declare const MenuManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
34861
|
+
/**
|
|
34862
|
+
* Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
|
|
34863
|
+
* @summary Add new menu with permissions
|
|
34864
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34865
|
+
* @param {*} [options] Override http request option.
|
|
34866
|
+
* @throws {RequiredError}
|
|
34867
|
+
*/
|
|
34868
|
+
adminMenusAddPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseMenuRoutesAddMenuResponse>;
|
|
34869
|
+
/**
|
|
34870
|
+
* Preview what would happen when adding a menu (dry run)
|
|
34871
|
+
* @summary Get menu addition preview
|
|
34872
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34873
|
+
* @param {*} [options] Override http request option.
|
|
34874
|
+
* @throws {RequiredError}
|
|
34875
|
+
*/
|
|
34876
|
+
adminMenusPreviewPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseString>;
|
|
34877
|
+
};
|
|
34878
|
+
/**
|
|
34879
|
+
* MenuManagementApi - object-oriented interface
|
|
34880
|
+
* @export
|
|
34881
|
+
* @class MenuManagementApi
|
|
34882
|
+
* @extends {BaseAPI}
|
|
34883
|
+
*/
|
|
34884
|
+
export declare class MenuManagementApi extends BaseAPI {
|
|
34885
|
+
/**
|
|
34886
|
+
* Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
|
|
34887
|
+
* @summary Add new menu with permissions
|
|
34888
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34889
|
+
* @param {*} [options] Override http request option.
|
|
34890
|
+
* @throws {RequiredError}
|
|
34891
|
+
* @memberof MenuManagementApi
|
|
34892
|
+
*/
|
|
34893
|
+
adminMenusAddPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseMenuRoutesAddMenuResponse, any, {}>>;
|
|
34894
|
+
/**
|
|
34895
|
+
* Preview what would happen when adding a menu (dry run)
|
|
34896
|
+
* @summary Get menu addition preview
|
|
34897
|
+
* @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
|
|
34898
|
+
* @param {*} [options] Override http request option.
|
|
34899
|
+
* @throws {RequiredError}
|
|
34900
|
+
* @memberof MenuManagementApi
|
|
34901
|
+
*/
|
|
34902
|
+
adminMenusPreviewPost(menuRoutesAddMenuRequest: MenuRoutesAddMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseString, any, {}>>;
|
|
34903
|
+
}
|
|
34333
34904
|
/**
|
|
34334
34905
|
* MenuRouteMetricsApi - axios parameter creator
|
|
34335
34906
|
* @export
|
|
@@ -36797,9 +37368,9 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
36797
37368
|
*/
|
|
36798
37369
|
export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
36799
37370
|
/**
|
|
36800
|
-
* Creates a payment order using specified or default payment gateway
|
|
37371
|
+
* Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
|
|
36801
37372
|
* @summary Create a new payment order
|
|
36802
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
37373
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
|
|
36803
37374
|
* @param {*} [options] Override http request option.
|
|
36804
37375
|
* @throws {RequiredError}
|
|
36805
37376
|
*/
|
|
@@ -36918,9 +37489,9 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
36918
37489
|
*/
|
|
36919
37490
|
export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
36920
37491
|
/**
|
|
36921
|
-
* Creates a payment order using specified or default payment gateway
|
|
37492
|
+
* Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
|
|
36922
37493
|
* @summary Create a new payment order
|
|
36923
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
37494
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
|
|
36924
37495
|
* @param {*} [options] Override http request option.
|
|
36925
37496
|
* @throws {RequiredError}
|
|
36926
37497
|
*/
|
|
@@ -37043,9 +37614,9 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
37043
37614
|
*/
|
|
37044
37615
|
export declare const PaymentGatewayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
37045
37616
|
/**
|
|
37046
|
-
* Creates a payment order using specified or default payment gateway
|
|
37617
|
+
* Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
|
|
37047
37618
|
* @summary Create a new payment order
|
|
37048
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
37619
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
|
|
37049
37620
|
* @param {*} [options] Override http request option.
|
|
37050
37621
|
* @throws {RequiredError}
|
|
37051
37622
|
*/
|
|
@@ -37170,9 +37741,9 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
37170
37741
|
*/
|
|
37171
37742
|
export declare class PaymentGatewayApi extends BaseAPI {
|
|
37172
37743
|
/**
|
|
37173
|
-
* Creates a payment order using specified or default payment gateway
|
|
37744
|
+
* Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
|
|
37174
37745
|
* @summary Create a new payment order
|
|
37175
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
37746
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
|
|
37176
37747
|
* @param {*} [options] Override http request option.
|
|
37177
37748
|
* @throws {RequiredError}
|
|
37178
37749
|
* @memberof PaymentGatewayApi
|
|
@@ -43073,7 +43644,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43073
43644
|
* @param {*} [options] Override http request option.
|
|
43074
43645
|
* @throws {RequiredError}
|
|
43075
43646
|
*/
|
|
43076
|
-
|
|
43647
|
+
v1InvitationsInvitationIdDelete: (invitationId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43077
43648
|
/**
|
|
43078
43649
|
* Accepts a team invitation using token
|
|
43079
43650
|
* @summary Accept invitation
|
|
@@ -43081,7 +43652,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43081
43652
|
* @param {*} [options] Override http request option.
|
|
43082
43653
|
* @throws {RequiredError}
|
|
43083
43654
|
*/
|
|
43084
|
-
|
|
43655
|
+
v1InvitationsTokenAcceptPost: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43085
43656
|
/**
|
|
43086
43657
|
* Retrieves all users with access to a store
|
|
43087
43658
|
* @summary Get store access list
|
|
@@ -43089,7 +43660,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43089
43660
|
* @param {*} [options] Override http request option.
|
|
43090
43661
|
* @throws {RequiredError}
|
|
43091
43662
|
*/
|
|
43092
|
-
|
|
43663
|
+
v1StoresStoreIdAccessGet: (storeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43093
43664
|
/**
|
|
43094
43665
|
* Grants a user access to a store
|
|
43095
43666
|
* @summary Grant store access
|
|
@@ -43098,7 +43669,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43098
43669
|
* @param {*} [options] Override http request option.
|
|
43099
43670
|
* @throws {RequiredError}
|
|
43100
43671
|
*/
|
|
43101
|
-
|
|
43672
|
+
v1StoresStoreIdAccessPost: (storeId: number, dataTypesGrantStoreAccessRequest: DataTypesGrantStoreAccessRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43102
43673
|
/**
|
|
43103
43674
|
* Revokes a user\'s access to a store
|
|
43104
43675
|
* @summary Revoke store access
|
|
@@ -43107,7 +43678,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43107
43678
|
* @param {*} [options] Override http request option.
|
|
43108
43679
|
* @throws {RequiredError}
|
|
43109
43680
|
*/
|
|
43110
|
-
|
|
43681
|
+
v1StoresStoreIdAccessUserIdDelete: (storeId: number, userId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43111
43682
|
/**
|
|
43112
43683
|
* Updates a user\'s access level to a store
|
|
43113
43684
|
* @summary Update store access level
|
|
@@ -43117,21 +43688,21 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43117
43688
|
* @param {*} [options] Override http request option.
|
|
43118
43689
|
* @throws {RequiredError}
|
|
43119
43690
|
*/
|
|
43120
|
-
|
|
43691
|
+
v1StoresStoreIdAccessUserIdPut: (storeId: number, userId: number, dataTypesUpdateStoreAccessRequest: DataTypesUpdateStoreAccessRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43121
43692
|
/**
|
|
43122
43693
|
* Retrieves all pending invitations for the user\'s organization
|
|
43123
43694
|
* @summary Get pending invitations
|
|
43124
43695
|
* @param {*} [options] Override http request option.
|
|
43125
43696
|
* @throws {RequiredError}
|
|
43126
43697
|
*/
|
|
43127
|
-
|
|
43698
|
+
v1TeamInvitationsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43128
43699
|
/**
|
|
43129
43700
|
* Retrieves all members of the user\'s organization with their details
|
|
43130
43701
|
* @summary Get all members of an organization
|
|
43131
43702
|
* @param {*} [options] Override http request option.
|
|
43132
43703
|
* @throws {RequiredError}
|
|
43133
43704
|
*/
|
|
43134
|
-
|
|
43705
|
+
v1TeamMembersGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43135
43706
|
/**
|
|
43136
43707
|
* Sends an invitation to a user to join the user\'s organization
|
|
43137
43708
|
* @summary Invite a member to join organization
|
|
@@ -43139,7 +43710,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43139
43710
|
* @param {*} [options] Override http request option.
|
|
43140
43711
|
* @throws {RequiredError}
|
|
43141
43712
|
*/
|
|
43142
|
-
|
|
43713
|
+
v1TeamMembersInvitePost: (dataTypesInviteMemberRequest: DataTypesInviteMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43143
43714
|
/**
|
|
43144
43715
|
* Removes a member from the user\'s organization
|
|
43145
43716
|
* @summary Remove member from organization
|
|
@@ -43147,7 +43718,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43147
43718
|
* @param {*} [options] Override http request option.
|
|
43148
43719
|
* @throws {RequiredError}
|
|
43149
43720
|
*/
|
|
43150
|
-
|
|
43721
|
+
v1TeamMembersMemberIdDelete: (memberId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43151
43722
|
/**
|
|
43152
43723
|
* Updates the role of a member in the user\'s organization
|
|
43153
43724
|
* @summary Update member role
|
|
@@ -43156,7 +43727,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43156
43727
|
* @param {*} [options] Override http request option.
|
|
43157
43728
|
* @throws {RequiredError}
|
|
43158
43729
|
*/
|
|
43159
|
-
|
|
43730
|
+
v1TeamMembersMemberIdRolePut: (memberId: number, dataTypesUpdateMemberRoleRequest: DataTypesUpdateMemberRoleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43160
43731
|
/**
|
|
43161
43732
|
* Retrieves all stores accessible to a user
|
|
43162
43733
|
* @summary Get user\'s accessible stores
|
|
@@ -43164,7 +43735,7 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
43164
43735
|
* @param {*} [options] Override http request option.
|
|
43165
43736
|
* @throws {RequiredError}
|
|
43166
43737
|
*/
|
|
43167
|
-
|
|
43738
|
+
v1UsersUserIdStoresGet: (userId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43168
43739
|
};
|
|
43169
43740
|
/**
|
|
43170
43741
|
* TeamApi - functional programming interface
|
|
@@ -43178,7 +43749,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43178
43749
|
* @param {*} [options] Override http request option.
|
|
43179
43750
|
* @throws {RequiredError}
|
|
43180
43751
|
*/
|
|
43181
|
-
|
|
43752
|
+
v1InvitationsInvitationIdDelete(invitationId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43182
43753
|
/**
|
|
43183
43754
|
* Accepts a team invitation using token
|
|
43184
43755
|
* @summary Accept invitation
|
|
@@ -43186,7 +43757,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43186
43757
|
* @param {*} [options] Override http request option.
|
|
43187
43758
|
* @throws {RequiredError}
|
|
43188
43759
|
*/
|
|
43189
|
-
|
|
43760
|
+
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43190
43761
|
/**
|
|
43191
43762
|
* Retrieves all users with access to a store
|
|
43192
43763
|
* @summary Get store access list
|
|
@@ -43194,7 +43765,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43194
43765
|
* @param {*} [options] Override http request option.
|
|
43195
43766
|
* @throws {RequiredError}
|
|
43196
43767
|
*/
|
|
43197
|
-
|
|
43768
|
+
v1StoresStoreIdAccessGet(storeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreAccessResponse>>;
|
|
43198
43769
|
/**
|
|
43199
43770
|
* Grants a user access to a store
|
|
43200
43771
|
* @summary Grant store access
|
|
@@ -43203,7 +43774,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43203
43774
|
* @param {*} [options] Override http request option.
|
|
43204
43775
|
* @throws {RequiredError}
|
|
43205
43776
|
*/
|
|
43206
|
-
|
|
43777
|
+
v1StoresStoreIdAccessPost(storeId: number, dataTypesGrantStoreAccessRequest: DataTypesGrantStoreAccessRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43207
43778
|
/**
|
|
43208
43779
|
* Revokes a user\'s access to a store
|
|
43209
43780
|
* @summary Revoke store access
|
|
@@ -43212,7 +43783,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43212
43783
|
* @param {*} [options] Override http request option.
|
|
43213
43784
|
* @throws {RequiredError}
|
|
43214
43785
|
*/
|
|
43215
|
-
|
|
43786
|
+
v1StoresStoreIdAccessUserIdDelete(storeId: number, userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43216
43787
|
/**
|
|
43217
43788
|
* Updates a user\'s access level to a store
|
|
43218
43789
|
* @summary Update store access level
|
|
@@ -43222,21 +43793,21 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43222
43793
|
* @param {*} [options] Override http request option.
|
|
43223
43794
|
* @throws {RequiredError}
|
|
43224
43795
|
*/
|
|
43225
|
-
|
|
43796
|
+
v1StoresStoreIdAccessUserIdPut(storeId: number, userId: number, dataTypesUpdateStoreAccessRequest: DataTypesUpdateStoreAccessRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43226
43797
|
/**
|
|
43227
43798
|
* Retrieves all pending invitations for the user\'s organization
|
|
43228
43799
|
* @summary Get pending invitations
|
|
43229
43800
|
* @param {*} [options] Override http request option.
|
|
43230
43801
|
* @throws {RequiredError}
|
|
43231
43802
|
*/
|
|
43232
|
-
|
|
43803
|
+
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesTeamInvitationsResponse>>;
|
|
43233
43804
|
/**
|
|
43234
43805
|
* Retrieves all members of the user\'s organization with their details
|
|
43235
43806
|
* @summary Get all members of an organization
|
|
43236
43807
|
* @param {*} [options] Override http request option.
|
|
43237
43808
|
* @throws {RequiredError}
|
|
43238
43809
|
*/
|
|
43239
|
-
|
|
43810
|
+
v1TeamMembersGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrgMembersResponse>>;
|
|
43240
43811
|
/**
|
|
43241
43812
|
* Sends an invitation to a user to join the user\'s organization
|
|
43242
43813
|
* @summary Invite a member to join organization
|
|
@@ -43244,7 +43815,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43244
43815
|
* @param {*} [options] Override http request option.
|
|
43245
43816
|
* @throws {RequiredError}
|
|
43246
43817
|
*/
|
|
43247
|
-
|
|
43818
|
+
v1TeamMembersInvitePost(dataTypesInviteMemberRequest: DataTypesInviteMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationCreatedResponse>>;
|
|
43248
43819
|
/**
|
|
43249
43820
|
* Removes a member from the user\'s organization
|
|
43250
43821
|
* @summary Remove member from organization
|
|
@@ -43252,7 +43823,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43252
43823
|
* @param {*} [options] Override http request option.
|
|
43253
43824
|
* @throws {RequiredError}
|
|
43254
43825
|
*/
|
|
43255
|
-
|
|
43826
|
+
v1TeamMembersMemberIdDelete(memberId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43256
43827
|
/**
|
|
43257
43828
|
* Updates the role of a member in the user\'s organization
|
|
43258
43829
|
* @summary Update member role
|
|
@@ -43261,7 +43832,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43261
43832
|
* @param {*} [options] Override http request option.
|
|
43262
43833
|
* @throws {RequiredError}
|
|
43263
43834
|
*/
|
|
43264
|
-
|
|
43835
|
+
v1TeamMembersMemberIdRolePut(memberId: number, dataTypesUpdateMemberRoleRequest: DataTypesUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
43265
43836
|
/**
|
|
43266
43837
|
* Retrieves all stores accessible to a user
|
|
43267
43838
|
* @summary Get user\'s accessible stores
|
|
@@ -43269,7 +43840,7 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
43269
43840
|
* @param {*} [options] Override http request option.
|
|
43270
43841
|
* @throws {RequiredError}
|
|
43271
43842
|
*/
|
|
43272
|
-
|
|
43843
|
+
v1UsersUserIdStoresGet(userId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUserStoresResponse>>;
|
|
43273
43844
|
};
|
|
43274
43845
|
/**
|
|
43275
43846
|
* TeamApi - factory interface
|
|
@@ -43283,7 +43854,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43283
43854
|
* @param {*} [options] Override http request option.
|
|
43284
43855
|
* @throws {RequiredError}
|
|
43285
43856
|
*/
|
|
43286
|
-
|
|
43857
|
+
v1InvitationsInvitationIdDelete(invitationId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43287
43858
|
/**
|
|
43288
43859
|
* Accepts a team invitation using token
|
|
43289
43860
|
* @summary Accept invitation
|
|
@@ -43291,7 +43862,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43291
43862
|
* @param {*} [options] Override http request option.
|
|
43292
43863
|
* @throws {RequiredError}
|
|
43293
43864
|
*/
|
|
43294
|
-
|
|
43865
|
+
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43295
43866
|
/**
|
|
43296
43867
|
* Retrieves all users with access to a store
|
|
43297
43868
|
* @summary Get store access list
|
|
@@ -43299,7 +43870,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43299
43870
|
* @param {*} [options] Override http request option.
|
|
43300
43871
|
* @throws {RequiredError}
|
|
43301
43872
|
*/
|
|
43302
|
-
|
|
43873
|
+
v1StoresStoreIdAccessGet(storeId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreAccessResponse>;
|
|
43303
43874
|
/**
|
|
43304
43875
|
* Grants a user access to a store
|
|
43305
43876
|
* @summary Grant store access
|
|
@@ -43308,7 +43879,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43308
43879
|
* @param {*} [options] Override http request option.
|
|
43309
43880
|
* @throws {RequiredError}
|
|
43310
43881
|
*/
|
|
43311
|
-
|
|
43882
|
+
v1StoresStoreIdAccessPost(storeId: number, dataTypesGrantStoreAccessRequest: DataTypesGrantStoreAccessRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43312
43883
|
/**
|
|
43313
43884
|
* Revokes a user\'s access to a store
|
|
43314
43885
|
* @summary Revoke store access
|
|
@@ -43317,7 +43888,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43317
43888
|
* @param {*} [options] Override http request option.
|
|
43318
43889
|
* @throws {RequiredError}
|
|
43319
43890
|
*/
|
|
43320
|
-
|
|
43891
|
+
v1StoresStoreIdAccessUserIdDelete(storeId: number, userId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43321
43892
|
/**
|
|
43322
43893
|
* Updates a user\'s access level to a store
|
|
43323
43894
|
* @summary Update store access level
|
|
@@ -43327,21 +43898,21 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43327
43898
|
* @param {*} [options] Override http request option.
|
|
43328
43899
|
* @throws {RequiredError}
|
|
43329
43900
|
*/
|
|
43330
|
-
|
|
43901
|
+
v1StoresStoreIdAccessUserIdPut(storeId: number, userId: number, dataTypesUpdateStoreAccessRequest: DataTypesUpdateStoreAccessRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43331
43902
|
/**
|
|
43332
43903
|
* Retrieves all pending invitations for the user\'s organization
|
|
43333
43904
|
* @summary Get pending invitations
|
|
43334
43905
|
* @param {*} [options] Override http request option.
|
|
43335
43906
|
* @throws {RequiredError}
|
|
43336
43907
|
*/
|
|
43337
|
-
|
|
43908
|
+
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesTeamInvitationsResponse>;
|
|
43338
43909
|
/**
|
|
43339
43910
|
* Retrieves all members of the user\'s organization with their details
|
|
43340
43911
|
* @summary Get all members of an organization
|
|
43341
43912
|
* @param {*} [options] Override http request option.
|
|
43342
43913
|
* @throws {RequiredError}
|
|
43343
43914
|
*/
|
|
43344
|
-
|
|
43915
|
+
v1TeamMembersGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrgMembersResponse>;
|
|
43345
43916
|
/**
|
|
43346
43917
|
* Sends an invitation to a user to join the user\'s organization
|
|
43347
43918
|
* @summary Invite a member to join organization
|
|
@@ -43349,7 +43920,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43349
43920
|
* @param {*} [options] Override http request option.
|
|
43350
43921
|
* @throws {RequiredError}
|
|
43351
43922
|
*/
|
|
43352
|
-
|
|
43923
|
+
v1TeamMembersInvitePost(dataTypesInviteMemberRequest: DataTypesInviteMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationCreatedResponse>;
|
|
43353
43924
|
/**
|
|
43354
43925
|
* Removes a member from the user\'s organization
|
|
43355
43926
|
* @summary Remove member from organization
|
|
@@ -43357,7 +43928,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43357
43928
|
* @param {*} [options] Override http request option.
|
|
43358
43929
|
* @throws {RequiredError}
|
|
43359
43930
|
*/
|
|
43360
|
-
|
|
43931
|
+
v1TeamMembersMemberIdDelete(memberId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43361
43932
|
/**
|
|
43362
43933
|
* Updates the role of a member in the user\'s organization
|
|
43363
43934
|
* @summary Update member role
|
|
@@ -43366,7 +43937,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43366
43937
|
* @param {*} [options] Override http request option.
|
|
43367
43938
|
* @throws {RequiredError}
|
|
43368
43939
|
*/
|
|
43369
|
-
|
|
43940
|
+
v1TeamMembersMemberIdRolePut(memberId: number, dataTypesUpdateMemberRoleRequest: DataTypesUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
43370
43941
|
/**
|
|
43371
43942
|
* Retrieves all stores accessible to a user
|
|
43372
43943
|
* @summary Get user\'s accessible stores
|
|
@@ -43374,7 +43945,7 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
43374
43945
|
* @param {*} [options] Override http request option.
|
|
43375
43946
|
* @throws {RequiredError}
|
|
43376
43947
|
*/
|
|
43377
|
-
|
|
43948
|
+
v1UsersUserIdStoresGet(userId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUserStoresResponse>;
|
|
43378
43949
|
};
|
|
43379
43950
|
/**
|
|
43380
43951
|
* TeamApi - object-oriented interface
|
|
@@ -43391,7 +43962,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43391
43962
|
* @throws {RequiredError}
|
|
43392
43963
|
* @memberof TeamApi
|
|
43393
43964
|
*/
|
|
43394
|
-
|
|
43965
|
+
v1InvitationsInvitationIdDelete(invitationId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43395
43966
|
/**
|
|
43396
43967
|
* Accepts a team invitation using token
|
|
43397
43968
|
* @summary Accept invitation
|
|
@@ -43400,7 +43971,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43400
43971
|
* @throws {RequiredError}
|
|
43401
43972
|
* @memberof TeamApi
|
|
43402
43973
|
*/
|
|
43403
|
-
|
|
43974
|
+
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43404
43975
|
/**
|
|
43405
43976
|
* Retrieves all users with access to a store
|
|
43406
43977
|
* @summary Get store access list
|
|
@@ -43409,7 +43980,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43409
43980
|
* @throws {RequiredError}
|
|
43410
43981
|
* @memberof TeamApi
|
|
43411
43982
|
*/
|
|
43412
|
-
|
|
43983
|
+
v1StoresStoreIdAccessGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreAccessResponse, any, {}>>;
|
|
43413
43984
|
/**
|
|
43414
43985
|
* Grants a user access to a store
|
|
43415
43986
|
* @summary Grant store access
|
|
@@ -43419,7 +43990,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43419
43990
|
* @throws {RequiredError}
|
|
43420
43991
|
* @memberof TeamApi
|
|
43421
43992
|
*/
|
|
43422
|
-
|
|
43993
|
+
v1StoresStoreIdAccessPost(storeId: number, dataTypesGrantStoreAccessRequest: DataTypesGrantStoreAccessRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43423
43994
|
/**
|
|
43424
43995
|
* Revokes a user\'s access to a store
|
|
43425
43996
|
* @summary Revoke store access
|
|
@@ -43429,7 +44000,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43429
44000
|
* @throws {RequiredError}
|
|
43430
44001
|
* @memberof TeamApi
|
|
43431
44002
|
*/
|
|
43432
|
-
|
|
44003
|
+
v1StoresStoreIdAccessUserIdDelete(storeId: number, userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43433
44004
|
/**
|
|
43434
44005
|
* Updates a user\'s access level to a store
|
|
43435
44006
|
* @summary Update store access level
|
|
@@ -43440,7 +44011,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43440
44011
|
* @throws {RequiredError}
|
|
43441
44012
|
* @memberof TeamApi
|
|
43442
44013
|
*/
|
|
43443
|
-
|
|
44014
|
+
v1StoresStoreIdAccessUserIdPut(storeId: number, userId: number, dataTypesUpdateStoreAccessRequest: DataTypesUpdateStoreAccessRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43444
44015
|
/**
|
|
43445
44016
|
* Retrieves all pending invitations for the user\'s organization
|
|
43446
44017
|
* @summary Get pending invitations
|
|
@@ -43448,7 +44019,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43448
44019
|
* @throws {RequiredError}
|
|
43449
44020
|
* @memberof TeamApi
|
|
43450
44021
|
*/
|
|
43451
|
-
|
|
44022
|
+
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTeamInvitationsResponse, any, {}>>;
|
|
43452
44023
|
/**
|
|
43453
44024
|
* Retrieves all members of the user\'s organization with their details
|
|
43454
44025
|
* @summary Get all members of an organization
|
|
@@ -43456,7 +44027,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43456
44027
|
* @throws {RequiredError}
|
|
43457
44028
|
* @memberof TeamApi
|
|
43458
44029
|
*/
|
|
43459
|
-
|
|
44030
|
+
v1TeamMembersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrgMembersResponse, any, {}>>;
|
|
43460
44031
|
/**
|
|
43461
44032
|
* Sends an invitation to a user to join the user\'s organization
|
|
43462
44033
|
* @summary Invite a member to join organization
|
|
@@ -43465,7 +44036,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43465
44036
|
* @throws {RequiredError}
|
|
43466
44037
|
* @memberof TeamApi
|
|
43467
44038
|
*/
|
|
43468
|
-
|
|
44039
|
+
v1TeamMembersInvitePost(dataTypesInviteMemberRequest: DataTypesInviteMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesInvitationCreatedResponse, any, {}>>;
|
|
43469
44040
|
/**
|
|
43470
44041
|
* Removes a member from the user\'s organization
|
|
43471
44042
|
* @summary Remove member from organization
|
|
@@ -43474,7 +44045,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43474
44045
|
* @throws {RequiredError}
|
|
43475
44046
|
* @memberof TeamApi
|
|
43476
44047
|
*/
|
|
43477
|
-
|
|
44048
|
+
v1TeamMembersMemberIdDelete(memberId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43478
44049
|
/**
|
|
43479
44050
|
* Updates the role of a member in the user\'s organization
|
|
43480
44051
|
* @summary Update member role
|
|
@@ -43484,7 +44055,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43484
44055
|
* @throws {RequiredError}
|
|
43485
44056
|
* @memberof TeamApi
|
|
43486
44057
|
*/
|
|
43487
|
-
|
|
44058
|
+
v1TeamMembersMemberIdRolePut(memberId: number, dataTypesUpdateMemberRoleRequest: DataTypesUpdateMemberRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
43488
44059
|
/**
|
|
43489
44060
|
* Retrieves all stores accessible to a user
|
|
43490
44061
|
* @summary Get user\'s accessible stores
|
|
@@ -43493,7 +44064,7 @@ export declare class TeamApi extends BaseAPI {
|
|
|
43493
44064
|
* @throws {RequiredError}
|
|
43494
44065
|
* @memberof TeamApi
|
|
43495
44066
|
*/
|
|
43496
|
-
|
|
44067
|
+
v1UsersUserIdStoresGet(userId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserStoresResponse, any, {}>>;
|
|
43497
44068
|
}
|
|
43498
44069
|
/**
|
|
43499
44070
|
* UserApi - axios parameter creator
|