ch-admin-api-client-typescript 5.21.22 → 5.23.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.
Files changed (92) hide show
  1. package/lib/api/appointments-api.d.ts +30 -3
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +28 -6
  4. package/lib/api/patient-affiliations-api.d.ts +216 -0
  5. package/lib/api/patient-affiliations-api.d.ts.map +1 -0
  6. package/lib/api/patient-affiliations-api.js +358 -0
  7. package/lib/api/patients-api.d.ts +191 -3
  8. package/lib/api/patients-api.d.ts.map +1 -1
  9. package/lib/api/patients-api.js +289 -6
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/chadmin-item-model.d.ts +3 -3
  14. package/lib/models/chadmin-item-model.d.ts.map +1 -1
  15. package/lib/models/chadmin-model.d.ts +3 -3
  16. package/lib/models/chadmin-model.d.ts.map +1 -1
  17. package/lib/models/chmanager-item-model.d.ts +3 -3
  18. package/lib/models/chmanager-item-model.d.ts.map +1 -1
  19. package/lib/models/chmanager-model.d.ts +3 -3
  20. package/lib/models/chmanager-model.d.ts.map +1 -1
  21. package/lib/models/create-article-command.d.ts +6 -0
  22. package/lib/models/create-article-command.d.ts.map +1 -1
  23. package/lib/models/create-patient-affiliation-command.d.ts +109 -0
  24. package/lib/models/create-patient-affiliation-command.d.ts.map +1 -0
  25. package/lib/models/create-patient-affiliation-command.js +15 -0
  26. package/lib/models/create-patient-command.d.ts +90 -0
  27. package/lib/models/create-patient-command.d.ts.map +1 -1
  28. package/lib/models/doctor-item-model.d.ts +3 -3
  29. package/lib/models/doctor-item-model.d.ts.map +1 -1
  30. package/lib/models/doctor-model.d.ts +3 -3
  31. package/lib/models/doctor-model.d.ts.map +1 -1
  32. package/lib/models/get-patient-walk-in-query.d.ts +37 -0
  33. package/lib/models/get-patient-walk-in-query.d.ts.map +1 -0
  34. package/lib/models/get-patient-walk-in-query.js +15 -0
  35. package/lib/models/index.d.ts +7 -0
  36. package/lib/models/index.d.ts.map +1 -1
  37. package/lib/models/index.js +7 -0
  38. package/lib/models/manager-item-model.d.ts +3 -3
  39. package/lib/models/manager-item-model.d.ts.map +1 -1
  40. package/lib/models/manager-model.d.ts +3 -3
  41. package/lib/models/manager-model.d.ts.map +1 -1
  42. package/lib/models/patient-affiliation-item-model.d.ts +153 -0
  43. package/lib/models/patient-affiliation-item-model.d.ts.map +1 -0
  44. package/lib/models/patient-affiliation-item-model.js +15 -0
  45. package/lib/models/patient-affiliation-model.d.ts +153 -0
  46. package/lib/models/patient-affiliation-model.d.ts.map +1 -0
  47. package/lib/models/patient-affiliation-model.js +15 -0
  48. package/lib/models/patient-affiliations-model.d.ts +33 -0
  49. package/lib/models/patient-affiliations-model.d.ts.map +1 -0
  50. package/lib/models/patient-affiliations-model.js +15 -0
  51. package/lib/models/patient-item-model.d.ts +3 -3
  52. package/lib/models/patient-item-model.d.ts.map +1 -1
  53. package/lib/models/patient-model.d.ts +3 -3
  54. package/lib/models/patient-model.d.ts.map +1 -1
  55. package/lib/models/patient-walk-in-model.d.ts +32 -0
  56. package/lib/models/patient-walk-in-model.d.ts.map +1 -0
  57. package/lib/models/patient-walk-in-model.js +15 -0
  58. package/lib/models/update-article-command.d.ts +6 -0
  59. package/lib/models/update-article-command.d.ts.map +1 -1
  60. package/lib/models/update-patient-affiliation-command.d.ts +115 -0
  61. package/lib/models/update-patient-affiliation-command.d.ts.map +1 -0
  62. package/lib/models/update-patient-affiliation-command.js +15 -0
  63. package/lib/models/user-model.d.ts +3 -3
  64. package/lib/models/user-model.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/src/.openapi-generator/FILES +8 -0
  67. package/src/api/appointments-api.ts +52 -6
  68. package/src/api/patient-affiliations-api.ts +361 -0
  69. package/src/api/patients-api.ts +337 -6
  70. package/src/api.ts +1 -0
  71. package/src/models/chadmin-item-model.ts +3 -3
  72. package/src/models/chadmin-model.ts +3 -3
  73. package/src/models/chmanager-item-model.ts +3 -3
  74. package/src/models/chmanager-model.ts +3 -3
  75. package/src/models/create-article-command.ts +6 -0
  76. package/src/models/create-patient-affiliation-command.ts +114 -0
  77. package/src/models/create-patient-command.ts +90 -0
  78. package/src/models/doctor-item-model.ts +3 -3
  79. package/src/models/doctor-model.ts +3 -3
  80. package/src/models/get-patient-walk-in-query.ts +42 -0
  81. package/src/models/index.ts +7 -0
  82. package/src/models/manager-item-model.ts +3 -3
  83. package/src/models/manager-model.ts +3 -3
  84. package/src/models/patient-affiliation-item-model.ts +162 -0
  85. package/src/models/patient-affiliation-model.ts +162 -0
  86. package/src/models/patient-affiliations-model.ts +42 -0
  87. package/src/models/patient-item-model.ts +3 -3
  88. package/src/models/patient-model.ts +3 -3
  89. package/src/models/patient-walk-in-model.ts +39 -0
  90. package/src/models/update-article-command.ts +6 -0
  91. package/src/models/update-patient-affiliation-command.ts +120 -0
  92. package/src/models/user-model.ts +3 -3
