ch-admin-api-client-typescript 2.4.5 → 2.5.0
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/lib/api.d.ts +178 -42
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +177 -0
- package/package.json +1 -1
- package/src/api.ts +256 -40
package/lib/api.d.ts
CHANGED
|
@@ -4714,13 +4714,13 @@ export interface DoctorCertificateItemModel {
|
|
|
4714
4714
|
* @type {string}
|
|
4715
4715
|
* @memberof DoctorCertificateItemModel
|
|
4716
4716
|
*/
|
|
4717
|
-
'
|
|
4717
|
+
'id'?: string;
|
|
4718
4718
|
/**
|
|
4719
4719
|
*
|
|
4720
4720
|
* @type {string}
|
|
4721
4721
|
* @memberof DoctorCertificateItemModel
|
|
4722
4722
|
*/
|
|
4723
|
-
'
|
|
4723
|
+
'doctorId'?: string;
|
|
4724
4724
|
/**
|
|
4725
4725
|
*
|
|
4726
4726
|
* @type {string}
|
|
@@ -4757,13 +4757,13 @@ export interface DoctorCertificateModel {
|
|
|
4757
4757
|
* @type {string}
|
|
4758
4758
|
* @memberof DoctorCertificateModel
|
|
4759
4759
|
*/
|
|
4760
|
-
'
|
|
4760
|
+
'id'?: string;
|
|
4761
4761
|
/**
|
|
4762
4762
|
*
|
|
4763
4763
|
* @type {string}
|
|
4764
4764
|
* @memberof DoctorCertificateModel
|
|
4765
4765
|
*/
|
|
4766
|
-
'
|
|
4766
|
+
'doctorId'?: string;
|
|
4767
4767
|
/**
|
|
4768
4768
|
*
|
|
4769
4769
|
* @type {string}
|
|
@@ -5027,6 +5027,24 @@ export interface DoctorItemModel {
|
|
|
5027
5027
|
* @memberof DoctorItemModel
|
|
5028
5028
|
*/
|
|
5029
5029
|
'auditableEntity'?: AuditableEntity;
|
|
5030
|
+
/**
|
|
5031
|
+
*
|
|
5032
|
+
* @type {string}
|
|
5033
|
+
* @memberof DoctorItemModel
|
|
5034
|
+
*/
|
|
5035
|
+
'userType'?: string | null;
|
|
5036
|
+
/**
|
|
5037
|
+
*
|
|
5038
|
+
* @type {Array<UserLanguageModel>}
|
|
5039
|
+
* @memberof DoctorItemModel
|
|
5040
|
+
*/
|
|
5041
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
5042
|
+
/**
|
|
5043
|
+
*
|
|
5044
|
+
* @type {Array<UserLocationModel>}
|
|
5045
|
+
* @memberof DoctorItemModel
|
|
5046
|
+
*/
|
|
5047
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
5030
5048
|
/**
|
|
5031
5049
|
*
|
|
5032
5050
|
* @type {string}
|
|
@@ -5045,12 +5063,30 @@ export interface DoctorItemModel {
|
|
|
5045
5063
|
* @memberof DoctorItemModel
|
|
5046
5064
|
*/
|
|
5047
5065
|
'hospitalName'?: string | null;
|
|
5066
|
+
/**
|
|
5067
|
+
*
|
|
5068
|
+
* @type {Date}
|
|
5069
|
+
* @memberof DoctorItemModel
|
|
5070
|
+
*/
|
|
5071
|
+
'startPracticeDate'?: Date | null;
|
|
5048
5072
|
/**
|
|
5049
5073
|
*
|
|
5050
5074
|
* @type {string}
|
|
5051
5075
|
* @memberof DoctorItemModel
|
|
5052
5076
|
*/
|
|
5053
5077
|
'overview'?: string | null;
|
|
5078
|
+
/**
|
|
5079
|
+
*
|
|
5080
|
+
* @type {boolean}
|
|
5081
|
+
* @memberof DoctorItemModel
|
|
5082
|
+
*/
|
|
5083
|
+
'consultationEnabled'?: boolean | null;
|
|
5084
|
+
/**
|
|
5085
|
+
*
|
|
5086
|
+
* @type {number}
|
|
5087
|
+
* @memberof DoctorItemModel
|
|
5088
|
+
*/
|
|
5089
|
+
'consultationFee'?: number | null;
|
|
5054
5090
|
/**
|
|
5055
5091
|
*
|
|
5056
5092
|
* @type {boolean}
|
|
@@ -5174,16 +5210,40 @@ export interface DoctorModel {
|
|
|
5174
5210
|
'slug'?: string | null;
|
|
5175
5211
|
/**
|
|
5176
5212
|
*
|
|
5177
|
-
* @type {
|
|
5213
|
+
* @type {string}
|
|
5178
5214
|
* @memberof DoctorModel
|
|
5179
5215
|
*/
|
|
5180
|
-
'
|
|
5216
|
+
'hospitalId'?: string | null;
|
|
5217
|
+
/**
|
|
5218
|
+
*
|
|
5219
|
+
* @type {string}
|
|
5220
|
+
* @memberof DoctorModel
|
|
5221
|
+
*/
|
|
5222
|
+
'hospitalName'?: string | null;
|
|
5223
|
+
/**
|
|
5224
|
+
*
|
|
5225
|
+
* @type {Date}
|
|
5226
|
+
* @memberof DoctorModel
|
|
5227
|
+
*/
|
|
5228
|
+
'startPracticeDate'?: Date | null;
|
|
5181
5229
|
/**
|
|
5182
5230
|
*
|
|
5183
5231
|
* @type {string}
|
|
5184
5232
|
* @memberof DoctorModel
|
|
5185
5233
|
*/
|
|
5186
5234
|
'overview'?: string | null;
|
|
5235
|
+
/**
|
|
5236
|
+
*
|
|
5237
|
+
* @type {boolean}
|
|
5238
|
+
* @memberof DoctorModel
|
|
5239
|
+
*/
|
|
5240
|
+
'consultationEnabled'?: boolean | null;
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @type {number}
|
|
5244
|
+
* @memberof DoctorModel
|
|
5245
|
+
*/
|
|
5246
|
+
'consultationFee'?: number | null;
|
|
5187
5247
|
/**
|
|
5188
5248
|
*
|
|
5189
5249
|
* @type {boolean}
|
|
@@ -6989,6 +7049,24 @@ export interface ManagerItemModel {
|
|
|
6989
7049
|
* @memberof ManagerItemModel
|
|
6990
7050
|
*/
|
|
6991
7051
|
'auditableEntity'?: AuditableEntity;
|
|
7052
|
+
/**
|
|
7053
|
+
*
|
|
7054
|
+
* @type {string}
|
|
7055
|
+
* @memberof ManagerItemModel
|
|
7056
|
+
*/
|
|
7057
|
+
'userType'?: string | null;
|
|
7058
|
+
/**
|
|
7059
|
+
*
|
|
7060
|
+
* @type {Array<UserLanguageModel>}
|
|
7061
|
+
* @memberof ManagerItemModel
|
|
7062
|
+
*/
|
|
7063
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
7064
|
+
/**
|
|
7065
|
+
*
|
|
7066
|
+
* @type {Array<UserLocationModel>}
|
|
7067
|
+
* @memberof ManagerItemModel
|
|
7068
|
+
*/
|
|
7069
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
6992
7070
|
/**
|
|
6993
7071
|
*
|
|
6994
7072
|
* @type {string}
|
|
@@ -7001,6 +7079,12 @@ export interface ManagerItemModel {
|
|
|
7001
7079
|
* @memberof ManagerItemModel
|
|
7002
7080
|
*/
|
|
7003
7081
|
'hospitalName'?: string | null;
|
|
7082
|
+
/**
|
|
7083
|
+
*
|
|
7084
|
+
* @type {number}
|
|
7085
|
+
* @memberof ManagerItemModel
|
|
7086
|
+
*/
|
|
7087
|
+
'affiliationsCount'?: number;
|
|
7004
7088
|
}
|
|
7005
7089
|
/**
|
|
7006
7090
|
*
|
|
@@ -7110,6 +7194,18 @@ export interface ManagerModel {
|
|
|
7110
7194
|
* @memberof ManagerModel
|
|
7111
7195
|
*/
|
|
7112
7196
|
'locations'?: Array<UserLocationModel> | null;
|
|
7197
|
+
/**
|
|
7198
|
+
*
|
|
7199
|
+
* @type {string}
|
|
7200
|
+
* @memberof ManagerModel
|
|
7201
|
+
*/
|
|
7202
|
+
'hospitalId'?: string | null;
|
|
7203
|
+
/**
|
|
7204
|
+
*
|
|
7205
|
+
* @type {string}
|
|
7206
|
+
* @memberof ManagerModel
|
|
7207
|
+
*/
|
|
7208
|
+
'hospitalName'?: string | null;
|
|
7113
7209
|
/**
|
|
7114
7210
|
*
|
|
7115
7211
|
* @type {number}
|
|
@@ -10146,42 +10242,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
10146
10242
|
* @memberof UpdateSpecialtyCommand
|
|
10147
10243
|
*/
|
|
10148
10244
|
'content'?: string | null;
|
|
10149
|
-
/**
|
|
10150
|
-
*
|
|
10151
|
-
* @type {number}
|
|
10152
|
-
* @memberof UpdateSpecialtyCommand
|
|
10153
|
-
*/
|
|
10154
|
-
'hospitalSpecialtyCount'?: number;
|
|
10155
|
-
/**
|
|
10156
|
-
*
|
|
10157
|
-
* @type {number}
|
|
10158
|
-
* @memberof UpdateSpecialtyCommand
|
|
10159
|
-
*/
|
|
10160
|
-
'serviceCount'?: number;
|
|
10161
10245
|
/**
|
|
10162
10246
|
*
|
|
10163
10247
|
* @type {string}
|
|
10164
10248
|
* @memberof UpdateSpecialtyCommand
|
|
10165
10249
|
*/
|
|
10166
10250
|
'specialtyTypeId'?: string;
|
|
10167
|
-
/**
|
|
10168
|
-
*
|
|
10169
|
-
* @type {string}
|
|
10170
|
-
* @memberof UpdateSpecialtyCommand
|
|
10171
|
-
*/
|
|
10172
|
-
'specialtyTypeName'?: string | null;
|
|
10173
|
-
/**
|
|
10174
|
-
*
|
|
10175
|
-
* @type {boolean}
|
|
10176
|
-
* @memberof UpdateSpecialtyCommand
|
|
10177
|
-
*/
|
|
10178
|
-
'confirmed'?: boolean;
|
|
10179
|
-
/**
|
|
10180
|
-
*
|
|
10181
|
-
* @type {AuditableEntity}
|
|
10182
|
-
* @memberof UpdateSpecialtyCommand
|
|
10183
|
-
*/
|
|
10184
|
-
'auditableEntity'?: AuditableEntity;
|
|
10185
10251
|
}
|
|
10186
10252
|
/**
|
|
10187
10253
|
*
|
|
@@ -13665,6 +13731,14 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13665
13731
|
* @throws {RequiredError}
|
|
13666
13732
|
*/
|
|
13667
13733
|
apiV1CountriesCountryIdPut: (countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13734
|
+
/**
|
|
13735
|
+
*
|
|
13736
|
+
* @summary Reactivate country.
|
|
13737
|
+
* @param {string} countryId
|
|
13738
|
+
* @param {*} [options] Override http request option.
|
|
13739
|
+
* @throws {RequiredError}
|
|
13740
|
+
*/
|
|
13741
|
+
apiV1CountriesCountryIdRevokePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13668
13742
|
/**
|
|
13669
13743
|
*
|
|
13670
13744
|
* @summary Get all countries.
|
|
@@ -13780,6 +13854,14 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
13780
13854
|
* @throws {RequiredError}
|
|
13781
13855
|
*/
|
|
13782
13856
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
13857
|
+
/**
|
|
13858
|
+
*
|
|
13859
|
+
* @summary Reactivate country.
|
|
13860
|
+
* @param {string} countryId
|
|
13861
|
+
* @param {*} [options] Override http request option.
|
|
13862
|
+
* @throws {RequiredError}
|
|
13863
|
+
*/
|
|
13864
|
+
apiV1CountriesCountryIdRevokePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13783
13865
|
/**
|
|
13784
13866
|
*
|
|
13785
13867
|
* @summary Get all countries.
|
|
@@ -13895,6 +13977,14 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
13895
13977
|
* @throws {RequiredError}
|
|
13896
13978
|
*/
|
|
13897
13979
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
13980
|
+
/**
|
|
13981
|
+
*
|
|
13982
|
+
* @summary Reactivate country.
|
|
13983
|
+
* @param {string} countryId
|
|
13984
|
+
* @param {*} [options] Override http request option.
|
|
13985
|
+
* @throws {RequiredError}
|
|
13986
|
+
*/
|
|
13987
|
+
apiV1CountriesCountryIdRevokePut(countryId: string, options?: any): AxiosPromise<boolean>;
|
|
13898
13988
|
/**
|
|
13899
13989
|
*
|
|
13900
13990
|
* @summary Get all countries.
|
|
@@ -14020,6 +14110,15 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14020
14110
|
* @memberof CountriesApi
|
|
14021
14111
|
*/
|
|
14022
14112
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
14113
|
+
/**
|
|
14114
|
+
*
|
|
14115
|
+
* @summary Reactivate country.
|
|
14116
|
+
* @param {string} countryId
|
|
14117
|
+
* @param {*} [options] Override http request option.
|
|
14118
|
+
* @throws {RequiredError}
|
|
14119
|
+
* @memberof CountriesApi
|
|
14120
|
+
*/
|
|
14121
|
+
apiV1CountriesCountryIdRevokePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14023
14122
|
/**
|
|
14024
14123
|
*
|
|
14025
14124
|
* @summary Get all countries.
|
|
@@ -15108,6 +15207,15 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15108
15207
|
* @throws {RequiredError}
|
|
15109
15208
|
*/
|
|
15110
15209
|
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15210
|
+
/**
|
|
15211
|
+
*
|
|
15212
|
+
* @summary Get Doctor by slug.
|
|
15213
|
+
* @param {string} slug
|
|
15214
|
+
* @param {string} [languageCode]
|
|
15215
|
+
* @param {*} [options] Override http request option.
|
|
15216
|
+
* @throws {RequiredError}
|
|
15217
|
+
*/
|
|
15218
|
+
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15111
15219
|
};
|
|
15112
15220
|
/**
|
|
15113
15221
|
* DoctorsApi - functional programming interface
|
|
@@ -15383,7 +15491,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15383
15491
|
* @param {*} [options] Override http request option.
|
|
15384
15492
|
* @throws {RequiredError}
|
|
15385
15493
|
*/
|
|
15386
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
15494
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15387
15495
|
/**
|
|
15388
15496
|
*
|
|
15389
15497
|
* @summary Get All DoctorSpecialties.
|
|
@@ -15462,6 +15570,15 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15462
15570
|
* @throws {RequiredError}
|
|
15463
15571
|
*/
|
|
15464
15572
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15573
|
+
/**
|
|
15574
|
+
*
|
|
15575
|
+
* @summary Get Doctor by slug.
|
|
15576
|
+
* @param {string} slug
|
|
15577
|
+
* @param {string} [languageCode]
|
|
15578
|
+
* @param {*} [options] Override http request option.
|
|
15579
|
+
* @throws {RequiredError}
|
|
15580
|
+
*/
|
|
15581
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15465
15582
|
};
|
|
15466
15583
|
/**
|
|
15467
15584
|
* DoctorsApi - factory interface
|
|
@@ -15737,7 +15854,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
15737
15854
|
* @param {*} [options] Override http request option.
|
|
15738
15855
|
* @throws {RequiredError}
|
|
15739
15856
|
*/
|
|
15740
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
15857
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
15741
15858
|
/**
|
|
15742
15859
|
*
|
|
15743
15860
|
* @summary Get All DoctorSpecialties.
|
|
@@ -15816,6 +15933,15 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
15816
15933
|
* @throws {RequiredError}
|
|
15817
15934
|
*/
|
|
15818
15935
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
15936
|
+
/**
|
|
15937
|
+
*
|
|
15938
|
+
* @summary Get Doctor by slug.
|
|
15939
|
+
* @param {string} slug
|
|
15940
|
+
* @param {string} [languageCode]
|
|
15941
|
+
* @param {*} [options] Override http request option.
|
|
15942
|
+
* @throws {RequiredError}
|
|
15943
|
+
*/
|
|
15944
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
15819
15945
|
};
|
|
15820
15946
|
/**
|
|
15821
15947
|
* DoctorsApi - object-oriented interface
|
|
@@ -16120,7 +16246,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16120
16246
|
* @throws {RequiredError}
|
|
16121
16247
|
* @memberof DoctorsApi
|
|
16122
16248
|
*/
|
|
16123
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
16249
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16124
16250
|
/**
|
|
16125
16251
|
*
|
|
16126
16252
|
* @summary Get All DoctorSpecialties.
|
|
@@ -16206,6 +16332,16 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16206
16332
|
* @memberof DoctorsApi
|
|
16207
16333
|
*/
|
|
16208
16334
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16335
|
+
/**
|
|
16336
|
+
*
|
|
16337
|
+
* @summary Get Doctor by slug.
|
|
16338
|
+
* @param {string} slug
|
|
16339
|
+
* @param {string} [languageCode]
|
|
16340
|
+
* @param {*} [options] Override http request option.
|
|
16341
|
+
* @throws {RequiredError}
|
|
16342
|
+
* @memberof DoctorsApi
|
|
16343
|
+
*/
|
|
16344
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16209
16345
|
}
|
|
16210
16346
|
/**
|
|
16211
16347
|
* HospitalsApi - axios parameter creator
|
|
@@ -18706,7 +18842,7 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
|
|
|
18706
18842
|
* @param {*} [options] Override http request option.
|
|
18707
18843
|
* @throws {RequiredError}
|
|
18708
18844
|
*/
|
|
18709
|
-
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
18845
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
18710
18846
|
/**
|
|
18711
18847
|
*
|
|
18712
18848
|
* @summary Create a Manager.
|
|
@@ -18801,7 +18937,7 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
|
|
|
18801
18937
|
* @param {*} [options] Override http request option.
|
|
18802
18938
|
* @throws {RequiredError}
|
|
18803
18939
|
*/
|
|
18804
|
-
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<
|
|
18940
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<ManagerModel>;
|
|
18805
18941
|
/**
|
|
18806
18942
|
*
|
|
18807
18943
|
* @summary Create a Manager.
|
|
@@ -18906,7 +19042,7 @@ export declare class ManagersApi extends BaseAPI {
|
|
|
18906
19042
|
* @throws {RequiredError}
|
|
18907
19043
|
* @memberof ManagersApi
|
|
18908
19044
|
*/
|
|
18909
|
-
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19045
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
18910
19046
|
/**
|
|
18911
19047
|
*
|
|
18912
19048
|
* @summary Create a Manager.
|