ch-api-client-typescript2 5.34.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,87 @@
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
+ import { FormResultStatus } from './form-result-status';
13
+ import { FormTemplateType } from './form-template-type';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface FormResultItemModel
18
+ */
19
+ export interface FormResultItemModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof FormResultItemModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof FormResultItemModel
30
+ */
31
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof FormResultItemModel
36
+ */
37
+ 'hospitalId'?: string | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof FormResultItemModel
42
+ */
43
+ 'hospitalName'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof FormResultItemModel
48
+ */
49
+ 'userId'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof FormResultItemModel
54
+ */
55
+ 'userName'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof FormResultItemModel
60
+ */
61
+ 'name'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof FormResultItemModel
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ /**
69
+ *
70
+ * @type {FormTemplateType}
71
+ * @memberof FormResultItemModel
72
+ */
73
+ 'formTemplateType'?: FormTemplateType;
74
+ /**
75
+ *
76
+ * @type {FormResultStatus}
77
+ * @memberof FormResultItemModel
78
+ */
79
+ 'status'?: FormResultStatus;
80
+ /**
81
+ *
82
+ * @type {Date}
83
+ * @memberof FormResultItemModel
84
+ */
85
+ 'createdDate'?: Date;
86
+ }
87
+ //# sourceMappingURL=form-result-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-item-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAGxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,gBAAgB,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;CACxB"}
@@ -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 });
@@ -0,0 +1,94 @@
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
+ import { FormResultSectionModel } from './form-result-section-model';
13
+ import { FormResultStatus } from './form-result-status';
14
+ import { FormTemplateType } from './form-template-type';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface FormResultModel
19
+ */
20
+ export interface FormResultModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof FormResultModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof FormResultModel
31
+ */
32
+ 'languageCode'?: string | null;
33
+ /**
34
+ *
35
+ * @type {string}
36
+ * @memberof FormResultModel
37
+ */
38
+ 'hospitalId'?: string | null;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof FormResultModel
43
+ */
44
+ 'hospitalName'?: string | null;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof FormResultModel
49
+ */
50
+ 'userId'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof FormResultModel
55
+ */
56
+ 'userName'?: string | null;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof FormResultModel
61
+ */
62
+ 'name'?: string | null;
63
+ /**
64
+ *
65
+ * @type {boolean}
66
+ * @memberof FormResultModel
67
+ */
68
+ 'isConfirmed'?: boolean;
69
+ /**
70
+ *
71
+ * @type {FormTemplateType}
72
+ * @memberof FormResultModel
73
+ */
74
+ 'formTemplateType'?: FormTemplateType;
75
+ /**
76
+ *
77
+ * @type {FormResultStatus}
78
+ * @memberof FormResultModel
79
+ */
80
+ 'status'?: FormResultStatus;
81
+ /**
82
+ *
83
+ * @type {Date}
84
+ * @memberof FormResultModel
85
+ */
86
+ 'createdDate'?: Date;
87
+ /**
88
+ *
89
+ * @type {Array<FormResultSectionModel>}
90
+ * @memberof FormResultModel
91
+ */
92
+ 'sections'?: Array<FormResultSectionModel> | null;
93
+ }
94
+ //# sourceMappingURL=form-result-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAGxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,gBAAgB,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC;CACrD"}
@@ -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 });
@@ -0,0 +1,32 @@
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
+ import { FormResultFieldInputModel } from './form-result-field-input-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormResultSectionInputModel
17
+ */
18
+ export interface FormResultSectionInputModel {
19
+ /**
20
+ *
21
+ * @type {Array<FormResultFieldInputModel>}
22
+ * @memberof FormResultSectionInputModel
23
+ */
24
+ 'fields'?: Array<FormResultFieldInputModel> | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof FormResultSectionInputModel
29
+ */
30
+ 'formSectionId'?: string;
31
+ }
32
+ //# sourceMappingURL=form-result-section-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-section-input-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-section-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAE5E;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC;IACnD;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B"}
@@ -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 });
@@ -0,0 +1,62 @@
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
+ import { FormResultFieldModel } from './form-result-field-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormResultSectionModel
17
+ */
18
+ export interface FormResultSectionModel {
19
+ /**
20
+ *
21
+ * @type {Array<FormResultFieldModel>}
22
+ * @memberof FormResultSectionModel
23
+ */
24
+ 'fields'?: Array<FormResultFieldModel> | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof FormResultSectionModel
29
+ */
30
+ 'id'?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof FormResultSectionModel
35
+ */
36
+ 'languageCode'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof FormResultSectionModel
41
+ */
42
+ 'customStyle'?: string | null;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof FormResultSectionModel
47
+ */
48
+ 'order'?: number;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof FormResultSectionModel
53
+ */
54
+ 'name'?: string | null;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof FormResultSectionModel
59
+ */
60
+ 'isConfirmed'?: boolean;
61
+ }
62
+ //# sourceMappingURL=form-result-section-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-section-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-section-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B"}
@@ -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 });
@@ -0,0 +1,23 @@
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
+ * @enum {string}
16
+ */
17
+ export declare const FormResultStatus: {
18
+ readonly Verified: "Verified";
19
+ readonly Unverified: "Unverified";
20
+ readonly Invalid: "Invalid";
21
+ };
22
+ export type FormResultStatus = typeof FormResultStatus[keyof typeof FormResultStatus];
23
+ //# sourceMappingURL=form-result-status.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-status.d.ts","sourceRoot":"","sources":["../../src/models/form-result-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,gBAAgB;;;;CAInB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,OAAO,gBAAgB,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC"}
@@ -0,0 +1,26 @@
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 });
16
+ exports.FormResultStatus = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.FormResultStatus = {
23
+ Verified: 'Verified',
24
+ Unverified: 'Unverified',
25
+ Invalid: 'Invalid'
26
+ };
@@ -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 FormResultValueInputModel
16
+ */
17
+ export interface FormResultValueInputModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof FormResultValueInputModel
22
+ */
23
+ 'value'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof FormResultValueInputModel
28
+ */
29
+ 'additionalValue'?: string | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof FormResultValueInputModel
34
+ */
35
+ 'order'?: number;
36
+ }
37
+ //# sourceMappingURL=form-result-value-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-value-input-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-value-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -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 });
@@ -0,0 +1,43 @@
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 FormResultValueModel
16
+ */
17
+ export interface FormResultValueModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof FormResultValueModel
22
+ */
23
+ 'value'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof FormResultValueModel
28
+ */
29
+ 'additionalValue'?: string | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof FormResultValueModel
34
+ */
35
+ 'order'?: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof FormResultValueModel
40
+ */
41
+ 'id'?: string;
42
+ }
43
+ //# sourceMappingURL=form-result-value-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-value-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-value-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB"}
@@ -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 });
@@ -0,0 +1,33 @@
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
+ import { FormResultItemModel } from './form-result-item-model';
13
+ import { PagedListMetaData } from './paged-list-meta-data';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface FormResultsModel
18
+ */
19
+ export interface FormResultsModel {
20
+ /**
21
+ *
22
+ * @type {Array<FormResultItemModel>}
23
+ * @memberof FormResultsModel
24
+ */
25
+ 'items'?: Array<FormResultItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof FormResultsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=form-results-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-results-model.d.ts","sourceRoot":"","sources":["../../src/models/form-results-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -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 });
@@ -0,0 +1,62 @@
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
+ import { FormFieldModel } from './form-field-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormSectionModel
17
+ */
18
+ export interface FormSectionModel {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof FormSectionModel
23
+ */
24
+ 'customStyle'?: string | null;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof FormSectionModel
29
+ */
30
+ 'order'?: number;
31
+ /**
32
+ *
33
+ * @type {Array<FormFieldModel>}
34
+ * @memberof FormSectionModel
35
+ */
36
+ 'fields'?: Array<FormFieldModel> | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof FormSectionModel
41
+ */
42
+ 'id'?: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof FormSectionModel
47
+ */
48
+ 'languageCode'?: string | null;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof FormSectionModel
53
+ */
54
+ 'name'?: string | null;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof FormSectionModel
59
+ */
60
+ 'isConfirmed'?: boolean;
61
+ }
62
+ //# sourceMappingURL=form-section-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-section-model.d.ts","sourceRoot":"","sources":["../../src/models/form-section-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEpD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B"}
@@ -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 });