ch-admin-api-client-typescript 2.3.9 → 2.4.4

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 CHANGED
@@ -787,6 +787,12 @@ export interface ArticleModel {
787
787
  * @memberof ArticleModel
788
788
  */
789
789
  'confirmed'?: boolean;
790
+ /**
791
+ *
792
+ * @type {string}
793
+ * @memberof ArticleModel
794
+ */
795
+ 'languageCode'?: string | null;
790
796
  }
791
797
  /**
792
798
  *
@@ -8954,6 +8960,25 @@ export interface HospitalServicesModel {
8954
8960
  */
8955
8961
  'metaData'?: PagedListMetaData;
8956
8962
  }
8963
+ /**
8964
+ *
8965
+ * @export
8966
+ * @interface HospitalSimpleItemModel
8967
+ */
8968
+ export interface HospitalSimpleItemModel {
8969
+ /**
8970
+ *
8971
+ * @type {string}
8972
+ * @memberof HospitalSimpleItemModel
8973
+ */
8974
+ 'id'?: string;
8975
+ /**
8976
+ *
8977
+ * @type {string}
8978
+ * @memberof HospitalSimpleItemModel
8979
+ */
8980
+ 'name'?: string | null;
8981
+ }
8957
8982
  /**
8958
8983
  *
8959
8984
  * @export
@@ -9157,6 +9182,25 @@ export interface HospitalsModel {
9157
9182
  */
9158
9183
  'metaData'?: PagedListMetaData;
9159
9184
  }
9185
+ /**
9186
+ *
9187
+ * @export
9188
+ * @interface HospitalsSimpleModel
9189
+ */
9190
+ export interface HospitalsSimpleModel {
9191
+ /**
9192
+ *
9193
+ * @type {Array<HospitalSimpleItemModel>}
9194
+ * @memberof HospitalsSimpleModel
9195
+ */
9196
+ 'items'?: Array<HospitalSimpleItemModel> | null;
9197
+ /**
9198
+ *
9199
+ * @type {PagedListMetaData}
9200
+ * @memberof HospitalsSimpleModel
9201
+ */
9202
+ 'metaData'?: PagedListMetaData;
9203
+ }
9160
9204
  /**
9161
9205
  *
9162
9206
  * @export
@@ -9561,6 +9605,50 @@ export interface ManagerAffiliation {
9561
9605
  */
9562
9606
  'hospital'?: Hospital;
9563
9607
  }
9608
+ /**
9609
+ *
9610
+ * @export
9611
+ * @interface ManagerAffiliationItemModel
9612
+ */
9613
+ export interface ManagerAffiliationItemModel {
9614
+ /**
9615
+ *
9616
+ * @type {string}
9617
+ * @memberof ManagerAffiliationItemModel
9618
+ */
9619
+ 'hospitalId'?: string;
9620
+ /**
9621
+ *
9622
+ * @type {string}
9623
+ * @memberof ManagerAffiliationItemModel
9624
+ */
9625
+ 'hospitalName'?: string | null;
9626
+ /**
9627
+ *
9628
+ * @type {string}
9629
+ * @memberof ManagerAffiliationItemModel
9630
+ */
9631
+ 'hospitalSlug'?: string | null;
9632
+ }
9633
+ /**
9634
+ *
9635
+ * @export
9636
+ * @interface ManagerAffiliationsModel
9637
+ */
9638
+ export interface ManagerAffiliationsModel {
9639
+ /**
9640
+ *
9641
+ * @type {Array<ManagerAffiliationItemModel>}
9642
+ * @memberof ManagerAffiliationsModel
9643
+ */
9644
+ 'items'?: Array<ManagerAffiliationItemModel> | null;
9645
+ /**
9646
+ *
9647
+ * @type {PagedListMetaData}
9648
+ * @memberof ManagerAffiliationsModel
9649
+ */
9650
+ 'metaData'?: PagedListMetaData;
9651
+ }
9564
9652
  /**
9565
9653
  *
9566
9654
  * @export
@@ -12678,6 +12766,12 @@ export interface UpdateAccreditationCommand {
12678
12766
  * @interface UpdateArticleCommand
12679
12767
  */
