ch-admin-api-client-typescript 5.19.26 → 5.19.29
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/appointments-api.d.ts +21 -3
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +18 -6
- package/lib/models/appointment-item-model.d.ts +27 -0
- package/lib/models/appointment-item-model.d.ts.map +1 -1
- package/lib/models/appointment-model.d.ts +22 -16
- package/lib/models/appointment-model.d.ts.map +1 -1
- package/lib/models/appointment-refund-bank-transfer-model.d.ts +6 -0
- package/lib/models/appointment-refund-bank-transfer-model.d.ts.map +1 -1
- package/lib/models/appointment-refund-upi-model.d.ts +6 -0
- package/lib/models/appointment-refund-upi-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/appointments-api.ts +34 -6
- package/src/models/appointment-item-model.ts +33 -0
- package/src/models/appointment-model.ts +22 -16
- package/src/models/appointment-refund-bank-transfer-model.ts +6 -0
- package/src/models/appointment-refund-upi-model.ts +6 -0
|
@@ -102,6 +102,8 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
102
102
|
* @param {string} [serviceId]
|
|
103
103
|
* @param {boolean} [isOpen]
|
|
104
104
|
* @param {boolean} [isCompleted]
|
|
105
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
106
|
+
* @param {boolean} [refundInformationIsReady]
|
|
105
107
|
* @param {AppointmentStatus} [status]
|
|
106
108
|
* @param {AppointmentType} [appointmentType]
|
|
107
109
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -117,7 +119,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
117
119
|
* @param {*} [options] Override http request option.
|
|
118
120
|
* @throws {RequiredError}
|
|
119
121
|
*/
|
|
120
|
-
apiV1AppointmentsGet: (id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
122
|
+
apiV1AppointmentsGet: (id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
121
123
|
};
|
|
122
124
|
/**
|
|
123
125
|
* AppointmentsApi - functional programming interface
|
|
@@ -202,6 +204,8 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
202
204
|
* @param {string} [serviceId]
|
|
203
205
|
* @param {boolean} [isOpen]
|
|
204
206
|
* @param {boolean} [isCompleted]
|
|
207
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
208
|
+
* @param {boolean} [refundInformationIsReady]
|
|
205
209
|
* @param {AppointmentStatus} [status]
|
|
206
210
|
* @param {AppointmentType} [appointmentType]
|
|
207
211
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -217,7 +221,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
217
221
|
* @param {*} [options] Override http request option.
|
|
218
222
|
* @throws {RequiredError}
|
|
219
223
|
*/
|
|
220
|
-
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentsModel>>;
|
|
224
|
+
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentsModel>>;
|
|
221
225
|
};
|
|
222
226
|
/**
|
|
223
227
|
* AppointmentsApi - factory interface
|
|
@@ -302,6 +306,8 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
302
306
|
* @param {string} [serviceId]
|
|
303
307
|
* @param {boolean} [isOpen]
|
|
304
308
|
* @param {boolean} [isCompleted]
|
|
309
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
310
|
+
* @param {boolean} [refundInformationIsReady]
|
|
305
311
|
* @param {AppointmentStatus} [status]
|
|
306
312
|
* @param {AppointmentType} [appointmentType]
|
|
307
313
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -317,7 +323,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
317
323
|
* @param {*} [options] Override http request option.
|
|
318
324
|
* @throws {RequiredError}
|
|
319
325
|
*/
|
|
320
|
-
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentsModel>;
|
|
326
|
+
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentsModel>;
|
|
321
327
|
};
|
|
322
328
|
/**
|
|
323
329
|
* Request parameters for apiV1AppointmentsAppointmentIdApprovePut operation in AppointmentsApi.
|
|
@@ -530,6 +536,18 @@ export interface AppointmentsApiApiV1AppointmentsGetRequest {
|
|
|
530
536
|
* @memberof AppointmentsApiApiV1AppointmentsGet
|
|
531
537
|
*/
|
|
532
538
|
readonly isCompleted?: boolean;
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @type {boolean}
|
|
542
|
+
* @memberof AppointmentsApiApiV1AppointmentsGet
|
|
543
|
+
*/
|
|
544
|
+
readonly requiresPaymentVerified?: boolean;
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @type {boolean}
|
|
548
|
+
* @memberof AppointmentsApiApiV1AppointmentsGet
|
|
549
|
+
*/
|
|
550
|
+
readonly refundInformationIsReady?: boolean;
|
|
533
551
|
/**
|
|
534
552
|
*
|
|
535
553
|
* @type {AppointmentStatus}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAItD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC;;;GAGG;AACH,eAAO,MAAM,gCAAgC,mBAA6B,aAAa;IAE/E;;;;;;;OAOG;8DAC6D,MAAM,8BAA8B,yBAAyB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkCtL;;;;;;OAMG;6DAC4D,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B9H;;;;;;;OAOG;0DACyD,MAAM,gBAAgB,OAAO,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmClJ;;;;;;;OAOG;uDACsD,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmC/I;;;;;;OAMG;4DAC2D,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B7H;;;;;;;OAOG;8DAC6D,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmCtJ;;;;;;;OAOG;6DAC4D,MAAM,6BAA6B,wBAAwB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkCnL
|
|
1
|
+
{"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -428,6 +428,8 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
|
|
|
428
428
|
* @param {string} [serviceId]
|
|
429
429
|
* @param {boolean} [isOpen]
|
|
430
430
|
* @param {boolean} [isCompleted]
|
|
431
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
432
|
+
* @param {boolean} [refundInformationIsReady]
|
|
431
433
|
* @param {AppointmentStatus} [status]
|
|
432
434
|
* @param {AppointmentType} [appointmentType]
|
|
433
435
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -443,7 +445,7 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
|
|
|
443
445
|
* @param {*} [options] Override http request option.
|
|
444
446
|
* @throws {RequiredError}
|
|
445
447
|
*/
|
|
446
|
-
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
448
|
+
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
447
449
|
if (options === void 0) { options = {}; }
|
|
448
450
|
return __awaiter(_this, void 0, void 0, function () {
|
|
449
451
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -507,6 +509,12 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
|
|
|
507
509
|
if (isCompleted !== undefined) {
|
|
508
510
|
localVarQueryParameter['IsCompleted'] = isCompleted;
|
|
509
511
|
}
|
|
512
|
+
if (requiresPaymentVerified !== undefined) {
|
|
513
|
+
localVarQueryParameter['RequiresPaymentVerified'] = requiresPaymentVerified;
|
|
514
|
+
}
|
|
515
|
+
if (refundInformationIsReady !== undefined) {
|
|
516
|
+
localVarQueryParameter['RefundInformationIsReady'] = refundInformationIsReady;
|
|
517
|
+
}
|
|
510
518
|
if (status !== undefined) {
|
|
511
519
|
localVarQueryParameter['Status'] = status;
|
|
512
520
|
}
|
|
@@ -728,6 +736,8 @@ var AppointmentsApiFp = function (configuration) {
|
|
|
728
736
|
* @param {string} [serviceId]
|
|
729
737
|
* @param {boolean} [isOpen]
|
|
730
738
|
* @param {boolean} [isCompleted]
|
|
739
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
740
|
+
* @param {boolean} [refundInformationIsReady]
|
|
731
741
|
* @param {AppointmentStatus} [status]
|
|
732
742
|
* @param {AppointmentType} [appointmentType]
|
|
733
743
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -743,12 +753,12 @@ var AppointmentsApiFp = function (configuration) {
|
|
|
743
753
|
* @param {*} [options] Override http request option.
|
|
744
754
|
* @throws {RequiredError}
|
|
745
755
|
*/
|
|
746
|
-
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
756
|
+
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
747
757
|
return __awaiter(this, void 0, void 0, function () {
|
|
748
758
|
var localVarAxiosArgs;
|
|
749
759
|
return __generator(this, function (_a) {
|
|
750
760
|
switch (_a.label) {
|
|
751
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options)];
|
|
761
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options)];
|
|
752
762
|
case 1:
|
|
753
763
|
localVarAxiosArgs = _a.sent();
|
|
754
764
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -858,6 +868,8 @@ var AppointmentsApiFactory = function (configuration, basePath, axios) {
|
|
|
858
868
|
* @param {string} [serviceId]
|
|
859
869
|
* @param {boolean} [isOpen]
|
|
860
870
|
* @param {boolean} [isCompleted]
|
|
871
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
872
|
+
* @param {boolean} [refundInformationIsReady]
|
|
861
873
|
* @param {AppointmentStatus} [status]
|
|
862
874
|
* @param {AppointmentType} [appointmentType]
|
|
863
875
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -873,8 +885,8 @@ var AppointmentsApiFactory = function (configuration, basePath, axios) {
|
|
|
873
885
|
* @param {*} [options] Override http request option.
|
|
874
886
|
* @throws {RequiredError}
|
|
875
887
|
*/
|
|
876
|
-
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
877
|
-
return localVarFp.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
888
|
+
apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
|
|
889
|
+
return localVarFp.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
878
890
|
},
|
|
879
891
|
};
|
|
880
892
|
};
|
|
@@ -985,7 +997,7 @@ var AppointmentsApi = /** @class */ (function (_super) {
|
|
|
985
997
|
AppointmentsApi.prototype.apiV1AppointmentsGet = function (requestParameters, options) {
|
|
986
998
|
var _this = this;
|
|
987
999
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
988
|
-
return (0, exports.AppointmentsApiFp)(this.configuration).apiV1AppointmentsGet(requestParameters.id, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.doctorId, requestParameters.doctorName, requestParameters.dealId, requestParameters.dealName, requestParameters.dealPackageId, requestParameters.hospitalSpecialtyId, requestParameters.serviceId, requestParameters.isOpen, requestParameters.isCompleted, requestParameters.status, requestParameters.appointmentType, requestParameters.sortRequestDate, requestParameters.sortConfirmedDateStart, requestParameters.paymentEnabled, requestParameters.languageCode, requestParameters.showHidden, requestParameters.isOnline, requestParameters.isExternal, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1000
|
+
return (0, exports.AppointmentsApiFp)(this.configuration).apiV1AppointmentsGet(requestParameters.id, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.doctorId, requestParameters.doctorName, requestParameters.dealId, requestParameters.dealName, requestParameters.dealPackageId, requestParameters.hospitalSpecialtyId, requestParameters.serviceId, requestParameters.isOpen, requestParameters.isCompleted, requestParameters.requiresPaymentVerified, requestParameters.refundInformationIsReady, requestParameters.status, requestParameters.appointmentType, requestParameters.sortRequestDate, requestParameters.sortConfirmedDateStart, requestParameters.paymentEnabled, requestParameters.languageCode, requestParameters.showHidden, requestParameters.isOnline, requestParameters.isExternal, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
989
1001
|
};
|
|
990
1002
|
return AppointmentsApi;
|
|
991
1003
|
}(base_1.BaseAPI));
|
|
@@ -9,10 +9,13 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AppointmentRefundBankTransferModel } from './appointment-refund-bank-transfer-model';
|
|
13
|
+
import { AppointmentRefundUpiModel } from './appointment-refund-upi-model';
|
|
12
14
|
import { AppointmentStatus } from './appointment-status';
|
|
13
15
|
import { AppointmentType } from './appointment-type';
|
|
14
16
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
15
17
|
import { Gender } from './gender';
|
|
18
|
+
import { PaymentModel } from './payment-model';
|
|
16
19
|
import { RejectReason } from './reject-reason';
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -266,6 +269,30 @@ export interface AppointmentItemModel {
|
|
|
266
269
|
* @memberof AppointmentItemModel
|
|
267
270
|
*/
|
|
268
271
|
'paymentId'?: string | null;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {PaymentModel}
|
|
275
|
+
* @memberof AppointmentItemModel
|
|
276
|
+
*/
|
|
277
|
+
'payment'?: PaymentModel;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
281
|
+
* @memberof AppointmentItemModel
|
|
282
|
+
*/
|
|
283
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @type {AppointmentRefundUpiModel}
|
|
287
|
+
* @memberof AppointmentItemModel
|
|
288
|
+
*/
|
|
289
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @type {boolean}
|
|
293
|
+
* @memberof AppointmentItemModel
|
|
294
|
+
*/
|
|
295
|
+
'refundInformationIsReady'?: boolean;
|
|
269
296
|
/**
|
|
270
297
|
*
|
|
271
298
|
* @type {boolean}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointment-item-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-item-model.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"appointment-item-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-item-model.ts"],"names":[],"mappings":"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"}
|
|
@@ -273,51 +273,57 @@ export interface AppointmentModel {
|
|
|
273
273
|
'paymentId'?: string | null;
|
|
274
274
|
/**
|
|
275
275
|
*
|
|
276
|
-
* @type {
|
|
276
|
+
* @type {PaymentModel}
|
|
277
277
|
* @memberof AppointmentModel
|
|
278
278
|
*/
|
|
279
|
-
'
|
|
279
|
+
'payment'?: PaymentModel;
|
|
280
280
|
/**
|
|
281
281
|
*
|
|
282
|
-
* @type {
|
|
282
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
283
283
|
* @memberof AppointmentModel
|
|
284
284
|
*/
|
|
285
|
-
'
|
|
285
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
286
286
|
/**
|
|
287
287
|
*
|
|
288
|
-
* @type {
|
|
288
|
+
* @type {AppointmentRefundUpiModel}
|
|
289
289
|
* @memberof AppointmentModel
|
|
290
290
|
*/
|
|
291
|
-
'
|
|
291
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
292
292
|
/**
|
|
293
293
|
*
|
|
294
|
-
* @type {
|
|
294
|
+
* @type {boolean}
|
|
295
295
|
* @memberof AppointmentModel
|
|
296
296
|
*/
|
|
297
|
-
'
|
|
297
|
+
'refundInformationIsReady'?: boolean;
|
|
298
298
|
/**
|
|
299
299
|
*
|
|
300
|
-
* @type {
|
|
300
|
+
* @type {boolean}
|
|
301
301
|
* @memberof AppointmentModel
|
|
302
302
|
*/
|
|
303
|
-
'
|
|
303
|
+
'isExternal'?: boolean;
|
|
304
304
|
/**
|
|
305
305
|
*
|
|
306
|
-
* @type {
|
|
306
|
+
* @type {AuditableEntityModel}
|
|
307
307
|
* @memberof AppointmentModel
|
|
308
308
|
*/
|
|
309
|
-
'
|
|
309
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
310
310
|
/**
|
|
311
311
|
*
|
|
312
|
-
* @type {
|
|
312
|
+
* @type {string}
|
|
313
313
|
* @memberof AppointmentModel
|
|
314
314
|
*/
|
|
315
|
-
'
|
|
315
|
+
'rejectComment'?: string | null;
|
|
316
316
|
/**
|
|
317
317
|
*
|
|
318
|
-
* @type {
|
|
318
|
+
* @type {Array<AppointmentChangeLogModel>}
|
|
319
319
|
* @memberof AppointmentModel
|
|
320
320
|
*/
|
|
321
|
-
'
|
|
321
|
+
'statusChangeLogs'?: Array<AppointmentChangeLogModel> | null;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {Array<MediaModel>}
|
|
325
|
+
* @memberof AppointmentModel
|
|
326
|
+
*/
|
|
327
|
+
'medias'?: Array<MediaModel> | null;
|
|
322
328
|
}
|
|
323
329
|
//# sourceMappingURL=appointment-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointment-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-model.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"appointment-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-model.ts"],"names":[],"mappings":"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"}
|
|
@@ -39,5 +39,11 @@ export interface AppointmentRefundBankTransferModel {
|
|
|
39
39
|
* @memberof AppointmentRefundBankTransferModel
|
|
40
40
|
*/
|
|
41
41
|
'swiftCode'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof AppointmentRefundBankTransferModel
|
|
46
|
+
*/
|
|
47
|
+
'additionalNote'?: string | null;
|
|
42
48
|
}
|
|
43
49
|
//# sourceMappingURL=appointment-refund-bank-transfer-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointment-refund-bank-transfer-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-refund-bank-transfer-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"appointment-refund-bank-transfer-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-refund-bank-transfer-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpC"}
|
|
@@ -27,5 +27,11 @@ export interface AppointmentRefundUpiModel {
|
|
|
27
27
|
* @memberof AppointmentRefundUpiModel
|
|
28
28
|
*/
|
|
29
29
|
'name'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof AppointmentRefundUpiModel
|
|
34
|
+
*/
|
|
35
|
+
'additionalNote'?: string | null;
|
|
30
36
|
}
|
|
31
37
|
//# sourceMappingURL=appointment-refund-upi-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appointment-refund-upi-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-refund-upi-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"appointment-refund-upi-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-refund-upi-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpC"}
|
package/package.json
CHANGED
|
@@ -348,6 +348,8 @@ export const AppointmentsApiAxiosParamCreator = function (configuration?: Config
|
|
|
348
348
|
* @param {string} [serviceId]
|
|
349
349
|
* @param {boolean} [isOpen]
|
|
350
350
|
* @param {boolean} [isCompleted]
|
|
351
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
352
|
+
* @param {boolean} [refundInformationIsReady]
|
|
351
353
|
* @param {AppointmentStatus} [status]
|
|
352
354
|
* @param {AppointmentType} [appointmentType]
|
|
353
355
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -363,7 +365,7 @@ export const AppointmentsApiAxiosParamCreator = function (configuration?: Config
|
|
|
363
365
|
* @param {*} [options] Override http request option.
|
|
364
366
|
* @throws {RequiredError}
|
|
365
367
|
*/
|
|
366
|
-
apiV1AppointmentsGet: async (id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
368
|
+
apiV1AppointmentsGet: async (id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
367
369
|
const localVarPath = `/api/v1/appointments`;
|
|
368
370
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
369
371
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -436,6 +438,14 @@ export const AppointmentsApiAxiosParamCreator = function (configuration?: Config
|
|
|
436
438
|
localVarQueryParameter['IsCompleted'] = isCompleted;
|
|
437
439
|
}
|
|
438
440
|
|
|
441
|
+
if (requiresPaymentVerified !== undefined) {
|
|
442
|
+
localVarQueryParameter['RequiresPaymentVerified'] = requiresPaymentVerified;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
if (refundInformationIsReady !== undefined) {
|
|
446
|
+
localVarQueryParameter['RefundInformationIsReady'] = refundInformationIsReady;
|
|
447
|
+
}
|
|
448
|
+
|
|
439
449
|
if (status !== undefined) {
|
|
440
450
|
localVarQueryParameter['Status'] = status;
|
|
441
451
|
}
|
|
@@ -606,6 +616,8 @@ export const AppointmentsApiFp = function(configuration?: Configuration) {
|
|
|
606
616
|
* @param {string} [serviceId]
|
|
607
617
|
* @param {boolean} [isOpen]
|
|
608
618
|
* @param {boolean} [isCompleted]
|
|
619
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
620
|
+
* @param {boolean} [refundInformationIsReady]
|
|
609
621
|
* @param {AppointmentStatus} [status]
|
|
610
622
|
* @param {AppointmentType} [appointmentType]
|
|
611
623
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -621,8 +633,8 @@ export const AppointmentsApiFp = function(configuration?: Configuration) {
|
|
|
621
633
|
* @param {*} [options] Override http request option.
|
|
622
634
|
* @throws {RequiredError}
|
|
623
635
|
*/
|
|
624
|
-
async apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentsModel>> {
|
|
625
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options);
|
|
636
|
+
async apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentsModel>> {
|
|
637
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options);
|
|
626
638
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
627
639
|
},
|
|
628
640
|
}
|
|
@@ -727,6 +739,8 @@ export const AppointmentsApiFactory = function (configuration?: Configuration, b
|
|
|
727
739
|
* @param {string} [serviceId]
|
|
728
740
|
* @param {boolean} [isOpen]
|
|
729
741
|
* @param {boolean} [isCompleted]
|
|
742
|
+
* @param {boolean} [requiresPaymentVerified]
|
|
743
|
+
* @param {boolean} [refundInformationIsReady]
|
|
730
744
|
* @param {AppointmentStatus} [status]
|
|
731
745
|
* @param {AppointmentType} [appointmentType]
|
|
732
746
|
* @param {SortingOrder} [sortRequestDate]
|
|
@@ -742,8 +756,8 @@ export const AppointmentsApiFactory = function (configuration?: Configuration, b
|
|
|
742
756
|
* @param {*} [options] Override http request option.
|
|
743
757
|
* @throws {RequiredError}
|
|
744
758
|
*/
|
|
745
|
-
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentsModel> {
|
|
746
|
-
return localVarFp.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
759
|
+
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentsModel> {
|
|
760
|
+
return localVarFp.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, requiresPaymentVerified, refundInformationIsReady, status, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
747
761
|
},
|
|
748
762
|
};
|
|
749
763
|
};
|
|
@@ -985,6 +999,20 @@ export interface AppointmentsApiApiV1AppointmentsGetRequest {
|
|
|
985
999
|
*/
|
|
986
1000
|
readonly isCompleted?: boolean
|
|
987
1001
|
|
|
1002
|
+
/**
|
|
1003
|
+
*
|
|
1004
|
+
* @type {boolean}
|
|
1005
|
+
* @memberof AppointmentsApiApiV1AppointmentsGet
|
|
1006
|
+
*/
|
|
1007
|
+
readonly requiresPaymentVerified?: boolean
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* @type {boolean}
|
|
1012
|
+
* @memberof AppointmentsApiApiV1AppointmentsGet
|
|
1013
|
+
*/
|
|
1014
|
+
readonly refundInformationIsReady?: boolean
|
|
1015
|
+
|
|
988
1016
|
/**
|
|
989
1017
|
*
|
|
990
1018
|
* @type {AppointmentStatus}
|
|
@@ -1170,6 +1198,6 @@ export class AppointmentsApi extends BaseAPI {
|
|
|
1170
1198
|
* @memberof AppointmentsApi
|
|
1171
1199
|
*/
|
|
1172
1200
|
public apiV1AppointmentsGet(requestParameters: AppointmentsApiApiV1AppointmentsGetRequest = {}, options?: AxiosRequestConfig) {
|
|
1173
|
-
return AppointmentsApiFp(this.configuration).apiV1AppointmentsGet(requestParameters.id, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.doctorId, requestParameters.doctorName, requestParameters.dealId, requestParameters.dealName, requestParameters.dealPackageId, requestParameters.hospitalSpecialtyId, requestParameters.serviceId, requestParameters.isOpen, requestParameters.isCompleted, requestParameters.status, requestParameters.appointmentType, requestParameters.sortRequestDate, requestParameters.sortConfirmedDateStart, requestParameters.paymentEnabled, requestParameters.languageCode, requestParameters.showHidden, requestParameters.isOnline, requestParameters.isExternal, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
1201
|
+
return AppointmentsApiFp(this.configuration).apiV1AppointmentsGet(requestParameters.id, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.doctorId, requestParameters.doctorName, requestParameters.dealId, requestParameters.dealName, requestParameters.dealPackageId, requestParameters.hospitalSpecialtyId, requestParameters.serviceId, requestParameters.isOpen, requestParameters.isCompleted, requestParameters.requiresPaymentVerified, requestParameters.refundInformationIsReady, requestParameters.status, requestParameters.appointmentType, requestParameters.sortRequestDate, requestParameters.sortConfirmedDateStart, requestParameters.paymentEnabled, requestParameters.languageCode, requestParameters.showHidden, requestParameters.isOnline, requestParameters.isExternal, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
1174
1202
|
}
|
|
1175
1203
|
}
|
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentRefundBankTransferModel } from './appointment-refund-bank-transfer-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { AppointmentRefundUpiModel } from './appointment-refund-upi-model';
|
|
16
22
|
// May contain unused imports in some cases
|
|
17
23
|
// @ts-ignore
|
|
18
24
|
import { AppointmentStatus } from './appointment-status';
|
|
@@ -27,6 +33,9 @@ import { AuditableEntityModel } from './auditable-entity-model';
|
|
|
27
33
|
import { Gender } from './gender';
|
|
28
34
|
// May contain unused imports in some cases
|
|
29
35
|
// @ts-ignore
|
|
36
|
+
import { PaymentModel } from './payment-model';
|
|
37
|
+
// May contain unused imports in some cases
|
|
38
|
+
// @ts-ignore
|
|
30
39
|
import { RejectReason } from './reject-reason';
|
|
31
40
|
|
|
32
41
|
/**
|
|
@@ -281,6 +290,30 @@ export interface AppointmentItemModel {
|
|
|
281
290
|
* @memberof AppointmentItemModel
|
|
282
291
|
*/
|
|
283
292
|
'paymentId'?: string | null;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @type {PaymentModel}
|
|
296
|
+
* @memberof AppointmentItemModel
|
|
297
|
+
*/
|
|
298
|
+
'payment'?: PaymentModel;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
302
|
+
* @memberof AppointmentItemModel
|
|
303
|
+
*/
|
|
304
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
305
|
+
/**
|
|
306
|
+
*
|
|
307
|
+
* @type {AppointmentRefundUpiModel}
|
|
308
|
+
* @memberof AppointmentItemModel
|
|
309
|
+
*/
|
|
310
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @type {boolean}
|
|
314
|
+
* @memberof AppointmentItemModel
|
|
315
|
+
*/
|
|
316
|
+
'refundInformationIsReady'?: boolean;
|
|
284
317
|
/**
|
|
285
318
|
*
|
|
286
319
|
* @type {boolean}
|
|
@@ -298,51 +298,57 @@ export interface AppointmentModel {
|
|
|
298
298
|
'paymentId'?: string | null;
|
|
299
299
|
/**
|
|
300
300
|
*
|
|
301
|
-
* @type {
|
|
301
|
+
* @type {PaymentModel}
|
|
302
302
|
* @memberof AppointmentModel
|
|
303
303
|
*/
|
|
304
|
-
'
|
|
304
|
+
'payment'?: PaymentModel;
|
|
305
305
|
/**
|
|
306
306
|
*
|
|
307
|
-
* @type {
|
|
307
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
308
308
|
* @memberof AppointmentModel
|
|
309
309
|
*/
|
|
310
|
-
'
|
|
310
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
311
311
|
/**
|
|
312
312
|
*
|
|
313
|
-
* @type {
|
|
313
|
+
* @type {AppointmentRefundUpiModel}
|
|
314
314
|
* @memberof AppointmentModel
|
|
315
315
|
*/
|
|
316
|
-
'
|
|
316
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
317
317
|
/**
|
|
318
318
|
*
|
|
319
|
-
* @type {
|
|
319
|
+
* @type {boolean}
|
|
320
320
|
* @memberof AppointmentModel
|
|
321
321
|
*/
|
|
322
|
-
'
|
|
322
|
+
'refundInformationIsReady'?: boolean;
|
|
323
323
|
/**
|
|
324
324
|
*
|
|
325
|
-
* @type {
|
|
325
|
+
* @type {boolean}
|
|
326
326
|
* @memberof AppointmentModel
|
|
327
327
|
*/
|
|
328
|
-
'
|
|
328
|
+
'isExternal'?: boolean;
|
|
329
329
|
/**
|
|
330
330
|
*
|
|
331
|
-
* @type {
|
|
331
|
+
* @type {AuditableEntityModel}
|
|
332
332
|
* @memberof AppointmentModel
|
|
333
333
|
*/
|
|
334
|
-
'
|
|
334
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
335
335
|
/**
|
|
336
336
|
*
|
|
337
|
-
* @type {
|
|
337
|
+
* @type {string}
|
|
338
338
|
* @memberof AppointmentModel
|
|
339
339
|
*/
|
|
340
|
-
'
|
|
340
|
+
'rejectComment'?: string | null;
|
|
341
341
|
/**
|
|
342
342
|
*
|
|
343
|
-
* @type {
|
|
343
|
+
* @type {Array<AppointmentChangeLogModel>}
|
|
344
344
|
* @memberof AppointmentModel
|
|
345
345
|
*/
|
|
346
|
-
'
|
|
346
|
+
'statusChangeLogs'?: Array<AppointmentChangeLogModel> | null;
|
|
347
|
+
/**
|
|
348
|
+
*
|
|
349
|
+
* @type {Array<MediaModel>}
|
|
350
|
+
* @memberof AppointmentModel
|
|
351
|
+
*/
|
|
352
|
+
'medias'?: Array<MediaModel> | null;
|
|
347
353
|
}
|
|
348
354
|
|
|
@@ -44,5 +44,11 @@ export interface AppointmentRefundBankTransferModel {
|
|
|
44
44
|
* @memberof AppointmentRefundBankTransferModel
|
|
45
45
|
*/
|
|
46
46
|
'swiftCode'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof AppointmentRefundBankTransferModel
|
|
51
|
+
*/
|
|
52
|
+
'additionalNote'?: string | null;
|
|
47
53
|
}
|
|
48
54
|
|