@@ -110,9 +110,12 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
110
110
  * @param {string} [serviceId]
111
111
  * @param {boolean} [isOpen]
112
112
  * @param {boolean} [isCompleted]
113
+ * @param {Date} [start]
114
+ * @param {Date} [end]
113
115
  * @param {boolean} [requiresPaymentVerified]
114
116
  * @param {boolean} [refundInformationIsReady]
115
117
  * @param {AppointmentStatus} [status]
118
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
116
119
  * @param {AppointmentType} [appointmentType]
117
120
  * @param {SortingOrder} [sortRequestDate]
118
121
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -127,7 +130,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
127
130
  * @param {*} [options] Override http request option.
128
131
  * @throws {RequiredError}
129
132
  */
130
- 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>;
133
+ 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, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<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>;
131
134
  };
132
135
  /**
133
136
  * AppointmentsApi - functional programming interface
@@ -220,9 +223,12 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
220
223
  * @param {string} [serviceId]
221
224
  * @param {boolean} [isOpen]
222
225
  * @param {boolean} [isCompleted]
226
+ * @param {Date} [start]
227
+ * @param {Date} [end]
223
228
  * @param {boolean} [requiresPaymentVerified]
224
229
  * @param {boolean} [refundInformationIsReady]
225
230
  * @param {AppointmentStatus} [status]
231
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
226
232
  * @param {AppointmentType} [appointmentType]
227
233
  * @param {SortingOrder} [sortRequestDate]
228
234
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -237,7 +243,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
237
243
  * @param {*} [options] Override http request option.
238
244
  * @throws {RequiredError}
239
245
  */
240
- 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>>;
246
+ 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, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<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>>;
241
247
  };