12680
12768
  export interface UpdateArticleCommand {
12769
+ /**
12770
+ *
12771
+ * @type {string}
12772
+ * @memberof UpdateArticleCommand
12773
+ */
12774
+ 'languageCode'?: string | null;
12681
12775
  /**
12682
12776
  *
12683
12777
  * @type {string}
@@ -12734,22 +12828,16 @@ export interface UpdateArticleCommand {
12734
12828
  'articleTags'?: Array<ArticleTagItemModel> | null;
12735
12829
  /**
12736
12830
  *
12737
- * @type {Array<ArticleContributorItemModel>}
12831
+ * @type {boolean}
12738
12832
  * @memberof UpdateArticleCommand
12739
12833
  */
12740
- 'articleContributors'?: Array<ArticleContributorItemModel> | null;
12834
+ 'confirmed'?: boolean;
12741
12835
  /**
12742
12836
  *
12743
12837
  * @type {Array<MediaModel>}
12744
12838
  * @memberof UpdateArticleCommand
12745
12839
  */
12746
12840
  'medias'?: Array<MediaModel> | null;
12747
- /**
12748
- *
12749
- * @type {Array<SourceModel>}
12750
- * @memberof UpdateArticleCommand
12751
- */
12752
- 'sources'?: Array<SourceModel> | null;
12753
12841
  }
12754
12842
  /**
12755
12843
  *
@@ -13856,6 +13944,67 @@ export interface UpdatePlanHospitalCommand {
13856
13944
  */
13857
13945
  'order'?: number;
13858
13946
  }
13947
+ /**
13948
+ *
13949
+ * @export
13950
+ * @interface UpdateProfileCommand
13951
+ */
13952
+ export interface UpdateProfileCommand {
13953
+ /**
13954
+ *
13955
+ * @type {string}
13956
+ * @memberof UpdateProfileCommand
13957
+ */
13958
+ 'firstName'?: string | null;
13959
+ /**
13960
+ *
13961
+ * @type {string}
13962
+ * @memberof UpdateProfileCommand
13963
+ */
13964
+ 'lastName'?: string | null;
13965
+ /**
13966
+ *
13967
+ * @type {string}
13968
+ * @memberof UpdateProfileCommand
13969
+ */
13970
+ 'phone'?: string | null;
13971
+ /**
13972
+ *
13973
+ * @type {string}
13974
+ * @memberof UpdateProfileCommand
13975
+ */
13976
+ 'photo'?: string | null;
13977
+ /**
13978
+ *
13979
+ * @type {string}
13980
+ * @memberof UpdateProfileCommand
13981
+ */
13982
+ 'photoThumbnail'?: string | null;
13983
+ /**
13984
+ *
13985
+ * @type {Gender}
13986
+ * @memberof UpdateProfileCommand
13987
+ */
13988
+ 'gender'?: Gender;
13989
+ /**
13990
+ *
13991
+ * @type {Date}
13992
+ * @memberof UpdateProfileCommand
13993
+ */
13994
+ 'dateOfBirth'?: Date | null;
13995
+ /**
13996
+ *
13997
+ * @type {Array<UserLanguageModel>}
13998
+ * @memberof UpdateProfileCommand
13999
+ */
14000
+ 'languages'?: Array<UserLanguageModel> | null;
14001
+ /**
14002
+ *
14003
+ * @type {Array<UserLocationModel>}
14004
+ * @memberof UpdateProfileCommand
14005
+ */
14006
+ 'locations'?: Array<UserLocationModel> | null;
14007
+ }
13859
14008
  /**
13860
14009
  *
13861
14010
  * @export
@@ -15217,7 +15366,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
15217
15366
  * @param {*} [options] Override http request option.
15218
15367
  * @throws {RequiredError}
15219
15368
  */
15220
- apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
15369
+ apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SourceModel>>;
15221
15370
  /**
15222
15371
  *
15223
15372
  * @summary GetAll ArticleTags.
@@ -15484,7 +15633,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
15484
15633
  * @param {*} [options] Override http request option.
15485
15634
  * @throws {RequiredError}
15486
15635
  */
15487
- apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: any): AxiosPromise<boolean>;
15636
+ apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: any): AxiosPromise<SourceModel>;
15488
15637
  /**
15489
15638
  *
15490
15639
  * @summary GetAll ArticleTags.
@@ -15771,7 +15920,7 @@ export declare class ArticlesApi extends BaseAPI {
15771
15920
  * @throws {RequiredError}
15772
15921
  * @memberof ArticlesApi
15773
15922
  */
15774
- apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15923
+ apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceModel>>;
15775
15924
  /**
15776
15925
  *
15777
15926
  * @summary GetAll ArticleTags.
@@ -17851,7 +18000,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
17851
18000
  * @param {*} [options] Override http request option.
17852
18001
  * @throws {RequiredError}
17853
18002
  */
