ch-api-client-typescript2 5.35.0 → 5.35.2

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 (86) hide show
  1. package/lib/api/form-results-api.d.ts +320 -0
  2. package/lib/api/form-results-api.d.ts.map +1 -0
  3. package/lib/api/form-results-api.js +538 -0
  4. package/lib/api/form-templates-api.d.ts +106 -0
  5. package/lib/api/form-templates-api.d.ts.map +1 -0
  6. package/lib/api/form-templates-api.js +218 -0
  7. package/lib/api.d.ts +2 -0
  8. package/lib/api.d.ts.map +1 -1
  9. package/lib/api.js +2 -0
  10. package/lib/models/create-form-result-command.d.ts +38 -0
  11. package/lib/models/create-form-result-command.d.ts.map +1 -0
  12. package/lib/models/create-form-result-command.js +15 -0
  13. package/lib/models/form-field-model.d.ts +98 -0
  14. package/lib/models/form-field-model.d.ts.map +1 -0
  15. package/lib/models/form-field-model.js +15 -0
  16. package/lib/models/form-field-option-model.d.ts +55 -0
  17. package/lib/models/form-field-option-model.d.ts.map +1 -0
  18. package/lib/models/form-field-option-model.js +15 -0
  19. package/lib/models/form-result-field-input-model.d.ts +32 -0
  20. package/lib/models/form-result-field-input-model.d.ts.map +1 -0
  21. package/lib/models/form-result-field-input-model.js +15 -0
  22. package/lib/models/form-result-field-model.d.ts +86 -0
  23. package/lib/models/form-result-field-model.d.ts.map +1 -0
  24. package/lib/models/form-result-field-model.js +15 -0
  25. package/lib/models/form-result-item-model.d.ts +87 -0
  26. package/lib/models/form-result-item-model.d.ts.map +1 -0
  27. package/lib/models/form-result-item-model.js +15 -0
  28. package/lib/models/form-result-model.d.ts +94 -0
  29. package/lib/models/form-result-model.d.ts.map +1 -0
  30. package/lib/models/form-result-model.js +15 -0
  31. package/lib/models/form-result-section-input-model.d.ts +32 -0
  32. package/lib/models/form-result-section-input-model.d.ts.map +1 -0
  33. package/lib/models/form-result-section-input-model.js +15 -0
  34. package/lib/models/form-result-section-model.d.ts +62 -0
  35. package/lib/models/form-result-section-model.d.ts.map +1 -0
  36. package/lib/models/form-result-section-model.js +15 -0
  37. package/lib/models/form-result-status.d.ts +23 -0
  38. package/lib/models/form-result-status.d.ts.map +1 -0
  39. package/lib/models/form-result-status.js +26 -0
  40. package/lib/models/form-result-value-input-model.d.ts +37 -0
  41. package/lib/models/form-result-value-input-model.d.ts.map +1 -0
  42. package/lib/models/form-result-value-input-model.js +15 -0
  43. package/lib/models/form-result-value-model.d.ts +43 -0
  44. package/lib/models/form-result-value-model.d.ts.map +1 -0
  45. package/lib/models/form-result-value-model.js +15 -0
  46. package/lib/models/form-results-model.d.ts +33 -0
  47. package/lib/models/form-results-model.d.ts.map +1 -0
  48. package/lib/models/form-results-model.js +15 -0
  49. package/lib/models/form-section-model.d.ts +62 -0
  50. package/lib/models/form-section-model.d.ts.map +1 -0
  51. package/lib/models/form-section-model.js +15 -0
  52. package/lib/models/form-template-model.d.ts +94 -0
  53. package/lib/models/form-template-model.d.ts.map +1 -0
  54. package/lib/models/form-template-model.js +15 -0
  55. package/lib/models/form-template-status.d.ts +22 -0
  56. package/lib/models/form-template-status.d.ts.map +1 -0
  57. package/lib/models/form-template-status.js +25 -0
  58. package/lib/models/form-template-type.d.ts +23 -0
  59. package/lib/models/form-template-type.d.ts.map +1 -0
  60. package/lib/models/form-template-type.js +26 -0
  61. package/lib/models/index.d.ts +17 -0
  62. package/lib/models/index.d.ts.map +1 -1
  63. package/lib/models/index.js +17 -0
  64. package/package.json +1 -1
  65. package/src/.openapi-generator/FILES +19 -0
  66. package/src/api/form-results-api.ts +557 -0
  67. package/src/api/form-templates-api.ts +169 -0
  68. package/src/api.ts +2 -0
  69. package/src/models/create-form-result-command.ts +45 -0
  70. package/src/models/form-field-model.ts +105 -0
  71. package/src/models/form-field-option-model.ts +60 -0
  72. package/src/models/form-result-field-input-model.ts +39 -0
  73. package/src/models/form-result-field-model.ts +93 -0
  74. package/src/models/form-result-item-model.ts +96 -0
  75. package/src/models/form-result-model.ts +105 -0
  76. package/src/models/form-result-section-input-model.ts +39 -0
  77. package/src/models/form-result-section-model.ts +69 -0
  78. package/src/models/form-result-status.ts +32 -0
  79. package/src/models/form-result-value-input-model.ts +42 -0
  80. package/src/models/form-result-value-model.ts +48 -0
  81. package/src/models/form-results-model.ts +42 -0
  82. package/src/models/form-section-model.ts +69 -0
  83. package/src/models/form-template-model.ts +105 -0
  84. package/src/models/form-template-status.ts +31 -0
  85. package/src/models/form-template-type.ts +32 -0
  86. package/src/models/index.ts +17 -0
