ch-admin-api-client-typescript 2.3.8 → 2.4.3
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 +377 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +513 -8
- package/package.json +1 -1
- package/src/api.ts +629 -12
package/lib/api.d.ts
CHANGED
|
@@ -8954,6 +8954,25 @@ export interface HospitalServicesModel {
|
|
|
8954
8954
|
*/
|
|
8955
8955
|
'metaData'?: PagedListMetaData;
|
|
8956
8956
|
}
|
|
8957
|
+
/**
|
|
8958
|
+
*
|
|
8959
|
+
* @export
|
|
8960
|
+
* @interface HospitalSimpleItemModel
|
|
8961
|
+
*/
|
|
8962
|
+
export interface HospitalSimpleItemModel {
|
|
8963
|
+
/**
|
|
8964
|
+
*
|
|
8965
|
+
* @type {string}
|
|
8966
|
+
* @memberof HospitalSimpleItemModel
|
|
8967
|
+
*/
|
|
8968
|
+
'id'?: string;
|
|
8969
|
+
/**
|
|
8970
|
+
*
|
|
8971
|
+
* @type {string}
|
|
8972
|
+
* @memberof HospitalSimpleItemModel
|
|
8973
|
+
*/
|
|
8974
|
+
'name'?: string | null;
|
|
8975
|
+
}
|
|
8957
8976
|
/**
|
|
8958
8977
|
*
|
|
8959
8978
|
* @export
|
|
@@ -9157,6 +9176,25 @@ export interface HospitalsModel {
|
|
|
9157
9176
|
*/
|
|
9158
9177
|
'metaData'?: PagedListMetaData;
|
|
9159
9178
|
}
|
|
9179
|
+
/**
|
|
9180
|
+
*
|
|
9181
|
+
* @export
|
|
9182
|
+
* @interface HospitalsSimpleModel
|
|
9183
|
+
*/
|
|
9184
|
+
export interface HospitalsSimpleModel {
|
|
9185
|
+
/**
|
|
9186
|
+
*
|
|
9187
|
+
* @type {Array<HospitalSimpleItemModel>}
|
|
9188
|
+
* @memberof HospitalsSimpleModel
|
|
9189
|
+
*/
|
|
9190
|
+
'items'?: Array<HospitalSimpleItemModel> | null;
|
|
9191
|
+
/**
|
|
9192
|
+
*
|
|
9193
|
+
* @type {PagedListMetaData}
|
|
9194
|
+
* @memberof HospitalsSimpleModel
|
|
9195
|
+
*/
|
|
9196
|
+
'metaData'?: PagedListMetaData;
|
|
9197
|
+
}
|
|
9160
9198
|
/**
|
|
9161
9199
|
*
|
|
9162
9200
|
* @export
|
|
@@ -9561,6 +9599,50 @@ export interface ManagerAffiliation {
|
|
|
9561
9599
|
*/
|
|
9562
9600
|
'hospital'?: Hospital;
|
|
9563
9601
|
}
|
|
9602
|
+
/**
|
|
9603
|
+
*
|
|
9604
|
+
* @export
|
|
9605
|
+
* @interface ManagerAffiliationItemModel
|
|
9606
|
+
*/
|
|
9607
|
+
export interface ManagerAffiliationItemModel {
|
|
9608
|
+
/**
|
|
9609
|
+
*
|
|
9610
|
+
* @type {string}
|
|
9611
|
+
* @memberof ManagerAffiliationItemModel
|
|
9612
|
+
*/
|
|
9613
|
+
'hospitalId'?: string;
|
|
9614
|
+
/**
|
|
9615
|
+
*
|
|
9616
|
+
* @type {string}
|
|
9617
|
+
* @memberof ManagerAffiliationItemModel
|
|
9618
|
+
*/
|
|
9619
|
+
'hospitalName'?: string | null;
|
|
9620
|
+
/**
|
|
9621
|
+
*
|
|
9622
|
+
* @type {string}
|
|
9623
|
+
* @memberof ManagerAffiliationItemModel
|
|
9624
|
+
*/
|
|
9625
|
+
'hospitalSlug'?: string | null;
|
|
9626
|
+
}
|
|
9627
|
+
/**
|
|
9628
|
+
*
|
|
9629
|
+
* @export
|
|
9630
|
+
* @interface ManagerAffiliationsModel
|
|
9631
|
+
*/
|
|
9632
|
+
export interface ManagerAffiliationsModel {
|
|
9633
|
+
/**
|
|
9634
|
+
*
|
|
9635
|
+
* @type {Array<ManagerAffiliationItemModel>}
|
|
9636
|
+
* @memberof ManagerAffiliationsModel
|
|
9637
|
+
*/
|
|
9638
|
+
'items'?: Array<ManagerAffiliationItemModel> | null;
|
|
9639
|
+
/**
|
|
9640
|
+
*
|
|
9641
|
+
* @type {PagedListMetaData}
|
|
9642
|
+
* @memberof ManagerAffiliationsModel
|
|
9643
|
+
*/
|
|
9644
|
+
'metaData'?: PagedListMetaData;
|
|
9645
|
+
}
|
|
9564
9646
|
/**
|
|
9565
9647
|
*
|
|
9566
9648
|
* @export
|
|
@@ -13856,6 +13938,67 @@ export interface UpdatePlanHospitalCommand {
|
|
|
13856
13938
|
*/
|
|
13857
13939
|
'order'?: number;
|
|
13858
13940
|
}
|
|
13941
|
+
/**
|
|
13942
|
+
*
|
|
13943
|
+
* @export
|
|
13944
|
+
* @interface UpdateProfileCommand
|
|
13945
|
+
*/
|
|
13946
|
+
export interface UpdateProfileCommand {
|
|
13947
|
+
/**
|
|
13948
|
+
*
|
|
13949
|
+
* @type {string}
|
|
13950
|
+
* @memberof UpdateProfileCommand
|
|
13951
|
+
*/
|
|
13952
|
+
'firstName'?: string | null;
|
|
13953
|
+
/**
|
|
13954
|
+
*
|
|
13955
|
+
* @type {string}
|
|
13956
|
+
* @memberof UpdateProfileCommand
|
|
13957
|
+
*/
|
|
13958
|
+
'lastName'?: string | null;
|
|
13959
|
+
/**
|
|
13960
|
+
*
|
|
13961
|
+
* @type {string}
|
|
13962
|
+
* @memberof UpdateProfileCommand
|
|
13963
|
+
*/
|
|
13964
|
+
'phone'?: string | null;
|
|
13965
|
+
/**
|
|
13966
|
+
*
|
|
13967
|
+
* @type {string}
|
|
13968
|
+
* @memberof UpdateProfileCommand
|
|
13969
|
+
*/
|
|
13970
|
+
'photo'?: string | null;
|
|
13971
|
+
/**
|
|
13972
|
+
*
|
|
13973
|
+
* @type {string}
|
|
13974
|
+
* @memberof UpdateProfileCommand
|
|
13975
|
+
*/
|
|
13976
|
+
'photoThumbnail'?: string | null;
|
|
13977
|
+
/**
|
|
13978
|
+
*
|
|
13979
|
+
* @type {Gender}
|
|
13980
|
+
* @memberof UpdateProfileCommand
|
|
13981
|
+
*/
|
|
13982
|
+
'gender'?: Gender;
|
|
13983
|
+
/**
|
|
13984
|
+
*
|
|
13985
|
+
* @type {Date}
|
|
13986
|
+
* @memberof UpdateProfileCommand
|
|
13987
|
+
*/
|
|
13988
|
+
'dateOfBirth'?: Date | null;
|
|
13989
|
+
/**
|
|
13990
|
+
*
|
|
13991
|
+
* @type {Array<UserLanguageModel>}
|
|
13992
|
+
* @memberof UpdateProfileCommand
|
|
13993
|
+
*/
|
|
13994
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
13995
|
+
/**
|
|
13996
|
+
*
|
|
13997
|
+
* @type {Array<UserLocationModel>}
|
|
13998
|
+
* @memberof UpdateProfileCommand
|
|
13999
|
+
*/
|
|
14000
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
14001
|
+
}
|
|
13859
14002
|
/**
|
|
13860
14003
|
*
|
|
13861
14004
|
* @export
|
|
@@ -20752,6 +20895,29 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20752
20895
|
* @throws {RequiredError}
|
|
20753
20896
|
*/
|
|
20754
20897
|
apiV1HospitalsPost: (createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20898
|
+
/**
|
|
20899
|
+
*
|
|
20900
|
+
* @summary Get all Hospitals.
|
|
20901
|
+
* @param {string} [hospitalId]
|
|
20902
|
+
* @param {string} [name]
|
|
20903
|
+
* @param {string} [description]
|
|
20904
|
+
* @param {string} [countryId]
|
|
20905
|
+
* @param {Date} [created]
|
|
20906
|
+
* @param {MarketingType} [marketingType]
|
|
20907
|
+
* @param {string} [specialtyTypeId]
|
|
20908
|
+
* @param {string} [specialtyId]
|
|
20909
|
+
* @param {string} [serviceId]
|
|
20910
|
+
* @param {string} [exceptHospitalId]
|
|
20911
|
+
* @param {boolean} [showHidden]
|
|
20912
|
+
* @param {string} [languageCode]
|
|
20913
|
+
* @param {Array<string>} [ids]
|
|
20914
|
+
* @param {number} [page]
|
|
20915
|
+
* @param {number} [limit]
|
|
20916
|
+
* @param {Date} [lastRetrieved]
|
|
20917
|
+
* @param {*} [options] Override http request option.
|
|
20918
|
+
* @throws {RequiredError}
|
|
20919
|
+
*/
|
|
20920
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20755
20921
|
/**
|
|
20756
20922
|
*
|
|
20757
20923
|
* @summary Get Hospital by slug.
|
|
@@ -21247,6 +21413,29 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21247
21413
|
* @throws {RequiredError}
|
|
21248
21414
|
*/
|
|
21249
21415
|
apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
21416
|
+
/**
|
|
21417
|
+
*
|
|
21418
|
+
* @summary Get all Hospitals.
|
|
21419
|
+
* @param {string} [hospitalId]
|
|
21420
|
+
* @param {string} [name]
|
|
21421
|
+
* @param {string} [description]
|
|
21422
|
+
* @param {string} [countryId]
|
|
21423
|
+
* @param {Date} [created]
|
|
21424
|
+
* @param {MarketingType} [marketingType]
|
|
21425
|
+
* @param {string} [specialtyTypeId]
|
|
21426
|
+
* @param {string} [specialtyId]
|
|
21427
|
+
* @param {string} [serviceId]
|
|
21428
|
+
* @param {string} [exceptHospitalId]
|
|
21429
|
+
* @param {boolean} [showHidden]
|
|
21430
|
+
* @param {string} [languageCode]
|
|
21431
|
+
* @param {Array<string>} [ids]
|
|
21432
|
+
* @param {number} [page]
|
|
21433
|
+
* @param {number} [limit]
|
|
21434
|
+
* @param {Date} [lastRetrieved]
|
|
21435
|
+
* @param {*} [options] Override http request option.
|
|
21436
|
+
* @throws {RequiredError}
|
|
21437
|
+
*/
|
|
21438
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
21250
21439
|
/**
|
|
21251
21440
|
*
|
|
21252
21441
|
* @summary Get Hospital by slug.
|
|
@@ -21742,6 +21931,29 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21742
21931
|
* @throws {RequiredError}
|
|
21743
21932
|
*/
|
|
21744
21933
|
apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
21934
|
+
/**
|
|
21935
|
+
*
|
|
21936
|
+
* @summary Get all Hospitals.
|
|
21937
|
+
* @param {string} [hospitalId]
|
|
21938
|
+
* @param {string} [name]
|
|
21939
|
+
* @param {string} [description]
|
|
21940
|
+
* @param {string} [countryId]
|
|
21941
|
+
* @param {Date} [created]
|
|
21942
|
+
* @param {MarketingType} [marketingType]
|
|
21943
|
+
* @param {string} [specialtyTypeId]
|
|
21944
|
+
* @param {string} [specialtyId]
|
|
21945
|
+
* @param {string} [serviceId]
|
|
21946
|
+
* @param {string} [exceptHospitalId]
|
|
21947
|
+
* @param {boolean} [showHidden]
|
|
21948
|
+
* @param {string} [languageCode]
|
|
21949
|
+
* @param {Array<string>} [ids]
|
|
21950
|
+
* @param {number} [page]
|
|
21951
|
+
* @param {number} [limit]
|
|
21952
|
+
* @param {Date} [lastRetrieved]
|
|
21953
|
+
* @param {*} [options] Override http request option.
|
|
21954
|
+
* @throws {RequiredError}
|
|
21955
|
+
*/
|
|
21956
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
21745
21957
|
/**
|
|
21746
21958
|
*
|
|
21747
21959
|
* @summary Get Hospital by slug.
|
|
@@ -22282,6 +22494,30 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22282
22494
|
* @memberof HospitalsApi
|
|
22283
22495
|
*/
|
|
22284
22496
|
apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
22497
|
+
/**
|
|
22498
|
+
*
|
|
22499
|
+
* @summary Get all Hospitals.
|
|
22500
|
+
* @param {string} [hospitalId]
|
|
22501
|
+
* @param {string} [name]
|
|
22502
|
+
* @param {string} [description]
|
|
22503
|
+
* @param {string} [countryId]
|
|
22504
|
+
* @param {Date} [created]
|
|
22505
|
+
* @param {MarketingType} [marketingType]
|
|
22506
|
+
* @param {string} [specialtyTypeId]
|
|
22507
|
+
* @param {string} [specialtyId]
|
|
22508
|
+
* @param {string} [serviceId]
|
|
22509
|
+
* @param {string} [exceptHospitalId]
|
|
22510
|
+
* @param {boolean} [showHidden]
|
|
22511
|
+
* @param {string} [languageCode]
|
|
22512
|
+
* @param {Array<string>} [ids]
|
|
22513
|
+
* @param {number} [page]
|
|
22514
|
+
* @param {number} [limit]
|
|
22515
|
+
* @param {Date} [lastRetrieved]
|
|
22516
|
+
* @param {*} [options] Override http request option.
|
|
22517
|
+
* @throws {RequiredError}
|
|
22518
|
+
* @memberof HospitalsApi
|
|
22519
|
+
*/
|
|
22520
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
22285
22521
|
/**
|
|
22286
22522
|
*
|
|
22287
22523
|
* @summary Get Hospital by slug.
|
|
@@ -22501,6 +22737,7 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22501
22737
|
/**
|
|
22502
22738
|
*
|
|
22503
22739
|
* @summary Get all Managers.
|
|
22740
|
+
* @param {string} [hospitalId]
|
|
22504
22741
|
* @param {string} [id]
|
|
22505
22742
|
* @param {string} [fullname]
|
|
22506
22743
|
* @param {string} [email]
|
|
@@ -22514,7 +22751,19 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22514
22751
|
* @param {*} [options] Override http request option.
|
|
22515
22752
|
* @throws {RequiredError}
|
|
22516
22753
|
*/
|
|
22517
|
-
apiV1ManagersGet: (id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22754
|
+
apiV1ManagersGet: (hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22755
|
+
/**
|
|
22756
|
+
*
|
|
22757
|
+
* @summary Get all manager affiliations.
|
|
22758
|
+
* @param {string} managerId
|
|
22759
|
+
* @param {string} [hospitalName]
|
|
22760
|
+
* @param {number} [page]
|
|
22761
|
+
* @param {number} [limit]
|
|
22762
|
+
* @param {Date} [lastRetrieved]
|
|
22763
|
+
* @param {*} [options] Override http request option.
|
|
22764
|
+
* @throws {RequiredError}
|
|
22765
|
+
*/
|
|
22766
|
+
apiV1ManagersManagerIdAffiliationsGet: (managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22518
22767
|
/**
|
|
22519
22768
|
*
|
|
22520
22769
|
* @summary Delete Manager.
|
|
@@ -22557,6 +22806,7 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
|
|
|
22557
22806
|
/**
|
|
22558
22807
|
*
|
|
22559
22808
|
* @summary Get all Managers.
|
|
22809
|
+
* @param {string} [hospitalId]
|
|
22560
22810
|
* @param {string} [id]
|
|
22561
22811
|
* @param {string} [fullname]
|
|
22562
22812
|
* @param {string} [email]
|
|
@@ -22570,7 +22820,19 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
|
|
|
22570
22820
|
* @param {*} [options] Override http request option.
|
|
22571
22821
|
* @throws {RequiredError}
|
|
22572
22822
|
*/
|
|
22573
|
-
apiV1ManagersGet(id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagersModel>>;
|
|
22823
|
+
apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagersModel>>;
|
|
22824
|
+
/**
|
|
22825
|
+
*
|
|
22826
|
+
* @summary Get all manager affiliations.
|
|
22827
|
+
* @param {string} managerId
|
|
22828
|
+
* @param {string} [hospitalName]
|
|
22829
|
+
* @param {number} [page]
|
|
22830
|
+
* @param {number} [limit]
|
|
22831
|
+
* @param {Date} [lastRetrieved]
|
|
22832
|
+
* @param {*} [options] Override http request option.
|
|
22833
|
+
* @throws {RequiredError}
|
|
22834
|
+
*/
|
|
22835
|
+
apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerAffiliationsModel>>;
|
|
22574
22836
|
/**
|
|
22575
22837
|
*
|
|
22576
22838
|
* @summary Delete Manager.
|
|
@@ -22613,6 +22875,7 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
|
|
|
22613
22875
|
/**
|
|
22614
22876
|
*
|
|
22615
22877
|
* @summary Get all Managers.
|
|
22878
|
+
* @param {string} [hospitalId]
|
|
22616
22879
|
* @param {string} [id]
|
|
22617
22880
|
* @param {string} [fullname]
|
|
22618
22881
|
* @param {string} [email]
|
|
@@ -22626,7 +22889,19 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
|
|
|
22626
22889
|
* @param {*} [options] Override http request option.
|
|
22627
22890
|
* @throws {RequiredError}
|
|
22628
22891
|
*/
|
|
22629
|
-
apiV1ManagersGet(id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagersModel>;
|
|
22892
|
+
apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagersModel>;
|
|
22893
|
+
/**
|
|
22894
|
+
*
|
|
22895
|
+
* @summary Get all manager affiliations.
|
|
22896
|
+
* @param {string} managerId
|
|
22897
|
+
* @param {string} [hospitalName]
|
|
22898
|
+
* @param {number} [page]
|
|
22899
|
+
* @param {number} [limit]
|
|
22900
|
+
* @param {Date} [lastRetrieved]
|
|
22901
|
+
* @param {*} [options] Override http request option.
|
|
22902
|
+
* @throws {RequiredError}
|
|
22903
|
+
*/
|
|
22904
|
+
apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagerAffiliationsModel>;
|
|
22630
22905
|
/**
|
|
22631
22906
|
*
|
|
22632
22907
|
* @summary Delete Manager.
|
|
@@ -22671,6 +22946,7 @@ export declare class ManagersApi extends BaseAPI {
|
|
|
22671
22946
|
/**
|
|
22672
22947
|
*
|
|
22673
22948
|
* @summary Get all Managers.
|
|
22949
|
+
* @param {string} [hospitalId]
|
|
22674
22950
|
* @param {string} [id]
|
|
22675
22951
|
* @param {string} [fullname]
|
|
22676
22952
|
* @param {string} [email]
|
|
@@ -22685,7 +22961,20 @@ export declare class ManagersApi extends BaseAPI {
|
|
|
22685
22961
|
* @throws {RequiredError}
|
|
22686
22962
|
* @memberof ManagersApi
|
|
22687
22963
|
*/
|
|
22688
|
-
apiV1ManagersGet(id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagersModel>>;
|
|
22964
|
+
apiV1ManagersGet(hospitalId?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagersModel>>;
|
|
22965
|
+
/**
|
|
22966
|
+
*
|
|
22967
|
+
* @summary Get all manager affiliations.
|
|
22968
|
+
* @param {string} managerId
|
|
22969
|
+
* @param {string} [hospitalName]
|
|
22970
|
+
* @param {number} [page]
|
|
22971
|
+
* @param {number} [limit]
|
|
22972
|
+
* @param {Date} [lastRetrieved]
|
|
22973
|
+
* @param {*} [options] Override http request option.
|
|
22974
|
+
* @throws {RequiredError}
|
|
22975
|
+
* @memberof ManagersApi
|
|
22976
|
+
*/
|
|
22977
|
+
apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
|
|
22689
22978
|
/**
|
|
22690
22979
|
*
|
|
22691
22980
|
* @summary Delete Manager.
|
|
@@ -23232,6 +23521,57 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
23232
23521
|
*/
|
|
23233
23522
|
apiV1PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
23234
23523
|
}
|
|
23524
|
+
/**
|
|
23525
|
+
* PaymentsApi - axios parameter creator
|
|
23526
|
+
* @export
|
|
23527
|
+
*/
|
|
23528
|
+
export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23529
|
+
/**
|
|
23530
|
+
*
|
|
23531
|
+
* @param {*} [options] Override http request option.
|
|
23532
|
+
* @throws {RequiredError}
|
|
23533
|
+
*/
|
|
23534
|
+
apiV1PaymentsWebhookPost: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23535
|
+
};
|
|
23536
|
+
/**
|
|
23537
|
+
* PaymentsApi - functional programming interface
|
|
23538
|
+
* @export
|
|
23539
|
+
*/
|
|
23540
|
+
export declare const PaymentsApiFp: (configuration?: Configuration | undefined) => {
|
|
23541
|
+
/**
|
|
23542
|
+
*
|
|
23543
|
+
* @param {*} [options] Override http request option.
|
|
23544
|
+
* @throws {RequiredError}
|
|
23545
|
+
*/
|
|
23546
|
+
apiV1PaymentsWebhookPost(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
23547
|
+
};
|
|
23548
|
+
/**
|
|
23549
|
+
* PaymentsApi - factory interface
|
|
23550
|
+
* @export
|
|
23551
|
+
*/
|
|
23552
|
+
export declare const PaymentsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23553
|
+
/**
|
|
23554
|
+
*
|
|
23555
|
+
* @param {*} [options] Override http request option.
|
|
23556
|
+
* @throws {RequiredError}
|
|
23557
|
+
*/
|
|
23558
|
+
apiV1PaymentsWebhookPost(options?: any): AxiosPromise<void>;
|
|
23559
|
+
};
|
|
23560
|
+
/**
|
|
23561
|
+
* PaymentsApi - object-oriented interface
|
|
23562
|
+
* @export
|
|
23563
|
+
* @class PaymentsApi
|
|
23564
|
+
* @extends {BaseAPI}
|
|
23565
|
+
*/
|
|
23566
|
+
export declare class PaymentsApi extends BaseAPI {
|
|
23567
|
+
/**
|
|
23568
|
+
*
|
|
23569
|
+
* @param {*} [options] Override http request option.
|
|
23570
|
+
* @throws {RequiredError}
|
|
23571
|
+
* @memberof PaymentsApi
|
|
23572
|
+
*/
|
|
23573
|
+
apiV1PaymentsWebhookPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
23574
|
+
}
|
|
23235
23575
|
/**
|
|
23236
23576
|
* PlansApi - axios parameter creator
|
|
23237
23577
|
* @export
|
|
@@ -23668,6 +24008,14 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
23668
24008
|
* @throws {RequiredError}
|
|
23669
24009
|
*/
|
|
23670
24010
|
apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24011
|
+
/**
|
|
24012
|
+
*
|
|
24013
|
+
* @summary Update Profile.
|
|
24014
|
+
* @param {UpdateProfileCommand} [updateProfileCommand]
|
|
24015
|
+
* @param {*} [options] Override http request option.
|
|
24016
|
+
* @throws {RequiredError}
|
|
24017
|
+
*/
|
|
24018
|
+
apiV1ProfilesPut: (updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23671
24019
|
};
|
|
23672
24020
|
/**
|
|
23673
24021
|
* ProfilesApi - functional programming interface
|
|
@@ -23697,6 +24045,14 @@ export declare const ProfilesApiFp: (configuration?: Configuration | undefined)
|
|
|
23697
24045
|
* @throws {RequiredError}
|
|
23698
24046
|
*/
|
|
23699
24047
|
apiV1ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
24048
|
+
/**
|
|
24049
|
+
*
|
|
24050
|
+
* @summary Update Profile.
|
|
24051
|
+
* @param {UpdateProfileCommand} [updateProfileCommand]
|
|
24052
|
+
* @param {*} [options] Override http request option.
|
|
24053
|
+
* @throws {RequiredError}
|
|
24054
|
+
*/
|
|
24055
|
+
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
23700
24056
|
};
|
|
23701
24057
|
/**
|
|
23702
24058
|
* ProfilesApi - factory interface
|
|
@@ -23726,6 +24082,14 @@ export declare const ProfilesApiFactory: (configuration?: Configuration | undefi
|
|
|
23726
24082
|
* @throws {RequiredError}
|
|
23727
24083
|
*/
|
|
23728
24084
|
apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
24085
|
+
/**
|
|
24086
|
+
*
|
|
24087
|
+
* @summary Update Profile.
|
|
24088
|
+
* @param {UpdateProfileCommand} [updateProfileCommand]
|
|
24089
|
+
* @param {*} [options] Override http request option.
|
|
24090
|
+
* @throws {RequiredError}
|
|
24091
|
+
*/
|
|
24092
|
+
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: any): AxiosPromise<UserModel>;
|
|
23729
24093
|
};
|
|
23730
24094
|
/**
|
|
23731
24095
|
* ProfilesApi - object-oriented interface
|
|
@@ -23760,6 +24124,15 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
23760
24124
|
* @memberof ProfilesApi
|
|
23761
24125
|
*/
|
|
23762
24126
|
apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
24127
|
+
/**
|
|
24128
|
+
*
|
|
24129
|
+
* @summary Update Profile.
|
|
24130
|
+
* @param {UpdateProfileCommand} [updateProfileCommand]
|
|
24131
|
+
* @param {*} [options] Override http request option.
|
|
24132
|
+
* @throws {RequiredError}
|
|
24133
|
+
* @memberof ProfilesApi
|
|
24134
|
+
*/
|
|
24135
|
+
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
23763
24136
|
}
|
|
23764
24137
|
/**
|
|
23765
24138
|
* ServicesApi - axios parameter creator
|