ch-admin-api-client-typescript 5.13.6 → 5.14.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.
- package/lib/api/countries-api.d.ts +9 -9
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +10 -10
- package/lib/api/curations-api.d.ts +448 -0
- package/lib/api/curations-api.d.ts.map +1 -0
- package/lib/api/curations-api.js +785 -0
- package/lib/api/doctor-affiliations-api.d.ts +9 -9
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +10 -10
- package/lib/api/doctors-api.d.ts +9 -9
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +10 -10
- package/lib/api/hospitals-api.d.ts +49 -49
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +54 -54
- package/lib/api/patients-api.d.ts +10 -10
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +11 -11
- package/lib/api/specialties-api.d.ts +9 -9
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +10 -10
- package/lib/api/specialty-types-api.d.ts +9 -9
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +10 -10
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/create-curation-command.d.ts +103 -0
- package/lib/models/create-curation-command.d.ts.map +1 -0
- package/lib/models/create-curation-command.js +15 -0
- package/lib/models/curation-model.d.ts +104 -0
- package/lib/models/curation-model.d.ts.map +1 -0
- package/lib/models/curation-model.js +15 -0
- package/lib/models/curations-model.d.ts +33 -0
- package/lib/models/curations-model.d.ts.map +1 -0
- package/lib/models/curations-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/specialty-type-item-model.d.ts +0 -6
- package/lib/models/specialty-type-item-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +0 -6
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/update-curation-command.d.ts +91 -0
- package/lib/models/update-curation-command.d.ts.map +1 -0
- package/lib/models/update-curation-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +5 -0
- package/src/api/countries-api.ts +14 -14
- package/src/api/curations-api.ts +795 -0
- package/src/api/doctor-affiliations-api.ts +14 -14
- package/src/api/doctors-api.ts +14 -14
- package/src/api/hospitals-api.ts +78 -78
- package/src/api/patients-api.ts +16 -16
- package/src/api/specialties-api.ts +14 -14
- package/src/api/specialty-types-api.ts +14 -14
- package/src/api.ts +1 -0
- package/src/models/create-curation-command.ts +108 -0
- package/src/models/curation-model.ts +111 -0
- package/src/models/curations-model.ts +42 -0
- package/src/models/index.ts +4 -0
- package/src/models/specialty-type-item-model.ts +0 -6
- package/src/models/specialty-type-model.ts +0 -6
- package/src/models/update-curation-command.ts +96 -0
package/src/api/patients-api.ts
CHANGED
|
@@ -230,12 +230,12 @@ export const PatientsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
230
230
|
* @param {*} [options] Override http request option.
|
|
231
231
|
* @throws {RequiredError}
|
|
232
232
|
*/
|
|
233
|
-
|
|
233
|
+
apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut: async (patientId: string, hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
234
234
|
// verify required parameter 'patientId' is not null or undefined
|
|
235
|
-
assertParamExists('
|
|
235
|
+
assertParamExists('apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut', 'patientId', patientId)
|
|
236
236
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
237
|
-
assertParamExists('
|
|
238
|
-
const localVarPath = `/api/v1/patients/{patientId}/affiliations/{hospitalId}/
|
|
237
|
+
assertParamExists('apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut', 'hospitalId', hospitalId)
|
|
238
|
+
const localVarPath = `/api/v1/patients/{patientId}/affiliations/{hospitalId}/reactivate`
|
|
239
239
|
.replace(`{${"patientId"}}`, encodeURIComponent(String(patientId)))
|
|
240
240
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
241
241
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -489,8 +489,8 @@ export const PatientsApiFp = function(configuration?: Configuration) {
|
|
|
489
489
|
* @param {*} [options] Override http request option.
|
|
490
490
|
* @throws {RequiredError}
|
|
491
491
|
*/
|
|
492
|
-
async
|
|
493
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
492
|
+
async apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(patientId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
493
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(patientId, hospitalId, options);
|
|
494
494
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
495
495
|
},
|
|
496
496
|
/**
|
|
@@ -600,8 +600,8 @@ export const PatientsApiFactory = function (configuration?: Configuration, baseP
|
|
|
600
600
|
* @param {*} [options] Override http request option.
|
|
601
601
|
* @throws {RequiredError}
|
|
602
602
|
*/
|
|
603
|
-
|
|
604
|
-
return localVarFp.
|
|
603
|
+
apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(patientId: string, hospitalId: string, options?: any): AxiosPromise<boolean> {
|
|
604
|
+
return localVarFp.apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(patientId, hospitalId, options).then((request) => request(axios, basePath));
|
|
605
605
|
},
|
|
606
606
|
/**
|
|
607
607
|
*
|
|
@@ -782,22 +782,22 @@ export interface PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdPostRequ
|
|
|
782
782
|
}
|
|
783
783
|
|
|
784
784
|
/**
|
|
785
|
-
* Request parameters for
|
|
785
|
+
* Request parameters for apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut operation in PatientsApi.
|
|
786
786
|
* @export
|
|
787
|
-
* @interface
|
|
787
|
+
* @interface PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePutRequest
|
|
788
788
|
*/
|
|
789
|
-
export interface
|
|
789
|
+
export interface PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePutRequest {
|
|
790
790
|
/**
|
|
791
791
|
*
|
|
792
792
|
* @type {string}
|
|
793
|
-
* @memberof
|
|
793
|
+
* @memberof PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut
|
|
794
794
|
*/
|
|
795
795
|
readonly patientId: string
|
|
796
796
|
|
|
797
797
|
/**
|
|
798
798
|
*
|
|
799
799
|
* @type {string}
|
|
800
|
-
* @memberof
|
|
800
|
+
* @memberof PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut
|
|
801
801
|
*/
|
|
802
802
|
readonly hospitalId: string
|
|
803
803
|
}
|
|
@@ -918,13 +918,13 @@ export class PatientsApi extends BaseAPI {
|
|
|
918
918
|
/**
|
|
919
919
|
*
|
|
920
920
|
* @summary Reactivate patient affiliation
|
|
921
|
-
* @param {
|
|
921
|
+
* @param {PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePutRequest} requestParameters Request parameters.
|
|
922
922
|
* @param {*} [options] Override http request option.
|
|
923
923
|
* @throws {RequiredError}
|
|
924
924
|
* @memberof PatientsApi
|
|
925
925
|
*/
|
|
926
|
-
public
|
|
927
|
-
return PatientsApiFp(this.configuration).
|
|
926
|
+
public apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(requestParameters: PatientsApiApiV1PatientsPatientIdAffiliationsHospitalIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
927
|
+
return PatientsApiFp(this.configuration).apiV1PatientsPatientIdAffiliationsHospitalIdReactivatePut(requestParameters.patientId, requestParameters.hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
928
928
|
}
|
|
929
929
|
|
|
930
930
|
/**
|
|
@@ -731,10 +731,10 @@ export const SpecialtiesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
731
731
|
* @param {*} [options] Override http request option.
|
|
732
732
|
* @throws {RequiredError}
|
|
733
733
|
*/
|
|
734
|
-
|
|
734
|
+
apiV1SpecialtiesSpecialtyIdReactivatePut: async (specialtyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
735
735
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
736
|
-
assertParamExists('
|
|
737
|
-
const localVarPath = `/api/v1/specialties/{specialtyId}/
|
|
736
|
+
assertParamExists('apiV1SpecialtiesSpecialtyIdReactivatePut', 'specialtyId', specialtyId)
|
|
737
|
+
const localVarPath = `/api/v1/specialties/{specialtyId}/reactivate`
|
|
738
738
|
.replace(`{${"specialtyId"}}`, encodeURIComponent(String(specialtyId)));
|
|
739
739
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
740
740
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1038,8 +1038,8 @@ export const SpecialtiesApiFp = function(configuration?: Configuration) {
|
|
|
1038
1038
|
* @param {*} [options] Override http request option.
|
|
1039
1039
|
* @throws {RequiredError}
|
|
1040
1040
|
*/
|
|
1041
|
-
async
|
|
1042
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1041
|
+
async apiV1SpecialtiesSpecialtyIdReactivatePut(specialtyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
1042
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtiesSpecialtyIdReactivatePut(specialtyId, options);
|
|
1043
1043
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1044
1044
|
},
|
|
1045
1045
|
/**
|
|
@@ -1245,8 +1245,8 @@ export const SpecialtiesApiFactory = function (configuration?: Configuration, ba
|
|
|
1245
1245
|
* @param {*} [options] Override http request option.
|
|
1246
1246
|
* @throws {RequiredError}
|
|
1247
1247
|
*/
|
|
1248
|
-
|
|
1249
|
-
return localVarFp.
|
|
1248
|
+
apiV1SpecialtiesSpecialtyIdReactivatePut(specialtyId: string, options?: any): AxiosPromise<boolean> {
|
|
1249
|
+
return localVarFp.apiV1SpecialtiesSpecialtyIdReactivatePut(specialtyId, options).then((request) => request(axios, basePath));
|
|
1250
1250
|
},
|
|
1251
1251
|
/**
|
|
1252
1252
|
*
|
|
@@ -1736,15 +1736,15 @@ export interface SpecialtiesApiApiV1SpecialtiesSpecialtyIdPutRequest {
|
|
|
1736
1736
|
}
|
|
1737
1737
|
|
|
1738
1738
|
/**
|
|
1739
|
-
* Request parameters for
|
|
1739
|
+
* Request parameters for apiV1SpecialtiesSpecialtyIdReactivatePut operation in SpecialtiesApi.
|
|
1740
1740
|
* @export
|
|
1741
|
-
* @interface
|
|
1741
|
+
* @interface SpecialtiesApiApiV1SpecialtiesSpecialtyIdReactivatePutRequest
|
|
1742
1742
|
*/
|
|
1743
|
-
export interface
|
|
1743
|
+
export interface SpecialtiesApiApiV1SpecialtiesSpecialtyIdReactivatePutRequest {
|
|
1744
1744
|
/**
|
|
1745
1745
|
*
|
|
1746
1746
|
* @type {string}
|
|
1747
|
-
* @memberof
|
|
1747
|
+
* @memberof SpecialtiesApiApiV1SpecialtiesSpecialtyIdReactivatePut
|
|
1748
1748
|
*/
|
|
1749
1749
|
readonly specialtyId: string
|
|
1750
1750
|
}
|
|
@@ -1945,13 +1945,13 @@ export class SpecialtiesApi extends BaseAPI {
|
|
|
1945
1945
|
/**
|
|
1946
1946
|
*
|
|
1947
1947
|
* @summary Reactivate Specialty.
|
|
1948
|
-
* @param {
|
|
1948
|
+
* @param {SpecialtiesApiApiV1SpecialtiesSpecialtyIdReactivatePutRequest} requestParameters Request parameters.
|
|
1949
1949
|
* @param {*} [options] Override http request option.
|
|
1950
1950
|
* @throws {RequiredError}
|
|
1951
1951
|
* @memberof SpecialtiesApi
|
|
1952
1952
|
*/
|
|
1953
|
-
public
|
|
1954
|
-
return SpecialtiesApiFp(this.configuration).
|
|
1953
|
+
public apiV1SpecialtiesSpecialtyIdReactivatePut(requestParameters: SpecialtiesApiApiV1SpecialtiesSpecialtyIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
1954
|
+
return SpecialtiesApiFp(this.configuration).apiV1SpecialtiesSpecialtyIdReactivatePut(requestParameters.specialtyId, options).then((request) => request(this.axios, this.basePath));
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
1957
|
/**
|
|
@@ -731,10 +731,10 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
731
731
|
* @param {*} [options] Override http request option.
|
|
732
732
|
* @throws {RequiredError}
|
|
733
733
|
*/
|
|
734
|
-
|
|
734
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut: async (specialtyTypeId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
735
735
|
// verify required parameter 'specialtyTypeId' is not null or undefined
|
|
736
|
-
assertParamExists('
|
|
737
|
-
const localVarPath = `/api/v1/specialtytypes/{specialtyTypeId}/
|
|
736
|
+
assertParamExists('apiV1SpecialtytypesSpecialtyTypeIdReactivatePut', 'specialtyTypeId', specialtyTypeId)
|
|
737
|
+
const localVarPath = `/api/v1/specialtytypes/{specialtyTypeId}/reactivate`
|
|
738
738
|
.replace(`{${"specialtyTypeId"}}`, encodeURIComponent(String(specialtyTypeId)));
|
|
739
739
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
740
740
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1038,8 +1038,8 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
1038
1038
|
* @param {*} [options] Override http request option.
|
|
1039
1039
|
* @throws {RequiredError}
|
|
1040
1040
|
*/
|
|
1041
|
-
async
|
|
1042
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1041
|
+
async apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
1042
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId, options);
|
|
1043
1043
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1044
1044
|
},
|
|
1045
1045
|
/**
|
|
@@ -1245,8 +1245,8 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
1245
1245
|
* @param {*} [options] Override http request option.
|
|
1246
1246
|
* @throws {RequiredError}
|
|
1247
1247
|
*/
|
|
1248
|
-
|
|
1249
|
-
return localVarFp.
|
|
1248
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId: string, options?: any): AxiosPromise<boolean> {
|
|
1249
|
+
return localVarFp.apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId, options).then((request) => request(axios, basePath));
|
|
1250
1250
|
},
|
|
1251
1251
|
/**
|
|
1252
1252
|
*
|
|
@@ -1736,15 +1736,15 @@ export interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdPutRequest {
|
|
|
1736
1736
|
}
|
|
1737
1737
|
|
|
1738
1738
|
/**
|
|
1739
|
-
* Request parameters for
|
|
1739
|
+
* Request parameters for apiV1SpecialtytypesSpecialtyTypeIdReactivatePut operation in SpecialtyTypesApi.
|
|
1740
1740
|
* @export
|
|
1741
|
-
* @interface
|
|
1741
|
+
* @interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest
|
|
1742
1742
|
*/
|
|
1743
|
-
export interface
|
|
1743
|
+
export interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest {
|
|
1744
1744
|
/**
|
|
1745
1745
|
*
|
|
1746
1746
|
* @type {string}
|
|
1747
|
-
* @memberof
|
|
1747
|
+
* @memberof SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePut
|
|
1748
1748
|
*/
|
|
1749
1749
|
readonly specialtyTypeId: string
|
|
1750
1750
|
}
|
|
@@ -1945,13 +1945,13 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
1945
1945
|
/**
|
|
1946
1946
|
*
|
|
1947
1947
|
* @summary Reactivate Department (SpecialtyType).
|
|
1948
|
-
* @param {
|
|
1948
|
+
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest} requestParameters Request parameters.
|
|
1949
1949
|
* @param {*} [options] Override http request option.
|
|
1950
1950
|
* @throws {RequiredError}
|
|
1951
1951
|
* @memberof SpecialtyTypesApi
|
|
1952
1952
|
*/
|
|
1953
|
-
public
|
|
1954
|
-
return SpecialtyTypesApiFp(this.configuration).
|
|
1953
|
+
public apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
1954
|
+
return SpecialtyTypesApiFp(this.configuration).apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(requestParameters.specialtyTypeId, options).then((request) => request(this.axios, this.basePath));
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
1957
|
/**
|
package/src/api.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './api/communications-api';
|
|
|
28
28
|
export * from './api/consultations-api';
|
|
29
29
|
export * from './api/contributors-api';
|
|
30
30
|
export * from './api/countries-api';
|
|
31
|
+
export * from './api/curations-api';
|
|
31
32
|
export * from './api/dash-board-api';
|
|
32
33
|
export * from './api/deals-api';
|
|
33
34
|
export * from './api/dev-supports-api';
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCurationCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCurationCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateCurationCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCurationCommand
|
|
33
|
+
*/
|
|
34
|
+
'countryId'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateCurationCommand
|
|
39
|
+
*/
|
|
40
|
+
'specialtyTypeId'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateCurationCommand
|
|
45
|
+
*/
|
|
46
|
+
'title'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateCurationCommand
|
|
51
|
+
*/
|
|
52
|
+
'searchTerm'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateCurationCommand
|
|
57
|
+
*/
|
|
58
|
+
'slug'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateCurationCommand
|
|
63
|
+
*/
|
|
64
|
+
'url'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateCurationCommand
|
|
69
|
+
*/
|
|
70
|
+
'description'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CreateCurationCommand
|
|
75
|
+
*/
|
|
76
|
+
'overview'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CreateCurationCommand
|
|
81
|
+
*/
|
|
82
|
+
'content'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreateCurationCommand
|
|
87
|
+
*/
|
|
88
|
+
'photo'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof CreateCurationCommand
|
|
93
|
+
*/
|
|
94
|
+
'photoThumbnail'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof CreateCurationCommand
|
|
99
|
+
*/
|
|
100
|
+
'order'?: number;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof CreateCurationCommand
|
|
105
|
+
*/
|
|
106
|
+
'isConfirmed'?: boolean;
|
|
107
|
+
}
|
|
108
|
+
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CurationModel
|
|
24
|
+
*/
|
|
25
|
+
export interface CurationModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CurationModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CurationModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CurationModel
|
|
42
|
+
*/
|
|
43
|
+
'title'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CurationModel
|
|
48
|
+
*/
|
|
49
|
+
'searchTerm'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CurationModel
|
|
54
|
+
*/
|
|
55
|
+
'slug'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CurationModel
|
|
60
|
+
*/
|
|
61
|
+
'url'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CurationModel
|
|
66
|
+
*/
|
|
67
|
+
'description'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CurationModel
|
|
72
|
+
*/
|
|
73
|
+
'overview'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof CurationModel
|
|
78
|
+
*/
|
|
79
|
+
'content'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof CurationModel
|
|
84
|
+
*/
|
|
85
|
+
'photo'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof CurationModel
|
|
90
|
+
*/
|
|
91
|
+
'photoThumbnail'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof CurationModel
|
|
96
|
+
*/
|
|
97
|
+
'order'?: number;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {boolean}
|
|
101
|
+
* @memberof CurationModel
|
|
102
|
+
*/
|
|
103
|
+
'isConfirmed'?: boolean;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {AuditableEntityModel}
|
|
107
|
+
* @memberof CurationModel
|
|
108
|
+
*/
|
|
109
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
110
|
+
}
|
|
111
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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 { CurationModel } from './curation-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface CurationsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface CurationsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<CurationModel>}
|
|
32
|
+
* @memberof CurationsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<CurationModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof CurationsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -117,6 +117,7 @@ export * from './create-chat-user-command';
|
|
|
117
117
|
export * from './create-contributor-command';
|
|
118
118
|
export * from './create-contributor-sns-handle-command';
|
|
119
119
|
export * from './create-country-command';
|
|
120
|
+
export * from './create-curation-command';
|
|
120
121
|
export * from './create-deal-command';
|
|
121
122
|
export * from './create-deal-package-command';
|
|
122
123
|
export * from './create-deal-service-command';
|
|
@@ -163,6 +164,8 @@ export * from './create-sub-account-command';
|
|
|
163
164
|
export * from './create-survey-form-command';
|
|
164
165
|
export * from './create-tag-command';
|
|
165
166
|
export * from './create-template-version-command';
|
|
167
|
+
export * from './curation-model';
|
|
168
|
+
export * from './curations-model';
|
|
166
169
|
export * from './dash-board-model';
|
|
167
170
|
export * from './day-of-week';
|
|
168
171
|
export * from './deal-item-model';
|
|
@@ -461,6 +464,7 @@ export * from './update-chat-user-command';
|
|
|
461
464
|
export * from './update-contributor-command';
|
|
462
465
|
export * from './update-contributor-sns-handle-command';
|
|
463
466
|
export * from './update-country-command';
|
|
467
|
+
export * from './update-curation-command';
|
|
464
468
|
export * from './update-deal-command';
|
|
465
469
|
export * from './update-deal-package-command';
|
|
466
470
|
export * from './update-deal-service-command';
|
|
@@ -95,12 +95,6 @@ export interface SpecialtyTypeItemModel {
|
|
|
95
95
|
* @memberof SpecialtyTypeItemModel
|
|
96
96
|
*/
|
|
97
97
|
'marketingType'?: MarketingType;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {number}
|
|
101
|
-
* @memberof SpecialtyTypeItemModel
|
|
102
|
-
*/
|
|
103
|
-
'specialtiesCount'?: number;
|
|
104
98
|
/**
|
|
105
99
|
*
|
|
106
100
|
* @type {Array<MediaModel>}
|
|
@@ -95,12 +95,6 @@ export interface SpecialtyTypeModel {
|
|
|
95
95
|
* @memberof SpecialtyTypeModel
|
|
96
96
|
*/
|
|
97
97
|
'marketingType'?: MarketingType;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {number}
|
|
101
|
-
* @memberof SpecialtyTypeModel
|
|
102
|
-
*/
|
|
103
|
-
'specialtiesCount'?: number;
|
|
104
98
|
/**
|
|
105
99
|
*
|
|
106
100
|
* @type {Array<MediaModel>}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateCurationCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateCurationCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateCurationCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateCurationCommand
|
|
33
|
+
*/
|
|
34
|
+
'title'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateCurationCommand
|
|
39
|
+
*/
|
|
40
|
+
'searchTerm'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateCurationCommand
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdateCurationCommand
|
|
51
|
+
*/
|
|
52
|
+
'url'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof UpdateCurationCommand
|
|
57
|
+
*/
|
|
58
|
+
'description'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof UpdateCurationCommand
|
|
63
|
+
*/
|
|
64
|
+
'overview'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof UpdateCurationCommand
|
|
69
|
+
*/
|
|
70
|
+
'content'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof UpdateCurationCommand
|
|
75
|
+
*/
|
|
76
|
+
'photo'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof UpdateCurationCommand
|
|
81
|
+
*/
|
|
82
|
+
'photoThumbnail'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof UpdateCurationCommand
|
|
87
|
+
*/
|
|
88
|
+
'order'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof UpdateCurationCommand
|
|
93
|
+
*/
|
|
94
|
+
'isConfirmed'?: boolean;
|
|
95
|
+
}
|
|
96
|
+
|