ch-admin-api-client-typescript 5.13.5 → 5.14.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/about-us-api.d.ts +56 -0
- package/lib/api/about-us-api.d.ts.map +1 -1
- package/lib/api/about-us-api.js +90 -0
- package/lib/api/countries-api.d.ts +9 -9
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +10 -10
- package/lib/api/curations-api.d.ts +448 -0
- package/lib/api/curations-api.d.ts.map +1 -0
- package/lib/api/curations-api.js +785 -0
- package/lib/api/deals-api.d.ts +56 -0
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +90 -0
- package/lib/api/doctor-affiliations-api.d.ts +9 -9
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +10 -10
- package/lib/api/doctors-api.d.ts +9 -9
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +10 -10
- package/lib/api/hospitals-api.d.ts +114 -49
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +150 -54
- package/lib/api/patients-api.d.ts +10 -10
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +11 -11
- package/lib/api/specialties-api.d.ts +9 -9
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +10 -10
- package/lib/api/specialty-types-api.d.ts +9 -9
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +10 -10
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/create-curation-command.d.ts +103 -0
- package/lib/models/create-curation-command.d.ts.map +1 -0
- package/lib/models/create-curation-command.js +15 -0
- package/lib/models/curation-model.d.ts +104 -0
- package/lib/models/curation-model.d.ts.map +1 -0
- package/lib/models/curation-model.js +15 -0
- package/lib/models/curations-model.d.ts +33 -0
- package/lib/models/curations-model.d.ts.map +1 -0
- package/lib/models/curations-model.js +15 -0
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/specialty-type-item-model.d.ts +0 -6
- package/lib/models/specialty-type-item-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +0 -6
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/translate-about-us-page-command.d.ts +44 -0
- package/lib/models/translate-about-us-page-command.d.ts.map +1 -0
- package/lib/models/translate-about-us-page-command.js +15 -0
- package/lib/models/translate-deal-command.d.ts +44 -0
- package/lib/models/translate-deal-command.d.ts.map +1 -0
- package/lib/models/translate-deal-command.js +15 -0
- package/lib/models/translate-landing-command.d.ts +44 -0
- package/lib/models/translate-landing-command.d.ts.map +1 -0
- package/lib/models/translate-landing-command.js +15 -0
- package/lib/models/update-curation-command.d.ts +91 -0
- package/lib/models/update-curation-command.d.ts.map +1 -0
- package/lib/models/update-curation-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/about-us-api.ts +100 -0
- package/src/api/countries-api.ts +14 -14
- package/src/api/curations-api.ts +795 -0
- package/src/api/deals-api.ts +100 -0
- package/src/api/doctor-affiliations-api.ts +14 -14
- package/src/api/doctors-api.ts +14 -14
- package/src/api/hospitals-api.ts +191 -78
- package/src/api/patients-api.ts +16 -16
- package/src/api/specialties-api.ts +14 -14
- package/src/api/specialty-types-api.ts +14 -14
- package/src/api.ts +1 -0
- package/src/models/create-curation-command.ts +108 -0
- package/src/models/curation-model.ts +111 -0
- package/src/models/curations-model.ts +42 -0
- package/src/models/index.ts +7 -0
- package/src/models/specialty-type-item-model.ts +0 -6
- package/src/models/specialty-type-model.ts +0 -6
- package/src/models/translate-about-us-page-command.ts +51 -0
- package/src/models/translate-deal-command.ts +51 -0
- package/src/models/translate-landing-command.ts +51 -0
- package/src/models/update-curation-command.ts +96 -0
package/src/api/deals-api.ts
CHANGED
|
@@ -61,6 +61,8 @@ import { SaveAppointmentTimetableOverridesResultModel } from '../models';
|
|
|
61
61
|
// @ts-ignore
|
|
62
62
|
import { SaveDealPackageAppointmentTimetableOverridesCommand } from '../models';
|
|
63
63
|
// @ts-ignore
|
|
64
|
+
import { TranslateDealCommand } from '../models';
|
|
65
|
+
// @ts-ignore
|
|
64
66
|
import { UpdateDealCommand } from '../models';
|
|
65
67
|
// @ts-ignore
|
|
66
68
|
import { UpdateDealPackageCommand } from '../models';
|
|
@@ -1042,6 +1044,48 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1042
1044
|
options: localVarRequestOptions,
|
|
1043
1045
|
};
|
|
1044
1046
|
},
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @summary Translate deal
|
|
1050
|
+
* @param {string} dealId
|
|
1051
|
+
* @param {TranslateDealCommand} [translateDealCommand]
|
|
1052
|
+
* @param {*} [options] Override http request option.
|
|
1053
|
+
* @throws {RequiredError}
|
|
1054
|
+
*/
|
|
1055
|
+
apiV1DealsDealIdTranslatePost: async (dealId: string, translateDealCommand?: TranslateDealCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1056
|
+
// verify required parameter 'dealId' is not null or undefined
|
|
1057
|
+
assertParamExists('apiV1DealsDealIdTranslatePost', 'dealId', dealId)
|
|
1058
|
+
const localVarPath = `/api/v1/deals/{dealId}/translate`
|
|
1059
|
+
.replace(`{${"dealId"}}`, encodeURIComponent(String(dealId)));
|
|
1060
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1061
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1062
|
+
let baseOptions;
|
|
1063
|
+
if (configuration) {
|
|
1064
|
+
baseOptions = configuration.baseOptions;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
1068
|
+
const localVarHeaderParameter = {} as any;
|
|
1069
|
+
const localVarQueryParameter = {} as any;
|
|
1070
|
+
|
|
1071
|
+
// authentication oauth2 required
|
|
1072
|
+
// oauth required
|
|
1073
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1078
|
+
|
|
1079
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1080
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1081
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1082
|
+
localVarRequestOptions.data = serializeDataIfNeeded(translateDealCommand, localVarRequestOptions, configuration)
|
|
1083
|
+
|
|
1084
|
+
return {
|
|
1085
|
+
url: toPathString(localVarUrlObj),
|
|
1086
|
+
options: localVarRequestOptions,
|
|
1087
|
+
};
|
|
1088
|
+
},
|
|
1045
1089
|
/**
|
|
1046
1090
|
*
|
|
1047
1091
|
* @summary Get all deals.
|
|
@@ -1690,6 +1734,18 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
1690
1734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdServicesServiceIdPut(dealId, serviceId, updateDealServiceCommand, options);
|
|
1691
1735
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1692
1736
|
},
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @summary Translate deal
|
|
1740
|
+
* @param {string} dealId
|
|
1741
|
+
* @param {TranslateDealCommand} [translateDealCommand]
|
|
1742
|
+
* @param {*} [options] Override http request option.
|
|
1743
|
+
* @throws {RequiredError}
|
|
1744
|
+
*/
|
|
1745
|
+
async apiV1DealsDealIdTranslatePost(dealId: string, translateDealCommand?: TranslateDealCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
1746
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdTranslatePost(dealId, translateDealCommand, options);
|
|
1747
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1748
|
+
},
|
|
1693
1749
|
/**
|
|
1694
1750
|
*
|
|
1695
1751
|
* @summary Get all deals.
|
|
@@ -2029,6 +2085,17 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
2029
2085
|
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: any): AxiosPromise<DealServiceModel> {
|
|
2030
2086
|
return localVarFp.apiV1DealsDealIdServicesServiceIdPut(dealId, serviceId, updateDealServiceCommand, options).then((request) => request(axios, basePath));
|
|
2031
2087
|
},
|
|
2088
|
+
/**
|
|
2089
|
+
*
|
|
2090
|
+
* @summary Translate deal
|
|
2091
|
+
* @param {string} dealId
|
|
2092
|
+
* @param {TranslateDealCommand} [translateDealCommand]
|
|
2093
|
+
* @param {*} [options] Override http request option.
|
|
2094
|
+
* @throws {RequiredError}
|
|
2095
|
+
*/
|
|
2096
|
+
apiV1DealsDealIdTranslatePost(dealId: string, translateDealCommand?: TranslateDealCommand, options?: any): AxiosPromise<boolean> {
|
|
2097
|
+
return localVarFp.apiV1DealsDealIdTranslatePost(dealId, translateDealCommand, options).then((request) => request(axios, basePath));
|
|
2098
|
+
},
|
|
2032
2099
|
/**
|
|
2033
2100
|
*
|
|
2034
2101
|
* @summary Get all deals.
|
|
@@ -2739,6 +2806,27 @@ export interface DealsApiApiV1DealsDealIdServicesServiceIdPutRequest {
|
|
|
2739
2806
|
readonly updateDealServiceCommand?: UpdateDealServiceCommand
|
|
2740
2807
|
}
|
|
2741
2808
|
|
|
2809
|
+
/**
|
|
2810
|
+
* Request parameters for apiV1DealsDealIdTranslatePost operation in DealsApi.
|
|
2811
|
+
* @export
|
|
2812
|
+
* @interface DealsApiApiV1DealsDealIdTranslatePostRequest
|
|
2813
|
+
*/
|
|
2814
|
+
export interface DealsApiApiV1DealsDealIdTranslatePostRequest {
|
|
2815
|
+
/**
|
|
2816
|
+
*
|
|
2817
|
+
* @type {string}
|
|
2818
|
+
* @memberof DealsApiApiV1DealsDealIdTranslatePost
|
|
2819
|
+
*/
|
|
2820
|
+
readonly dealId: string
|
|
2821
|
+
|
|
2822
|
+
/**
|
|
2823
|
+
*
|
|
2824
|
+
* @type {TranslateDealCommand}
|
|
2825
|
+
* @memberof DealsApiApiV1DealsDealIdTranslatePost
|
|
2826
|
+
*/
|
|
2827
|
+
readonly translateDealCommand?: TranslateDealCommand
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2742
2830
|
/**
|
|
2743
2831
|
* Request parameters for apiV1DealsGet operation in DealsApi.
|
|
2744
2832
|
* @export
|
|
@@ -3338,6 +3426,18 @@ export class DealsApi extends BaseAPI {
|
|
|
3338
3426
|
return DealsApiFp(this.configuration).apiV1DealsDealIdServicesServiceIdPut(requestParameters.dealId, requestParameters.serviceId, requestParameters.updateDealServiceCommand, options).then((request) => request(this.axios, this.basePath));
|
|
3339
3427
|
}
|
|
3340
3428
|
|
|
3429
|
+
/**
|
|
3430
|
+
*
|
|
3431
|
+
* @summary Translate deal
|
|
3432
|
+
* @param {DealsApiApiV1DealsDealIdTranslatePostRequest} requestParameters Request parameters.
|
|
3433
|
+
* @param {*} [options] Override http request option.
|
|
3434
|
+
* @throws {RequiredError}
|
|
3435
|
+
* @memberof DealsApi
|
|
3436
|
+
*/
|
|
3437
|
+
public apiV1DealsDealIdTranslatePost(requestParameters: DealsApiApiV1DealsDealIdTranslatePostRequest, options?: AxiosRequestConfig) {
|
|
3438
|
+
return DealsApiFp(this.configuration).apiV1DealsDealIdTranslatePost(requestParameters.dealId, requestParameters.translateDealCommand, options).then((request) => request(this.axios, this.basePath));
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3341
3441
|
/**
|
|
3342
3442
|
*
|
|
3343
3443
|
* @summary Get all deals.
|
|
@@ -804,10 +804,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
804
804
|
* @param {*} [options] Override http request option.
|
|
805
805
|
* @throws {RequiredError}
|
|
806
806
|
*/
|
|
807
|
-
|
|
807
|
+
apiV1DoctoraffiliationsIdReactivatePut: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
808
808
|
// verify required parameter 'id' is not null or undefined
|
|
809
|
-
assertParamExists('
|
|
810
|
-
const localVarPath = `/api/v1/doctoraffiliations/{id}/
|
|
809
|
+
assertParamExists('apiV1DoctoraffiliationsIdReactivatePut', 'id', id)
|
|
810
|
+
const localVarPath = `/api/v1/doctoraffiliations/{id}/reactivate`
|
|
811
811
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
812
812
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
813
813
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1167,8 +1167,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
1167
1167
|
* @param {*} [options] Override http request option.
|
|
1168
1168
|
* @throws {RequiredError}
|
|
1169
1169
|
*/
|
|
1170
|
-
async
|
|
1171
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1170
|
+
async apiV1DoctoraffiliationsIdReactivatePut(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
1171
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdReactivatePut(id, options);
|
|
1172
1172
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1173
1173
|
},
|
|
1174
1174
|
/**
|
|
@@ -1401,8 +1401,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
1401
1401
|
* @param {*} [options] Override http request option.
|
|
1402
1402
|
* @throws {RequiredError}
|
|
1403
1403
|
*/
|
|
1404
|
-
|
|
1405
|
-
return localVarFp.
|
|
1404
|
+
apiV1DoctoraffiliationsIdReactivatePut(id: string, options?: any): AxiosPromise<boolean> {
|
|
1405
|
+
return localVarFp.apiV1DoctoraffiliationsIdReactivatePut(id, options).then((request) => request(axios, basePath));
|
|
1406
1406
|
},
|
|
1407
1407
|
/**
|
|
1408
1408
|
*
|
|
@@ -1908,15 +1908,15 @@ export interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdPutRequest {
|
|
|
1908
1908
|
}
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
1911
|
-
* Request parameters for
|
|
1911
|
+
* Request parameters for apiV1DoctoraffiliationsIdReactivatePut operation in DoctorAffiliationsApi.
|
|
1912
1912
|
* @export
|
|
1913
|
-
* @interface
|
|
1913
|
+
* @interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest
|
|
1914
1914
|
*/
|
|
1915
|
-
export interface
|
|
1915
|
+
export interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest {
|
|
1916
1916
|
/**
|
|
1917
1917
|
*
|
|
1918
1918
|
* @type {string}
|
|
1919
|
-
* @memberof
|
|
1919
|
+
* @memberof DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePut
|
|
1920
1920
|
*/
|
|
1921
1921
|
readonly id: string
|
|
1922
1922
|
}
|
|
@@ -2155,13 +2155,13 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
2155
2155
|
/**
|
|
2156
2156
|
*
|
|
2157
2157
|
* @summary Reactivate doctor affiliation.
|
|
2158
|
-
* @param {
|
|
2158
|
+
* @param {DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest} requestParameters Request parameters.
|
|
2159
2159
|
* @param {*} [options] Override http request option.
|
|
2160
2160
|
* @throws {RequiredError}
|
|
2161
2161
|
* @memberof DoctorAffiliationsApi
|
|
2162
2162
|
*/
|
|
2163
|
-
public
|
|
2164
|
-
return DoctorAffiliationsApiFp(this.configuration).
|
|
2163
|
+
public apiV1DoctoraffiliationsIdReactivatePut(requestParameters: DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
2164
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdReactivatePut(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2165
2165
|
}
|
|
2166
2166
|
|
|
2167
2167
|
/**
|
package/src/api/doctors-api.ts
CHANGED
|
@@ -1441,10 +1441,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1441
1441
|
* @param {*} [options] Override http request option.
|
|
1442
1442
|
* @throws {RequiredError}
|
|
1443
1443
|
*/
|
|
1444
|
-
|
|
1444
|
+
apiV1DoctorsDoctorIdReactivatePut: async (doctorId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1445
1445
|
// verify required parameter 'doctorId' is not null or undefined
|
|
1446
|
-
assertParamExists('
|
|
1447
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/
|
|
1446
|
+
assertParamExists('apiV1DoctorsDoctorIdReactivatePut', 'doctorId', doctorId)
|
|
1447
|
+
const localVarPath = `/api/v1/doctors/{doctorId}/reactivate`
|
|
1448
1448
|
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
|
|
1449
1449
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1450
1450
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2413,8 +2413,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
2413
2413
|
* @param {*} [options] Override http request option.
|
|
2414
2414
|
* @throws {RequiredError}
|
|
2415
2415
|
*/
|
|
2416
|
-
async
|
|
2417
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
2416
|
+
async apiV1DoctorsDoctorIdReactivatePut(doctorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
2417
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdReactivatePut(doctorId, options);
|
|
2418
2418
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2419
2419
|
},
|
|
2420
2420
|
/**
|
|
@@ -2912,8 +2912,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
2912
2912
|
* @param {*} [options] Override http request option.
|
|
2913
2913
|
* @throws {RequiredError}
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2916
|
-
return localVarFp.
|
|
2915
|
+
apiV1DoctorsDoctorIdReactivatePut(doctorId: string, options?: any): AxiosPromise<boolean> {
|
|
2916
|
+
return localVarFp.apiV1DoctorsDoctorIdReactivatePut(doctorId, options).then((request) => request(axios, basePath));
|
|
2917
2917
|
},
|
|
2918
2918
|
/**
|
|
2919
2919
|
*
|
|
@@ -3848,15 +3848,15 @@ export interface DoctorsApiApiV1DoctorsDoctorIdPutRequest {
|
|
|
3848
3848
|
}
|
|
3849
3849
|
|
|
3850
3850
|
/**
|
|
3851
|
-
* Request parameters for
|
|
3851
|
+
* Request parameters for apiV1DoctorsDoctorIdReactivatePut operation in DoctorsApi.
|
|
3852
3852
|
* @export
|
|
3853
|
-
* @interface
|
|
3853
|
+
* @interface DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest
|
|
3854
3854
|
*/
|
|
3855
|
-
export interface
|
|
3855
|
+
export interface DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest {
|
|
3856
3856
|
/**
|
|
3857
3857
|
*
|
|
3858
3858
|
* @type {string}
|
|
3859
|
-
* @memberof
|
|
3859
|
+
* @memberof DoctorsApiApiV1DoctorsDoctorIdReactivatePut
|
|
3860
3860
|
*/
|
|
3861
3861
|
readonly doctorId: string
|
|
3862
3862
|
}
|
|
@@ -4620,13 +4620,13 @@ export class DoctorsApi extends BaseAPI {
|
|
|
4620
4620
|
/**
|
|
4621
4621
|
*
|
|
4622
4622
|
* @summary Delete Doctor.
|
|
4623
|
-
* @param {
|
|
4623
|
+
* @param {DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest} requestParameters Request parameters.
|
|
4624
4624
|
* @param {*} [options] Override http request option.
|
|
4625
4625
|
* @throws {RequiredError}
|
|
4626
4626
|
* @memberof DoctorsApi
|
|
4627
4627
|
*/
|
|
4628
|
-
public
|
|
4629
|
-
return DoctorsApiFp(this.configuration).
|
|
4628
|
+
public apiV1DoctorsDoctorIdReactivatePut(requestParameters: DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
4629
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdReactivatePut(requestParameters.doctorId, options).then((request) => request(this.axios, this.basePath));
|
|
4630
4630
|
}
|
|
4631
4631
|
|
|
4632
4632
|
/**
|