17854
- apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18003
+ apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
17855
18004
  /**
17856
18005
  *
17857
18006
  * @summary Get all countries.
@@ -17965,7 +18114,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
17965
18114
  * @param {*} [options] Override http request option.
17966
18115
  * @throws {RequiredError}
17967
18116
  */
17968
- apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: any): AxiosPromise<boolean>;
18117
+ apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
17969
18118
  /**
17970
18119
  *
17971
18120
  * @summary Get all countries.
@@ -18089,7 +18238,7 @@ export declare class CountriesApi extends BaseAPI {
18089
18238
  * @throws {RequiredError}
18090
18239
  * @memberof CountriesApi
18091
18240
  */
18092
- apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18241
+ apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
18093
18242
  /**
18094
18243
  *
18095
18244
  * @summary Get all countries.
@@ -20752,6 +20901,29 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20752
20901
  * @throws {RequiredError}
20753
20902
  */
20754
20903
  apiV1HospitalsPost: (createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20904
+ /**
20905
+ *
20906
+ * @summary Get all Hospitals.
20907
+ * @param {string} [hospitalId]
20908
+ * @param {string} [name]
20909
+ * @param {string} [description]
20910
+ * @param {string} [countryId]
20911
+ * @param {Date} [created]
20912
+ * @param {MarketingType} [marketingType]
20913
+ * @param {string} [specialtyTypeId]
20914
+ * @param {string} [specialtyId]
20915
+ * @param {string} [serviceId]
20916
+ * @param {string} [exceptHospitalId]
20917
+ * @param {boolean} [showHidden]
20918
+ * @param {string} [languageCode]
20919
+ * @param {Array<string>} [ids]
20920
+ * @param {number} [page]
20921
+ * @param {number} [limit]
20922
+ * @param {Date} [lastRetrieved]
20923
+ * @param {*} [options] Override http request option.
20924
+ * @throws {RequiredError}
20925
+ */
20926
+ 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
20927
  /**
20756
20928
  *
20757
20929
  * @summary Get Hospital by slug.
@@ -20921,7 +21093,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20921
21093
  * @param {*} [options] Override http request option.
20922
21094
  * @throws {RequiredError}
20923
21095
  */
20924
- apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21096
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
20925
21097
  /**
20926
21098
  *
20927
21099
  * @summary Get all HospitalEquipments.
@@ -21056,7 +21228,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21056
21228
  * @param {*} [options] Override http request option.
21057
21229
  * @throws {RequiredError}
21058
21230
  */
21059
- apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21231
+ apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
21060
21232
  /**
21061
21233
  *
21062
21234
  * @summary Get all HospitalSpecialties.
@@ -21238,7 +21410,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21238
21410
  * @param {*} [options] Override http request option.
21239
21411
  * @throws {RequiredError}
21240
21412
  */
21241
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21413
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
21242
21414
  /**
21243
21415
  *
21244
21416
  * @summary Create Hospital.
@@ -21247,6 +21419,29 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21247
21419
  * @throws {RequiredError}
21248
21420
  */
21249
21421
  apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
21422
+ /**
21423
+ *
21424
+ * @summary Get all Hospitals.
21425
+ * @param {string} [hospitalId]
21426
+ * @param {string} [name]
21427
+ * @param {string} [description]
21428
+ * @param {string} [countryId]
21429
+ * @param {Date} [created]
21430
+ * @param {MarketingType} [marketingType]
21431
+ * @param {string} [specialtyTypeId]
21432
+ * @param {string} [specialtyId]
21433
+ * @param {string} [serviceId]
21434
+ * @param {string} [exceptHospitalId]
21435
+ * @param {boolean} [showHidden]
21436
+ * @param {string} [languageCode]
21437
+ * @param {Array<string>} [ids]
21438
+ * @param {number} [page]
21439
+ * @param {number} [limit]
21440
+ * @param {Date} [lastRetrieved]
21441
+ * @param {*} [options] Override http request option.
21442
+ * @throws {RequiredError}
21443
+ */
21444
+ 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
21445
  /**
21251
21446
  *
21252
21447
  * @summary Get Hospital by slug.
@@ -21416,7 +21611,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21416
21611
  * @param {*} [options] Override http request option.
21417
21612
  * @throws {RequiredError}
21418
21613
  */
21419
- apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: any): AxiosPromise<boolean>;
21614
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: any): AxiosPromise<HospitalEquipmentModel>;
21420
21615
  /**
21421
21616
  *
21422
21617
  * @summary Get all HospitalEquipments.
@@ -21551,7 +21746,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21551
21746
  * @param {*} [options] Override http request option.
21552
21747
  * @throws {RequiredError}
21553
21748
  */