242
248
  /**
243
249
  * AppointmentsApi - factory interface
@@ -330,9 +336,12 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
330
336
  * @param {string} [serviceId]
331
337
  * @param {boolean} [isOpen]
332
338
  * @param {boolean} [isCompleted]
339
+ * @param {Date} [start]
340
+ * @param {Date} [end]
333
341
  * @param {boolean} [requiresPaymentVerified]
334
342
  * @param {boolean} [refundInformationIsReady]
335
343
  * @param {AppointmentStatus} [status]
344
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
336
345
  * @param {AppointmentType} [appointmentType]
337
346
  * @param {SortingOrder} [sortRequestDate]
338
347
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -347,7 +356,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
347
356
  * @param {*} [options] Override http request option.
348
357
  * @throws {RequiredError}
349
358
  */
350
- 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>;
359
+ 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, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<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>;
351
360
  };
352
361
  /**
353
362
  * Request parameters for apiV1AppointmentsAppointmentIdApprovePut operation in AppointmentsApi.
@@ -573,6 +582,18 @@ export interface AppointmentsApiApiV1AppointmentsGetRequest {
573
582
  * @memberof AppointmentsApiApiV1AppointmentsGet
574
583
  */
575
584
  readonly isCompleted?: boolean;
585
+ /**
586
+ *
587
+ * @type {Date}
588
+ * @memberof AppointmentsApiApiV1AppointmentsGet
589
+ */
590
+ readonly start?: Date;
591
+ /**
592
+ *
593
+ * @type {Date}
594
+ * @memberof AppointmentsApiApiV1AppointmentsGet
595
+ */
596
+ readonly end?: Date;
576
597
  /**
577
598
  *
578
599
  * @type {boolean}
@@ -591,6 +612,12 @@ export interface AppointmentsApiApiV1AppointmentsGetRequest {
591
612
  * @memberof AppointmentsApiApiV1AppointmentsGet
592
613
  */
593
614
  readonly status?: AppointmentStatus;
615
+ /**
616
+ *
617
+ * @type {Array<AppointmentStatus>}
618
+ * @memberof AppointmentsApiApiV1AppointmentsGet
619
+ */
620
+ readonly appointmentStatus?: Array<AppointmentStatus>;
594
621
  /**
595
622
  *
596
623
  * @type {AppointmentType}
@@ -1 +1 @@
1
- {"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"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"}
@@ -471,9 +471,12 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
471
471
  * @param {string} [serviceId]
472
472
  * @param {boolean} [isOpen]
473
473
  * @param {boolean} [isCompleted]
474
+ * @param {Date} [start]
475
+ * @param {Date} [end]
474
476
  * @param {boolean} [requiresPaymentVerified]
475
477
  * @param {boolean} [refundInformationIsReady]
476
478
  * @param {AppointmentStatus} [status]
479
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
477
480
  * @param {AppointmentType} [appointmentType]
478
481
  * @param {SortingOrder} [sortRequestDate]
479
482
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -488,7 +491,7 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
488
491
  * @param {*} [options] Override http request option.
489
492
  * @throws {RequiredError}
490
493
  */