@@ -0,0 +1,105 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormResultSectionModel } from './form-result-section-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { FormResultStatus } from './form-result-status';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { FormTemplateType } from './form-template-type';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface FormResultModel
30
+ */
31
+ export interface FormResultModel {
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof FormResultModel
36
+ */
37
+ 'id'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof FormResultModel
42
+ */
43
+ 'languageCode'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof FormResultModel
48
+ */
49
+ 'hospitalId'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof FormResultModel
54
+ */
55
+ 'hospitalName'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof FormResultModel
60
+ */
61
+ 'userId'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof FormResultModel
66
+ */
67
+ 'userName'?: string | null;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof FormResultModel
72
+ */
73
+ 'name'?: string | null;
74
+ /**
75
+ *
76
+ * @type {boolean}
77
+ * @memberof FormResultModel
78
+ */
79
+ 'isConfirmed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {FormTemplateType}
83
+ * @memberof FormResultModel
84
+ */
85
+ 'formTemplateType'?: FormTemplateType;
86
+ /**
87
+ *
88
+ * @type {FormResultStatus}
89
+ * @memberof FormResultModel
90
+ */
91
+ 'status'?: FormResultStatus;
92
+ /**
93
+ *
94
+ * @type {Date}
95
+ * @memberof FormResultModel
96
+ */
97
+ 'createdDate'?: Date;
98
+ /**
99
+ *
100
+ * @type {Array<FormResultSectionModel>}
101
+ * @memberof FormResultModel
102
+ */
103
+ 'sections'?: Array<FormResultSectionModel> | null;
104
+ }
105
+
@@ -0,0 +1,39 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormResultFieldInputModel } from './form-result-field-input-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface FormResultSectionInputModel
24
+ */
25
+ export interface FormResultSectionInputModel {
26
+ /**
27
+ *
28
+ * @type {Array<FormResultFieldInputModel>}
29
+ * @memberof FormResultSectionInputModel
30
+ */
31
+ 'fields'?: Array<FormResultFieldInputModel> | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof FormResultSectionInputModel
36
+ */
37
+ 'formSectionId'?: string;
38
+ }
39
+
@@ -0,0 +1,69 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormResultFieldModel } from './form-result-field-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface FormResultSectionModel
24
+ */
25
+ export interface FormResultSectionModel {
26
+ /**
27
+ *
28
+ * @type {Array<FormResultFieldModel>}
29
+ * @memberof FormResultSectionModel
30
+ */
31
+ 'fields'?: Array<FormResultFieldModel> | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof FormResultSectionModel
36
+ */
37
+ 'id'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof FormResultSectionModel
42
+ */
43
+ 'languageCode'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof FormResultSectionModel
48
+ */
49
+ 'customStyle'?: string | null;
50
+ /**
51
+ *
52
+ * @type {number}
53
+ * @memberof FormResultSectionModel
54
+ */
55
+ 'order'?: number;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof FormResultSectionModel
60
+ */
61
+ 'name'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof FormResultSectionModel
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ }
69
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+ * @enum {string}
21
+ */
22
+
23
+ export const FormResultStatus = {
24
+ Verified: 'Verified',
25
+ Unverified: 'Unverified',
26
+ Invalid: 'Invalid'
27
+ } as const;
28
+
29
+ export type FormResultStatus = typeof FormResultStatus[keyof typeof FormResultStatus];
30
+
31
+
32
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 FormResultValueInputModel
21
+ */
22
+ export interface FormResultValueInputModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof FormResultValueInputModel
27
+ */
28
+ 'value'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof FormResultValueInputModel
33
+ */
34
+ 'additionalValue'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof FormResultValueInputModel
39
+ */
40
+ 'order'?: number;
41
+ }
42
+
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 FormResultValueModel
21
+ */
22
+ export interface FormResultValueModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof FormResultValueModel
27
+ */
28
+ 'value'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof FormResultValueModel
33
+ */
34
+ 'additionalValue'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof FormResultValueModel
39
+ */
40
+ 'order'?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof FormResultValueModel
45
+ */
46
+ 'id'?: string;
47
+ }
48
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormResultItemModel } from './form-result-item-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 FormResultsModel
27
+ */
28
+ export interface FormResultsModel {
29
+ /**
30
+ *
31
+ * @type {Array<FormResultItemModel>}
32
+ * @memberof FormResultsModel
33
+ */
34
+ 'items'?: Array<FormResultItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof FormResultsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,69 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormFieldModel } from './form-field-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface FormSectionModel
24
+ */
25
+ export interface FormSectionModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof FormSectionModel
30
+ */
31
+ 'customStyle'?: string | null;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof FormSectionModel
36
+ */
37
+ 'order'?: number;
38
+ /**
39
+ *
40
+ * @type {Array<FormFieldModel>}
41
+ * @memberof FormSectionModel
42
+ */
43
+ 'fields'?: Array<FormFieldModel> | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof FormSectionModel
48
+ */
49
+ 'id'?: string;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof FormSectionModel
54
+ */
55
+ 'languageCode'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof FormSectionModel
60
+ */
61
+ 'name'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof FormSectionModel
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ }
69
+
@@ -0,0 +1,105 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { FormSectionModel } from './form-section-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { FormTemplateStatus } from './form-template-status';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { FormTemplateType } from './form-template-type';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface FormTemplateModel
30
+ */
31
+ export interface FormTemplateModel {
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof FormTemplateModel
36
+ */
37
+ 'languageCode'?: string | null;
38
+ /**
39
+ *
40
+ * @type {FormTemplateType}
41
+ * @memberof FormTemplateModel
42
+ */
43
+ 'formTemplateType'?: FormTemplateType;
44
+ /**
45
+ *
46
+ * @type {FormTemplateStatus}
47
+ * @memberof FormTemplateModel
48
+ */
49
+ 'status'?: FormTemplateStatus;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof FormTemplateModel
54
+ */
55
+ 'hospitalId'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof FormTemplateModel
60
+ */
61
+ 'id'?: string;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof FormTemplateModel
66
+ */
67
+ 'hospitalName'?: string | null;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof FormTemplateModel
72
+ */
73
+ 'name'?: string | null;
74
+ /**
75
+ *
76
+ * @type {boolean}
77
+ * @memberof FormTemplateModel
78
+ */
79
+ 'isConfirmed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {Array<FormSectionModel>}
83
+ * @memberof FormTemplateModel
84
+ */
85
+ 'sections'?: Array<FormSectionModel> | null;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof FormTemplateModel
90
+ */
91
+ 'overview'?: string | null;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof FormTemplateModel
96
+ */
97
+ 'description'?: string | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof FormTemplateModel
102
+ */
103
+ 'content'?: string | null;
104
+ }
105
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+ * @enum {string}
21
+ */
22
+
23
+ export const FormTemplateStatus = {
24
+ Draft: 'Draft',
25
+ Active: 'Active'
26
+ } as const;
27
+
28
+ export type FormTemplateStatus = typeof FormTemplateStatus[keyof typeof FormTemplateStatus];
29
+
30
+
31
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+ * @enum {string}
21
+ */
22
+
23
+ export const FormTemplateType = {
24
+ Review: 'Review',
25
+ Survey: 'Survey',
26
+ Request: 'Request'
27
+ } as const;
28
+
29
+ export type FormTemplateType = typeof FormTemplateType[keyof typeof FormTemplateType];
30
+
31
+
32
+
@@ -80,6 +80,7 @@ export * from './create-chat-user-command';
80
80
  export * from './create-cors-command';
81
81
  export * from './create-device-command';
82
82
  export * from './create-device-login-command';
83
+ export * from './create-form-result-command';
83
84
  export * from './create-media-command';
84
85
  export * from './create-patient-command';
85
86
  export * from './create-profile-command';
@@ -158,6 +159,22 @@ export * from './feature-detail-model';
158
159
  export * from './feature-document-model';
159
160
  export * from './feature-model';
160
161
  export * from './footer-navigation-item-model';
162
+ export * from './form-field-model';
163
+ export * from './form-field-option-model';
164
+ export * from './form-result-field-input-model';
165
+ export * from './form-result-field-model';
166
+ export * from './form-result-item-model';
167
+ export * from './form-result-model';
168
+ export * from './form-result-section-input-model';
169
+ export * from './form-result-section-model';
170
+ export * from './form-result-status';
171
+ export * from './form-result-value-input-model';
172
+ export * from './form-result-value-model';
173
+ export * from './form-results-model';
174
+ export * from './form-section-model';
175
+ export * from './form-template-model';
176
+ export * from './form-template-status';
177
+ export * from './form-template-type';
161
178
  export * from './gender';
162
179
  export * from './geography-point';
163
180
  export * from './get-appointment-timetables-response-model';