ch-admin-api-client-typescript 5.36.17 → 5.36.31

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 (48) hide show
  1. package/lib/api/form-templates-api.d.ts +144 -6
  2. package/lib/api/form-templates-api.d.ts.map +1 -1
  3. package/lib/api/form-templates-api.js +211 -12
  4. package/lib/api/survey-forms-api.d.ts +190 -6
  5. package/lib/api/survey-forms-api.d.ts.map +1 -1
  6. package/lib/api/survey-forms-api.js +296 -12
  7. package/lib/models/create-survey-form-command.d.ts +6 -0
  8. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  9. package/lib/models/form-template-affiliation-model.d.ts +37 -0
  10. package/lib/models/form-template-affiliation-model.d.ts.map +1 -0
  11. package/lib/models/form-template-affiliation-model.js +15 -0
  12. package/lib/models/form-template-item-model.d.ts +20 -1
  13. package/lib/models/form-template-item-model.d.ts.map +1 -1
  14. package/lib/models/form-template-model.d.ts +20 -1
  15. package/lib/models/form-template-model.d.ts.map +1 -1
  16. package/lib/models/index.d.ts +4 -0
  17. package/lib/models/index.d.ts.map +1 -1
  18. package/lib/models/index.js +4 -0
  19. package/lib/models/save-form-template-command.d.ts +14 -2
  20. package/lib/models/save-form-template-command.d.ts.map +1 -1
  21. package/lib/models/set-hospital-into-form-template-command.d.ts +25 -0
  22. package/lib/models/set-hospital-into-form-template-command.d.ts.map +1 -0
  23. package/lib/models/set-hospital-into-form-template-command.js +15 -0
  24. package/lib/models/set-hospital-into-survey-form-command.d.ts +25 -0
  25. package/lib/models/set-hospital-into-survey-form-command.d.ts.map +1 -0
  26. package/lib/models/set-hospital-into-survey-form-command.js +15 -0
  27. package/lib/models/survey-form-affiliation-model.d.ts +31 -0
  28. package/lib/models/survey-form-affiliation-model.d.ts.map +1 -0
  29. package/lib/models/survey-form-affiliation-model.js +15 -0
  30. package/lib/models/survey-form-item-model.d.ts +13 -0
  31. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  32. package/lib/models/survey-form-model.d.ts +13 -0
  33. package/lib/models/survey-form-model.d.ts.map +1 -1
  34. package/package.json +1 -1
  35. package/src/.openapi-generator/FILES +4 -0
  36. package/src/api/form-templates-api.ts +251 -12
  37. package/src/api/survey-forms-api.ts +336 -12
  38. package/src/models/create-survey-form-command.ts +6 -0
  39. package/src/models/form-template-affiliation-model.ts +42 -0
  40. package/src/models/form-template-item-model.ts +22 -1
  41. package/src/models/form-template-model.ts +22 -1
  42. package/src/models/index.ts +4 -0
  43. package/src/models/save-form-template-command.ts +14 -2
  44. package/src/models/set-hospital-into-form-template-command.ts +30 -0
  45. package/src/models/set-hospital-into-survey-form-command.ts +30 -0
  46. package/src/models/survey-form-affiliation-model.ts +36 -0
  47. package/src/models/survey-form-item-model.ts +15 -0
  48. package/src/models/survey-form-model.ts +15 -0
@@ -52,19 +52,25 @@ export interface SaveFormTemplateCommand {
52
52
  * @type {string}
53
53
  * @memberof SaveFormTemplateCommand
54
54
  */
55
- 'hospitalId'?: string | null;
55
+ 'name'?: string | null;
56
56
  /**
57
57
  *
58
58
  * @type {string}
59
59
  * @memberof SaveFormTemplateCommand
60
60
  */
61
- 'name'?: string | null;
61
+ 'urlAfterDone'?: string | null;
62
62
  /**
63
63
  *
64
64
  * @type {boolean}
65
65
  * @memberof SaveFormTemplateCommand
66
66
  */
67
67
  'isConfirmed'?: boolean;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof SaveFormTemplateCommand
72
+ */
73
+ 'hospitalId'?: string;
68
74
  /**
69
75
  *
70
76
  * @type {string}
@@ -83,6 +89,12 @@ export interface SaveFormTemplateCommand {
83
89
  * @memberof SaveFormTemplateCommand
84
90
  */
85
91
  'content'?: string | null;
92
+ /**
93
+ *
94
+ * @type {boolean}
95
+ * @memberof SaveFormTemplateCommand
96
+ */
97
+ 'isShared'?: boolean | null;
86
98
  /**
87
99
  *
88
100
  * @type {Array<FormSectionInputModel>}
@@ -0,0 +1,30 @@
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 SetHospitalIntoFormTemplateCommand
21
+ */
22
+ export interface SetHospitalIntoFormTemplateCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SetHospitalIntoFormTemplateCommand
27
+ */
28
+ 'urlAfterDone'?: string | null;
29
+ }
30
+
@@ -0,0 +1,30 @@
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 SetHospitalIntoSurveyFormCommand
21
+ */
22
+ export interface SetHospitalIntoSurveyFormCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SetHospitalIntoSurveyFormCommand
27
+ */
28
+ 'urlAfterDone'?: string | null;
29
+ }
30
+
@@ -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}