21554
- apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
21749
+ apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<HospitalModel>;
21555
21750
  /**
21556
21751
  *
21557
21752
  * @summary Get all HospitalSpecialties.
@@ -21733,7 +21928,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21733
21928
  * @param {*} [options] Override http request option.
21734
21929
  * @throws {RequiredError}
21735
21930
  */
21736
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
21931
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
21737
21932
  /**
21738
21933
  *
21739
21934
  * @summary Create Hospital.
@@ -21742,6 +21937,29 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21742
21937
  * @throws {RequiredError}
21743
21938
  */
21744
21939
  apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand | undefined, options?: any): AxiosPromise<HospitalModel>;
21940
+ /**
21941
+ *
21942
+ * @summary Get all Hospitals.
21943
+ * @param {string} [hospitalId]
21944
+ * @param {string} [name]
21945
+ * @param {string} [description]
21946
+ * @param {string} [countryId]
21947
+ * @param {Date} [created]
21948
+ * @param {MarketingType} [marketingType]
21949
+ * @param {string} [specialtyTypeId]
21950
+ * @param {string} [specialtyId]
21951
+ * @param {string} [serviceId]
21952
+ * @param {string} [exceptHospitalId]
21953
+ * @param {boolean} [showHidden]
21954
+ * @param {string} [languageCode]
21955
+ * @param {Array<string>} [ids]
21956
+ * @param {number} [page]
21957
+ * @param {number} [limit]
21958
+ * @param {Date} [lastRetrieved]
21959
+ * @param {*} [options] Override http request option.
21960
+ * @throws {RequiredError}
21961
+ */
21962
+ 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
21963
  /**
21746
21964
  *
21747
21965
  * @summary Get Hospital by slug.
@@ -21927,7 +22145,7 @@ export declare class HospitalsApi extends BaseAPI {
21927
22145
  * @throws {RequiredError}
21928
22146
  * @memberof HospitalsApi
21929
22147
  */
21930
- apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
22148
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel>>;
21931
22149
  /**
21932
22150
  *
21933
22151
  * @summary Get all HospitalEquipments.
@@ -22075,7 +22293,7 @@ export declare class HospitalsApi extends BaseAPI {
22075
22293
  * @throws {RequiredError}
22076
22294
  * @memberof HospitalsApi
22077
22295
  */
22078
- apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
22296
+ apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
22079
22297
  /**
22080
22298
  *
22081
22299
  * @summary Get all HospitalSpecialties.
@@ -22272,7 +22490,7 @@ export declare class HospitalsApi extends BaseAPI {
22272
22490
  * @throws {RequiredError}
22273
22491
  * @memberof HospitalsApi
22274
22492
  */
22275
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
22493
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22276
22494
  /**
22277
22495
  *
22278
22496
  * @summary Create Hospital.
@@ -22282,6 +22500,30 @@ export declare class HospitalsApi extends BaseAPI {
22282
22500
  * @memberof HospitalsApi
22283
22501
  */
