ch-admin-api-client-typescript 2.1.5 → 2.1.6
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 +202 -19
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +314 -28
- package/package.json +1 -1
- package/src/api.ts +342 -31
package/lib/api.d.ts
CHANGED
|
@@ -3639,6 +3639,25 @@ export interface CreateDoctorPortfolioCommand {
|
|
|
3639
3639
|
*/
|
|
3640
3640
|
'photoAfterThumbnail'?: string | null;
|
|
3641
3641
|
}
|
|
3642
|
+
/**
|
|
3643
|
+
*
|
|
3644
|
+
* @export
|
|
3645
|
+
* @interface CreateDoctorSpecialtyCommand
|
|
3646
|
+
*/
|
|
3647
|
+
export interface CreateDoctorSpecialtyCommand {
|
|
3648
|
+
/**
|
|
3649
|
+
*
|
|
3650
|
+
* @type {string}
|
|
3651
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3652
|
+
*/
|
|
3653
|
+
'specialtyId'?: string;
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @type {number}
|
|
3657
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3658
|
+
*/
|
|
3659
|
+
'order'?: number;
|
|
3660
|
+
}
|
|
3642
3661
|
/**
|
|
3643
3662
|
*
|
|
3644
3663
|
* @export
|
|
@@ -11137,6 +11156,25 @@ export interface UpdateContributorCommand {
|
|
|
11137
11156
|
*/
|
|
11138
11157
|
'hospitalId'?: string;
|
|
11139
11158
|
}
|
|
11159
|
+
/**
|
|
11160
|
+
*
|
|
11161
|
+
* @export
|
|
11162
|
+
* @interface UpdateContributorSnsHandleCommand
|
|
11163
|
+
*/
|
|
11164
|
+
export interface UpdateContributorSnsHandleCommand {
|
|
11165
|
+
/**
|
|
11166
|
+
*
|
|
11167
|
+
* @type {SnsType}
|
|
11168
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11169
|
+
*/
|
|
11170
|
+
'snsType'?: SnsType;
|
|
11171
|
+
/**
|
|
11172
|
+
*
|
|
11173
|
+
* @type {string}
|
|
11174
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11175
|
+
*/
|
|
11176
|
+
'handle'?: string | null;
|
|
11177
|
+
}
|
|
11140
11178
|
/**
|
|
11141
11179
|
*
|
|
11142
11180
|
* @export
|
|
@@ -11475,6 +11513,19 @@ export interface UpdateDoctorPortfolioCommand {
|
|
|
11475
11513
|
*/
|
|
11476
11514
|
'photoAfterThumbnail'?: string | null;
|
|
11477
11515
|
}
|
|
11516
|
+
/**
|
|
11517
|
+
*
|
|
11518
|
+
* @export
|
|
11519
|
+
* @interface UpdateDoctorSpecialtyCommand
|
|
11520
|
+
*/
|
|
11521
|
+
export interface UpdateDoctorSpecialtyCommand {
|
|
11522
|
+
/**
|
|
11523
|
+
*
|
|
11524
|
+
* @type {number}
|
|
11525
|
+
* @memberof UpdateDoctorSpecialtyCommand
|
|
11526
|
+
*/
|
|
11527
|
+
'order'?: number;
|
|
11528
|
+
}
|
|
11478
11529
|
/**
|
|
11479
11530
|
*
|
|
11480
11531
|
* @export
|
|
@@ -11784,6 +11835,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11784
11835
|
*/
|
|
11785
11836
|
'order'?: number;
|
|
11786
11837
|
}
|
|
11838
|
+
/**
|
|
11839
|
+
*
|
|
11840
|
+
* @export
|
|
11841
|
+
* @interface UpdateHospitalSpecialtyCommand
|
|
11842
|
+
*/
|
|
11843
|
+
export interface UpdateHospitalSpecialtyCommand {
|
|
11844
|
+
/**
|
|
11845
|
+
*
|
|
11846
|
+
* @type {number}
|
|
11847
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11848
|
+
*/
|
|
11849
|
+
'order'?: number;
|
|
11850
|
+
}
|
|
11787
11851
|
/**
|
|
11788
11852
|
*
|
|
11789
11853
|
* @export
|
|
@@ -14343,6 +14407,16 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14343
14407
|
* @throws {RequiredError}
|
|
14344
14408
|
*/
|
|
14345
14409
|
apiV1ContributorsContributorIdHandlesHandleIdGet: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14410
|
+
/**
|
|
14411
|
+
*
|
|
14412
|
+
* @summary Update ContributorHandle.
|
|
14413
|
+
* @param {string} contributorId
|
|
14414
|
+
* @param {string} handleId
|
|
14415
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14416
|
+
* @param {*} [options] Override http request option.
|
|
14417
|
+
* @throws {RequiredError}
|
|
14418
|
+
*/
|
|
14419
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut: (contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14346
14420
|
/**
|
|
14347
14421
|
*
|
|
14348
14422
|
* @summary Get ContributorHandle.
|
|
@@ -14453,6 +14527,16 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14453
14527
|
* @throws {RequiredError}
|
|
14454
14528
|
*/
|
|
14455
14529
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14530
|
+
/**
|
|
14531
|
+
*
|
|
14532
|
+
* @summary Update ContributorHandle.
|
|
14533
|
+
* @param {string} contributorId
|
|
14534
|
+
* @param {string} handleId
|
|
14535
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14536
|
+
* @param {*} [options] Override http request option.
|
|
14537
|
+
* @throws {RequiredError}
|
|
14538
|
+
*/
|
|
14539
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14456
14540
|
/**
|
|
14457
14541
|
*
|
|
14458
14542
|
* @summary Get ContributorHandle.
|
|
@@ -14563,6 +14647,16 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14563
14647
|
* @throws {RequiredError}
|
|
14564
14648
|
*/
|
|
14565
14649
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14650
|
+
/**
|
|
14651
|
+
*
|
|
14652
|
+
* @summary Update ContributorHandle.
|
|
14653
|
+
* @param {string} contributorId
|
|
14654
|
+
* @param {string} handleId
|
|
14655
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14656
|
+
* @param {*} [options] Override http request option.
|
|
14657
|
+
* @throws {RequiredError}
|
|
14658
|
+
*/
|
|
14659
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14566
14660
|
/**
|
|
14567
14661
|
*
|
|
14568
14662
|
* @summary Get ContributorHandle.
|
|
@@ -14680,6 +14774,17 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14680
14774
|
* @memberof ContributorsApi
|
|
14681
14775
|
*/
|
|
14682
14776
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14777
|
+
/**
|
|
14778
|
+
*
|
|
14779
|
+
* @summary Update ContributorHandle.
|
|
14780
|
+
* @param {string} contributorId
|
|
14781
|
+
* @param {string} handleId
|
|
14782
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14783
|
+
* @param {*} [options] Override http request option.
|
|
14784
|
+
* @throws {RequiredError}
|
|
14785
|
+
* @memberof ContributorsApi
|
|
14786
|
+
*/
|
|
14787
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14683
14788
|
/**
|
|
14684
14789
|
*
|
|
14685
14790
|
* @summary Get ContributorHandle.
|
|
@@ -16169,7 +16274,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16169
16274
|
*
|
|
16170
16275
|
* @summary Get All DoctorSpecialties.
|
|
16171
16276
|
* @param {string} doctorId
|
|
16172
|
-
* @param {string} [doctorId2]
|
|
16173
16277
|
* @param {string} [doctorName]
|
|
16174
16278
|
* @param {string} [specialtyId]
|
|
16175
16279
|
* @param {string} [specialtyName]
|
|
@@ -16179,7 +16283,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16179
16283
|
* @param {*} [options] Override http request option.
|
|
16180
16284
|
* @throws {RequiredError}
|
|
16181
16285
|
*/
|
|
16182
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string,
|
|
16286
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16287
|
+
/**
|
|
16288
|
+
*
|
|
16289
|
+
* @summary Link a doctor to a specialty.
|
|
16290
|
+
* @param {string} doctorId
|
|
16291
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16292
|
+
* @param {*} [options] Override http request option.
|
|
16293
|
+
* @throws {RequiredError}
|
|
16294
|
+
*/
|
|
16295
|
+
apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16183
16296
|
/**
|
|
16184
16297
|
*
|
|
16185
16298
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16200,13 +16313,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16200
16313
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16201
16314
|
/**
|
|
16202
16315
|
*
|
|
16203
|
-
* @summary
|
|
16316
|
+
* @summary Update DoctorSpecialty.
|
|
16204
16317
|
* @param {string} doctorId
|
|
16205
16318
|
* @param {string} specialtyId
|
|
16319
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16206
16320
|
* @param {*} [options] Override http request option.
|
|
16207
16321
|
* @throws {RequiredError}
|
|
16208
16322
|
*/
|
|
16209
|
-
|
|
16323
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16210
16324
|
/**
|
|
16211
16325
|
*
|
|
16212
16326
|
* @summary Get all Doctors.
|
|
@@ -16508,12 +16622,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16508
16622
|
* @param {*} [options] Override http request option.
|
|
16509
16623
|
* @throws {RequiredError}
|
|
16510
16624
|
*/
|
|
16511
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16625
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16512
16626
|
/**
|
|
16513
16627
|
*
|
|
16514
16628
|
* @summary Get All DoctorSpecialties.
|
|
16515
16629
|
* @param {string} doctorId
|
|
16516
|
-
* @param {string} [doctorId2]
|
|
16517
16630
|
* @param {string} [doctorName]
|
|
16518
16631
|
* @param {string} [specialtyId]
|
|
16519
16632
|
* @param {string} [specialtyName]
|
|
@@ -16523,7 +16636,16 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16523
16636
|
* @param {*} [options] Override http request option.
|
|
16524
16637
|
* @throws {RequiredError}
|
|
16525
16638
|
*/
|
|
16526
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16639
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16640
|
+
/**
|
|
16641
|
+
*
|
|
16642
|
+
* @summary Link a doctor to a specialty.
|
|
16643
|
+
* @param {string} doctorId
|
|
16644
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16645
|
+
* @param {*} [options] Override http request option.
|
|
16646
|
+
* @throws {RequiredError}
|
|
16647
|
+
*/
|
|
16648
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16527
16649
|
/**
|
|
16528
16650
|
*
|
|
16529
16651
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16544,13 +16666,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16544
16666
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16545
16667
|
/**
|
|
16546
16668
|
*
|
|
16547
|
-
* @summary
|
|
16669
|
+
* @summary Update DoctorSpecialty.
|
|
16548
16670
|
* @param {string} doctorId
|
|
16549
16671
|
* @param {string} specialtyId
|
|
16672
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16550
16673
|
* @param {*} [options] Override http request option.
|
|
16551
16674
|
* @throws {RequiredError}
|
|
16552
16675
|
*/
|
|
16553
|
-
|
|
16676
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16554
16677
|
/**
|
|
16555
16678
|
*
|
|
16556
16679
|
* @summary Get all Doctors.
|
|
@@ -16852,12 +16975,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16852
16975
|
* @param {*} [options] Override http request option.
|
|
16853
16976
|
* @throws {RequiredError}
|
|
16854
16977
|
*/
|
|
16855
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
16978
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
16856
16979
|
/**
|
|
16857
16980
|
*
|
|
16858
16981
|
* @summary Get All DoctorSpecialties.
|
|
16859
16982
|
* @param {string} doctorId
|
|
16860
|
-
* @param {string} [doctorId2]
|
|
16861
16983
|
* @param {string} [doctorName]
|
|
16862
16984
|
* @param {string} [specialtyId]
|
|
16863
16985
|
* @param {string} [specialtyName]
|
|
@@ -16867,7 +16989,16 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16867
16989
|
* @param {*} [options] Override http request option.
|
|
16868
16990
|
* @throws {RequiredError}
|
|
16869
16991
|
*/
|
|
16870
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16992
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
16993
|
+
/**
|
|
16994
|
+
*
|
|
16995
|
+
* @summary Link a doctor to a specialty.
|
|
16996
|
+
* @param {string} doctorId
|
|
16997
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16998
|
+
* @param {*} [options] Override http request option.
|
|
16999
|
+
* @throws {RequiredError}
|
|
17000
|
+
*/
|
|
17001
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16871
17002
|
/**
|
|
16872
17003
|
*
|
|
16873
17004
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16888,13 +17019,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16888
17019
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16889
17020
|
/**
|
|
16890
17021
|
*
|
|
16891
|
-
* @summary
|
|
17022
|
+
* @summary Update DoctorSpecialty.
|
|
16892
17023
|
* @param {string} doctorId
|
|
16893
17024
|
* @param {string} specialtyId
|
|
17025
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16894
17026
|
* @param {*} [options] Override http request option.
|
|
16895
17027
|
* @throws {RequiredError}
|
|
16896
17028
|
*/
|
|
16897
|
-
|
|
17029
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16898
17030
|
/**
|
|
16899
17031
|
*
|
|
16900
17032
|
* @summary Get all Doctors.
|
|
@@ -17223,12 +17355,11 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17223
17355
|
* @throws {RequiredError}
|
|
17224
17356
|
* @memberof DoctorsApi
|
|
17225
17357
|
*/
|
|
17226
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17358
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17227
17359
|
/**
|
|
17228
17360
|
*
|
|
17229
17361
|
* @summary Get All DoctorSpecialties.
|
|
17230
17362
|
* @param {string} doctorId
|
|
17231
|
-
* @param {string} [doctorId2]
|
|
17232
17363
|
* @param {string} [doctorName]
|
|
17233
17364
|
* @param {string} [specialtyId]
|
|
17234
17365
|
* @param {string} [specialtyName]
|
|
@@ -17239,7 +17370,17 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17239
17370
|
* @throws {RequiredError}
|
|
17240
17371
|
* @memberof DoctorsApi
|
|
17241
17372
|
*/
|
|
17242
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
17373
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
17374
|
+
/**
|
|
17375
|
+
*
|
|
17376
|
+
* @summary Link a doctor to a specialty.
|
|
17377
|
+
* @param {string} doctorId
|
|
17378
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17379
|
+
* @param {*} [options] Override http request option.
|
|
17380
|
+
* @throws {RequiredError}
|
|
17381
|
+
* @memberof DoctorsApi
|
|
17382
|
+
*/
|
|
17383
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17243
17384
|
/**
|
|
17244
17385
|
*
|
|
17245
17386
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -17262,14 +17403,15 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17262
17403
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17263
17404
|
/**
|
|
17264
17405
|
*
|
|
17265
|
-
* @summary
|
|
17406
|
+
* @summary Update DoctorSpecialty.
|
|
17266
17407
|
* @param {string} doctorId
|
|
17267
17408
|
* @param {string} specialtyId
|
|
17409
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
17268
17410
|
* @param {*} [options] Override http request option.
|
|
17269
17411
|
* @throws {RequiredError}
|
|
17270
17412
|
* @memberof DoctorsApi
|
|
17271
17413
|
*/
|
|
17272
|
-
|
|
17414
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17273
17415
|
/**
|
|
17274
17416
|
*
|
|
17275
17417
|
* @summary Get all Doctors.
|
|
@@ -17718,6 +17860,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17718
17860
|
* @throws {RequiredError}
|
|
17719
17861
|
*/
|
|
17720
17862
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17863
|
+
/**
|
|
17864
|
+
*
|
|
17865
|
+
* @summary Update HospitalSpecialty.
|
|
17866
|
+
* @param {string} hospitalId
|
|
17867
|
+
* @param {string} specialtyId
|
|
17868
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
17869
|
+
* @param {*} [options] Override http request option.
|
|
17870
|
+
* @throws {RequiredError}
|
|
17871
|
+
*/
|
|
17872
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17721
17873
|
/**
|
|
17722
17874
|
*
|
|
17723
17875
|
* @summary Create Hospital.
|
|
@@ -18137,6 +18289,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18137
18289
|
* @throws {RequiredError}
|
|
18138
18290
|
*/
|
|
18139
18291
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18292
|
+
/**
|
|
18293
|
+
*
|
|
18294
|
+
* @summary Update HospitalSpecialty.
|
|
18295
|
+
* @param {string} hospitalId
|
|
18296
|
+
* @param {string} specialtyId
|
|
18297
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18298
|
+
* @param {*} [options] Override http request option.
|
|
18299
|
+
* @throws {RequiredError}
|
|
18300
|
+
*/
|
|
18301
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18140
18302
|
/**
|
|
18141
18303
|
*
|
|
18142
18304
|
* @summary Create Hospital.
|
|
@@ -18556,6 +18718,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18556
18718
|
* @throws {RequiredError}
|
|
18557
18719
|
*/
|
|
18558
18720
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18721
|
+
/**
|
|
18722
|
+
*
|
|
18723
|
+
* @summary Update HospitalSpecialty.
|
|
18724
|
+
* @param {string} hospitalId
|
|
18725
|
+
* @param {string} specialtyId
|
|
18726
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18727
|
+
* @param {*} [options] Override http request option.
|
|
18728
|
+
* @throws {RequiredError}
|
|
18729
|
+
*/
|
|
18730
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18559
18731
|
/**
|
|
18560
18732
|
*
|
|
18561
18733
|
* @summary Create Hospital.
|
|
@@ -19013,6 +19185,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19013
19185
|
* @memberof HospitalsApi
|
|
19014
19186
|
*/
|
|
19015
19187
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19188
|
+
/**
|
|
19189
|
+
*
|
|
19190
|
+
* @summary Update HospitalSpecialty.
|
|
19191
|
+
* @param {string} hospitalId
|
|
19192
|
+
* @param {string} specialtyId
|
|
19193
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
19194
|
+
* @param {*} [options] Override http request option.
|
|
19195
|
+
* @throws {RequiredError}
|
|
19196
|
+
* @memberof HospitalsApi
|
|
19197
|
+
*/
|
|
19198
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19016
19199
|
/**
|
|
19017
19200
|
*
|
|
19018
19201
|
* @summary Create Hospital.
|