491
- 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) {
494
+ apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, start, end, requiresPaymentVerified, refundInformationIsReady, status, appointmentStatus, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
492
495
  if (options === void 0) { options = {}; }
493
496
  return __awaiter(_this, void 0, void 0, function () {
494
497
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -552,6 +555,16 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
552
555
  if (isCompleted !== undefined) {
553
556
  localVarQueryParameter['IsCompleted'] = isCompleted;
554
557
  }
558
+ if (start !== undefined) {
559
+ localVarQueryParameter['Start'] = (start instanceof Date) ?
560
+ start.toISOString() :
561
+ start;
562
+ }
563
+ if (end !== undefined) {
564
+ localVarQueryParameter['End'] = (end instanceof Date) ?
565
+ end.toISOString() :
566
+ end;
567
+ }
555
568
  if (requiresPaymentVerified !== undefined) {
556
569
  localVarQueryParameter['RequiresPaymentVerified'] = requiresPaymentVerified;
557
570
  }
@@ -561,6 +574,9 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
561
574
  if (status !== undefined) {
562
575
  localVarQueryParameter['Status'] = status;
563
576
  }
577
+ if (appointmentStatus) {
578
+ localVarQueryParameter['AppointmentStatus'] = appointmentStatus;
579
+ }
564
580
  if (appointmentType !== undefined) {
565
581
  localVarQueryParameter['AppointmentType'] = appointmentType;
566
582
  }
@@ -799,9 +815,12 @@ var AppointmentsApiFp = function (configuration) {
799
815
  * @param {string} [serviceId]
800
816
  * @param {boolean} [isOpen]
801
817
  * @param {boolean} [isCompleted]
818
+ * @param {Date} [start]
819
+ * @param {Date} [end]
802
820
  * @param {boolean} [requiresPaymentVerified]
803
821
  * @param {boolean} [refundInformationIsReady]
804
822
  * @param {AppointmentStatus} [status]
823
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
805
824
  * @param {AppointmentType} [appointmentType]
806
825
  * @param {SortingOrder} [sortRequestDate]
807
826
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -816,12 +835,12 @@ var AppointmentsApiFp = function (configuration) {
816
835
  * @param {*} [options] Override http request option.
817
836
  * @throws {RequiredError}
818
837
  */
819
- 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) {
838
+ apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, start, end, requiresPaymentVerified, refundInformationIsReady, status, appointmentStatus, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
820
839
  return __awaiter(this, void 0, void 0, function () {
821
840
  var localVarAxiosArgs;
822
841
  return __generator(this, function (_a) {
823
842
  switch (_a.label) {
824
- 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)];
843
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, start, end, requiresPaymentVerified, refundInformationIsReady, status, appointmentStatus, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options)];
825
844
  case 1:
826
845
  localVarAxiosArgs = _a.sent();
827
846
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -941,9 +960,12 @@ var AppointmentsApiFactory = function (configuration, basePath, axios) {
941
960
  * @param {string} [serviceId]
942
961
  * @param {boolean} [isOpen]
943
962
  * @param {boolean} [isCompleted]
963
+ * @param {Date} [start]
964
+ * @param {Date} [end]
944
965
  * @param {boolean} [requiresPaymentVerified]
945
966
  * @param {boolean} [refundInformationIsReady]
946
967
  * @param {AppointmentStatus} [status]
968
+ * @param {Array<AppointmentStatus>} [appointmentStatus]
947
969
  * @param {AppointmentType} [appointmentType]
948
970
  * @param {SortingOrder} [sortRequestDate]
949
971
  * @param {SortingOrder} [sortConfirmedDateStart]
@@ -958,8 +980,8 @@ var AppointmentsApiFactory = function (configuration, basePath, axios) {
958
980
  * @param {*} [options] Override http request option.
959
981
  * @throws {RequiredError}
960
982
  */
961
- 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) {
962
- 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); });
983
+ apiV1AppointmentsGet: function (id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, start, end, requiresPaymentVerified, refundInformationIsReady, status, appointmentStatus, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options) {
984
+ return localVarFp.apiV1AppointmentsGet(id, userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, dealPackageId, hospitalSpecialtyId, serviceId, isOpen, isCompleted, start, end, requiresPaymentVerified, refundInformationIsReady, status, appointmentStatus, appointmentType, sortRequestDate, sortConfirmedDateStart, paymentEnabled, languageCode, showHidden, isOnline, isExternal, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
963
985
  },
964
986
  };
965
987
  };
@@ -1082,7 +1104,7 @@ var AppointmentsApi = /** @class */ (function (_super) {
1082
1104
  AppointmentsApi.prototype.apiV1AppointmentsGet = function (requestParameters, options) {
1083
1105
  var _this = this;
1084
1106
  if (requestParameters === void 0) { requestParameters = {}; }
1085
- 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); });
1107
+ 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.start, requestParameters.end, requestParameters.requiresPaymentVerified, requestParameters.refundInformationIsReady, requestParameters.status, requestParameters.appointmentStatus, 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); });
1086
1108
  };