22284
22502
  apiV1HospitalsPost(createHospitalCommand?: CreateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
22503
+ /**
22504
+ *
22505
+ * @summary Get all Hospitals.
22506
+ * @param {string} [hospitalId]
22507
+ * @param {string} [name]
22508
+ * @param {string} [description]
22509
+ * @param {string} [countryId]
22510
+ * @param {Date} [created]
22511
+ * @param {MarketingType} [marketingType]
22512
+ * @param {string} [specialtyTypeId]
22513
+ * @param {string} [specialtyId]
22514
+ * @param {string} [serviceId]
22515
+ * @param {string} [exceptHospitalId]
22516
+ * @param {boolean} [showHidden]
22517
+ * @param {string} [languageCode]
22518
+ * @param {Array<string>} [ids]
22519
+ * @param {number} [page]
22520
+ * @param {number} [limit]
22521
+ * @param {Date} [lastRetrieved]
22522
+ * @param {*} [options] Override http request option.
22523
+ * @throws {RequiredError}
22524
+ * @memberof HospitalsApi
22525
+ */
22526
+ 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
22527
  /**
22286
22528
  *
22287
22529
  * @summary Get Hospital by slug.
@@ -22501,6 +22743,7 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
22501
22743
  /**
22502
22744
  *
22503
22745
  * @summary Get all Managers.
22746
+ * @param {string} [hospitalId]
22504
22747
  * @param {string} [id]
22505
22748
  * @param {string} [fullname]
22506
22749
  * @param {string} [email]
@@ -22514,7 +22757,19 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
22514
22757
  * @param {*} [options] Override http request option.
22515
22758
  * @throws {RequiredError}
22516
22759
  */
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>;
22760
+ 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>;
22761
+ /**
22762
+ *
22763
+ * @summary Get all manager affiliations.
22764
+ * @param {string} managerId
22765
+ * @param {string} [hospitalName]
22766
+ * @param {number} [page]
22767
+ * @param {number} [limit]
22768
+ * @param {Date} [lastRetrieved]
22769
+ * @param {*} [options] Override http request option.
22770
+ * @throws {RequiredError}
22771
+ */
22772
+ apiV1ManagersManagerIdAffiliationsGet: (managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22518
22773
  /**
22519
22774
  *
22520
22775
  * @summary Delete Manager.
@@ -22557,6 +22812,7 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
22557
22812
  /**
22558
22813
  *
22559
22814
  * @summary Get all Managers.
22815
+ * @param {string} [hospitalId]
22560
22816
  * @param {string} [id]
22561
22817
  * @param {string} [fullname]
22562
22818
  * @param {string} [email]
@@ -22570,7 +22826,19 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
22570
22826
  * @param {*} [options] Override http request option.
22571
22827
  * @throws {RequiredError}
22572
22828
  */
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>>;
22829
+ 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>>;
22830
+ /**
22831
+ *
22832
+ * @summary Get all manager affiliations.
22833
+ * @param {string} managerId
22834
+ * @param {string} [hospitalName]
22835
+ * @param {number} [page]
22836
+ * @param {number} [limit]
22837
+ * @param {Date} [lastRetrieved]
22838
+ * @param {*} [options] Override http request option.
22839
+ * @throws {RequiredError}
22840
+ */
22841
+ 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
22842
  /**
22575
22843
  *
22576
22844
  * @summary Delete Manager.
@@ -22613,6 +22881,7 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
22613
22881
  /**
22614
22882
  *
22615
22883
  * @summary Get all Managers.
22884
+ * @param {string} [hospitalId]
22616
22885
  * @param {string} [id]
22617
22886
  * @param {string} [fullname]
22618
22887
  * @param {string} [email]
@@ -22626,7 +22895,19 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
22626
22895
  * @param {*} [options] Override http request option.
22627
22896
  * @throws {RequiredError}
22628
22897
  */
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>;
22898
+ 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>;
22899
+ /**
22900
+ *
22901
+ * @summary Get all manager affiliations.
22902
+ * @param {string} managerId
22903
+ * @param {string} [hospitalName]
22904
+ * @param {number} [page]
22905
+ * @param {number} [limit]
22906
+ * @param {Date} [lastRetrieved]
22907
+ * @param {*} [options] Override http request option.
22908
+ * @throws {RequiredError}
22909
+ */
22910
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagerAffiliationsModel>;
22630
22911
  /**
22631
22912
  *
22632
22913
  * @summary Delete Manager.
@@ -22671,6 +22952,7 @@ export declare class ManagersApi extends BaseAPI {
22671
22952
  /**
22672
22953
  *
22673
22954
  * @summary Get all Managers.
22955
+ * @param {string} [hospitalId]
22674
22956
  * @param {string} [id]
22675
22957
  * @param {string} [fullname]
22676
22958
  * @param {string} [email]
@@ -22685,7 +22967,20 @@ export declare class ManagersApi extends BaseAPI {
22685
22967
  * @throws {RequiredError}
22686
22968
  * @memberof ManagersApi
22687
22969
  */
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>>;
22970
+ 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>>;
22971
+ /**
22972
+ *
22973
+ * @summary Get all manager affiliations.
22974
+ * @param {string} managerId
22975
+ * @param {string} [hospitalName]
22976
+ * @param {number} [page]
22977
+ * @param {number} [limit]
22978
+ * @param {Date} [lastRetrieved]
22979
+ * @param {*} [options] Override http request option.
22980
+ * @throws {RequiredError}
22981
+ * @memberof ManagersApi
22982
+ */
22983
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
22689
22984
  /**
22690
22985
  *
22691
22986
  * @summary Delete Manager.
@@ -23719,6 +24014,14 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
23719
24014
  * @throws {RequiredError}
23720
24015
  */
23721
24016
  apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
24017
+ /**
24018
+ *
24019
+ * @summary Update Profile.
24020
+ * @param {UpdateProfileCommand} [updateProfileCommand]
24021
+ * @param {*} [options] Override http request option.
24022
+ * @throws {RequiredError}
24023
+ */
24024
+ apiV1ProfilesPut: (updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23722
24025
  };
23723
24026
  /**
23724
24027
  * ProfilesApi - functional programming interface
@@ -23748,6 +24051,14 @@ export declare const ProfilesApiFp: (configuration?: Configuration | undefined)
23748
24051
  * @throws {RequiredError}
23749
24052
  */
23750
24053
  apiV1ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
24054
+ /**
24055
+ *
24056
+ * @summary Update Profile.
24057
+ * @param {UpdateProfileCommand} [updateProfileCommand]
24058
+ * @param {*} [options] Override http request option.
24059
+ * @throws {RequiredError}
24060
+ */
24061
+ apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
23751
24062
  };
23752
24063
  /**
23753
24064
  * ProfilesApi - factory interface
@@ -23777,6 +24088,14 @@ export declare const ProfilesApiFactory: (configuration?: Configuration | undefi
23777
24088
  * @throws {RequiredError}
23778
24089
  */
23779
24090
  apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
24091
+ /**
24092
+ *
24093
+ * @summary Update Profile.
24094
+ * @param {UpdateProfileCommand} [updateProfileCommand]
24095
+ * @param {*} [options] Override http request option.
24096
+ * @throws {RequiredError}
24097
+ */
24098
+ apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: any): AxiosPromise<UserModel>;
23780
24099
  };
