ch-admin-api-client-typescript 3.1.4 → 3.1.5

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
@@ -10824,6 +10824,25 @@ export interface SpecialtiesModel {
10824
10824
  */
10825
10825
  'metaData'?: PagedListMetaData;
10826
10826
  }
10827
+ /**
10828
+ *
10829
+ * @export
10830
+ * @interface SpecialtiesSimpleModel
10831
+ */
10832
+ export interface SpecialtiesSimpleModel {
10833
+ /**
10834
+ *
10835
+ * @type {Array<SpecialtyItemSimpleModel>}
10836
+ * @memberof SpecialtiesSimpleModel
10837
+ */
10838
+ 'items'?: Array<SpecialtyItemSimpleModel> | null;
10839
+ /**
10840
+ *
10841
+ * @type {PagedListMetaData}
10842
+ * @memberof SpecialtiesSimpleModel
10843
+ */
10844
+ 'metaData'?: PagedListMetaData;
10845
+ }
10827
10846
  /**
10828
10847
  *
10829
10848
  * @export
@@ -10909,6 +10928,43 @@ export interface SpecialtyItemModel {
10909
10928
  */
10910
10929
  'medias'?: Array<MediaModel> | null;
10911
10930
  }
10931
+ /**
10932
+ *
10933
+ * @export
10934
+ * @interface SpecialtyItemSimpleModel
10935
+ */
10936
+ export interface SpecialtyItemSimpleModel {
10937
+ /**
10938
+ *
10939
+ * @type {string}
10940
+ * @memberof SpecialtyItemSimpleModel
10941
+ */
10942
+ 'id'?: string;
10943
+ /**
10944
+ *
10945
+ * @type {string}
10946
+ * @memberof SpecialtyItemSimpleModel
10947
+ */
10948
+ 'name'?: string | null;
10949
+ /**
10950
+ *
10951
+ * @type {string}
10952
+ * @memberof SpecialtyItemSimpleModel
10953
+ */
10954
+ 'slug'?: string | null;
10955
+ /**
10956
+ *
10957
+ * @type {string}
10958
+ * @memberof SpecialtyItemSimpleModel
10959
+ */
10960
+ 'specialtyTypeId'?: string;
10961
+ /**
10962
+ *
10963
+ * @type {boolean}
10964
+ * @memberof SpecialtyItemSimpleModel
10965
+ */
10966
+ 'confirmed'?: boolean;
10967
+ }
10912
10968
  /**
10913
10969
  *
10914
10970
  * @export
@@ -21195,10 +21251,11 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
21195
21251
  *
21196
21252
  * @summary Delete faq.
21197
21253
  * @param {string} faqId
21254
+ * @param {boolean} [forceDelete]
21198
21255
  * @param {*} [options] Override http request option.
21199
21256
  * @throws {RequiredError}
21200
21257
  */
