ch-admin-api-client-typescript 5.25.8 → 5.25.22
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/deals-api.d.ts +12 -3
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +12 -6
- package/lib/api/doctor-affiliations-api.d.ts +12 -3
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +36 -9
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +36 -18
- package/lib/models/payment-method.d.ts +1 -0
- package/lib/models/payment-method.d.ts.map +1 -1
- package/lib/models/payment-method.js +2 -1
- package/package.json +1 -1
- package/src/api/deals-api.ts +20 -6
- package/src/api/doctor-affiliations-api.ts +20 -6
- package/src/api/hospitals-api.ts +60 -18
- package/src/models/payment-method.ts +2 -1
package/src/api/hospitals-api.ts
CHANGED
|
@@ -752,10 +752,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
752
752
|
* @param {boolean} [isExternal]
|
|
753
753
|
* @param {boolean} [isOnline]
|
|
754
754
|
* @param {string} [appointmentIdExcluded]
|
|
755
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
755
756
|
* @param {*} [options] Override http request option.
|
|
756
757
|
* @throws {RequiredError}
|
|
757
758
|
*/
|
|
758
|
-
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
759
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
759
760
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
760
761
|
assertParamExists('apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
761
762
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/appointmenttimetables/application`
|
|
@@ -799,6 +800,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
799
800
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
800
801
|
}
|
|
801
802
|
|
|
803
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
804
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
805
|
+
}
|
|
806
|
+
|
|
802
807
|
|
|
803
808
|
|
|
804
809
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6482,10 +6487,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6482
6487
|
* @param {boolean} [isExternal]
|
|
6483
6488
|
* @param {boolean} [isOnline]
|
|
6484
6489
|
* @param {string} [appointmentIdExcluded]
|
|
6490
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
6485
6491
|
* @param {*} [options] Override http request option.
|
|
6486
6492
|
* @throws {RequiredError}
|
|
6487
6493
|
*/
|
|
6488
|
-
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6494
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6489
6495
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
6490
6496
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
6491
6497
|
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
@@ -6532,6 +6538,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6532
6538
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
6533
6539
|
}
|
|
6534
6540
|
|
|
6541
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
6542
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
6543
|
+
}
|
|
6544
|
+
|
|
6535
6545
|
|
|
6536
6546
|
|
|
6537
6547
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7740,10 +7750,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
7740
7750
|
* @param {boolean} [isExternal]
|
|
7741
7751
|
* @param {boolean} [isOnline]
|
|
7742
7752
|
* @param {string} [appointmentIdExcluded]
|
|
7753
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
7743
7754
|
* @param {*} [options] Override http request option.
|
|
7744
7755
|
* @throws {RequiredError}
|
|
7745
7756
|
*/
|
|
7746
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7757
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7747
7758
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
7748
7759
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
7749
7760
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -7793,6 +7804,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
7793
7804
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
7794
7805
|
}
|
|
7795
7806
|
|
|
7807
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
7808
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
7809
|
+
}
|
|
7810
|
+
|
|
7796
7811
|
|
|
7797
7812
|
|
|
7798
7813
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9368,11 +9383,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9368
9383
|
* @param {boolean} [isExternal]
|
|
9369
9384
|
* @param {boolean} [isOnline]
|
|
9370
9385
|
* @param {string} [appointmentIdExcluded]
|
|
9386
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
9371
9387
|
* @param {*} [options] Override http request option.
|
|
9372
9388
|
* @throws {RequiredError}
|
|
9373
9389
|
*/
|
|
9374
|
-
async apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
9375
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
9390
|
+
async apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
9391
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options);
|
|
9376
9392
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9377
9393
|
},
|
|
9378
9394
|
/**
|
|
@@ -10919,11 +10935,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
10919
10935
|
* @param {boolean} [isExternal]
|
|
10920
10936
|
* @param {boolean} [isOnline]
|
|
10921
10937
|
* @param {string} [appointmentIdExcluded]
|
|
10938
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
10922
10939
|
* @param {*} [options] Override http request option.
|
|
10923
10940
|
* @throws {RequiredError}
|
|
10924
10941
|
*/
|
|
10925
|
-
async apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
10926
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
10942
|
+
async apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
10943
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options);
|
|
10927
10944
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10928
10945
|
},
|
|
10929
10946
|
/**
|
|
@@ -11250,11 +11267,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
11250
11267
|
* @param {boolean} [isExternal]
|
|
11251
11268
|
* @param {boolean} [isOnline]
|
|
11252
11269
|
* @param {string} [appointmentIdExcluded]
|
|
11270
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
11253
11271
|
* @param {*} [options] Override http request option.
|
|
11254
11272
|
* @throws {RequiredError}
|
|
11255
11273
|
*/
|
|
11256
|
-
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
11257
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
11274
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
11275
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options);
|
|
11258
11276
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11259
11277
|
},
|
|
11260
11278
|
/**
|
|
@@ -11771,11 +11789,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
11771
11789
|
* @param {boolean} [isExternal]
|
|
11772
11790
|
* @param {boolean} [isOnline]
|
|
11773
11791
|
* @param {string} [appointmentIdExcluded]
|
|
11792
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
11774
11793
|
* @param {*} [options] Override http request option.
|
|
11775
11794
|
* @throws {RequiredError}
|
|
11776
11795
|
*/
|
|
11777
|
-
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
11778
|
-
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
11796
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
11797
|
+
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then((request) => request(axios, basePath));
|
|
11779
11798
|
},
|
|
11780
11799
|
/**
|
|
11781
11800
|
*
|
|
@@ -13207,11 +13226,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
13207
13226
|
* @param {boolean} [isExternal]
|
|
13208
13227
|
* @param {boolean} [isOnline]
|
|
13209
13228
|
* @param {string} [appointmentIdExcluded]
|
|
13229
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
13210
13230
|
* @param {*} [options] Override http request option.
|
|
13211
13231
|
* @throws {RequiredError}
|
|
13212
13232
|
*/
|
|
13213
|
-
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13214
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
13233
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13234
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then((request) => request(axios, basePath));
|
|
13215
13235
|
},
|
|
13216
13236
|
/**
|
|
13217
13237
|
*
|
|
@@ -13516,11 +13536,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
13516
13536
|
* @param {boolean} [isExternal]
|
|
13517
13537
|
* @param {boolean} [isOnline]
|
|
13518
13538
|
* @param {string} [appointmentIdExcluded]
|
|
13539
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
13519
13540
|
* @param {*} [options] Override http request option.
|
|
13520
13541
|
* @throws {RequiredError}
|
|
13521
13542
|
*/
|
|
13522
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13523
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
13543
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13544
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then((request) => request(axios, basePath));
|
|
13524
13545
|
},
|
|
13525
13546
|
/**
|
|
13526
13547
|
*
|
|
@@ -14270,6 +14291,13 @@ export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplic
|
|
|
14270
14291
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14271
14292
|
*/
|
|
14272
14293
|
readonly appointmentIdExcluded?: string
|
|
14294
|
+
|
|
14295
|
+
/**
|
|
14296
|
+
*
|
|
14297
|
+
* @type {boolean}
|
|
14298
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14299
|
+
*/
|
|
14300
|
+
readonly excludeUnavailableTimeSlots?: boolean
|
|
14273
14301
|
}
|
|
14274
14302
|
|
|
14275
14303
|
/**
|
|
@@ -17882,6 +17910,13 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
17882
17910
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17883
17911
|
*/
|
|
17884
17912
|
readonly appointmentIdExcluded?: string
|
|
17913
|
+
|
|
17914
|
+
/**
|
|
17915
|
+
*
|
|
17916
|
+
* @type {boolean}
|
|
17917
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17918
|
+
*/
|
|
17919
|
+
readonly excludeUnavailableTimeSlots?: boolean
|
|
17885
17920
|
}
|
|
17886
17921
|
|
|
17887
17922
|
/**
|
|
@@ -18813,6 +18848,13 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
18813
18848
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18814
18849
|
*/
|
|
18815
18850
|
readonly appointmentIdExcluded?: string
|
|
18851
|
+
|
|
18852
|
+
/**
|
|
18853
|
+
*
|
|
18854
|
+
* @type {boolean}
|
|
18855
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18856
|
+
*/
|
|
18857
|
+
readonly excludeUnavailableTimeSlots?: boolean
|
|
18816
18858
|
}
|
|
18817
18859
|
|
|
18818
18860
|
/**
|
|
@@ -19900,7 +19942,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
19900
19942
|
* @memberof HospitalsApi
|
|
19901
19943
|
*/
|
|
19902
19944
|
public apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
19903
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
19945
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then((request) => request(this.axios, this.basePath));
|
|
19904
19946
|
}
|
|
19905
19947
|
|
|
19906
19948
|
/**
|
|
@@ -21280,7 +21322,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21280
21322
|
* @memberof HospitalsApi
|
|
21281
21323
|
*/
|
|
21282
21324
|
public apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
21283
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
21325
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then((request) => request(this.axios, this.basePath));
|
|
21284
21326
|
}
|
|
21285
21327
|
|
|
21286
21328
|
/**
|
|
@@ -21544,7 +21586,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21544
21586
|
* @memberof HospitalsApi
|
|
21545
21587
|
*/
|
|
21546
21588
|
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
21547
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
21589
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then((request) => request(this.axios, this.basePath));
|
|
21548
21590
|
}
|
|
21549
21591
|
|
|
21550
21592
|
/**
|
|
@@ -25,7 +25,8 @@ export const PaymentMethod = {
|
|
|
25
25
|
Paypal: 'Paypal',
|
|
26
26
|
BankTransfer: 'BankTransfer',
|
|
27
27
|
Upi: 'Upi',
|
|
28
|
-
HospitalPaymentGateway: 'HospitalPaymentGateway'
|
|
28
|
+
HospitalPaymentGateway: 'HospitalPaymentGateway',
|
|
29
|
+
Cash: 'Cash'
|
|
29
30
|
} as const;
|
|
30
31
|
|
|
31
32
|
export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
|