ch-admin-api-client-typescript 2.5.8 → 2.6.2
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 +82 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +70 -65
- package/package.json +1 -1
- package/src/api.ts +119 -65
package/lib/api.d.ts
CHANGED
|
@@ -4443,6 +4443,18 @@ export interface DealItemModel {
|
|
|
4443
4443
|
* @memberof DealItemModel
|
|
4444
4444
|
*/
|
|
4445
4445
|
'auditableEntity'?: AuditableEntity;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4449
|
+
* @memberof DealItemModel
|
|
4450
|
+
*/
|
|
4451
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4452
|
+
/**
|
|
4453
|
+
*
|
|
4454
|
+
* @type {boolean}
|
|
4455
|
+
* @memberof DealItemModel
|
|
4456
|
+
*/
|
|
4457
|
+
'confirmed'?: boolean;
|
|
4446
4458
|
}
|
|
4447
4459
|
/**
|
|
4448
4460
|
*
|
|
@@ -4534,6 +4546,24 @@ export interface DealModel {
|
|
|
4534
4546
|
* @memberof DealModel
|
|
4535
4547
|
*/
|
|
4536
4548
|
'auditableEntity'?: AuditableEntity;
|
|
4549
|
+
/**
|
|
4550
|
+
*
|
|
4551
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4552
|
+
* @memberof DealModel
|
|
4553
|
+
*/
|
|
4554
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4555
|
+
/**
|
|
4556
|
+
*
|
|
4557
|
+
* @type {boolean}
|
|
4558
|
+
* @memberof DealModel
|
|
4559
|
+
*/
|
|
4560
|
+
'confirmed'?: boolean;
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @type {string}
|
|
4564
|
+
* @memberof DealModel
|
|
4565
|
+
*/
|
|
4566
|
+
'languageCode'?: string | null;
|
|
4537
4567
|
}
|
|
4538
4568
|
/**
|
|
4539
4569
|
*
|
|
@@ -10181,6 +10211,18 @@ export interface UpdateDealCommand {
|
|
|
10181
10211
|
* @memberof UpdateDealCommand
|
|
10182
10212
|
*/
|
|
10183
10213
|
'photoThumbnail'?: string | null;
|
|
10214
|
+
/**
|
|
10215
|
+
*
|
|
10216
|
+
* @type {string}
|
|
10217
|
+
* @memberof UpdateDealCommand
|
|
10218
|
+
*/
|
|
10219
|
+
'languageCode'?: string | null;
|
|
10220
|
+
/**
|
|
10221
|
+
*
|
|
10222
|
+
* @type {boolean}
|
|
10223
|
+
* @memberof UpdateDealCommand
|
|
10224
|
+
*/
|
|
10225
|
+
'confirmed'?: boolean;
|
|
10184
10226
|
}
|
|
10185
10227
|
/**
|
|
10186
10228
|
*
|
|
@@ -14747,7 +14789,6 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14747
14789
|
apiV1CountriesPost: (createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14748
14790
|
/**
|
|
14749
14791
|
*
|
|
14750
|
-
* @summary Get country by slug.
|
|
14751
14792
|
* @param {string} slug
|
|
14752
14793
|
* @param {string} [languageCode]
|
|
14753
14794
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14873,7 +14914,6 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14873
14914
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14874
14915
|
/**
|
|
14875
14916
|
*
|
|
14876
|
-
* @summary Get country by slug.
|
|
14877
14917
|
* @param {string} slug
|
|
14878
14918
|
* @param {string} [languageCode]
|
|
14879
14919
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14999,7 +15039,6 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14999
15039
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
15000
15040
|
/**
|
|
15001
15041
|
*
|
|
15002
|
-
* @summary Get country by slug.
|
|
15003
15042
|
* @param {string} slug
|
|
15004
15043
|
* @param {string} [languageCode]
|
|
15005
15044
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15138,7 +15177,6 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15138
15177
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15139
15178
|
/**
|
|
15140
15179
|
*
|
|
15141
|
-
* @summary Get country by slug.
|
|
15142
15180
|
* @param {string} slug
|
|
15143
15181
|
* @param {string} [languageCode]
|
|
15144
15182
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15165,10 +15203,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15165
15203
|
*
|
|
15166
15204
|
* @summary Get deal.
|
|
15167
15205
|
* @param {string} dealId
|
|
15206
|
+
* @param {string} [languageCode]
|
|
15207
|
+
* @param {boolean} [returnDefaultValue]
|
|
15168
15208
|
* @param {*} [options] Override http request option.
|
|
15169
15209
|
* @throws {RequiredError}
|
|
15170
15210
|
*/
|
|
15171
|
-
apiV1DealsDealIdGet: (dealId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15211
|
+
apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15172
15212
|
/**
|
|
15173
15213
|
*
|
|
15174
15214
|
* @summary Get all DealPackage.
|
|
@@ -15294,13 +15334,16 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15294
15334
|
* @param {string} [exceptHospitalId]
|
|
15295
15335
|
* @param {string} [exceptDealId]
|
|
15296
15336
|
* @param {Array<string>} [ids]
|
|
15337
|
+
* @param {string} [languageCode]
|
|
15338
|
+
* @param {boolean} [showHidden]
|
|
15339
|
+
* @param {boolean} [returnDefaultValue]
|
|
15297
15340
|
* @param {number} [page]
|
|
15298
15341
|
* @param {number} [limit]
|
|
15299
15342
|
* @param {Date} [lastRetrieved]
|
|
15300
15343
|
* @param {*} [options] Override http request option.
|
|
15301
15344
|
* @throws {RequiredError}
|
|
15302
15345
|
*/
|
|
15303
|
-
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15346
|
+
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15304
15347
|
/**
|
|
15305
15348
|
*
|
|
15306
15349
|
* @summary Create a deal.
|
|
@@ -15313,10 +15356,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15313
15356
|
*
|
|
15314
15357
|
* @summary Get deal by slug.
|
|
15315
15358
|
* @param {string} slug
|
|
15359
|
+
* @param {string} [languageCode]
|
|
15360
|
+
* @param {boolean} [returnDefaultValue]
|
|
15316
15361
|
* @param {*} [options] Override http request option.
|
|
15317
15362
|
* @throws {RequiredError}
|
|
15318
15363
|
*/
|
|
15319
|
-
apiV1DealsSlugGet: (slug: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15364
|
+
apiV1DealsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15320
15365
|
};
|
|
15321
15366
|
/**
|
|
15322
15367
|
* DealsApi - functional programming interface
|
|
@@ -15335,10 +15380,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15335
15380
|
*
|
|
15336
15381
|
* @summary Get deal.
|
|
15337
15382
|
* @param {string} dealId
|
|
15383
|
+
* @param {string} [languageCode]
|
|
15384
|
+
* @param {boolean} [returnDefaultValue]
|
|
15338
15385
|
* @param {*} [options] Override http request option.
|
|
15339
15386
|
* @throws {RequiredError}
|
|
15340
15387
|
*/
|
|
15341
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15388
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15342
15389
|
/**
|
|
15343
15390
|
*
|
|
15344
15391
|
* @summary Get all DealPackage.
|
|
@@ -15464,13 +15511,16 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15464
15511
|
* @param {string} [exceptHospitalId]
|
|
15465
15512
|
* @param {string} [exceptDealId]
|
|
15466
15513
|
* @param {Array<string>} [ids]
|
|
15514
|
+
* @param {string} [languageCode]
|
|
15515
|
+
* @param {boolean} [showHidden]
|
|
15516
|
+
* @param {boolean} [returnDefaultValue]
|
|
15467
15517
|
* @param {number} [page]
|
|
15468
15518
|
* @param {number} [limit]
|
|
15469
15519
|
* @param {Date} [lastRetrieved]
|
|
15470
15520
|
* @param {*} [options] Override http request option.
|
|
15471
15521
|
* @throws {RequiredError}
|
|
15472
15522
|
*/
|
|
15473
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: 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<DealsModel>>;
|
|
15523
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
15474
15524
|
/**
|
|
15475
15525
|
*
|
|
15476
15526
|
* @summary Create a deal.
|
|
@@ -15483,10 +15533,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15483
15533
|
*
|
|
15484
15534
|
* @summary Get deal by slug.
|
|
15485
15535
|
* @param {string} slug
|
|
15536
|
+
* @param {string} [languageCode]
|
|
15537
|
+
* @param {boolean} [returnDefaultValue]
|
|
15486
15538
|
* @param {*} [options] Override http request option.
|
|
15487
15539
|
* @throws {RequiredError}
|
|
15488
15540
|
*/
|
|
15489
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15541
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15490
15542
|
};
|
|
15491
15543
|
/**
|
|
15492
15544
|
* DealsApi - factory interface
|
|
@@ -15505,10 +15557,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15505
15557
|
*
|
|
15506
15558
|
* @summary Get deal.
|
|
15507
15559
|
* @param {string} dealId
|
|
15560
|
+
* @param {string} [languageCode]
|
|
15561
|
+
* @param {boolean} [returnDefaultValue]
|
|
15508
15562
|
* @param {*} [options] Override http request option.
|
|
15509
15563
|
* @throws {RequiredError}
|
|
15510
15564
|
*/
|
|
15511
|
-
apiV1DealsDealIdGet(dealId: string, options?: any): AxiosPromise<DealModel>;
|
|
15565
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15512
15566
|
/**
|
|
15513
15567
|
*
|
|
15514
15568
|
* @summary Get all DealPackage.
|
|
@@ -15634,13 +15688,16 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15634
15688
|
* @param {string} [exceptHospitalId]
|
|
15635
15689
|
* @param {string} [exceptDealId]
|
|
15636
15690
|
* @param {Array<string>} [ids]
|
|
15691
|
+
* @param {string} [languageCode]
|
|
15692
|
+
* @param {boolean} [showHidden]
|
|
15693
|
+
* @param {boolean} [returnDefaultValue]
|
|
15637
15694
|
* @param {number} [page]
|
|
15638
15695
|
* @param {number} [limit]
|
|
15639
15696
|
* @param {Date} [lastRetrieved]
|
|
15640
15697
|
* @param {*} [options] Override http request option.
|
|
15641
15698
|
* @throws {RequiredError}
|
|
15642
15699
|
*/
|
|
15643
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15700
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15644
15701
|
/**
|
|
15645
15702
|
*
|
|
15646
15703
|
* @summary Create a deal.
|
|
@@ -15653,10 +15710,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15653
15710
|
*
|
|
15654
15711
|
* @summary Get deal by slug.
|
|
15655
15712
|
* @param {string} slug
|
|
15713
|
+
* @param {string} [languageCode]
|
|
15714
|
+
* @param {boolean} [returnDefaultValue]
|
|
15656
15715
|
* @param {*} [options] Override http request option.
|
|
15657
15716
|
* @throws {RequiredError}
|
|
15658
15717
|
*/
|
|
15659
|
-
apiV1DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
|
|
15718
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15660
15719
|
};
|
|
15661
15720
|
/**
|
|
15662
15721
|
* DealsApi - object-oriented interface
|
|
@@ -15678,11 +15737,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15678
15737
|
*
|
|
15679
15738
|
* @summary Get deal.
|
|
15680
15739
|
* @param {string} dealId
|
|
15740
|
+
* @param {string} [languageCode]
|
|
15741
|
+
* @param {boolean} [returnDefaultValue]
|
|
15681
15742
|
* @param {*} [options] Override http request option.
|
|
15682
15743
|
* @throws {RequiredError}
|
|
15683
15744
|
* @memberof DealsApi
|
|
15684
15745
|
*/
|
|
15685
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15746
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15686
15747
|
/**
|
|
15687
15748
|
*
|
|
15688
15749
|
* @summary Get all DealPackage.
|
|
@@ -15819,6 +15880,9 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15819
15880
|
* @param {string} [exceptHospitalId]
|
|
15820
15881
|
* @param {string} [exceptDealId]
|
|
15821
15882
|
* @param {Array<string>} [ids]
|
|
15883
|
+
* @param {string} [languageCode]
|
|
15884
|
+
* @param {boolean} [showHidden]
|
|
15885
|
+
* @param {boolean} [returnDefaultValue]
|
|
15822
15886
|
* @param {number} [page]
|
|
15823
15887
|
* @param {number} [limit]
|
|
15824
15888
|
* @param {Date} [lastRetrieved]
|
|
@@ -15826,7 +15890,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15826
15890
|
* @throws {RequiredError}
|
|
15827
15891
|
* @memberof DealsApi
|
|
15828
15892
|
*/
|
|
15829
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15893
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15830
15894
|
/**
|
|
15831
15895
|
*
|
|
15832
15896
|
* @summary Create a deal.
|
|
@@ -15840,11 +15904,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15840
15904
|
*
|
|
15841
15905
|
* @summary Get deal by slug.
|
|
15842
15906
|
* @param {string} slug
|
|
15907
|
+
* @param {string} [languageCode]
|
|
15908
|
+
* @param {boolean} [returnDefaultValue]
|
|
15843
15909
|
* @param {*} [options] Override http request option.
|
|
15844
15910
|
* @throws {RequiredError}
|
|
15845
15911
|
* @memberof DealsApi
|
|
15846
15912
|
*/
|
|
15847
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15913
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15848
15914
|
}
|
|
15849
15915
|
/**
|
|
15850
15916
|
* DoctorsApi - axios parameter creator
|
|
@@ -16005,7 +16071,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16005
16071
|
apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16006
16072
|
/**
|
|
16007
16073
|
*
|
|
16008
|
-
* @summary Get Doctor.
|
|
16009
16074
|
* @param {string} doctorId
|
|
16010
16075
|
* @param {string} [languageCode]
|
|
16011
16076
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16204,7 +16269,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16204
16269
|
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16205
16270
|
/**
|
|
16206
16271
|
*
|
|
16207
|
-
* @summary Get Doctor by slug.
|
|
16208
16272
|
* @param {string} slug
|
|
16209
16273
|
* @param {string} [languageCode]
|
|
16210
16274
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16372,7 +16436,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16372
16436
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
16373
16437
|
/**
|
|
16374
16438
|
*
|
|
16375
|
-
* @summary Get Doctor.
|
|
16376
16439
|
* @param {string} doctorId
|
|
16377
16440
|
* @param {string} [languageCode]
|
|
16378
16441
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16571,7 +16634,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16571
16634
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16572
16635
|
/**
|
|
16573
16636
|
*
|
|
16574
|
-
* @summary Get Doctor by slug.
|
|
16575
16637
|
* @param {string} slug
|
|
16576
16638
|
* @param {string} [languageCode]
|
|
16577
16639
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16739,7 +16801,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16739
16801
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
|
|
16740
16802
|
/**
|
|
16741
16803
|
*
|
|
16742
|
-
* @summary Get Doctor.
|
|
16743
16804
|
* @param {string} doctorId
|
|
16744
16805
|
* @param {string} [languageCode]
|
|
16745
16806
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16938,7 +16999,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16938
16999
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16939
17000
|
/**
|
|
16940
17001
|
*
|
|
16941
|
-
* @summary Get Doctor by slug.
|
|
16942
17002
|
* @param {string} slug
|
|
16943
17003
|
* @param {string} [languageCode]
|
|
16944
17004
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17123,7 +17183,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17123
17183
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
17124
17184
|
/**
|
|
17125
17185
|
*
|
|
17126
|
-
* @summary Get Doctor.
|
|
17127
17186
|
* @param {string} doctorId
|
|
17128
17187
|
* @param {string} [languageCode]
|
|
17129
17188
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17341,7 +17400,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17341
17400
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17342
17401
|
/**
|
|
17343
17402
|
*
|
|
17344
|
-
* @summary Get Doctor by slug.
|
|
17345
17403
|
* @param {string} slug
|
|
17346
17404
|
* @param {string} [languageCode]
|
|
17347
17405
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18767,7 +18825,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18767
18825
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18768
18826
|
/**
|
|
18769
18827
|
*
|
|
18770
|
-
* @summary Delete HospitalService
|
|
18771
18828
|
* @param {string} hospitalId
|
|
18772
18829
|
* @param {string} specialtyId
|
|
18773
18830
|
* @param {string} serviceId
|
|
@@ -18777,7 +18834,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18777
18834
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18778
18835
|
/**
|
|
18779
18836
|
*
|
|
18780
|
-
* @summary Get HospitalService.
|
|
18781
18837
|
* @param {string} hospitalId
|
|
18782
18838
|
* @param {string} specialtyId
|
|
18783
18839
|
* @param {string} serviceId
|
|
@@ -18892,7 +18948,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18892
18948
|
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18893
18949
|
/**
|
|
18894
18950
|
*
|
|
18895
|
-
* @summary Get Hospital by slug.
|
|
18896
18951
|
* @param {string} slug
|
|
18897
18952
|
* @param {string} [languageCode]
|
|
18898
18953
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19291,7 +19346,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19291
19346
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19292
19347
|
/**
|
|
19293
19348
|
*
|
|
19294
|
-
* @summary Delete HospitalService
|
|
19295
19349
|
* @param {string} hospitalId
|
|
19296
19350
|
* @param {string} specialtyId
|
|
19297
19351
|
* @param {string} serviceId
|
|
@@ -19301,7 +19355,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19301
19355
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19302
19356
|
/**
|
|
19303
19357
|
*
|
|
19304
|
-
* @summary Get HospitalService.
|
|
19305
19358
|
* @param {string} hospitalId
|
|
19306
19359
|
* @param {string} specialtyId
|
|
19307
19360
|
* @param {string} serviceId
|
|
@@ -19416,7 +19469,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19416
19469
|
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
19417
19470
|
/**
|
|
19418
19471
|
*
|
|
19419
|
-
* @summary Get Hospital by slug.
|
|
19420
19472
|
* @param {string} slug
|
|
19421
19473
|
* @param {string} [languageCode]
|
|
19422
19474
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19815,7 +19867,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19815
19867
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19816
19868
|
/**
|
|
19817
19869
|
*
|
|
19818
|
-
* @summary Delete HospitalService
|
|
19819
19870
|
* @param {string} hospitalId
|
|
19820
19871
|
* @param {string} specialtyId
|
|
19821
19872
|
* @param {string} serviceId
|
|
@@ -19825,7 +19876,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19825
19876
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
19826
19877
|
/**
|
|
19827
19878
|
*
|
|
19828
|
-
* @summary Get HospitalService.
|
|
19829
19879
|
* @param {string} hospitalId
|
|
19830
19880
|
* @param {string} specialtyId
|
|
19831
19881
|
* @param {string} serviceId
|
|
@@ -19940,7 +19990,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19940
19990
|
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
19941
19991
|
/**
|
|
19942
19992
|
*
|
|
19943
|
-
* @summary Get Hospital by slug.
|
|
19944
19993
|
* @param {string} slug
|
|
19945
19994
|
* @param {string} [languageCode]
|
|
19946
19995
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -20375,7 +20424,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20375
20424
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20376
20425
|
/**
|
|
20377
20426
|
*
|
|
20378
|
-
* @summary Delete HospitalService
|
|
20379
20427
|
* @param {string} hospitalId
|
|
20380
20428
|
* @param {string} specialtyId
|
|
20381
20429
|
* @param {string} serviceId
|
|
@@ -20386,7 +20434,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20386
20434
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20387
20435
|
/**
|
|
20388
20436
|
*
|
|
20389
|
-
* @summary Get HospitalService.
|
|
20390
20437
|
* @param {string} hospitalId
|
|
20391
20438
|
* @param {string} specialtyId
|
|
20392
20439
|
* @param {string} serviceId
|
|
@@ -20510,7 +20557,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20510
20557
|
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>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
20511
20558
|
/**
|
|
20512
20559
|
*
|
|
20513
|
-
* @summary Get Hospital by slug.
|
|
20514
20560
|
* @param {string} slug
|
|
20515
20561
|
* @param {string} [languageCode]
|
|
20516
20562
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22265,7 +22311,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22265
22311
|
apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22266
22312
|
/**
|
|
22267
22313
|
*
|
|
22268
|
-
* @summary Get HospitalService.
|
|
22269
22314
|
* @param {string} serviceId
|
|
22270
22315
|
* @param {string} [languageCode]
|
|
22271
22316
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22275,7 +22320,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22275
22320
|
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22276
22321
|
/**
|
|
22277
22322
|
*
|
|
22278
|
-
* @summary Get HospitalService by slug.
|
|
22279
22323
|
* @param {string} slug
|
|
22280
22324
|
* @param {string} [languageCode]
|
|
22281
22325
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22317,7 +22361,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22317
22361
|
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | 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<HospitalServicesModel>>;
|
|
22318
22362
|
/**
|
|
22319
22363
|
*
|
|
22320
|
-
* @summary Get HospitalService.
|
|
22321
22364
|
* @param {string} serviceId
|
|
22322
22365
|
* @param {string} [languageCode]
|
|
22323
22366
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22327,7 +22370,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22327
22370
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22328
22371
|
/**
|
|
22329
22372
|
*
|
|
22330
|
-
* @summary Get HospitalService by slug.
|
|
22331
22373
|
* @param {string} slug
|
|
22332
22374
|
* @param {string} [languageCode]
|
|
22333
22375
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22369,7 +22411,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22369
22411
|
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
22370
22412
|
/**
|
|
22371
22413
|
*
|
|
22372
|
-
* @summary Get HospitalService.
|
|
22373
22414
|
* @param {string} serviceId
|
|
22374
22415
|
* @param {string} [languageCode]
|
|
22375
22416
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22379,7 +22420,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22379
22420
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22380
22421
|
/**
|
|
22381
22422
|
*
|
|
22382
|
-
* @summary Get HospitalService by slug.
|
|
22383
22423
|
* @param {string} slug
|
|
22384
22424
|
* @param {string} [languageCode]
|
|
22385
22425
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22424,7 +22464,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22424
22464
|
apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
22425
22465
|
/**
|
|
22426
22466
|
*
|
|
22427
|
-
* @summary Get HospitalService.
|
|
22428
22467
|
* @param {string} serviceId
|
|
22429
22468
|
* @param {string} [languageCode]
|
|
22430
22469
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22435,7 +22474,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22435
22474
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22436
22475
|
/**
|
|
22437
22476
|
*
|
|
22438
|
-
* @summary Get HospitalService by slug.
|
|
22439
22477
|
* @param {string} slug
|
|
22440
22478
|
* @param {string} [languageCode]
|
|
22441
22479
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22698,7 +22736,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22698
22736
|
apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22699
22737
|
/**
|
|
22700
22738
|
*
|
|
22701
|
-
* @summary Get Specialty by slug.
|
|
22702
22739
|
* @param {string} slug
|
|
22703
22740
|
* @param {string} [languageCode]
|
|
22704
22741
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22818,7 +22855,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22818
22855
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22819
22856
|
/**
|
|
22820
22857
|
*
|
|
22821
|
-
* @summary Get Specialty by slug.
|
|
22822
22858
|
* @param {string} slug
|
|
22823
22859
|
* @param {string} [languageCode]
|
|
22824
22860
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22938,7 +22974,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22938
22974
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22939
22975
|
/**
|
|
22940
22976
|
*
|
|
22941
|
-
* @summary Get Specialty by slug.
|
|
22942
22977
|
* @param {string} slug
|
|
22943
22978
|
* @param {string} [languageCode]
|
|
22944
22979
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23062,7 +23097,6 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
23062
23097
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23063
23098
|
/**
|
|
23064
23099
|
*
|
|
23065
|
-
* @summary Get Specialty by slug.
|
|
23066
23100
|
* @param {string} slug
|
|
23067
23101
|
* @param {string} [languageCode]
|
|
23068
23102
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23212,7 +23246,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23212
23246
|
apiV1SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23213
23247
|
/**
|
|
23214
23248
|
*
|
|
23215
|
-
* @summary Get Department by slug.
|
|
23216
23249
|
* @param {string} slug
|
|
23217
23250
|
* @param {string} [languageCode]
|
|
23218
23251
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23230,7 +23263,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23230
23263
|
apiV1SpecialtytypesSpecialtyTypeIdDelete: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23231
23264
|
/**
|
|
23232
23265
|
*
|
|
23233
|
-
* @summary Get Department.
|
|
23234
23266
|
* @param {string} specialtyTypeId
|
|
23235
23267
|
* @param {string} [languageCode]
|
|
23236
23268
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23353,7 +23385,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23353
23385
|
apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: 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<SpecialtyTypesSimpleModel>>;
|
|
23354
23386
|
/**
|
|
23355
23387
|
*
|
|
23356
|
-
* @summary Get Department by slug.
|
|
23357
23388
|
* @param {string} slug
|
|
23358
23389
|
* @param {string} [languageCode]
|
|
23359
23390
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23371,7 +23402,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23371
23402
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23372
23403
|
/**
|
|
23373
23404
|
*
|
|
23374
|
-
* @summary Get Department.
|
|
23375
23405
|
* @param {string} specialtyTypeId
|
|
23376
23406
|
* @param {string} [languageCode]
|
|
23377
23407
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23494,7 +23524,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23494
23524
|
apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
|
|
23495
23525
|
/**
|
|
23496
23526
|
*
|
|
23497
|
-
* @summary Get Department by slug.
|
|
23498
23527
|
* @param {string} slug
|
|
23499
23528
|
* @param {string} [languageCode]
|
|
23500
23529
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23512,7 +23541,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23512
23541
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
|
|
23513
23542
|
/**
|
|
23514
23543
|
*
|
|
23515
|
-
* @summary Get Department.
|
|
23516
23544
|
* @param {string} specialtyTypeId
|
|
23517
23545
|
* @param {string} [languageCode]
|
|
23518
23546
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23640,7 +23668,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23640
23668
|
apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel>>;
|
|
23641
23669
|
/**
|
|
23642
23670
|
*
|
|
23643
|
-
* @summary Get Department by slug.
|
|
23644
23671
|
* @param {string} slug
|
|
23645
23672
|
* @param {string} [languageCode]
|
|
23646
23673
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23660,7 +23687,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23660
23687
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23661
23688
|
/**
|
|
23662
23689
|
*
|
|
23663
|
-
* @summary Get Department.
|
|
23664
23690
|
* @param {string} specialtyTypeId
|
|
23665
23691
|
* @param {string} [languageCode]
|
|
23666
23692
|
* @param {boolean} [returnDefaultValue]
|