@speclynx/apidom-ns-arazzo-1 1.12.1

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 (204) hide show
  1. package/CHANGELOG.md +84 -0
  2. package/LICENSE +202 -0
  3. package/LICENSES/AFL-3.0.txt +182 -0
  4. package/LICENSES/Apache-2.0.txt +202 -0
  5. package/LICENSES/BSD-3-Clause.txt +26 -0
  6. package/LICENSES/MIT.txt +9 -0
  7. package/NOTICE +65 -0
  8. package/README.md +206 -0
  9. package/dist/apidom-ns-arazzo-1.browser.js +24106 -0
  10. package/dist/apidom-ns-arazzo-1.browser.min.js +1 -0
  11. package/package.json +64 -0
  12. package/src/elements/Arazzo.cjs +17 -0
  13. package/src/elements/Arazzo.mjs +14 -0
  14. package/src/elements/ArazzoSpecification1.cjs +47 -0
  15. package/src/elements/ArazzoSpecification1.mjs +43 -0
  16. package/src/elements/Components.cjs +39 -0
  17. package/src/elements/Components.mjs +35 -0
  18. package/src/elements/Criterion.cjs +33 -0
  19. package/src/elements/Criterion.mjs +29 -0
  20. package/src/elements/CriterionExpressionType.cjs +27 -0
  21. package/src/elements/CriterionExpressionType.mjs +24 -0
  22. package/src/elements/FailureAction.cjs +57 -0
  23. package/src/elements/FailureAction.mjs +53 -0
  24. package/src/elements/Info.cjs +40 -0
  25. package/src/elements/Info.mjs +37 -0
  26. package/src/elements/JSONSchema.cjs +10 -0
  27. package/src/elements/JSONSchema.mjs +7 -0
  28. package/src/elements/Parameter.cjs +33 -0
  29. package/src/elements/Parameter.mjs +30 -0
  30. package/src/elements/PayloadReplacement.cjs +27 -0
  31. package/src/elements/PayloadReplacement.mjs +24 -0
  32. package/src/elements/RequestBody.cjs +33 -0
  33. package/src/elements/RequestBody.mjs +29 -0
  34. package/src/elements/Reusable.cjs +28 -0
  35. package/src/elements/Reusable.mjs +25 -0
  36. package/src/elements/SourceDescription.cjs +33 -0
  37. package/src/elements/SourceDescription.mjs +30 -0
  38. package/src/elements/Step.cjs +81 -0
  39. package/src/elements/Step.mjs +77 -0
  40. package/src/elements/SuccessAction.cjs +45 -0
  41. package/src/elements/SuccessAction.mjs +41 -0
  42. package/src/elements/Workflow.cjs +75 -0
  43. package/src/elements/Workflow.mjs +71 -0
  44. package/src/elements/nces/ComponentsFailureActions.cjs +16 -0
  45. package/src/elements/nces/ComponentsFailureActions.mjs +13 -0
  46. package/src/elements/nces/ComponentsInputs.cjs +16 -0
  47. package/src/elements/nces/ComponentsInputs.mjs +13 -0
  48. package/src/elements/nces/ComponentsParameters.cjs +17 -0
  49. package/src/elements/nces/ComponentsParameters.mjs +14 -0
  50. package/src/elements/nces/ComponentsSuccessActions.cjs +16 -0
  51. package/src/elements/nces/ComponentsSuccessActions.mjs +13 -0
  52. package/src/elements/nces/FailureActionCriteria.cjs +17 -0
  53. package/src/elements/nces/FailureActionCriteria.mjs +14 -0
  54. package/src/elements/nces/RequestBodyReplacements.cjs +16 -0
  55. package/src/elements/nces/RequestBodyReplacements.mjs +13 -0
  56. package/src/elements/nces/SourceDescriptions.cjs +16 -0
  57. package/src/elements/nces/SourceDescriptions.mjs +13 -0
  58. package/src/elements/nces/StepDependsOn.cjs +16 -0
  59. package/src/elements/nces/StepDependsOn.mjs +13 -0
  60. package/src/elements/nces/StepOnFailure.cjs +16 -0
  61. package/src/elements/nces/StepOnFailure.mjs +13 -0
  62. package/src/elements/nces/StepOnSuccess.cjs +16 -0
  63. package/src/elements/nces/StepOnSuccess.mjs +13 -0
  64. package/src/elements/nces/StepOutputs.cjs +16 -0
  65. package/src/elements/nces/StepOutputs.mjs +13 -0
  66. package/src/elements/nces/StepParameters.cjs +17 -0
  67. package/src/elements/nces/StepParameters.mjs +14 -0
  68. package/src/elements/nces/StepSuccessCriteria.cjs +17 -0
  69. package/src/elements/nces/StepSuccessCriteria.mjs +14 -0
  70. package/src/elements/nces/SuccessActionCriteria.cjs +17 -0
  71. package/src/elements/nces/SuccessActionCriteria.mjs +14 -0
  72. package/src/elements/nces/WorkflowDependsOn.cjs +16 -0
  73. package/src/elements/nces/WorkflowDependsOn.mjs +13 -0
  74. package/src/elements/nces/WorkflowFailureActions.cjs +16 -0
  75. package/src/elements/nces/WorkflowFailureActions.mjs +13 -0
  76. package/src/elements/nces/WorkflowOutputs.cjs +16 -0
  77. package/src/elements/nces/WorkflowOutputs.mjs +13 -0
  78. package/src/elements/nces/WorkflowParameters.cjs +17 -0
  79. package/src/elements/nces/WorkflowParameters.mjs +14 -0
  80. package/src/elements/nces/WorkflowSteps.cjs +16 -0
  81. package/src/elements/nces/WorkflowSteps.mjs +13 -0
  82. package/src/elements/nces/WorkflowSuccessActions.cjs +16 -0
  83. package/src/elements/nces/WorkflowSuccessActions.mjs +13 -0
  84. package/src/elements/nces/Workflows.cjs +16 -0
  85. package/src/elements/nces/Workflows.mjs +13 -0
  86. package/src/index.cjs +146 -0
  87. package/src/index.mjs +38 -0
  88. package/src/media-types.cjs +34 -0
  89. package/src/media-types.mjs +30 -0
  90. package/src/namespace.cjs +49 -0
  91. package/src/namespace.mjs +44 -0
  92. package/src/predicates.cjs +467 -0
  93. package/src/predicates.mjs +461 -0
  94. package/src/refractor/index.cjs +52 -0
  95. package/src/refractor/index.mjs +46 -0
  96. package/src/refractor/plugins/replace-empty-element.cjs +89 -0
  97. package/src/refractor/plugins/replace-empty-element.mjs +83 -0
  98. package/src/refractor/predicates.cjs +17 -0
  99. package/src/refractor/predicates.mjs +11 -0
  100. package/src/refractor/registration.cjs +53 -0
  101. package/src/refractor/registration.mjs +34 -0
  102. package/src/refractor/specification.cjs +294 -0
  103. package/src/refractor/specification.mjs +289 -0
  104. package/src/refractor/toolbox.cjs +31 -0
  105. package/src/refractor/toolbox.mjs +23 -0
  106. package/src/refractor/visitors/FallbackVisitor.cjs +24 -0
  107. package/src/refractor/visitors/FallbackVisitor.mjs +18 -0
  108. package/src/refractor/visitors/SpecificationExtensionVisitor.cjs +18 -0
  109. package/src/refractor/visitors/SpecificationExtensionVisitor.mjs +13 -0
  110. package/src/refractor/visitors/SpecificationVisitor.cjs +74 -0
  111. package/src/refractor/visitors/SpecificationVisitor.mjs +68 -0
  112. package/src/refractor/visitors/Visitor.cjs +31 -0
  113. package/src/refractor/visitors/Visitor.mjs +28 -0
  114. package/src/refractor/visitors/arazzo-1/ArazzoVisitor.cjs +26 -0
  115. package/src/refractor/visitors/arazzo-1/ArazzoVisitor.mjs +20 -0
  116. package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.cjs +34 -0
  117. package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.mjs +28 -0
  118. package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.cjs +34 -0
  119. package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.mjs +28 -0
  120. package/src/refractor/visitors/arazzo-1/components/FailureActionsVisitor.cjs +26 -0
  121. package/src/refractor/visitors/arazzo-1/components/FailureActionsVisitor.mjs +20 -0
  122. package/src/refractor/visitors/arazzo-1/components/InputsVisitor.cjs +26 -0
  123. package/src/refractor/visitors/arazzo-1/components/InputsVisitor.mjs +20 -0
  124. package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.cjs +26 -0
  125. package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.mjs +20 -0
  126. package/src/refractor/visitors/arazzo-1/components/SuccessActionsVisitor.cjs +26 -0
  127. package/src/refractor/visitors/arazzo-1/components/SuccessActionsVisitor.mjs +20 -0
  128. package/src/refractor/visitors/arazzo-1/components/index.cjs +26 -0
  129. package/src/refractor/visitors/arazzo-1/components/index.mjs +20 -0
  130. package/src/refractor/visitors/arazzo-1/criterion/TypeVisitor.cjs +22 -0
  131. package/src/refractor/visitors/arazzo-1/criterion/TypeVisitor.mjs +16 -0
  132. package/src/refractor/visitors/arazzo-1/criterion/index.cjs +26 -0
  133. package/src/refractor/visitors/arazzo-1/criterion/index.mjs +20 -0
  134. package/src/refractor/visitors/arazzo-1/criterion-expression-type/VersionVisitor.cjs +17 -0
  135. package/src/refractor/visitors/arazzo-1/criterion-expression-type/VersionVisitor.mjs +12 -0
  136. package/src/refractor/visitors/arazzo-1/criterion-expression-type/index.cjs +26 -0
  137. package/src/refractor/visitors/arazzo-1/criterion-expression-type/index.mjs +20 -0
  138. package/src/refractor/visitors/arazzo-1/failure-action/CriteriaVisitor.cjs +34 -0
  139. package/src/refractor/visitors/arazzo-1/failure-action/CriteriaVisitor.mjs +28 -0
  140. package/src/refractor/visitors/arazzo-1/failure-action/index.cjs +26 -0
  141. package/src/refractor/visitors/arazzo-1/failure-action/index.mjs +20 -0
  142. package/src/refractor/visitors/arazzo-1/index.cjs +32 -0
  143. package/src/refractor/visitors/arazzo-1/index.mjs +26 -0
  144. package/src/refractor/visitors/arazzo-1/info/VersionVisitor.cjs +18 -0
  145. package/src/refractor/visitors/arazzo-1/info/VersionVisitor.mjs +13 -0
  146. package/src/refractor/visitors/arazzo-1/info/index.cjs +26 -0
  147. package/src/refractor/visitors/arazzo-1/info/index.mjs +20 -0
  148. package/src/refractor/visitors/arazzo-1/json-schema/index.cjs +17 -0
  149. package/src/refractor/visitors/arazzo-1/json-schema/index.mjs +12 -0
  150. package/src/refractor/visitors/arazzo-1/parameter/index.cjs +26 -0
  151. package/src/refractor/visitors/arazzo-1/parameter/index.mjs +20 -0
  152. package/src/refractor/visitors/arazzo-1/payload-replacement/index.cjs +26 -0
  153. package/src/refractor/visitors/arazzo-1/payload-replacement/index.mjs +20 -0
  154. package/src/refractor/visitors/arazzo-1/request-body/Replacements.cjs +34 -0
  155. package/src/refractor/visitors/arazzo-1/request-body/Replacements.mjs +28 -0
  156. package/src/refractor/visitors/arazzo-1/request-body/index.cjs +26 -0
  157. package/src/refractor/visitors/arazzo-1/request-body/index.mjs +20 -0
  158. package/src/refractor/visitors/arazzo-1/reusable/ReferenceVisitor.cjs +18 -0
  159. package/src/refractor/visitors/arazzo-1/reusable/ReferenceVisitor.mjs +12 -0
  160. package/src/refractor/visitors/arazzo-1/reusable/index.cjs +36 -0
  161. package/src/refractor/visitors/arazzo-1/reusable/index.mjs +30 -0
  162. package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.cjs +17 -0
  163. package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.mjs +12 -0
  164. package/src/refractor/visitors/arazzo-1/source-description/index.cjs +26 -0
  165. package/src/refractor/visitors/arazzo-1/source-description/index.mjs +20 -0
  166. package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.cjs +38 -0
  167. package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.mjs +32 -0
  168. package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.cjs +38 -0
  169. package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.mjs +32 -0
  170. package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.cjs +25 -0
  171. package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.mjs +19 -0
  172. package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.cjs +38 -0
  173. package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.mjs +32 -0
  174. package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.cjs +33 -0
  175. package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.mjs +27 -0
  176. package/src/refractor/visitors/arazzo-1/step/index.cjs +26 -0
  177. package/src/refractor/visitors/arazzo-1/step/index.mjs +20 -0
  178. package/src/refractor/visitors/arazzo-1/success-action/CriteriaVisitor.cjs +34 -0
  179. package/src/refractor/visitors/arazzo-1/success-action/CriteriaVisitor.mjs +28 -0
  180. package/src/refractor/visitors/arazzo-1/success-action/index.cjs +26 -0
  181. package/src/refractor/visitors/arazzo-1/success-action/index.mjs +20 -0
  182. package/src/refractor/visitors/arazzo-1/workflow/DependsOnVisitor.cjs +34 -0
  183. package/src/refractor/visitors/arazzo-1/workflow/DependsOnVisitor.mjs +28 -0
  184. package/src/refractor/visitors/arazzo-1/workflow/FailureActionsVisitor.cjs +38 -0
  185. package/src/refractor/visitors/arazzo-1/workflow/FailureActionsVisitor.mjs +32 -0
  186. package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.cjs +25 -0
  187. package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.mjs +19 -0
  188. package/src/refractor/visitors/arazzo-1/workflow/ParametersVisitor.cjs +38 -0
  189. package/src/refractor/visitors/arazzo-1/workflow/ParametersVisitor.mjs +32 -0
  190. package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.cjs +33 -0
  191. package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.mjs +27 -0
  192. package/src/refractor/visitors/arazzo-1/workflow/SuccessActionsVisitor.cjs +38 -0
  193. package/src/refractor/visitors/arazzo-1/workflow/SuccessActionsVisitor.mjs +32 -0
  194. package/src/refractor/visitors/arazzo-1/workflow/index.cjs +26 -0
  195. package/src/refractor/visitors/arazzo-1/workflow/index.mjs +20 -0
  196. package/src/refractor/visitors/generics/FixedFieldsVisitor.cjs +67 -0
  197. package/src/refractor/visitors/generics/FixedFieldsVisitor.mjs +60 -0
  198. package/src/refractor/visitors/generics/MapVisitor.cjs +21 -0
  199. package/src/refractor/visitors/generics/MapVisitor.mjs +15 -0
  200. package/src/refractor/visitors/generics/PatternedFieldsVisitor.cjs +67 -0
  201. package/src/refractor/visitors/generics/PatternedFieldsVisitor.mjs +61 -0
  202. package/src/traversal/visitor.cjs +38 -0
  203. package/src/traversal/visitor.mjs +35 -0
  204. package/types/apidom-ns-arazzo-1.d.ts +1852 -0
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class SourceDescription extends _apidomCore.ObjectElement {
10
+ constructor(content, meta, attributes) {
11
+ super(content, meta, attributes);
12
+ this.element = 'sourceDescription';
13
+ }
14
+ get name() {
15
+ return this.get('name');
16
+ }
17
+ set name(name) {
18
+ this.set('name', name);
19
+ }
20
+ get url() {
21
+ return this.get('url');
22
+ }
23
+ set url(url) {
24
+ this.set('url', url);
25
+ }
26
+ get type() {
27
+ return this.get('type');
28
+ }
29
+ set type(type) {
30
+ this.set('type', type);
31
+ }
32
+ }
33
+ var _default = exports.default = SourceDescription;
@@ -0,0 +1,30 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class SourceDescription extends ObjectElement {
7
+ constructor(content, meta, attributes) {
8
+ super(content, meta, attributes);
9
+ this.element = 'sourceDescription';
10
+ }
11
+ get name() {
12
+ return this.get('name');
13
+ }
14
+ set name(name) {
15
+ this.set('name', name);
16
+ }
17
+ get url() {
18
+ return this.get('url');
19
+ }
20
+ set url(url) {
21
+ this.set('url', url);
22
+ }
23
+ get type() {
24
+ return this.get('type');
25
+ }
26
+ set type(type) {
27
+ this.set('type', type);
28
+ }
29
+ }
30
+ export default SourceDescription;
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class Step extends _apidomCore.ObjectElement {
10
+ constructor(content, meta, attributes) {
11
+ super(content, meta, attributes);
12
+ this.element = 'step';
13
+ }
14
+ get description() {
15
+ return this.get('description');
16
+ }
17
+ set description(description) {
18
+ this.set('description', description);
19
+ }
20
+ get stepId() {
21
+ return this.get('stepId');
22
+ }
23
+ set stepId(stepId) {
24
+ this.set('stepId', stepId);
25
+ }
26
+ get operationId() {
27
+ return this.get('operationId');
28
+ }
29
+ set operationId(operationId) {
30
+ this.set('operationId', operationId);
31
+ }
32
+ get operationPath() {
33
+ return this.get('operationPath');
34
+ }
35
+ set operationPath(operationPath) {
36
+ this.set('operationPath', operationPath);
37
+ }
38
+ get workflowId() {
39
+ return this.get('workflowId');
40
+ }
41
+ set workflowId(workflowId) {
42
+ this.set('workflowId', workflowId);
43
+ }
44
+ get parameters() {
45
+ return this.get('parameters');
46
+ }
47
+ set parameters(parameters) {
48
+ this.set('parameters', parameters);
49
+ }
50
+ get requestBody() {
51
+ return this.get('requestBody');
52
+ }
53
+ set requestBody(requestBody) {
54
+ this.set('requestBody', requestBody);
55
+ }
56
+ get successCriteria() {
57
+ return this.get('successCriteria');
58
+ }
59
+ set successCriteria(successCriteria) {
60
+ this.set('successCriteria', successCriteria);
61
+ }
62
+ get onSuccess() {
63
+ return this.get('onSuccess');
64
+ }
65
+ set onSuccess(onSuccess) {
66
+ this.set('onSuccess', onSuccess);
67
+ }
68
+ get onFailure() {
69
+ return this.get('onFailure');
70
+ }
71
+ set onFailure(onFailure) {
72
+ this.set('onFailure', onFailure);
73
+ }
74
+ get outputs() {
75
+ return this.get('outputs');
76
+ }
77
+ set outputs(outputs) {
78
+ this.set('outputs', outputs);
79
+ }
80
+ }
81
+ var _default = exports.default = Step;
@@ -0,0 +1,77 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+ /**
3
+ * @public
4
+ */
5
+ class Step extends ObjectElement {
6
+ constructor(content, meta, attributes) {
7
+ super(content, meta, attributes);
8
+ this.element = 'step';
9
+ }
10
+ get description() {
11
+ return this.get('description');
12
+ }
13
+ set description(description) {
14
+ this.set('description', description);
15
+ }
16
+ get stepId() {
17
+ return this.get('stepId');
18
+ }
19
+ set stepId(stepId) {
20
+ this.set('stepId', stepId);
21
+ }
22
+ get operationId() {
23
+ return this.get('operationId');
24
+ }
25
+ set operationId(operationId) {
26
+ this.set('operationId', operationId);
27
+ }
28
+ get operationPath() {
29
+ return this.get('operationPath');
30
+ }
31
+ set operationPath(operationPath) {
32
+ this.set('operationPath', operationPath);
33
+ }
34
+ get workflowId() {
35
+ return this.get('workflowId');
36
+ }
37
+ set workflowId(workflowId) {
38
+ this.set('workflowId', workflowId);
39
+ }
40
+ get parameters() {
41
+ return this.get('parameters');
42
+ }
43
+ set parameters(parameters) {
44
+ this.set('parameters', parameters);
45
+ }
46
+ get requestBody() {
47
+ return this.get('requestBody');
48
+ }
49
+ set requestBody(requestBody) {
50
+ this.set('requestBody', requestBody);
51
+ }
52
+ get successCriteria() {
53
+ return this.get('successCriteria');
54
+ }
55
+ set successCriteria(successCriteria) {
56
+ this.set('successCriteria', successCriteria);
57
+ }
58
+ get onSuccess() {
59
+ return this.get('onSuccess');
60
+ }
61
+ set onSuccess(onSuccess) {
62
+ this.set('onSuccess', onSuccess);
63
+ }
64
+ get onFailure() {
65
+ return this.get('onFailure');
66
+ }
67
+ set onFailure(onFailure) {
68
+ this.set('onFailure', onFailure);
69
+ }
70
+ get outputs() {
71
+ return this.get('outputs');
72
+ }
73
+ set outputs(outputs) {
74
+ this.set('outputs', outputs);
75
+ }
76
+ }
77
+ export default Step;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class SuccessAction extends _apidomCore.ObjectElement {
10
+ constructor(content, meta, attributes) {
11
+ super(content, meta, attributes);
12
+ this.element = 'successAction';
13
+ }
14
+ get name() {
15
+ return this.get('name');
16
+ }
17
+ set name(name) {
18
+ this.set('name', name);
19
+ }
20
+ get type() {
21
+ return this.get('type');
22
+ }
23
+ set type(type) {
24
+ this.set('type', type);
25
+ }
26
+ get workflowId() {
27
+ return this.get('workflowId');
28
+ }
29
+ set workflowId(workflowId) {
30
+ this.set('workflowId', workflowId);
31
+ }
32
+ get stepId() {
33
+ return this.get('stepId');
34
+ }
35
+ set stepId(stepId) {
36
+ this.set('stepId', stepId);
37
+ }
38
+ get criteria() {
39
+ return this.get('criteria');
40
+ }
41
+ set criteria(criteria) {
42
+ this.set('criteria', criteria);
43
+ }
44
+ }
45
+ var _default = exports.default = SuccessAction;
@@ -0,0 +1,41 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+ /**
3
+ * @public
4
+ */
5
+ class SuccessAction extends ObjectElement {
6
+ constructor(content, meta, attributes) {
7
+ super(content, meta, attributes);
8
+ this.element = 'successAction';
9
+ }
10
+ get name() {
11
+ return this.get('name');
12
+ }
13
+ set name(name) {
14
+ this.set('name', name);
15
+ }
16
+ get type() {
17
+ return this.get('type');
18
+ }
19
+ set type(type) {
20
+ this.set('type', type);
21
+ }
22
+ get workflowId() {
23
+ return this.get('workflowId');
24
+ }
25
+ set workflowId(workflowId) {
26
+ this.set('workflowId', workflowId);
27
+ }
28
+ get stepId() {
29
+ return this.get('stepId');
30
+ }
31
+ set stepId(stepId) {
32
+ this.set('stepId', stepId);
33
+ }
34
+ get criteria() {
35
+ return this.get('criteria');
36
+ }
37
+ set criteria(criteria) {
38
+ this.set('criteria', criteria);
39
+ }
40
+ }
41
+ export default SuccessAction;
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class Workflow extends _apidomCore.ObjectElement {
10
+ constructor(content, meta, attributes) {
11
+ super(content, meta, attributes);
12
+ this.element = 'workflow';
13
+ }
14
+ get workflowId() {
15
+ return this.get('workflowId');
16
+ }
17
+ set workflowId(workflowId) {
18
+ this.set('workflowId', workflowId);
19
+ }
20
+ get summary() {
21
+ return this.get('summary');
22
+ }
23
+ set summary(summary) {
24
+ this.set('summary', summary);
25
+ }
26
+ get description() {
27
+ return this.get('description');
28
+ }
29
+ set description(description) {
30
+ this.set('description', description);
31
+ }
32
+ get inputs() {
33
+ return this.get('inputs');
34
+ }
35
+ set inputs(inputs) {
36
+ this.set('inputs', inputs);
37
+ }
38
+ get dependsOn() {
39
+ return this.get('dependsOn');
40
+ }
41
+ set dependsOn(dependsOn) {
42
+ this.set('dependsOn', dependsOn);
43
+ }
44
+ get steps() {
45
+ return this.get('steps');
46
+ }
47
+ set steps(steps) {
48
+ this.set('steps', steps);
49
+ }
50
+ get successActions() {
51
+ return this.get('successActions');
52
+ }
53
+ set successActions(successActions) {
54
+ this.set('successActions', successActions);
55
+ }
56
+ get failureActions() {
57
+ return this.get('failureActions');
58
+ }
59
+ set failureActions(failureActions) {
60
+ this.set('failureActions', failureActions);
61
+ }
62
+ get outputs() {
63
+ return this.get('outputs');
64
+ }
65
+ set outputs(outputs) {
66
+ this.set('outputs', outputs);
67
+ }
68
+ get parameters() {
69
+ return this.get('parameters');
70
+ }
71
+ set parameters(parameters) {
72
+ this.set('parameters', parameters);
73
+ }
74
+ }
75
+ var _default = exports.default = Workflow;
@@ -0,0 +1,71 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+ /**
3
+ * @public
4
+ */
5
+ class Workflow extends ObjectElement {
6
+ constructor(content, meta, attributes) {
7
+ super(content, meta, attributes);
8
+ this.element = 'workflow';
9
+ }
10
+ get workflowId() {
11
+ return this.get('workflowId');
12
+ }
13
+ set workflowId(workflowId) {
14
+ this.set('workflowId', workflowId);
15
+ }
16
+ get summary() {
17
+ return this.get('summary');
18
+ }
19
+ set summary(summary) {
20
+ this.set('summary', summary);
21
+ }
22
+ get description() {
23
+ return this.get('description');
24
+ }
25
+ set description(description) {
26
+ this.set('description', description);
27
+ }
28
+ get inputs() {
29
+ return this.get('inputs');
30
+ }
31
+ set inputs(inputs) {
32
+ this.set('inputs', inputs);
33
+ }
34
+ get dependsOn() {
35
+ return this.get('dependsOn');
36
+ }
37
+ set dependsOn(dependsOn) {
38
+ this.set('dependsOn', dependsOn);
39
+ }
40
+ get steps() {
41
+ return this.get('steps');
42
+ }
43
+ set steps(steps) {
44
+ this.set('steps', steps);
45
+ }
46
+ get successActions() {
47
+ return this.get('successActions');
48
+ }
49
+ set successActions(successActions) {
50
+ this.set('successActions', successActions);
51
+ }
52
+ get failureActions() {
53
+ return this.get('failureActions');
54
+ }
55
+ set failureActions(failureActions) {
56
+ this.set('failureActions', failureActions);
57
+ }
58
+ get outputs() {
59
+ return this.get('outputs');
60
+ }
61
+ set outputs(outputs) {
62
+ this.set('outputs', outputs);
63
+ }
64
+ get parameters() {
65
+ return this.get('parameters');
66
+ }
67
+ set parameters(parameters) {
68
+ this.set('parameters', parameters);
69
+ }
70
+ }
71
+ export default Workflow;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class ComponentsFailureActions extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'components-failure-actions';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(ComponentsFailureActions.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = ComponentsFailureActions;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class ComponentsFailureActions extends ObjectElement {
7
+ static primaryClass = 'components-failure-actions';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(ComponentsFailureActions.primaryClass);
11
+ }
12
+ }
13
+ export default ComponentsFailureActions;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class ComponentsInputs extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'components-inputs';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(ComponentsInputs.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = ComponentsInputs;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class ComponentsInputs extends ObjectElement {
7
+ static primaryClass = 'components-inputs';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(ComponentsInputs.primaryClass);
11
+ }
12
+ }
13
+ export default ComponentsInputs;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class ComponentsParameters extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'components-parameters';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(ComponentsParameters.primaryClass);
14
+ this.classes.push('parameters');
15
+ }
16
+ }
17
+ var _default = exports.default = ComponentsParameters;
@@ -0,0 +1,14 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class ComponentsParameters extends ObjectElement {
7
+ static primaryClass = 'components-parameters';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(ComponentsParameters.primaryClass);
11
+ this.classes.push('parameters');
12
+ }
13
+ }
14
+ export default ComponentsParameters;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class ComponentsSuccessActions extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'components-success-actions';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(ComponentsSuccessActions.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = ComponentsSuccessActions;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class ComponentsSuccessActions extends ObjectElement {
7
+ static primaryClass = 'components-success-actions';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(ComponentsSuccessActions.primaryClass);
11
+ }
12
+ }
13
+ export default ComponentsSuccessActions;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class FailureActionCriteria extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'failure-action-criteria';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(FailureActionCriteria.primaryClass);
14
+ this.classes.push('criteria');
15
+ }
16
+ }
17
+ var _default = exports.default = FailureActionCriteria;
@@ -0,0 +1,14 @@
1
+ import { ArrayElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class FailureActionCriteria extends ArrayElement {
7
+ static primaryClass = 'failure-action-criteria';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(FailureActionCriteria.primaryClass);
11
+ this.classes.push('criteria');
12
+ }
13
+ }
14
+ export default FailureActionCriteria;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class RequestBodyReplacements extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'request-body-replacements';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(RequestBodyReplacements.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = RequestBodyReplacements;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class RequestBodyReplacements extends ArrayElement {
7
+ static primaryClass = 'request-body-replacements';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(RequestBodyReplacements.primaryClass);
11
+ }
12
+ }
13
+ export default RequestBodyReplacements;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@speclynx/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class SourceDescriptions extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'source-descriptions';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(SourceDescriptions.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = SourceDescriptions;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@speclynx/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class SourceDescriptions extends ArrayElement {
7
+ static primaryClass = 'source-descriptions';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(SourceDescriptions.primaryClass);
11
+ }
12
+ }
13
+ export default SourceDescriptions;