21201
- apiV1FaqsFaqIdDelete: (faqId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21258
+ apiV1FaqsFaqIdDelete: (faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21202
21259
  /**
21203
21260
  *
21204
21261
  * @summary Get faq.
@@ -21314,10 +21371,11 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
21314
21371
  *
21315
21372
  * @summary Delete faq.
21316
21373
  * @param {string} faqId
21374
+ * @param {boolean} [forceDelete]
21317
21375
  * @param {*} [options] Override http request option.
21318
21376
  * @throws {RequiredError}
21319
21377
  */
21320
- apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21378
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21321
21379
  /**
21322
21380
  *
21323
21381
  * @summary Get faq.
@@ -21433,10 +21491,11 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
21433
21491
  *
21434
21492
  * @summary Delete faq.
21435
21493
  * @param {string} faqId
21494
+ * @param {boolean} [forceDelete]
21436
21495
  * @param {*} [options] Override http request option.
21437
21496
  * @throws {RequiredError}
21438
21497
  */
21439
- apiV1FaqsFaqIdDelete(faqId: string, options?: any): AxiosPromise<boolean>;
21498
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
21440
21499
  /**
21441
21500
  *
21442
21501
  * @summary Get faq.
@@ -21554,11 +21613,12 @@ export declare class FaqsApi extends BaseAPI {
21554
21613
  *
21555
21614
  * @summary Delete faq.
21556
21615
  * @param {string} faqId
21616
+ * @param {boolean} [forceDelete]
21557
21617
  * @param {*} [options] Override http request option.
21558
21618
  * @throws {RequiredError}
21559
21619
  * @memberof FaqsApi
21560
21620
  */
21561
- apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21621
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21562
21622
  /**
21563
21623
  *
21564
21624
  * @summary Get faq.
@@ -27891,6 +27951,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
27891
27951
  * @throws {RequiredError}
27892
27952
  */
27893
27953
  apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27954
+ /**
27955
+ *
27956
+ * @summary Get all Specialties Simple.
27957
+ * @param {string} [id]
27958
+ * @param {string} [name]
27959
+ * @param {string} [description]
27960
+ * @param {string} [specialtyTypeId]
27961
+ * @param {string} [hospitalId]
27962
+ * @param {Date} [created]
27963
+ * @param {string} [languageCode]
27964
+ * @param {Array<string>} [ids]
27965
+ * @param {boolean} [returnDefaultValue]
27966
+ * @param {number} [page]
27967
+ * @param {number} [limit]
27968
+ * @param {Date} [lastRetrieved]
27969
+ * @param {*} [options] Override http request option.
27970
+ * @throws {RequiredError}
27971
+ */
27972
+ apiV1SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27894
27973
  /**
27895
27974
  *
27896
27975
  * @param {string} slug
@@ -28010,6 +28089,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
28010
28089
  * @throws {RequiredError}
28011
28090
  */
28012
28091
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
28092
+ /**
28093
+ *
28094
+ * @summary Get all Specialties Simple.
28095
+ * @param {string} [id]
28096
+ * @param {string} [name]
28097
+ * @param {string} [description]
28098
+ * @param {string} [specialtyTypeId]
28099
+ * @param {string} [hospitalId]
28100
+ * @param {Date} [created]
28101
+ * @param {string} [languageCode]
28102
+ * @param {Array<string>} [ids]
28103
+ * @param {boolean} [returnDefaultValue]
28104
+ * @param {number} [page]
28105
+ * @param {number} [limit]
28106
+ * @param {Date} [lastRetrieved]
28107
+ * @param {*} [options] Override http request option.
28108
+ * @throws {RequiredError}
28109
+ */
28110
+ apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
28013
28111
  /**
28014
28112
  *
28015
28113
  * @param {string} slug
@@ -28129,6 +28227,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
28129
28227
  * @throws {RequiredError}
28130
28228
  */
28131
28229
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
28230
+ /**
28231
+ *
28232
+ * @summary Get all Specialties Simple.
28233
+ * @param {string} [id]
28234
+ * @param {string} [name]
28235
+ * @param {string} [description]
28236
+ * @param {string} [specialtyTypeId]
28237
+ * @param {string} [hospitalId]
28238
+ * @param {Date} [created]
28239
+ * @param {string} [languageCode]
28240
+ * @param {Array<string>} [ids]
28241
+ * @param {boolean} [returnDefaultValue]
28242
+ * @param {number} [page]
28243
+ * @param {number} [limit]
28244
+ * @param {Date} [lastRetrieved]
28245
+ * @param {*} [options] Override http request option.
28246
+ * @throws {RequiredError}
28247
+ */
28248
+ apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
28132
28249
  /**
28133
28250
  *
28134
28251
  * @param {string} slug
@@ -28252,6 +28369,26 @@ export declare class SpecialtiesApi extends BaseAPI {
28252
28369
  * @memberof SpecialtiesApi
28253
28370
  */
28254
28371
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
28372
+ /**
28373
+ *
28374
+ * @summary Get all Specialties Simple.
28375
+ * @param {string} [id]
28376
+ * @param {string} [name]
28377
+ * @param {string} [description]
28378
+ * @param {string} [specialtyTypeId]
28379
+ * @param {string} [hospitalId]
28380
+ * @param {Date} [created]
28381
+ * @param {string} [languageCode]
28382
+ * @param {Array<string>} [ids]
28383
+ * @param {boolean} [returnDefaultValue]
28384
+ * @param {number} [page]
28385
+ * @param {number} [limit]
28386
+ * @param {Date} [lastRetrieved]
28387
+ * @param {*} [options] Override http request option.
28388
+ * @throws {RequiredError}
28389
+ * @memberof SpecialtiesApi
28390
+ */
28391
+ apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel>>;
28255
28392
  /**
28256
28393
  *
28257
28394
  * @param {string} slug