23781
24100
  /**
23782
24101
  * ProfilesApi - object-oriented interface
@@ -23811,6 +24130,15 @@ export declare class ProfilesApi extends BaseAPI {
23811
24130
  * @memberof ProfilesApi
23812
24131
  */
23813
24132
  apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
24133
+ /**
24134
+ *
24135
+ * @summary Update Profile.
24136
+ * @param {UpdateProfileCommand} [updateProfileCommand]
24137
+ * @param {*} [options] Override http request option.
24138
+ * @throws {RequiredError}
24139
+ * @memberof ProfilesApi
24140
+ */
24141
+ apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
23814
24142
  }
23815
24143
  /**
23816
24144
  * ServicesApi - axios parameter creator
@@ -24464,7 +24792,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
24464
24792
  * @param {*} [options] Override http request option.
24465
24793
  * @throws {RequiredError}
24466
24794
  */
24467
- apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
24795
+ apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
24468
24796
  };
24469
24797
  /**
24470
24798
  * SpecialtiesApi - factory interface
@@ -24581,7 +24909,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
24581
24909
  * @param {*} [options] Override http request option.
24582
24910
  * @throws {RequiredError}
24583
24911
  */
24584
- apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: any): AxiosPromise<boolean>;
24912
+ apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
24585
24913
  };
24586
24914
  /**
24587
24915
  * SpecialtiesApi - object-oriented interface
@@ -24711,7 +25039,7 @@ export declare class SpecialtiesApi extends BaseAPI {
24711
25039
  * @throws {RequiredError}
24712
25040
  * @memberof SpecialtiesApi
24713
25041
  */
24714
- apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
25042
+ apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
24715
25043
  }
24716
25044
  /**
24717
25045
  * SpecialtyTypesApi - axios parameter creator
@@ -24947,7 +25275,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
24947
25275
  * @param {*} [options] Override http request option.
24948
25276
  * @throws {RequiredError}
24949
25277
  */
24950
- apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
25278
+ apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
24951
25279
  };
24952
25280
  /**
24953
25281
  * SpecialtyTypesApi - factory interface
@@ -25065,7 +25393,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
25065
25393
  * @param {*} [options] Override http request option.
25066
25394
  * @throws {RequiredError}
25067
25395
  */
25068
- apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<boolean>;
25396
+ apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
25069
25397
  };
25070
25398
  /**
25071
25399
  * SpecialtyTypesApi - object-oriented interface
@@ -25196,7 +25524,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
25196
25524
  * @throws {RequiredError}
25197
25525
  * @memberof SpecialtyTypesApi
25198
25526
  */
25199
- apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
25527
+ apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
25200
25528
  }
25201
25529
  /**
25202
25530
  * TagsApi - axios parameter creator