ch-admin-api-client-typescript 5.14.27 → 5.15.0

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 (62) hide show
  1. package/lib/api/hospital-branches-api.d.ts +402 -0
  2. package/lib/api/hospital-branches-api.d.ts.map +1 -0
  3. package/lib/api/hospital-branches-api.js +697 -0
  4. package/lib/api/hospital-groups-api.d.ts +402 -0
  5. package/lib/api/hospital-groups-api.d.ts.map +1 -0
  6. package/lib/api/hospital-groups-api.js +697 -0
  7. package/lib/api/hospitals-api.d.ts +30 -30
  8. package/lib/api/hospitals-api.d.ts.map +1 -1
  9. package/lib/api/hospitals-api.js +26 -26
  10. package/lib/api.d.ts +2 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +2 -0
  13. package/lib/models/create-hospital-branch-command.d.ts +73 -0
  14. package/lib/models/create-hospital-branch-command.d.ts.map +1 -0
  15. package/lib/models/create-hospital-branch-command.js +15 -0
  16. package/lib/models/create-hospital-group-command.d.ts +67 -0
  17. package/lib/models/create-hospital-group-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-group-command.js +15 -0
  19. package/lib/models/hospital-branch-item-model.d.ts +80 -0
  20. package/lib/models/hospital-branch-item-model.d.ts.map +1 -0
  21. package/lib/models/hospital-branch-item-model.js +15 -0
  22. package/lib/models/hospital-branch-model.d.ts +98 -0
  23. package/lib/models/hospital-branch-model.d.ts.map +1 -0
  24. package/lib/models/hospital-branch-model.js +15 -0
  25. package/lib/models/hospital-branches-model.d.ts +33 -0
  26. package/lib/models/hospital-branches-model.d.ts.map +1 -0
  27. package/lib/models/hospital-branches-model.js +15 -0
  28. package/lib/models/hospital-group-item-model.d.ts +62 -0
  29. package/lib/models/hospital-group-item-model.d.ts.map +1 -0
  30. package/lib/models/hospital-group-item-model.js +15 -0
  31. package/lib/models/hospital-group-model.d.ts +80 -0
  32. package/lib/models/hospital-group-model.d.ts.map +1 -0
  33. package/lib/models/hospital-group-model.js +15 -0
  34. package/lib/models/hospital-groups-model.d.ts +33 -0
  35. package/lib/models/hospital-groups-model.d.ts.map +1 -0
  36. package/lib/models/hospital-groups-model.js +15 -0
  37. package/lib/models/index.d.ts +10 -0
  38. package/lib/models/index.d.ts.map +1 -1
  39. package/lib/models/index.js +10 -0
  40. package/lib/models/update-hospital-branch-command.d.ts +61 -0
  41. package/lib/models/update-hospital-branch-command.d.ts.map +1 -0
  42. package/lib/models/update-hospital-branch-command.js +15 -0
  43. package/lib/models/update-hospital-group-command.d.ts +67 -0
  44. package/lib/models/update-hospital-group-command.d.ts.map +1 -0
  45. package/lib/models/update-hospital-group-command.js +15 -0
  46. package/package.json +1 -1
  47. package/src/.openapi-generator/FILES +12 -0
  48. package/src/api/hospital-branches-api.ts +706 -0
  49. package/src/api/hospital-groups-api.ts +706 -0
  50. package/src/api/hospitals-api.ts +49 -49
  51. package/src/api.ts +2 -0
  52. package/src/models/create-hospital-branch-command.ts +78 -0
  53. package/src/models/create-hospital-group-command.ts +72 -0
  54. package/src/models/hospital-branch-item-model.ts +87 -0
  55. package/src/models/hospital-branch-model.ts +105 -0
  56. package/src/models/hospital-branches-model.ts +42 -0
  57. package/src/models/hospital-group-item-model.ts +69 -0
  58. package/src/models/hospital-group-model.ts +87 -0
  59. package/src/models/hospital-groups-model.ts +42 -0
  60. package/src/models/index.ts +10 -0
  61. package/src/models/update-hospital-branch-command.ts +66 -0
  62. package/src/models/update-hospital-group-command.ts +72 -0
