ch-admin-api-client-typescript 5.36.17 → 5.36.28
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/form-templates-api.d.ts +132 -3
- package/lib/api/form-templates-api.d.ts.map +1 -1
- package/lib/api/form-templates-api.js +199 -6
- package/lib/api/survey-forms-api.d.ts +178 -3
- package/lib/api/survey-forms-api.d.ts.map +1 -1
- package/lib/api/survey-forms-api.js +284 -6
- package/lib/models/create-survey-form-command.d.ts +6 -0
- package/lib/models/create-survey-form-command.d.ts.map +1 -1
- package/lib/models/form-template-affiliation-model.d.ts +37 -0
- package/lib/models/form-template-affiliation-model.d.ts.map +1 -0
- package/lib/models/form-template-affiliation-model.js +15 -0
- package/lib/models/form-template-item-model.d.ts +19 -0
- package/lib/models/form-template-item-model.d.ts.map +1 -1
- package/lib/models/form-template-model.d.ts +19 -0
- package/lib/models/form-template-model.d.ts.map +1 -1
- 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/save-form-template-command.d.ts +12 -0
- package/lib/models/save-form-template-command.d.ts.map +1 -1
- package/lib/models/set-hospital-into-form-template-command.d.ts +25 -0
- package/lib/models/set-hospital-into-form-template-command.d.ts.map +1 -0
- package/lib/models/set-hospital-into-form-template-command.js +15 -0
- package/lib/models/set-hospital-into-survey-form-command.d.ts +25 -0
- package/lib/models/set-hospital-into-survey-form-command.d.ts.map +1 -0
- package/lib/models/set-hospital-into-survey-form-command.js +15 -0
- package/lib/models/survey-form-affiliation-model.d.ts +31 -0
- package/lib/models/survey-form-affiliation-model.d.ts.map +1 -0
- package/lib/models/survey-form-affiliation-model.js +15 -0
- package/lib/models/survey-form-item-model.d.ts +13 -0
- package/lib/models/survey-form-item-model.d.ts.map +1 -1
- package/lib/models/survey-form-model.d.ts +13 -0
- package/lib/models/survey-form-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/form-templates-api.ts +231 -6
- package/src/api/survey-forms-api.ts +316 -6
- package/src/models/create-survey-form-command.ts +6 -0
- package/src/models/form-template-affiliation-model.ts +42 -0
- package/src/models/form-template-item-model.ts +21 -0
- package/src/models/form-template-model.ts +21 -0
- package/src/models/index.ts +4 -0
- package/src/models/save-form-template-command.ts +12 -0
- package/src/models/set-hospital-into-form-template-command.ts +30 -0
- package/src/models/set-hospital-into-survey-form-command.ts +30 -0
- package/src/models/survey-form-affiliation-model.ts +36 -0
- package/src/models/survey-form-item-model.ts +15 -0
- package/src/models/survey-form-model.ts +15 -0
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface SurveyFormAffiliationModel
|
|
21
|
+
*/
|
|
22
|
+
export interface SurveyFormAffiliationModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SurveyFormAffiliationModel
|
|
27
|
+
*/
|
|
28
|
+
'hospitalId'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SurveyFormAffiliationModel
|
|
33
|
+
*/
|
|
34
|
+
'hospitalName'?: string | null;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { SurveyFormAffiliationModel } from './survey-form-affiliation-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { SurveyFormStatus } from './survey-form-status';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -38,6 +41,12 @@ export interface SurveyFormItemModel {
|
|
|
38
41
|
* @memberof SurveyFormItemModel
|
|
39
42
|
*/
|
|
40
43
|
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<SurveyFormAffiliationModel>}
|
|
47
|
+
* @memberof SurveyFormItemModel
|
|
48
|
+
*/
|
|
49
|
+
'surveyFormAffiliations'?: Array<SurveyFormAffiliationModel> | null;
|
|
41
50
|
/**
|
|
42
51
|
*
|
|
43
52
|
* @type {string}
|
|
@@ -56,6 +65,12 @@ export interface SurveyFormItemModel {
|
|
|
56
65
|
* @memberof SurveyFormItemModel
|
|
57
66
|
*/
|
|
58
67
|
'urlAfterDone'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {boolean}
|
|
71
|
+
* @memberof SurveyFormItemModel
|
|
72
|
+
*/
|
|
73
|
+
'isShared'?: boolean;
|
|
59
74
|
/**
|
|
60
75
|
*
|
|
61
76
|
* @type {string}
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { SurveyFormAffiliationModel } from './survey-form-affiliation-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { SurveyFormElementModel } from './survey-form-element-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -41,6 +44,12 @@ export interface SurveyFormModel {
|
|
|
41
44
|
* @memberof SurveyFormModel
|
|
42
45
|
*/
|
|
43
46
|
'hospitalId'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {Array<SurveyFormAffiliationModel>}
|
|
50
|
+
* @memberof SurveyFormModel
|
|
51
|
+
*/
|
|
52
|
+
'surveyFormAffiliations'?: Array<SurveyFormAffiliationModel> | null;
|
|
44
53
|
/**
|
|
45
54
|
*
|
|
46
55
|
* @type {string}
|
|
@@ -59,6 +68,12 @@ export interface SurveyFormModel {
|
|
|
59
68
|
* @memberof SurveyFormModel
|
|
60
69
|
*/
|
|
61
70
|
'urlAfterDone'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {boolean}
|
|
74
|
+
* @memberof SurveyFormModel
|
|
75
|
+
*/
|
|
76
|
+
'isShared'?: boolean;
|
|
62
77
|
/**
|
|
63
78
|
*
|
|
64
79
|
* @type {string}
|