1087
1109
  return AppointmentsApi;
1088
1110
  }(base_1.BaseAPI));
@@ -0,0 +1,216 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { PatientAffiliationModel } from '../models';
16
+ import { PatientAffiliationsModel } from '../models';
17
+ /**
18
+ * PatientAffiliationsApi - axios parameter creator
19
+ * @export
20
+ */
21
+ export declare const PatientAffiliationsApiAxiosParamCreator: (configuration?: Configuration) => {
22
+ /**
23
+ *
24
+ * @summary Get all patientAffiliations
25
+ * @param {string} [languageCode]
26
+ * @param {string} [hospitalId]
27
+ * @param {string} [patientId]
28
+ * @param {string} [patientName]
29
+ * @param {string} [patientPhoneNumber]
30
+ * @param {boolean} [showHidden]
31
+ * @param {number} [page]
32
+ * @param {number} [limit]
33
+ * @param {Date} [lastRetrieved]
34
+ * @param {*} [options] Override http request option.
35
+ * @throws {RequiredError}
36
+ */
37
+ apiV1PatientaffiliationsGet: (languageCode?: string, hospitalId?: string, patientId?: string, patientName?: string, patientPhoneNumber?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
+ /**
39
+ *
40
+ * @summary Get patientAffiliation by id
41
+ * @param {string} patientAffiliationId
42
+ * @param {string} [languageCode]
43
+ * @param {*} [options] Override http request option.
44
+ * @throws {RequiredError}
45
+ */
46
+ apiV1PatientaffiliationsPatientAffiliationIdGet: (patientAffiliationId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
+ };
48
+ /**
49
+ * PatientAffiliationsApi - functional programming interface
50
+ * @export
51
+ */
52
+ export declare const PatientAffiliationsApiFp: (configuration?: Configuration) => {
53
+ /**
54
+ *
55
+ * @summary Get all patientAffiliations
56
+ * @param {string} [languageCode]
57
+ * @param {string} [hospitalId]
58
+ * @param {string} [patientId]
59
+ * @param {string} [patientName]
60
+ * @param {string} [patientPhoneNumber]
61
+ * @param {boolean} [showHidden]
62
+ * @param {number} [page]
63
+ * @param {number} [limit]
64
+ * @param {Date} [lastRetrieved]
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ */
68
+ apiV1PatientaffiliationsGet(languageCode?: string, hospitalId?: string, patientId?: string, patientName?: string, patientPhoneNumber?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientAffiliationsModel>>;
69
+ /**
70
+ *
71
+ * @summary Get patientAffiliation by id
72
+ * @param {string} patientAffiliationId
73
+ * @param {string} [languageCode]
74
+ * @param {*} [options] Override http request option.
75
+ * @throws {RequiredError}
76
+ */
77
+ apiV1PatientaffiliationsPatientAffiliationIdGet(patientAffiliationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientAffiliationModel>>;
78
+ };
79
+ /**
80
+ * PatientAffiliationsApi - factory interface
81
+ * @export
82
+ */
83
+ export declare const PatientAffiliationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
84
+ /**
85
+ *
86
+ * @summary Get all patientAffiliations
87
+ * @param {string} [languageCode]
88
+ * @param {string} [hospitalId]
89
+ * @param {string} [patientId]
90
+ * @param {string} [patientName]
91
+ * @param {string} [patientPhoneNumber]
92
+ * @param {boolean} [showHidden]
93
+ * @param {number} [page]
94
+ * @param {number} [limit]
95
+ * @param {Date} [lastRetrieved]
96
+ * @param {*} [options] Override http request option.
97
+ * @throws {RequiredError}
98
+ */
99
+ apiV1PatientaffiliationsGet(languageCode?: string, hospitalId?: string, patientId?: string, patientName?: string, patientPhoneNumber?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PatientAffiliationsModel>;
100
+ /**
101
+ *
102
+ * @summary Get patientAffiliation by id
103
+ * @param {string} patientAffiliationId
104
+ * @param {string} [languageCode]
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ apiV1PatientaffiliationsPatientAffiliationIdGet(patientAffiliationId: string, languageCode?: string, options?: any): AxiosPromise<PatientAffiliationModel>;
109
+ };
110
+ /**
111
+ * Request parameters for apiV1PatientaffiliationsGet operation in PatientAffiliationsApi.
112
+ * @export
113
+ * @interface PatientAffiliationsApiApiV1PatientaffiliationsGetRequest
114
+ */
115
+ export interface PatientAffiliationsApiApiV1PatientaffiliationsGetRequest {
116
+ /**
117
+ *
118
+ * @type {string}
119
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
120
+ */
121
+ readonly languageCode?: string;
122
+ /**
123
+ *
124
+ * @type {string}
125
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
126
+ */
127
+ readonly hospitalId?: string;
128
+ /**
129
+ *
130
+ * @type {string}
131
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
132
+ */
133
+ readonly patientId?: string;
134
+ /**
135
+ *
136
+ * @type {string}
137
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
138
+ */
139
+ readonly patientName?: string;
140
+ /**
141
+ *
142
+ * @type {string}
143
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
144
+ */
145
+ readonly patientPhoneNumber?: string;
146
+ /**
147
+ *
148
+ * @type {boolean}
149
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
150
+ */
151
+ readonly showHidden?: boolean;
152
+ /**
153
+ *
154
+ * @type {number}
155
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
156
+ */
157
+ readonly page?: number;
158
+ /**
159
+ *
160
+ * @type {number}
161
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
162
+ */
163
+ readonly limit?: number;
164
+ /**
165
+ *
166
+ * @type {Date}
167
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsGet
168
+ */
169
+ readonly lastRetrieved?: Date;
170
+ }
171
+ /**
172
+ * Request parameters for apiV1PatientaffiliationsPatientAffiliationIdGet operation in PatientAffiliationsApi.
173
+ * @export
174
+ * @interface PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGetRequest
175
+ */
176
+ export interface PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGetRequest {
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGet
181
+ */
182
+ readonly patientAffiliationId: string;
183
+ /**
184
+ *
185
+ * @type {string}
186
+ * @memberof PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGet
187
+ */
188
+ readonly languageCode?: string;
189
+ }
190
+ /**
191
+ * PatientAffiliationsApi - object-oriented interface
192
+ * @export
193
+ * @class PatientAffiliationsApi
194
+ * @extends {BaseAPI}
195
+ */
196
+ export declare class PatientAffiliationsApi extends BaseAPI {
197
+ /**
198
+ *
199
+ * @summary Get all patientAffiliations
200
+ * @param {PatientAffiliationsApiApiV1PatientaffiliationsGetRequest} requestParameters Request parameters.
201
+ * @param {*} [options] Override http request option.
202
+ * @throws {RequiredError}
203
+ * @memberof PatientAffiliationsApi
204
+ */
205
+ apiV1PatientaffiliationsGet(requestParameters?: PatientAffiliationsApiApiV1PatientaffiliationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientAffiliationsModel, any>>;
206
+ /**
207
+ *
208
+ * @summary Get patientAffiliation by id
209
+ * @param {PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGetRequest} requestParameters Request parameters.
210
+ * @param {*} [options] Override http request option.
211
+ * @throws {RequiredError}
212
+ * @memberof PatientAffiliationsApi
213
+ */
214
+ apiV1PatientaffiliationsPatientAffiliationIdGet(requestParameters: PatientAffiliationsApiApiV1PatientaffiliationsPatientAffiliationIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientAffiliationModel, any>>;
215
+ }
216
+ //# sourceMappingURL=patient-affiliations-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient-affiliations-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-affiliations-api.ts"],"names":[],"mappings":"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"}