@@ -0,0 +1,402 @@
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 { CreateHospitalBranchCommand } from '../models';
16
+ import { HospitalBranchModel } from '../models';
17
+ import { HospitalBranchesModel } from '../models';
18
+ import { UpdateHospitalBranchCommand } from '../models';
19
+ /**
20
+ * HospitalBranchesApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export declare const HospitalBranchesApiAxiosParamCreator: (configuration?: Configuration) => {
24
+ /**
25
+ *
26
+ * @summary Get hospitalBranches
27
+ * @param {string} [id]
28
+ * @param {string} [hospitalGroupId]
29
+ * @param {string} [hospitalId]
30
+ * @param {string} [languageCode]
31
+ * @param {number} [page]
32
+ * @param {number} [limit]
33
+ * @param {Date} [lastRetrieved]
34
+ * @param {*} [options] Override http request option.
35
+ * @throws {RequiredError}
36
+ */
37
+ apiV1HospitalbranchesGet: (id?: string, hospitalGroupId?: string, hospitalId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
+ /**
39
+ *
40
+ * @summary Delete hospitalBranch
41
+ * @param {string} hospitalBranchId
42
+ * @param {boolean} [isPermanent]
43
+ * @param {*} [options] Override http request option.
44
+ * @throws {RequiredError}
45
+ */
46
+ apiV1HospitalbranchesHospitalBranchIdDelete: (hospitalBranchId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
+ /**
48
+ *
49
+ * @summary Get hospitalBranch
50
+ * @param {string} hospitalBranchId
51
+ * @param {string} [languageCode]
52
+ * @param {*} [options] Override http request option.
53
+ * @throws {RequiredError}
54
+ */
55
+ apiV1HospitalbranchesHospitalBranchIdGet: (hospitalBranchId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
+ /**
57
+ *
58
+ * @summary Update hospitalBranch
59
+ * @param {string} hospitalBranchId
60
+ * @param {UpdateHospitalBranchCommand} [updateHospitalBranchCommand]
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ */
64
+ apiV1HospitalbranchesHospitalBranchIdPut: (hospitalBranchId: string, updateHospitalBranchCommand?: UpdateHospitalBranchCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ /**
66
+ *
67
+ * @summary Reactivate hospitalBranch
68
+ * @param {string} hospitalBranchId
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ apiV1HospitalbranchesHospitalBranchIdReactivatePut: (hospitalBranchId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
73
+ /**
74
+ *
75
+ * @summary Create hospitalBranch
76
+ * @param {CreateHospitalBranchCommand} [createHospitalBranchCommand]
77
+ * @param {*} [options] Override http request option.
78
+ * @throws {RequiredError}
79
+ */
80
+ apiV1HospitalbranchesPost: (createHospitalBranchCommand?: CreateHospitalBranchCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
81
+ };
82
+ /**
83
+ * HospitalBranchesApi - functional programming interface
84
+ * @export
85
+ */
86
+ export declare const HospitalBranchesApiFp: (configuration?: Configuration) => {
87
+ /**
88
+ *
89
+ * @summary Get hospitalBranches
90
+ * @param {string} [id]
91
+ * @param {string} [hospitalGroupId]
92
+ * @param {string} [hospitalId]
93
+ * @param {string} [languageCode]
94
+ * @param {number} [page]
95
+ * @param {number} [limit]
96
+ * @param {Date} [lastRetrieved]
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ apiV1HospitalbranchesGet(id?: string, hospitalGroupId?: string, hospitalId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalBranchesModel>>;
101
+ /**
102
+ *
103
+ * @summary Delete hospitalBranch
104
+ * @param {string} hospitalBranchId
105
+ * @param {boolean} [isPermanent]
106
+ * @param {*} [options] Override http request option.
107
+ * @throws {RequiredError}
108
+ */
109
+ apiV1HospitalbranchesHospitalBranchIdDelete(hospitalBranchId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
110
+ /**
111
+ *
112
+ * @summary Get hospitalBranch
113
+ * @param {string} hospitalBranchId
114
+ * @param {string} [languageCode]
115
+ * @param {*} [options] Override http request option.
116
+ * @throws {RequiredError}
117
+ */
118
+ apiV1HospitalbranchesHospitalBranchIdGet(hospitalBranchId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalBranchModel>>;
119
+ /**
120
+ *
121
+ * @summary Update hospitalBranch
122
+ * @param {string} hospitalBranchId
123
+ * @param {UpdateHospitalBranchCommand} [updateHospitalBranchCommand]
124
+ * @param {*} [options] Override http request option.
125
+ * @throws {RequiredError}
126
+ */
127
+ apiV1HospitalbranchesHospitalBranchIdPut(hospitalBranchId: string, updateHospitalBranchCommand?: UpdateHospitalBranchCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalBranchModel>>;
128
+ /**
129
+ *
130
+ * @summary Reactivate hospitalBranch
131
+ * @param {string} hospitalBranchId
132
+ * @param {*} [options] Override http request option.
133
+ * @throws {RequiredError}
134
+ */
135
+ apiV1HospitalbranchesHospitalBranchIdReactivatePut(hospitalBranchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
136
+ /**
137
+ *
138
+ * @summary Create hospitalBranch
139
+ * @param {CreateHospitalBranchCommand} [createHospitalBranchCommand]
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ */
143
+ apiV1HospitalbranchesPost(createHospitalBranchCommand?: CreateHospitalBranchCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalBranchModel>>;
144
+ };
145
+ /**
146
+ * HospitalBranchesApi - factory interface
147
+ * @export
148
+ */
149
+ export declare const HospitalBranchesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
150
+ /**
151
+ *
152
+ * @summary Get hospitalBranches
153
+ * @param {string} [id]
154
+ * @param {string} [hospitalGroupId]
155
+ * @param {string} [hospitalId]
156
+ * @param {string} [languageCode]
157
+ * @param {number} [page]
158
+ * @param {number} [limit]
159
+ * @param {Date} [lastRetrieved]
160
+ * @param {*} [options] Override http request option.
161
+ * @throws {RequiredError}
162
+ */
163
+ apiV1HospitalbranchesGet(id?: string, hospitalGroupId?: string, hospitalId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalBranchesModel>;
164
+ /**
165
+ *
166
+ * @summary Delete hospitalBranch
167
+ * @param {string} hospitalBranchId
168
+ * @param {boolean} [isPermanent]
169
+ * @param {*} [options] Override http request option.
170
+ * @throws {RequiredError}
171
+ */
172
+ apiV1HospitalbranchesHospitalBranchIdDelete(hospitalBranchId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
173
+ /**
174
+ *
175
+ * @summary Get hospitalBranch
176
+ * @param {string} hospitalBranchId
177
+ * @param {string} [languageCode]
178
+ * @param {*} [options] Override http request option.
179
+ * @throws {RequiredError}
180
+ */
181
+ apiV1HospitalbranchesHospitalBranchIdGet(hospitalBranchId: string, languageCode?: string, options?: any): AxiosPromise<HospitalBranchModel>;
182
+ /**
183
+ *
184
+ * @summary Update hospitalBranch
185
+ * @param {string} hospitalBranchId
186
+ * @param {UpdateHospitalBranchCommand} [updateHospitalBranchCommand]
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ apiV1HospitalbranchesHospitalBranchIdPut(hospitalBranchId: string, updateHospitalBranchCommand?: UpdateHospitalBranchCommand, options?: any): AxiosPromise<HospitalBranchModel>;
191
+ /**
192
+ *
193
+ * @summary Reactivate hospitalBranch
194
+ * @param {string} hospitalBranchId
195
+ * @param {*} [options] Override http request option.
196
+ * @throws {RequiredError}
197
+ */
198
+ apiV1HospitalbranchesHospitalBranchIdReactivatePut(hospitalBranchId: string, options?: any): AxiosPromise<boolean>;
199
+ /**
200
+ *
201
+ * @summary Create hospitalBranch
202
+ * @param {CreateHospitalBranchCommand} [createHospitalBranchCommand]
203
+ * @param {*} [options] Override http request option.
204
+ * @throws {RequiredError}
205
+ */
206
+ apiV1HospitalbranchesPost(createHospitalBranchCommand?: CreateHospitalBranchCommand, options?: any): AxiosPromise<HospitalBranchModel>;
207
+ };
208
+ /**
209
+ * Request parameters for apiV1HospitalbranchesGet operation in HospitalBranchesApi.
210
+ * @export
211
+ * @interface HospitalBranchesApiApiV1HospitalbranchesGetRequest
212
+ */
213
+ export interface HospitalBranchesApiApiV1HospitalbranchesGetRequest {
214
+ /**
215
+ *
216
+ * @type {string}
217
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
218
+ */
219
+ readonly id?: string;
220
+ /**
221
+ *
222
+ * @type {string}
223
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
224
+ */
225
+ readonly hospitalGroupId?: string;
226
+ /**
227
+ *
228
+ * @type {string}
229
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
230
+ */
231
+ readonly hospitalId?: string;
232
+ /**
233
+ *
234
+ * @type {string}
235
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
236
+ */
237
+ readonly languageCode?: string;
238
+ /**
239
+ *
240
+ * @type {number}
241
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
242
+ */
243
+ readonly page?: number;
244
+ /**
245
+ *
246
+ * @type {number}
247
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
248
+ */
249
+ readonly limit?: number;
250
+ /**
251
+ *
252
+ * @type {Date}
253
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesGet
254
+ */
255
+ readonly lastRetrieved?: Date;
256
+ }
257
+ /**
258
+ * Request parameters for apiV1HospitalbranchesHospitalBranchIdDelete operation in HospitalBranchesApi.
259
+ * @export
260
+ * @interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDeleteRequest
261
+ */
262
+ export interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDeleteRequest {
263
+ /**
264
+ *
265
+ * @type {string}
266
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDelete
267
+ */
268
+ readonly hospitalBranchId: string;
269
+ /**
270
+ *
271
+ * @type {boolean}
272
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDelete
273
+ */
274
+ readonly isPermanent?: boolean;
275
+ }
276
+ /**
277
+ * Request parameters for apiV1HospitalbranchesHospitalBranchIdGet operation in HospitalBranchesApi.
278
+ * @export
279
+ * @interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGetRequest
280
+ */
281
+ export interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGetRequest {
282
+ /**
283
+ *
284
+ * @type {string}
285
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGet
286
+ */
287
+ readonly hospitalBranchId: string;
288
+ /**
289
+ *
290
+ * @type {string}
291
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGet
292
+ */
293
+ readonly languageCode?: string;
294
+ }
295
+ /**
296
+ * Request parameters for apiV1HospitalbranchesHospitalBranchIdPut operation in HospitalBranchesApi.
297
+ * @export
298
+ * @interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPutRequest
299
+ */
300
+ export interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPutRequest {
301
+ /**
302
+ *
303
+ * @type {string}
304
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPut
305
+ */
306
+ readonly hospitalBranchId: string;
307
+ /**
308
+ *
309
+ * @type {UpdateHospitalBranchCommand}
310
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPut
311
+ */
312
+ readonly updateHospitalBranchCommand?: UpdateHospitalBranchCommand;
313
+ }
314
+ /**
315
+ * Request parameters for apiV1HospitalbranchesHospitalBranchIdReactivatePut operation in HospitalBranchesApi.
316
+ * @export
317
+ * @interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdReactivatePutRequest
318
+ */
319
+ export interface HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdReactivatePutRequest {
320
+ /**
321
+ *
322
+ * @type {string}
323
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdReactivatePut
324
+ */
325
+ readonly hospitalBranchId: string;
326
+ }
327
+ /**
328
+ * Request parameters for apiV1HospitalbranchesPost operation in HospitalBranchesApi.
329
+ * @export
330
+ * @interface HospitalBranchesApiApiV1HospitalbranchesPostRequest
331
+ */
332
+ export interface HospitalBranchesApiApiV1HospitalbranchesPostRequest {
333
+ /**
334
+ *
335
+ * @type {CreateHospitalBranchCommand}
336
+ * @memberof HospitalBranchesApiApiV1HospitalbranchesPost
337
+ */
338
+ readonly createHospitalBranchCommand?: CreateHospitalBranchCommand;
339
+ }
340
+ /**
341
+ * HospitalBranchesApi - object-oriented interface
342
+ * @export
343
+ * @class HospitalBranchesApi
344
+ * @extends {BaseAPI}
345
+ */
346
+ export declare class HospitalBranchesApi extends BaseAPI {
347
+ /**
348
+ *
349
+ * @summary Get hospitalBranches
350
+ * @param {HospitalBranchesApiApiV1HospitalbranchesGetRequest} requestParameters Request parameters.
351
+ * @param {*} [options] Override http request option.
352
+ * @throws {RequiredError}
353
+ * @memberof HospitalBranchesApi
354
+ */
355
+ apiV1HospitalbranchesGet(requestParameters?: HospitalBranchesApiApiV1HospitalbranchesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalBranchesModel, any>>;
356
+ /**
357
+ *
358
+ * @summary Delete hospitalBranch
359
+ * @param {HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDeleteRequest} requestParameters Request parameters.
360
+ * @param {*} [options] Override http request option.
361
+ * @throws {RequiredError}
362
+ * @memberof HospitalBranchesApi
363
+ */
364
+ apiV1HospitalbranchesHospitalBranchIdDelete(requestParameters: HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
365
+ /**
366
+ *
367
+ * @summary Get hospitalBranch
368
+ * @param {HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGetRequest} requestParameters Request parameters.
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ * @memberof HospitalBranchesApi
372
+ */
373
+ apiV1HospitalbranchesHospitalBranchIdGet(requestParameters: HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalBranchModel, any>>;
374
+ /**
375
+ *
376
+ * @summary Update hospitalBranch
377
+ * @param {HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPutRequest} requestParameters Request parameters.
378
+ * @param {*} [options] Override http request option.
379
+ * @throws {RequiredError}
380
+ * @memberof HospitalBranchesApi
381
+ */
382
+ apiV1HospitalbranchesHospitalBranchIdPut(requestParameters: HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalBranchModel, any>>;
383
+ /**
384
+ *
385
+ * @summary Reactivate hospitalBranch
386
+ * @param {HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdReactivatePutRequest} requestParameters Request parameters.
387
+ * @param {*} [options] Override http request option.
388
+ * @throws {RequiredError}
389
+ * @memberof HospitalBranchesApi
390
+ */
391
+ apiV1HospitalbranchesHospitalBranchIdReactivatePut(requestParameters: HospitalBranchesApiApiV1HospitalbranchesHospitalBranchIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
392
+ /**
393
+ *
394
+ * @summary Create hospitalBranch
395
+ * @param {HospitalBranchesApiApiV1HospitalbranchesPostRequest} requestParameters Request parameters.
396
+ * @param {*} [options] Override http request option.
397
+ * @throws {RequiredError}
398
+ * @memberof HospitalBranchesApi
399
+ */
400
+ apiV1HospitalbranchesPost(requestParameters?: HospitalBranchesApiApiV1HospitalbranchesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalBranchModel, any>>;
401
+ }
402
+ //# sourceMappingURL=hospital-branches-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hospital-branches-api.d.ts","sourceRoot":"","sources":["../../src/api/hospital-branches-api.ts"],"names":[],"mappings":"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"}