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,218 @@
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
+ var __extends = (this && this.__extends) || (function () {
16
+ var extendStatics = function (d, b) {
17
+ extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
+ return extendStatics(d, b);
21
+ };
22
+ return function (d, b) {
23
+ if (typeof b !== "function" && b !== null)
24
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
+ extendStatics(d, b);
26
+ function __() { this.constructor = d; }
27
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
+ };
29
+ })();
30
+ var __assign = (this && this.__assign) || function () {
31
+ __assign = Object.assign || function(t) {
32
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
33
+ s = arguments[i];
34
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
35
+ t[p] = s[p];
36
+ }
37
+ return t;
38
+ };
39
+ return __assign.apply(this, arguments);
40
+ };
41
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
42
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
43
+ return new (P || (P = Promise))(function (resolve, reject) {
44
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
45
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
46
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
47
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
48
+ });
49
+ };
50
+ var __generator = (this && this.__generator) || function (thisArg, body) {
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
52
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
+ function verb(n) { return function (v) { return step([n, v]); }; }
54
+ function step(op) {
55
+ if (f) throw new TypeError("Generator is already executing.");
56
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
57
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
58
+ if (y = 0, t) op = [op[0] & 2, t.value];
59
+ switch (op[0]) {
60
+ case 0: case 1: t = op; break;
61
+ case 4: _.label++; return { value: op[1], done: false };
62
+ case 5: _.label++; y = op[1]; op = [0]; continue;
63
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
64
+ default:
65
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
66
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
67
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
68
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
69
+ if (t[2]) _.ops.pop();
70
+ _.trys.pop(); continue;
71
+ }
72
+ op = body.call(thisArg, _);
73
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
74
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
+ }
76
+ };
77
+ var __importDefault = (this && this.__importDefault) || function (mod) {
78
+ return (mod && mod.__esModule) ? mod : { "default": mod };
79
+ };
80
+ Object.defineProperty(exports, "__esModule", { value: true });
81
+ exports.FormTemplatesApi = exports.FormTemplatesApiFactory = exports.FormTemplatesApiFp = exports.FormTemplatesApiAxiosParamCreator = void 0;
82
+ var axios_1 = __importDefault(require("axios"));
83
+ // Some imports not used depending on template conditions
84
+ // @ts-ignore
85
+ var common_1 = require("../common");
86
+ // @ts-ignore
87
+ var base_1 = require("../base");
88
+ /**
89
+ * FormTemplatesApi - axios parameter creator
90
+ * @export
91
+ */
92
+ var FormTemplatesApiAxiosParamCreator = function (configuration) {
93
+ var _this = this;
94
+ return {
95
+ /**
96
+ *
97
+ * @summary Get formTemplate
98
+ * @param {string} formTemplateId
99
+ * @param {string} [languageCode]
100
+ * @param {string} [previewSecret]
101
+ * @param {*} [options] Override http request option.
102
+ * @throws {RequiredError}
103
+ */
104
+ apiV2FormtemplatesFormTemplateIdGet: function (formTemplateId, languageCode, previewSecret, options) {
105
+ if (options === void 0) { options = {}; }
106
+ return __awaiter(_this, void 0, void 0, function () {
107
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
108
+ return __generator(this, function (_a) {
109
+ // verify required parameter 'formTemplateId' is not null or undefined
110
+ (0, common_1.assertParamExists)('apiV2FormtemplatesFormTemplateIdGet', 'formTemplateId', formTemplateId);
111
+ localVarPath = "/api/v2/formtemplates/{formTemplateId}"
112
+ .replace("{".concat("formTemplateId", "}"), encodeURIComponent(String(formTemplateId)));
113
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
114
+ if (configuration) {
115
+ baseOptions = configuration.baseOptions;
116
+ }
117
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
118
+ localVarHeaderParameter = {};
119
+ localVarQueryParameter = {};
120
+ if (languageCode !== undefined) {
121
+ localVarQueryParameter['languageCode'] = languageCode;
122
+ }
123
+ if (previewSecret !== undefined) {
124
+ localVarQueryParameter['previewSecret'] = previewSecret;
125
+ }
126
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
127
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
128
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
129
+ return [2 /*return*/, {
130
+ url: (0, common_1.toPathString)(localVarUrlObj),
131
+ options: localVarRequestOptions,
132
+ }];
133
+ });
134
+ });
135
+ },
136
+ };
137
+ };
138
+ exports.FormTemplatesApiAxiosParamCreator = FormTemplatesApiAxiosParamCreator;
139
+ /**
140
+ * FormTemplatesApi - functional programming interface
141
+ * @export
142
+ */
143
+ var FormTemplatesApiFp = function (configuration) {
144
+ var localVarAxiosParamCreator = (0, exports.FormTemplatesApiAxiosParamCreator)(configuration);
145
+ return {
146
+ /**
147
+ *
148
+ * @summary Get formTemplate
149
+ * @param {string} formTemplateId
150
+ * @param {string} [languageCode]
151
+ * @param {string} [previewSecret]
152
+ * @param {*} [options] Override http request option.
153
+ * @throws {RequiredError}
154
+ */
155
+ apiV2FormtemplatesFormTemplateIdGet: function (formTemplateId, languageCode, previewSecret, options) {
156
+ return __awaiter(this, void 0, void 0, function () {
157
+ var localVarAxiosArgs;
158
+ return __generator(this, function (_a) {
159
+ switch (_a.label) {
160
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2FormtemplatesFormTemplateIdGet(formTemplateId, languageCode, previewSecret, options)];
161
+ case 1:
162
+ localVarAxiosArgs = _a.sent();
163
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
164
+ }
165
+ });
166
+ });
167
+ },
168
+ };
169
+ };
170
+ exports.FormTemplatesApiFp = FormTemplatesApiFp;
171
+ /**
172
+ * FormTemplatesApi - factory interface
173
+ * @export
174
+ */
175
+ var FormTemplatesApiFactory = function (configuration, basePath, axios) {
176
+ var localVarFp = (0, exports.FormTemplatesApiFp)(configuration);
177
+ return {
178
+ /**
179
+ *
180
+ * @summary Get formTemplate
181
+ * @param {string} formTemplateId
182
+ * @param {string} [languageCode]
183
+ * @param {string} [previewSecret]
184
+ * @param {*} [options] Override http request option.
185
+ * @throws {RequiredError}
186
+ */
187
+ apiV2FormtemplatesFormTemplateIdGet: function (formTemplateId, languageCode, previewSecret, options) {
188
+ return localVarFp.apiV2FormtemplatesFormTemplateIdGet(formTemplateId, languageCode, previewSecret, options).then(function (request) { return request(axios, basePath); });
189
+ },
190
+ };
191
+ };
192
+ exports.FormTemplatesApiFactory = FormTemplatesApiFactory;
193
+ /**
194
+ * FormTemplatesApi - object-oriented interface
195
+ * @export
196
+ * @class FormTemplatesApi
197
+ * @extends {BaseAPI}
198
+ */
199
+ var FormTemplatesApi = /** @class */ (function (_super) {
200
+ __extends(FormTemplatesApi, _super);
201
+ function FormTemplatesApi() {
202
+ return _super !== null && _super.apply(this, arguments) || this;
203
+ }
204
+ /**
205
+ *
206
+ * @summary Get formTemplate
207
+ * @param {FormTemplatesApiApiV2FormtemplatesFormTemplateIdGetRequest} requestParameters Request parameters.
208
+ * @param {*} [options] Override http request option.
209
+ * @throws {RequiredError}
210
+ * @memberof FormTemplatesApi
211
+ */
212
+ FormTemplatesApi.prototype.apiV2FormtemplatesFormTemplateIdGet = function (requestParameters, options) {
213
+ var _this = this;
214
+ return (0, exports.FormTemplatesApiFp)(this.configuration).apiV2FormtemplatesFormTemplateIdGet(requestParameters.formTemplateId, requestParameters.languageCode, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
215
+ };
216
+ return FormTemplatesApi;
217
+ }(base_1.BaseAPI));
218
+ exports.FormTemplatesApi = FormTemplatesApi;
package/lib/api.d.ts CHANGED
@@ -27,6 +27,8 @@ export * from './api/doctors-api';
27
27
  export * from './api/external-api';
28
28
  export * from './api/faq-categories-api';
29
29
  export * from './api/faqs-api';
30
+ export * from './api/form-results-api';
31
+ export * from './api/form-templates-api';
30
32
  export * from './api/group-channels-api';
31
33
  export * from './api/hospitals-api';
32
34
  export * from './api/images-api';
package/lib/api.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
package/lib/api.js CHANGED
@@ -45,6 +45,8 @@ __exportStar(require("./api/doctors-api"), exports);
45
45
  __exportStar(require("./api/external-api"), exports);
46
46
  __exportStar(require("./api/faq-categories-api"), exports);
47
47
  __exportStar(require("./api/faqs-api"), exports);
48
+ __exportStar(require("./api/form-results-api"), exports);
49
+ __exportStar(require("./api/form-templates-api"), exports);
48
50
  __exportStar(require("./api/group-channels-api"), exports);
49
51
  __exportStar(require("./api/hospitals-api"), exports);
50
52
  __exportStar(require("./api/images-api"), exports);
@@ -0,0 +1,38 @@
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 { FormResultSectionInputModel } from './form-result-section-input-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateFormResultCommand
17
+ */
18
+ export interface CreateFormResultCommand {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof CreateFormResultCommand
23
+ */
24
+ 'languageCode'?: string | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof CreateFormResultCommand
29
+ */
30
+ 'formTemplateId'?: string;
31
+ /**
32
+ *
33
+ * @type {Array<FormResultSectionInputModel>}
34
+ * @memberof CreateFormResultCommand
35
+ */
36
+ 'sections'?: Array<FormResultSectionInputModel> | null;
37
+ }
38
+ //# sourceMappingURL=create-form-result-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-form-result-command.d.ts","sourceRoot":"","sources":["../../src/models/create-form-result-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAEhF;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
@@ -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,98 @@
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 { FormFieldOptionModel } from './form-field-option-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormFieldModel
17
+ */
18
+ export interface FormFieldModel {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof FormFieldModel
23
+ */
24
+ 'formFieldType'?: string | null;
25
+ /**
26
+ *
27
+ * @type {boolean}
28
+ * @memberof FormFieldModel
29
+ */
30
+ 'isRequired'?: boolean;
31
+ /**
32
+ *
33
+ * @type {boolean}
34
+ * @memberof FormFieldModel
35
+ */
36
+ 'isHidden'?: boolean;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof FormFieldModel
41
+ */
42
+ 'validation'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof FormFieldModel
47
+ */
48
+ 'customStyle'?: string | null;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof FormFieldModel
53
+ */
54
+ 'order'?: number;
55
+ /**
56
+ *
57
+ * @type {Array<FormFieldOptionModel>}
58
+ * @memberof FormFieldModel
59
+ */
60
+ 'options'?: Array<FormFieldOptionModel> | null;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof FormFieldModel
65
+ */
66
+ 'id'?: string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof FormFieldModel
71
+ */
72
+ 'languageCode'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof FormFieldModel
77
+ */
78
+ 'name'?: string | null;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof FormFieldModel
83
+ */
84
+ 'label'?: string | null;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof FormFieldModel
89
+ */
90
+ 'placeholder'?: string | null;
91
+ /**
92
+ *
93
+ * @type {boolean}
94
+ * @memberof FormFieldModel
95
+ */
96
+ 'isConfirmed'?: boolean;
97
+ }
98
+ //# sourceMappingURL=form-field-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-field-model.d.ts","sourceRoot":"","sources":["../../src/models/form-field-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC;IAC/C;;;;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,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;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,55 @@
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 FormFieldOptionModel
16
+ */
17
+ export interface FormFieldOptionModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof FormFieldOptionModel
22
+ */
23
+ 'customStyle'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof FormFieldOptionModel
28
+ */
29
+ 'order'?: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof FormFieldOptionModel
34
+ */
35
+ 'id'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof FormFieldOptionModel
40
+ */
41
+ 'languageCode'?: string | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof FormFieldOptionModel
46
+ */
47
+ 'name'?: string | null;
48
+ /**
49
+ *
50
+ * @type {boolean}
51
+ * @memberof FormFieldOptionModel
52
+ */
53
+ 'isConfirmed'?: boolean;
54
+ }
55
+ //# sourceMappingURL=form-field-option-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-field-option-model.d.ts","sourceRoot":"","sources":["../../src/models/form-field-option-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;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 });
@@ -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 { FormResultValueInputModel } from './form-result-value-input-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormResultFieldInputModel
17
+ */
18
+ export interface FormResultFieldInputModel {
19
+ /**
20
+ *
21
+ * @type {Array<FormResultValueInputModel>}
22
+ * @memberof FormResultFieldInputModel
23
+ */
24
+ 'values'?: Array<FormResultValueInputModel> | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof FormResultFieldInputModel
29
+ */
30
+ 'formFieldId'?: string;
31
+ }
32
+ //# sourceMappingURL=form-result-field-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-field-input-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-field-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAE5E;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC;IACnD;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B"}
@@ -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,86 @@
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 { FormResultValueModel } from './form-result-value-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FormResultFieldModel
17
+ */
18
+ export interface FormResultFieldModel {
19
+ /**
20
+ *
21
+ * @type {Array<FormResultValueModel>}
22
+ * @memberof FormResultFieldModel
23
+ */
24
+ 'values'?: Array<FormResultValueModel> | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof FormResultFieldModel
29
+ */
30
+ 'id'?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof FormResultFieldModel
35
+ */
36
+ 'languageCode'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof FormResultFieldModel
41
+ */
42
+ 'formFieldType'?: string | null;
43
+ /**
44
+ *
45
+ * @type {boolean}
46
+ * @memberof FormResultFieldModel
47
+ */
48
+ 'isRequired'?: boolean;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof FormResultFieldModel
53
+ */
54
+ 'customStyle'?: string | null;
55
+ /**
56
+ *
57
+ * @type {number}
58
+ * @memberof FormResultFieldModel
59
+ */
60
+ 'order'?: number;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof FormResultFieldModel
65
+ */
66
+ 'name'?: string | null;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof FormResultFieldModel
71
+ */
72
+ 'label'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof FormResultFieldModel
77
+ */
78
+ 'placeholder'?: string | null;
79
+ /**
80
+ *
81
+ * @type {boolean}
82
+ * @memberof FormResultFieldModel
83
+ */
84
+ 'isConfirmed'?: boolean;
85
+ }
86
+ //# sourceMappingURL=form-result-field-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-result-field-model.d.ts","sourceRoot":"","sources":["../../src/models/form-result-field-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;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,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;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,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;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 });