ch-admin-api-client-typescript 5.30.43 → 5.30.46
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/specialty-types-api.d.ts +48 -0
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +85 -0
- package/lib/models/create-specialty-type-command.d.ts +12 -0
- package/lib/models/create-specialty-type-command.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +6 -78
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +53 -72
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/specialty-type-item-model.d.ts +6 -0
- package/lib/models/specialty-type-item-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +6 -0
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/specialty-type-simple-item-model.d.ts +6 -0
- package/lib/models/specialty-type-simple-item-model.d.ts.map +1 -1
- package/lib/models/specialty-type-sorting-command.d.ts +26 -0
- package/lib/models/specialty-type-sorting-command.d.ts.map +1 -0
- package/lib/models/specialty-type-sorting-command.js +15 -0
- package/lib/models/update-specialty-type-command.d.ts +8 -2
- package/lib/models/update-specialty-type-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/api/specialty-types-api.ts +89 -0
- package/src/models/create-specialty-type-command.ts +12 -0
- package/src/models/hospital-item-model.ts +6 -90
- package/src/models/hospital-model.ts +53 -74
- package/src/models/index.ts +1 -0
- package/src/models/specialty-type-item-model.ts +6 -0
- package/src/models/specialty-type-model.ts +6 -0
- package/src/models/specialty-type-simple-item-model.ts +6 -0
- package/src/models/specialty-type-sorting-command.ts +33 -0
- package/src/models/update-specialty-type-command.ts +8 -2
|
@@ -35,8 +35,12 @@ import { MediasModel } from '../models';
|
|
|
35
35
|
// @ts-ignore
|
|
36
36
|
import { ProblemDetails } from '../models';
|
|
37
37
|
// @ts-ignore
|
|
38
|
+
import { SortingResultModel } from '../models';
|
|
39
|
+
// @ts-ignore
|
|
38
40
|
import { SpecialtyTypeModel } from '../models';
|
|
39
41
|
// @ts-ignore
|
|
42
|
+
import { SpecialtyTypeSortingCommand } from '../models';
|
|
43
|
+
// @ts-ignore
|
|
40
44
|
import { SpecialtyTypesModel } from '../models';
|
|
41
45
|
// @ts-ignore
|
|
42
46
|
import { SpecialtyTypesSimpleModel } from '../models';
|
|
@@ -354,6 +358,44 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
354
358
|
options: localVarRequestOptions,
|
|
355
359
|
};
|
|
356
360
|
},
|
|
361
|
+
/**
|
|
362
|
+
*
|
|
363
|
+
* @summary Batch for countries sorting
|
|
364
|
+
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
365
|
+
* @param {*} [options] Override http request option.
|
|
366
|
+
* @throws {RequiredError}
|
|
367
|
+
*/
|
|
368
|
+
apiV1SpecialtytypesSortPut: async (specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
369
|
+
const localVarPath = `/api/v1/specialtytypes/sort`;
|
|
370
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
371
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
372
|
+
let baseOptions;
|
|
373
|
+
if (configuration) {
|
|
374
|
+
baseOptions = configuration.baseOptions;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
378
|
+
const localVarHeaderParameter = {} as any;
|
|
379
|
+
const localVarQueryParameter = {} as any;
|
|
380
|
+
|
|
381
|
+
// authentication oauth2 required
|
|
382
|
+
// oauth required
|
|
383
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
388
|
+
|
|
389
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
390
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
392
|
+
localVarRequestOptions.data = serializeDataIfNeeded(specialtyTypeSortingCommand, localVarRequestOptions, configuration)
|
|
393
|
+
|
|
394
|
+
return {
|
|
395
|
+
url: toPathString(localVarUrlObj),
|
|
396
|
+
options: localVarRequestOptions,
|
|
397
|
+
};
|
|
398
|
+
},
|
|
357
399
|
/**
|
|
358
400
|
*
|
|
359
401
|
* @summary Delete Department.
|
|
@@ -929,6 +971,17 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
929
971
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, options);
|
|
930
972
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
931
973
|
},
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @summary Batch for countries sorting
|
|
977
|
+
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
978
|
+
* @param {*} [options] Override http request option.
|
|
979
|
+
* @throws {RequiredError}
|
|
980
|
+
*/
|
|
981
|
+
async apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>> {
|
|
982
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand, options);
|
|
983
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
984
|
+
},
|
|
932
985
|
/**
|
|
933
986
|
*
|
|
934
987
|
* @summary Delete Department.
|
|
@@ -1144,6 +1197,16 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
1144
1197
|
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyTypeModel> {
|
|
1145
1198
|
return localVarFp.apiV1SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
|
|
1146
1199
|
},
|
|
1200
|
+
/**
|
|
1201
|
+
*
|
|
1202
|
+
* @summary Batch for countries sorting
|
|
1203
|
+
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
1204
|
+
* @param {*} [options] Override http request option.
|
|
1205
|
+
* @throws {RequiredError}
|
|
1206
|
+
*/
|
|
1207
|
+
apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options?: any): AxiosPromise<SortingResultModel> {
|
|
1208
|
+
return localVarFp.apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand, options).then((request) => request(axios, basePath));
|
|
1209
|
+
},
|
|
1147
1210
|
/**
|
|
1148
1211
|
*
|
|
1149
1212
|
* @summary Delete Department.
|
|
@@ -1525,6 +1588,20 @@ export interface SpecialtyTypesApiApiV1SpecialtytypesSlugGetRequest {
|
|
|
1525
1588
|
readonly returnDefaultValue?: boolean
|
|
1526
1589
|
}
|
|
1527
1590
|
|
|
1591
|
+
/**
|
|
1592
|
+
* Request parameters for apiV1SpecialtytypesSortPut operation in SpecialtyTypesApi.
|
|
1593
|
+
* @export
|
|
1594
|
+
* @interface SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest
|
|
1595
|
+
*/
|
|
1596
|
+
export interface SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest {
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @type {SpecialtyTypeSortingCommand}
|
|
1600
|
+
* @memberof SpecialtyTypesApiApiV1SpecialtytypesSortPut
|
|
1601
|
+
*/
|
|
1602
|
+
readonly specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1528
1605
|
/**
|
|
1529
1606
|
* Request parameters for apiV1SpecialtytypesSpecialtyTypeIdDelete operation in SpecialtyTypesApi.
|
|
1530
1607
|
* @export
|
|
@@ -1846,6 +1923,18 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
1846
1923
|
return SpecialtyTypesApiFp(this.configuration).apiV1SpecialtytypesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
|
|
1847
1924
|
}
|
|
1848
1925
|
|
|
1926
|
+
/**
|
|
1927
|
+
*
|
|
1928
|
+
* @summary Batch for countries sorting
|
|
1929
|
+
* @param {SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest} requestParameters Request parameters.
|
|
1930
|
+
* @param {*} [options] Override http request option.
|
|
1931
|
+
* @throws {RequiredError}
|
|
1932
|
+
* @memberof SpecialtyTypesApi
|
|
1933
|
+
*/
|
|
1934
|
+
public apiV1SpecialtytypesSortPut(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest = {}, options?: AxiosRequestConfig) {
|
|
1935
|
+
return SpecialtyTypesApiFp(this.configuration).apiV1SpecialtytypesSortPut(requestParameters.specialtyTypeSortingCommand, options).then((request) => request(this.axios, this.basePath));
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1849
1938
|
/**
|
|
1850
1939
|
*
|
|
1851
1940
|
* @summary Delete Department.
|
|
@@ -26,6 +26,12 @@ import { MediaModel } from './media-model';
|
|
|
26
26
|
* @interface CreateSpecialtyTypeCommand
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateSpecialtyTypeCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
29
35
|
/**
|
|
30
36
|
*
|
|
31
37
|
* @type {string}
|
|
@@ -80,6 +86,12 @@ export interface CreateSpecialtyTypeCommand {
|
|
|
80
86
|
* @memberof CreateSpecialtyTypeCommand
|
|
81
87
|
*/
|
|
82
88
|
'customStyle'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
93
|
+
*/
|
|
94
|
+
'order'?: number;
|
|
83
95
|
/**
|
|
84
96
|
*
|
|
85
97
|
* @type {Array<MediaModel>}
|
|
@@ -13,30 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
16
|
// May contain unused imports in some cases
|
|
20
17
|
// @ts-ignore
|
|
21
18
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
19
|
// May contain unused imports in some cases
|
|
23
20
|
// @ts-ignore
|
|
24
|
-
import { GradeModel } from './grade-model';
|
|
25
|
-
// May contain unused imports in some cases
|
|
26
|
-
// @ts-ignore
|
|
27
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
28
|
-
// May contain unused imports in some cases
|
|
29
|
-
// @ts-ignore
|
|
30
|
-
import { LocationModel } from './location-model';
|
|
31
|
-
// May contain unused imports in some cases
|
|
32
|
-
// @ts-ignore
|
|
33
21
|
import { MarketingType } from './marketing-type';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
|
-
import { MediaModel } from './media-model';
|
|
37
|
-
// May contain unused imports in some cases
|
|
38
|
-
// @ts-ignore
|
|
39
|
-
import { PaymentMethod } from './payment-method';
|
|
40
22
|
|
|
41
23
|
/**
|
|
42
24
|
*
|
|
@@ -56,6 +38,12 @@ export interface HospitalItemModel {
|
|
|
56
38
|
* @memberof HospitalItemModel
|
|
57
39
|
*/
|
|
58
40
|
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof HospitalItemModel
|
|
45
|
+
*/
|
|
46
|
+
'countryId'?: string;
|
|
59
47
|
/**
|
|
60
48
|
*
|
|
61
49
|
* @type {string}
|
|
@@ -110,18 +98,6 @@ export interface HospitalItemModel {
|
|
|
110
98
|
* @memberof HospitalItemModel
|
|
111
99
|
*/
|
|
112
100
|
'marketingType'?: MarketingType;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @type {boolean}
|
|
116
|
-
* @memberof HospitalItemModel
|
|
117
|
-
*/
|
|
118
|
-
'consultationEnabled'?: boolean | null;
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @type {number}
|
|
122
|
-
* @memberof HospitalItemModel
|
|
123
|
-
*/
|
|
124
|
-
'consultationFee'?: number | null;
|
|
125
101
|
/**
|
|
126
102
|
*
|
|
127
103
|
* @type {string}
|
|
@@ -134,66 +110,6 @@ export interface HospitalItemModel {
|
|
|
134
110
|
* @memberof HospitalItemModel
|
|
135
111
|
*/
|
|
136
112
|
'websiteUrl'?: string | null;
|
|
137
|
-
/**
|
|
138
|
-
*
|
|
139
|
-
* @type {boolean}
|
|
140
|
-
* @memberof HospitalItemModel
|
|
141
|
-
*/
|
|
142
|
-
'paymentEnabled'?: boolean;
|
|
143
|
-
/**
|
|
144
|
-
*
|
|
145
|
-
* @type {string}
|
|
146
|
-
* @memberof HospitalItemModel
|
|
147
|
-
*/
|
|
148
|
-
'appointmentCurrency'?: string | null;
|
|
149
|
-
/**
|
|
150
|
-
*
|
|
151
|
-
* @type {string}
|
|
152
|
-
* @memberof HospitalItemModel
|
|
153
|
-
*/
|
|
154
|
-
'countryId'?: string;
|
|
155
|
-
/**
|
|
156
|
-
*
|
|
157
|
-
* @type {Array<MediaModel>}
|
|
158
|
-
* @memberof HospitalItemModel
|
|
159
|
-
*/
|
|
160
|
-
'medias'?: Array<MediaModel> | null;
|
|
161
|
-
/**
|
|
162
|
-
*
|
|
163
|
-
* @type {LocationModel}
|
|
164
|
-
* @memberof HospitalItemModel
|
|
165
|
-
*/
|
|
166
|
-
'location'?: LocationModel;
|
|
167
|
-
/**
|
|
168
|
-
*
|
|
169
|
-
* @type {HospitalConsultationOptionModel}
|
|
170
|
-
* @memberof HospitalItemModel
|
|
171
|
-
*/
|
|
172
|
-
'consultationOption'?: HospitalConsultationOptionModel;
|
|
173
|
-
/**
|
|
174
|
-
*
|
|
175
|
-
* @type {AppointmentOptionModel}
|
|
176
|
-
* @memberof HospitalItemModel
|
|
177
|
-
*/
|
|
178
|
-
'appointmentOption'?: AppointmentOptionModel;
|
|
179
|
-
/**
|
|
180
|
-
*
|
|
181
|
-
* @type {string}
|
|
182
|
-
* @memberof HospitalItemModel
|
|
183
|
-
*/
|
|
184
|
-
'gradeId'?: string | null;
|
|
185
|
-
/**
|
|
186
|
-
*
|
|
187
|
-
* @type {GradeModel}
|
|
188
|
-
* @memberof HospitalItemModel
|
|
189
|
-
*/
|
|
190
|
-
'grade'?: GradeModel;
|
|
191
|
-
/**
|
|
192
|
-
*
|
|
193
|
-
* @type {Array<PaymentMethod>}
|
|
194
|
-
* @memberof HospitalItemModel
|
|
195
|
-
*/
|
|
196
|
-
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
197
113
|
/**
|
|
198
114
|
*
|
|
199
115
|
* @type {AuditableEntityModel}
|
|
@@ -30,9 +30,6 @@ import { FeatureModel } from './feature-model';
|
|
|
30
30
|
import { GradeModel } from './grade-model';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
33
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
37
34
|
// May contain unused imports in some cases
|
|
38
35
|
// @ts-ignore
|
|
@@ -68,6 +65,12 @@ export interface HospitalModel {
|
|
|
68
65
|
* @memberof HospitalModel
|
|
69
66
|
*/
|
|
70
67
|
'languageCode'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof HospitalModel
|
|
72
|
+
*/
|
|
73
|
+
'countryId'?: string;
|
|
71
74
|
/**
|
|
72
75
|
*
|
|
73
76
|
* @type {string}
|
|
@@ -122,18 +125,6 @@ export interface HospitalModel {
|
|
|
122
125
|
* @memberof HospitalModel
|
|
123
126
|
*/
|
|
124
127
|
'marketingType'?: MarketingType;
|
|
125
|
-
/**
|
|
126
|
-
*
|
|
127
|
-
* @type {boolean}
|
|
128
|
-
* @memberof HospitalModel
|
|
129
|
-
*/
|
|
130
|
-
'consultationEnabled'?: boolean | null;
|
|
131
|
-
/**
|
|
132
|
-
*
|
|
133
|
-
* @type {number}
|
|
134
|
-
* @memberof HospitalModel
|
|
135
|
-
*/
|
|
136
|
-
'consultationFee'?: number | null;
|
|
137
128
|
/**
|
|
138
129
|
*
|
|
139
130
|
* @type {string}
|
|
@@ -148,178 +139,166 @@ export interface HospitalModel {
|
|
|
148
139
|
'websiteUrl'?: string | null;
|
|
149
140
|
/**
|
|
150
141
|
*
|
|
151
|
-
* @type {
|
|
142
|
+
* @type {AuditableEntityModel}
|
|
152
143
|
* @memberof HospitalModel
|
|
153
144
|
*/
|
|
154
|
-
'
|
|
145
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
155
146
|
/**
|
|
156
147
|
*
|
|
157
148
|
* @type {string}
|
|
158
149
|
* @memberof HospitalModel
|
|
159
150
|
*/
|
|
160
|
-
'
|
|
151
|
+
'description'?: string | null;
|
|
161
152
|
/**
|
|
162
153
|
*
|
|
163
154
|
* @type {string}
|
|
164
155
|
* @memberof HospitalModel
|
|
165
156
|
*/
|
|
166
|
-
'
|
|
157
|
+
'overview'?: string | null;
|
|
167
158
|
/**
|
|
168
159
|
*
|
|
169
|
-
* @type {
|
|
160
|
+
* @type {string}
|
|
170
161
|
* @memberof HospitalModel
|
|
171
162
|
*/
|
|
172
|
-
'
|
|
163
|
+
'content'?: string | null;
|
|
173
164
|
/**
|
|
174
165
|
*
|
|
175
|
-
* @type {
|
|
166
|
+
* @type {number}
|
|
176
167
|
* @memberof HospitalModel
|
|
177
168
|
*/
|
|
178
|
-
'
|
|
169
|
+
'bedsCount'?: number | null;
|
|
179
170
|
/**
|
|
180
171
|
*
|
|
181
|
-
* @type {
|
|
172
|
+
* @type {number}
|
|
182
173
|
* @memberof HospitalModel
|
|
183
174
|
*/
|
|
184
|
-
'
|
|
175
|
+
'operationsPerYear'?: number | null;
|
|
185
176
|
/**
|
|
186
177
|
*
|
|
187
|
-
* @type {
|
|
178
|
+
* @type {number}
|
|
188
179
|
* @memberof HospitalModel
|
|
189
180
|
*/
|
|
190
|
-
'
|
|
181
|
+
'foundationYear'?: number | null;
|
|
191
182
|
/**
|
|
192
183
|
*
|
|
193
|
-
* @type {
|
|
184
|
+
* @type {number}
|
|
194
185
|
* @memberof HospitalModel
|
|
195
186
|
*/
|
|
196
|
-
'
|
|
187
|
+
'medicalStaffCount'?: number | null;
|
|
197
188
|
/**
|
|
198
189
|
*
|
|
199
|
-
* @type {
|
|
190
|
+
* @type {number}
|
|
200
191
|
* @memberof HospitalModel
|
|
201
192
|
*/
|
|
202
|
-
'
|
|
193
|
+
'doctorCount'?: number | null;
|
|
203
194
|
/**
|
|
204
195
|
*
|
|
205
|
-
* @type {
|
|
196
|
+
* @type {string}
|
|
206
197
|
* @memberof HospitalModel
|
|
207
198
|
*/
|
|
208
|
-
'
|
|
199
|
+
'contactTel'?: string | null;
|
|
209
200
|
/**
|
|
210
201
|
*
|
|
211
|
-
* @type {
|
|
202
|
+
* @type {string}
|
|
212
203
|
* @memberof HospitalModel
|
|
213
204
|
*/
|
|
214
|
-
'
|
|
205
|
+
'contactEmail'?: string | null;
|
|
215
206
|
/**
|
|
216
207
|
*
|
|
217
208
|
* @type {string}
|
|
218
209
|
* @memberof HospitalModel
|
|
219
210
|
*/
|
|
220
|
-
'
|
|
211
|
+
'customStyle'?: string | null;
|
|
221
212
|
/**
|
|
222
213
|
*
|
|
223
214
|
* @type {string}
|
|
224
215
|
* @memberof HospitalModel
|
|
225
216
|
*/
|
|
226
|
-
'
|
|
217
|
+
'corporateIdentificationNumber'?: string | null;
|
|
227
218
|
/**
|
|
228
219
|
*
|
|
229
220
|
* @type {string}
|
|
230
221
|
* @memberof HospitalModel
|
|
231
222
|
*/
|
|
232
|
-
'
|
|
223
|
+
'gstRegistrationNumber'?: string | null;
|
|
233
224
|
/**
|
|
234
225
|
*
|
|
235
|
-
* @type {
|
|
226
|
+
* @type {string}
|
|
236
227
|
* @memberof HospitalModel
|
|
237
228
|
*/
|
|
238
|
-
'
|
|
229
|
+
'permanentAccountNumber'?: string | null;
|
|
239
230
|
/**
|
|
240
231
|
*
|
|
241
|
-
* @type {
|
|
232
|
+
* @type {string}
|
|
242
233
|
* @memberof HospitalModel
|
|
243
234
|
*/
|
|
244
|
-
'
|
|
235
|
+
'hospitalRegistrationNumber'?: string | null;
|
|
245
236
|
/**
|
|
246
237
|
*
|
|
247
|
-
* @type {
|
|
238
|
+
* @type {Array<HospitalLanguageItemModel>}
|
|
248
239
|
* @memberof HospitalModel
|
|
249
240
|
*/
|
|
250
|
-
'
|
|
241
|
+
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
251
242
|
/**
|
|
252
243
|
*
|
|
253
|
-
* @type {
|
|
244
|
+
* @type {FeatureModel}
|
|
254
245
|
* @memberof HospitalModel
|
|
255
246
|
*/
|
|
256
|
-
'
|
|
247
|
+
'feature'?: FeatureModel;
|
|
257
248
|
/**
|
|
258
249
|
*
|
|
259
|
-
* @type {
|
|
250
|
+
* @type {Array<MediaModel>}
|
|
260
251
|
* @memberof HospitalModel
|
|
261
252
|
*/
|
|
262
|
-
'
|
|
253
|
+
'medias'?: Array<MediaModel> | null;
|
|
263
254
|
/**
|
|
264
255
|
*
|
|
265
|
-
* @type {
|
|
256
|
+
* @type {LocationModel}
|
|
266
257
|
* @memberof HospitalModel
|
|
267
258
|
*/
|
|
268
|
-
'
|
|
259
|
+
'location'?: LocationModel;
|
|
269
260
|
/**
|
|
270
261
|
*
|
|
271
|
-
* @type {
|
|
262
|
+
* @type {Array<HospitalTagItemModel>}
|
|
272
263
|
* @memberof HospitalModel
|
|
273
264
|
*/
|
|
274
|
-
'
|
|
265
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
275
266
|
/**
|
|
276
267
|
*
|
|
277
|
-
* @type {
|
|
268
|
+
* @type {AppointmentOptionModel}
|
|
278
269
|
* @memberof HospitalModel
|
|
279
270
|
*/
|
|
280
|
-
'
|
|
271
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
281
272
|
/**
|
|
282
273
|
*
|
|
283
274
|
* @type {string}
|
|
284
275
|
* @memberof HospitalModel
|
|
285
276
|
*/
|
|
286
|
-
'
|
|
277
|
+
'gradeId'?: string | null;
|
|
287
278
|
/**
|
|
288
279
|
*
|
|
289
|
-
* @type {
|
|
280
|
+
* @type {GradeModel}
|
|
290
281
|
* @memberof HospitalModel
|
|
291
282
|
*/
|
|
292
|
-
'
|
|
283
|
+
'grade'?: GradeModel;
|
|
293
284
|
/**
|
|
294
285
|
*
|
|
295
|
-
* @type {
|
|
286
|
+
* @type {boolean}
|
|
296
287
|
* @memberof HospitalModel
|
|
297
288
|
*/
|
|
298
|
-
'
|
|
289
|
+
'paymentEnabled'?: boolean;
|
|
299
290
|
/**
|
|
300
291
|
*
|
|
301
292
|
* @type {string}
|
|
302
293
|
* @memberof HospitalModel
|
|
303
294
|
*/
|
|
304
|
-
'
|
|
305
|
-
/**
|
|
306
|
-
*
|
|
307
|
-
* @type {Array<HospitalLanguageItemModel>}
|
|
308
|
-
* @memberof HospitalModel
|
|
309
|
-
*/
|
|
310
|
-
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
311
|
-
/**
|
|
312
|
-
*
|
|
313
|
-
* @type {FeatureModel}
|
|
314
|
-
* @memberof HospitalModel
|
|
315
|
-
*/
|
|
316
|
-
'feature'?: FeatureModel;
|
|
295
|
+
'appointmentCurrency'?: string | null;
|
|
317
296
|
/**
|
|
318
297
|
*
|
|
319
|
-
* @type {Array<
|
|
298
|
+
* @type {Array<PaymentMethod>}
|
|
320
299
|
* @memberof HospitalModel
|
|
321
300
|
*/
|
|
322
|
-
'
|
|
301
|
+
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
323
302
|
/**
|
|
324
303
|
*
|
|
325
304
|
* @type {string}
|
package/src/models/index.ts
CHANGED
|
@@ -421,6 +421,7 @@ export * from './specialty-model';
|
|
|
421
421
|
export * from './specialty-type-item-model';
|
|
422
422
|
export * from './specialty-type-model';
|
|
423
423
|
export * from './specialty-type-simple-item-model';
|
|
424
|
+
export * from './specialty-type-sorting-command';
|
|
424
425
|
export * from './specialty-types-model';
|
|
425
426
|
export * from './specialty-types-simple-model';
|
|
426
427
|
export * from './string-filter-types';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SortingItemModel } from './sorting-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface SpecialtyTypeSortingCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface SpecialtyTypeSortingCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<SortingItemModel>}
|
|
29
|
+
* @memberof SpecialtyTypeSortingCommand
|
|
30
|
+
*/
|
|
31
|
+
'items'?: Array<SortingItemModel> | null;
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -26,6 +26,12 @@ import { MediaModel } from './media-model';
|
|
|
26
26
|
* @interface UpdateSpecialtyTypeCommand
|
|
27
27
|
*/
|
|
28
28
|
export interface UpdateSpecialtyTypeCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
29
35
|
/**
|
|
30
36
|
*
|
|
31
37
|
* @type {string}
|
|
@@ -88,10 +94,10 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
88
94
|
'customStyle'?: string | null;
|
|
89
95
|
/**
|
|
90
96
|
*
|
|
91
|
-
* @type {
|
|
97
|
+
* @type {number}
|
|
92
98
|
* @memberof UpdateSpecialtyTypeCommand
|
|
93
99
|
*/
|
|
94
|
-
'
|
|
100
|
+
'order'?: number | null;
|
|
95
101
|
/**
|
|
96
102
|
*
|
|
97
103
|
* @type {boolean}
|