ch-admin-api-client-typescript 2.6.2 → 2.6.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 +28 -12
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -7
- package/package.json +1 -1
- package/src/api.ts +34 -14
package/lib/api.d.ts
CHANGED
|
@@ -3300,10 +3300,10 @@ export interface CreateCountryCommand {
|
|
|
3300
3300
|
'content'?: string | null;
|
|
3301
3301
|
/**
|
|
3302
3302
|
*
|
|
3303
|
-
* @type {
|
|
3303
|
+
* @type {string}
|
|
3304
3304
|
* @memberof CreateCountryCommand
|
|
3305
3305
|
*/
|
|
3306
|
-
'
|
|
3306
|
+
'logo'?: string | null;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
*
|
|
@@ -8996,6 +8996,12 @@ export interface ServiceCategoryModel {
|
|
|
8996
8996
|
* @memberof ServiceCategoryModel
|
|
8997
8997
|
*/
|
|
8998
8998
|
'services'?: Array<HospitalServiceItemModel> | null;
|
|
8999
|
+
/**
|
|
9000
|
+
*
|
|
9001
|
+
* @type {string}
|
|
9002
|
+
* @memberof ServiceCategoryModel
|
|
9003
|
+
*/
|
|
9004
|
+
'languageCode'?: string | null;
|
|
8999
9005
|
}
|
|
9000
9006
|
/**
|
|
9001
9007
|
*
|
|
@@ -10138,6 +10144,12 @@ export interface UpdateCountryCommand {
|
|
|
10138
10144
|
* @memberof UpdateCountryCommand
|
|
10139
10145
|
*/
|
|
10140
10146
|
'slug'?: string | null;
|
|
10147
|
+
/**
|
|
10148
|
+
*
|
|
10149
|
+
* @type {string}
|
|
10150
|
+
* @memberof UpdateCountryCommand
|
|
10151
|
+
*/
|
|
10152
|
+
'logo'?: string | null;
|
|
10141
10153
|
/**
|
|
10142
10154
|
*
|
|
10143
10155
|
* @type {string}
|
|
@@ -10774,19 +10786,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10774
10786
|
* @type {number}
|
|
10775
10787
|
* @memberof UpdateHospitalServiceCommand
|
|
10776
10788
|
*/
|
|
10777
|
-
'minPrice'?: number;
|
|
10789
|
+
'minPrice'?: number | null;
|
|
10778
10790
|
/**
|
|
10779
10791
|
*
|
|
10780
10792
|
* @type {number}
|
|
10781
10793
|
* @memberof UpdateHospitalServiceCommand
|
|
10782
10794
|
*/
|
|
10783
|
-
'maxPrice'?: number;
|
|
10795
|
+
'maxPrice'?: number | null;
|
|
10784
10796
|
/**
|
|
10785
10797
|
*
|
|
10786
10798
|
* @type {boolean}
|
|
10787
10799
|
* @memberof UpdateHospitalServiceCommand
|
|
10788
10800
|
*/
|
|
10789
|
-
'priceReuqest'?: boolean;
|
|
10801
|
+
'priceReuqest'?: boolean | null;
|
|
10790
10802
|
/**
|
|
10791
10803
|
*
|
|
10792
10804
|
* @type {Procedure}
|
|
@@ -16319,7 +16331,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16319
16331
|
* @param {*} [options] Override http request option.
|
|
16320
16332
|
* @throws {RequiredError}
|
|
16321
16333
|
*/
|
|
16322
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16334
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
16323
16335
|
/**
|
|
16324
16336
|
*
|
|
16325
16337
|
* @summary Delete DoctorCertificate.
|
|
@@ -16684,7 +16696,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16684
16696
|
* @param {*} [options] Override http request option.
|
|
16685
16697
|
* @throws {RequiredError}
|
|
16686
16698
|
*/
|
|
16687
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<
|
|
16699
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
16688
16700
|
/**
|
|
16689
16701
|
*
|
|
16690
16702
|
* @summary Delete DoctorCertificate.
|
|
@@ -17055,7 +17067,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17055
17067
|
* @throws {RequiredError}
|
|
17056
17068
|
* @memberof DoctorsApi
|
|
17057
17069
|
*/
|
|
17058
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17070
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
17059
17071
|
/**
|
|
17060
17072
|
*
|
|
17061
17073
|
* @summary Delete DoctorCertificate.
|
|
@@ -22495,13 +22507,14 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22495
22507
|
* @param {string} [name]
|
|
22496
22508
|
* @param {string} [description]
|
|
22497
22509
|
* @param {string} [languageCode]
|
|
22510
|
+
* @param {boolean} [returnDefaultValue]
|
|
22498
22511
|
* @param {number} [page]
|
|
22499
22512
|
* @param {number} [limit]
|
|
22500
22513
|
* @param {Date} [lastRetrieved]
|
|
22501
22514
|
* @param {*} [options] Override http request option.
|
|
22502
22515
|
* @throws {RequiredError}
|
|
22503
22516
|
*/
|
|
22504
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22517
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22505
22518
|
/**
|
|
22506
22519
|
*
|
|
22507
22520
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22548,13 +22561,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22548
22561
|
* @param {string} [name]
|
|
22549
22562
|
* @param {string} [description]
|
|
22550
22563
|
* @param {string} [languageCode]
|
|
22564
|
+
* @param {boolean} [returnDefaultValue]
|
|
22551
22565
|
* @param {number} [page]
|
|
22552
22566
|
* @param {number} [limit]
|
|
22553
22567
|
* @param {Date} [lastRetrieved]
|
|
22554
22568
|
* @param {*} [options] Override http request option.
|
|
22555
22569
|
* @throws {RequiredError}
|
|
22556
22570
|
*/
|
|
22557
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
22571
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: 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<ServiceCategoriesModel>>;
|
|
22558
22572
|
/**
|
|
22559
22573
|
*
|
|
22560
22574
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22601,13 +22615,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22601
22615
|
* @param {string} [name]
|
|
22602
22616
|
* @param {string} [description]
|
|
22603
22617
|
* @param {string} [languageCode]
|
|
22618
|
+
* @param {boolean} [returnDefaultValue]
|
|
22604
22619
|
* @param {number} [page]
|
|
22605
22620
|
* @param {number} [limit]
|
|
22606
22621
|
* @param {Date} [lastRetrieved]
|
|
22607
22622
|
* @param {*} [options] Override http request option.
|
|
22608
22623
|
* @throws {RequiredError}
|
|
22609
22624
|
*/
|
|
22610
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
22625
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
22611
22626
|
/**
|
|
22612
22627
|
*
|
|
22613
22628
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22656,6 +22671,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22656
22671
|
* @param {string} [name]
|
|
22657
22672
|
* @param {string} [description]
|
|
22658
22673
|
* @param {string} [languageCode]
|
|
22674
|
+
* @param {boolean} [returnDefaultValue]
|
|
22659
22675
|
* @param {number} [page]
|
|
22660
22676
|
* @param {number} [limit]
|
|
22661
22677
|
* @param {Date} [lastRetrieved]
|
|
@@ -22663,7 +22679,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22663
22679
|
* @throws {RequiredError}
|
|
22664
22680
|
* @memberof ServicesCategoriesApi
|
|
22665
22681
|
*/
|
|
22666
|
-
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22682
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22667
22683
|
/**
|
|
22668
22684
|
*
|
|
22669
22685
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|