ch-api-client-typescript2 5.43.12 → 5.43.15
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 +75 -0
- package/lib/models/doctor-specialty-sub-document-model.d.ts +283 -0
- package/lib/models/doctor-specialty-sub-document-model.d.ts.map +1 -1
- package/lib/models/doctor-specialty-translation-item-document-model.d.ts +37 -0
- package/lib/models/doctor-specialty-translation-item-document-model.d.ts.map +1 -0
- package/lib/models/doctor-specialty-translation-item-document-model.js +15 -0
- package/lib/models/hospital-specialty-sub-document-model.d.ts +283 -0
- package/lib/models/hospital-specialty-sub-document-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-translation-item-document-model.d.ts +43 -0
- package/lib/models/hospital-specialty-translation-item-document-model.d.ts.map +1 -0
- package/lib/models/hospital-specialty-translation-item-document-model.js +15 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.d.ts +37 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.d.ts.map +1 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.js +15 -0
- package/lib/models/validate-specialty-names-result.d.ts +25 -0
- package/lib/models/validate-specialty-names-result.d.ts.map +1 -0
- package/lib/models/validate-specialty-names-result.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/specialty-types-api.ts +87 -0
- package/src/models/doctor-specialty-sub-document-model.ts +285 -0
- package/src/models/doctor-specialty-translation-item-document-model.ts +42 -0
- package/src/models/hospital-specialty-sub-document-model.ts +285 -0
- package/src/models/hospital-specialty-translation-item-document-model.ts +48 -0
- package/src/models/index.ts +4 -0
- package/src/models/validate-specialty-names-by-specialty-type-command.ts +42 -0
- package/src/models/validate-specialty-names-result.ts +30 -0
|
@@ -19,11 +19,21 @@ import { MediasModel } from '../models';
|
|
|
19
19
|
import { SpecialtyTypeModel } from '../models';
|
|
20
20
|
import { SpecialtyTypesModel } from '../models';
|
|
21
21
|
import { SpecialtyTypesSimpleModel } from '../models';
|
|
22
|
+
import { ValidateSpecialtyNamesBySpecialtyTypeCommand } from '../models';
|
|
23
|
+
import { ValidateSpecialtyNamesResult } from '../models';
|
|
22
24
|
/**
|
|
23
25
|
* SpecialtyTypesApi - axios parameter creator
|
|
24
26
|
* @export
|
|
25
27
|
*/
|
|
26
28
|
export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
32
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
apiV2SpecialtytypesCurationsPost: (validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27
37
|
/**
|
|
28
38
|
*
|
|
29
39
|
* @summary Get all Departments.
|
|
@@ -115,6 +125,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
115
125
|
* @export
|
|
116
126
|
*/
|
|
117
127
|
export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
131
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateSpecialtyNamesResult>>;
|
|
118
136
|
/**
|
|
119
137
|
*
|
|
120
138
|
* @summary Get all Departments.
|
|
@@ -206,6 +224,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
206
224
|
* @export
|
|
207
225
|
*/
|
|
208
226
|
export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
230
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
231
|
+
* @param {*} [options] Override http request option.
|
|
232
|
+
* @throws {RequiredError}
|
|
233
|
+
*/
|
|
234
|
+
apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options?: any): AxiosPromise<ValidateSpecialtyNamesResult>;
|
|
209
235
|
/**
|
|
210
236
|
*
|
|
211
237
|
* @summary Get all Departments.
|
|
@@ -292,6 +318,19 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
292
318
|
*/
|
|
293
319
|
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
294
320
|
};
|
|
321
|
+
/**
|
|
322
|
+
* Request parameters for apiV2SpecialtytypesCurationsPost operation in SpecialtyTypesApi.
|
|
323
|
+
* @export
|
|
324
|
+
* @interface SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest
|
|
325
|
+
*/
|
|
326
|
+
export interface SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest {
|
|
327
|
+
/**
|
|
328
|
+
*
|
|
329
|
+
* @type {ValidateSpecialtyNamesBySpecialtyTypeCommand}
|
|
330
|
+
* @memberof SpecialtyTypesApiApiV2SpecialtytypesCurationsPost
|
|
331
|
+
*/
|
|
332
|
+
readonly validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand;
|
|
333
|
+
}
|
|
295
334
|
/**
|
|
296
335
|
* Request parameters for apiV2SpecialtytypesGet operation in SpecialtyTypesApi.
|
|
297
336
|
* @export
|
|
@@ -599,6 +638,15 @@ export interface SpecialtyTypesApiApiV2SpecialtytypesSpecialtyTypeIdMediasMediaI
|
|
|
599
638
|
* @extends {BaseAPI}
|
|
600
639
|
*/
|
|
601
640
|
export declare class SpecialtyTypesApi extends BaseAPI {
|
|
641
|
+
/**
|
|
642
|
+
*
|
|
643
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
644
|
+
* @param {SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest} requestParameters Request parameters.
|
|
645
|
+
* @param {*} [options] Override http request option.
|
|
646
|
+
* @throws {RequiredError}
|
|
647
|
+
* @memberof SpecialtyTypesApi
|
|
648
|
+
*/
|
|
649
|
+
apiV2SpecialtytypesCurationsPost(requestParameters?: SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateSpecialtyNamesResult, any>>;
|
|
602
650
|
/**
|
|
603
651
|
*
|
|
604
652
|
* @summary Get all Departments.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"specialty-types-api.d.ts","sourceRoot":"","sources":["../../src/api/specialty-types-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,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"specialty-types-api.d.ts","sourceRoot":"","sources":["../../src/api/specialty-types-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -92,6 +92,38 @@ var base_1 = require("../base");
|
|
|
92
92
|
var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
98
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
99
|
+
* @param {*} [options] Override http request option.
|
|
100
|
+
* @throws {RequiredError}
|
|
101
|
+
*/
|
|
102
|
+
apiV2SpecialtytypesCurationsPost: function (validateSpecialtyNamesBySpecialtyTypeCommand, options) {
|
|
103
|
+
if (options === void 0) { options = {}; }
|
|
104
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
105
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
106
|
+
return __generator(this, function (_a) {
|
|
107
|
+
localVarPath = "/api/v2/specialtytypes/curations";
|
|
108
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
109
|
+
if (configuration) {
|
|
110
|
+
baseOptions = configuration.baseOptions;
|
|
111
|
+
}
|
|
112
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
113
|
+
localVarHeaderParameter = {};
|
|
114
|
+
localVarQueryParameter = {};
|
|
115
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
116
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
117
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
118
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
119
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(validateSpecialtyNamesBySpecialtyTypeCommand, localVarRequestOptions, configuration);
|
|
120
|
+
return [2 /*return*/, {
|
|
121
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
122
|
+
options: localVarRequestOptions,
|
|
123
|
+
}];
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
},
|
|
95
127
|
/**
|
|
96
128
|
*
|
|
97
129
|
* @summary Get all Departments.
|
|
@@ -458,6 +490,26 @@ exports.SpecialtyTypesApiAxiosParamCreator = SpecialtyTypesApiAxiosParamCreator;
|
|
|
458
490
|
var SpecialtyTypesApiFp = function (configuration) {
|
|
459
491
|
var localVarAxiosParamCreator = (0, exports.SpecialtyTypesApiAxiosParamCreator)(configuration);
|
|
460
492
|
return {
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
496
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
497
|
+
* @param {*} [options] Override http request option.
|
|
498
|
+
* @throws {RequiredError}
|
|
499
|
+
*/
|
|
500
|
+
apiV2SpecialtytypesCurationsPost: function (validateSpecialtyNamesBySpecialtyTypeCommand, options) {
|
|
501
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
502
|
+
var localVarAxiosArgs;
|
|
503
|
+
return __generator(this, function (_a) {
|
|
504
|
+
switch (_a.label) {
|
|
505
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand, options)];
|
|
506
|
+
case 1:
|
|
507
|
+
localVarAxiosArgs = _a.sent();
|
|
508
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
509
|
+
}
|
|
510
|
+
});
|
|
511
|
+
});
|
|
512
|
+
},
|
|
461
513
|
/**
|
|
462
514
|
*
|
|
463
515
|
* @summary Get all Departments.
|
|
@@ -625,6 +677,16 @@ exports.SpecialtyTypesApiFp = SpecialtyTypesApiFp;
|
|
|
625
677
|
var SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
|
|
626
678
|
var localVarFp = (0, exports.SpecialtyTypesApiFp)(configuration);
|
|
627
679
|
return {
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
683
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
684
|
+
* @param {*} [options] Override http request option.
|
|
685
|
+
* @throws {RequiredError}
|
|
686
|
+
*/
|
|
687
|
+
apiV2SpecialtytypesCurationsPost: function (validateSpecialtyNamesBySpecialtyTypeCommand, options) {
|
|
688
|
+
return localVarFp.apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand, options).then(function (request) { return request(axios, basePath); });
|
|
689
|
+
},
|
|
628
690
|
/**
|
|
629
691
|
*
|
|
630
692
|
* @summary Get all Departments.
|
|
@@ -736,6 +798,19 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
|
|
|
736
798
|
function SpecialtyTypesApi() {
|
|
737
799
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
738
800
|
}
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
804
|
+
* @param {SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest} requestParameters Request parameters.
|
|
805
|
+
* @param {*} [options] Override http request option.
|
|
806
|
+
* @throws {RequiredError}
|
|
807
|
+
* @memberof SpecialtyTypesApi
|
|
808
|
+
*/
|
|
809
|
+
SpecialtyTypesApi.prototype.apiV2SpecialtytypesCurationsPost = function (requestParameters, options) {
|
|
810
|
+
var _this = this;
|
|
811
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
812
|
+
return (0, exports.SpecialtyTypesApiFp)(this.configuration).apiV2SpecialtytypesCurationsPost(requestParameters.validateSpecialtyNamesBySpecialtyTypeCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
813
|
+
};
|
|
739
814
|
/**
|
|
740
815
|
*
|
|
741
816
|
* @summary Get all Departments.
|
|
@@ -9,12 +9,295 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { DoctorSpecialtyTranslationItemDocumentModel } from './doctor-specialty-translation-item-document-model';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
15
16
|
* @interface DoctorSpecialtySubDocumentModel
|
|
16
17
|
*/
|
|
17
18
|
export interface DoctorSpecialtySubDocumentModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
22
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
23
|
+
*/
|
|
24
|
+
'en'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
28
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
29
|
+
*/
|
|
30
|
+
'ru'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
34
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
35
|
+
*/
|
|
36
|
+
'zh'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
40
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
41
|
+
*/
|
|
42
|
+
'es'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
46
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
47
|
+
*/
|
|
48
|
+
'id'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
52
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
53
|
+
*/
|
|
54
|
+
'pt'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
58
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
59
|
+
*/
|
|
60
|
+
'fr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
64
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
65
|
+
*/
|
|
66
|
+
'vi'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
70
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
71
|
+
*/
|
|
72
|
+
'th'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
76
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
77
|
+
*/
|
|
78
|
+
'ar'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
82
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
83
|
+
*/
|
|
84
|
+
'ko'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
88
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
89
|
+
*/
|
|
90
|
+
'bg'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
94
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
95
|
+
*/
|
|
96
|
+
'cs'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
100
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
101
|
+
*/
|
|
102
|
+
'de'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
106
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
107
|
+
*/
|
|
108
|
+
'hi'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
112
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
113
|
+
*/
|
|
114
|
+
'hr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
118
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
119
|
+
*/
|
|
120
|
+
'hu'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
124
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
125
|
+
*/
|
|
126
|
+
'it'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
130
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
131
|
+
*/
|
|
132
|
+
'ja'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
136
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
137
|
+
*/
|
|
138
|
+
'kk'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
142
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
143
|
+
*/
|
|
144
|
+
'ky'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
148
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
149
|
+
*/
|
|
150
|
+
'lo'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
154
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
155
|
+
*/
|
|
156
|
+
'lt'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
160
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
161
|
+
*/
|
|
162
|
+
'lv'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
166
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
167
|
+
*/
|
|
168
|
+
'my'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
169
|
+
/**
|
|
170
|
+
*
|
|
171
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
172
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
173
|
+
*/
|
|
174
|
+
'nl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
175
|
+
/**
|
|
176
|
+
*
|
|
177
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
178
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
179
|
+
*/
|
|
180
|
+
'pl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
184
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
185
|
+
*/
|
|
186
|
+
'ro'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
187
|
+
/**
|
|
188
|
+
*
|
|
189
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
190
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
191
|
+
*/
|
|
192
|
+
'sl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
196
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
197
|
+
*/
|
|
198
|
+
'sv'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
202
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
203
|
+
*/
|
|
204
|
+
'sw'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
208
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
209
|
+
*/
|
|
210
|
+
'tr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
214
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
215
|
+
*/
|
|
216
|
+
'uk'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
220
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
221
|
+
*/
|
|
222
|
+
'uz'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
226
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
227
|
+
*/
|
|
228
|
+
'bn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
232
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
233
|
+
*/
|
|
234
|
+
'az'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
235
|
+
/**
|
|
236
|
+
*
|
|
237
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
238
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
239
|
+
*/
|
|
240
|
+
'ka'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
241
|
+
/**
|
|
242
|
+
*
|
|
243
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
244
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
245
|
+
*/
|
|
246
|
+
'mn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
247
|
+
/**
|
|
248
|
+
*
|
|
249
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
250
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
251
|
+
*/
|
|
252
|
+
'te'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
256
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
257
|
+
*/
|
|
258
|
+
'kn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
262
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
263
|
+
*/
|
|
264
|
+
'ta'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
265
|
+
/**
|
|
266
|
+
*
|
|
267
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
268
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
269
|
+
*/
|
|
270
|
+
'ml'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
274
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
275
|
+
*/
|
|
276
|
+
'mr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
280
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
281
|
+
*/
|
|
282
|
+
'pa'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
286
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
287
|
+
*/
|
|
288
|
+
'gu'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
292
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
293
|
+
*/
|
|
294
|
+
'ur'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
298
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
299
|
+
*/
|
|
300
|
+
'or'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
18
301
|
/**
|
|
19
302
|
*
|
|
20
303
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor-specialty-sub-document-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-specialty-sub-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"doctor-specialty-sub-document-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-specialty-sub-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,2CAA2C,EAAE,MAAM,oDAAoD,CAAC;AAEjH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,2CAA2C,CAAC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface DoctorSpecialtyTranslationItemDocumentModel
|
|
16
|
+
*/
|
|
17
|
+
export interface DoctorSpecialtyTranslationItemDocumentModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
22
|
+
*/
|
|
23
|
+
'Slug'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
28
|
+
*/
|
|
29
|
+
'Name'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
34
|
+
*/
|
|
35
|
+
'SpecialtyTypeName'?: string | null;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=doctor-specialty-translation-item-document-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"doctor-specialty-translation-item-document-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-specialty-translation-item-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2CAA2C;IACxD;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACvC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|