@swagger-api/apidom-ns-arazzo-1 1.0.0-beta.30

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 (159) hide show
  1. package/CHANGELOG.md +252 -0
  2. package/LICENSES/AFL-3.0.txt +182 -0
  3. package/LICENSES/Apache-2.0.txt +202 -0
  4. package/LICENSES/BSD-3-Clause.txt +26 -0
  5. package/LICENSES/MIT.txt +9 -0
  6. package/NOTICE +83 -0
  7. package/README.md +203 -0
  8. package/dist/apidom-ns-arazzo-1.browser.js +26005 -0
  9. package/dist/apidom-ns-arazzo-1.browser.min.js +1 -0
  10. package/package.json +63 -0
  11. package/src/elements/ArazzoSpec.cjs +17 -0
  12. package/src/elements/ArazzoSpec.mjs +14 -0
  13. package/src/elements/ArazzoSpecification1.cjs +47 -0
  14. package/src/elements/ArazzoSpecification1.mjs +43 -0
  15. package/src/elements/Components.cjs +27 -0
  16. package/src/elements/Components.mjs +24 -0
  17. package/src/elements/Criterion.cjs +33 -0
  18. package/src/elements/Criterion.mjs +30 -0
  19. package/src/elements/FailureAction.cjs +51 -0
  20. package/src/elements/FailureAction.mjs +48 -0
  21. package/src/elements/Info.cjs +40 -0
  22. package/src/elements/Info.mjs +37 -0
  23. package/src/elements/Parameter.cjs +45 -0
  24. package/src/elements/Parameter.mjs +42 -0
  25. package/src/elements/Reference.cjs +28 -0
  26. package/src/elements/Reference.mjs +25 -0
  27. package/src/elements/SourceDescription.cjs +33 -0
  28. package/src/elements/SourceDescription.mjs +30 -0
  29. package/src/elements/Step.cjs +81 -0
  30. package/src/elements/Step.mjs +78 -0
  31. package/src/elements/SuccessAction.cjs +39 -0
  32. package/src/elements/SuccessAction.mjs +36 -0
  33. package/src/elements/Workflow.cjs +51 -0
  34. package/src/elements/Workflow.mjs +47 -0
  35. package/src/elements/nces/ComponentsInputs.cjs +16 -0
  36. package/src/elements/nces/ComponentsInputs.mjs +13 -0
  37. package/src/elements/nces/ComponentsParameters.cjs +16 -0
  38. package/src/elements/nces/ComponentsParameters.mjs +13 -0
  39. package/src/elements/nces/FailureActionCriteria.cjs +17 -0
  40. package/src/elements/nces/FailureActionCriteria.mjs +14 -0
  41. package/src/elements/nces/SourceDescriptions.cjs +16 -0
  42. package/src/elements/nces/SourceDescriptions.mjs +13 -0
  43. package/src/elements/nces/StepDependsOn.cjs +16 -0
  44. package/src/elements/nces/StepDependsOn.mjs +13 -0
  45. package/src/elements/nces/StepOnFailure.cjs +16 -0
  46. package/src/elements/nces/StepOnFailure.mjs +13 -0
  47. package/src/elements/nces/StepOnSuccess.cjs +16 -0
  48. package/src/elements/nces/StepOnSuccess.mjs +13 -0
  49. package/src/elements/nces/StepOutputs.cjs +16 -0
  50. package/src/elements/nces/StepOutputs.mjs +13 -0
  51. package/src/elements/nces/StepParameters.cjs +17 -0
  52. package/src/elements/nces/StepParameters.mjs +14 -0
  53. package/src/elements/nces/StepSuccessCriteria.cjs +17 -0
  54. package/src/elements/nces/StepSuccessCriteria.mjs +14 -0
  55. package/src/elements/nces/SuccessActionCriteria.cjs +17 -0
  56. package/src/elements/nces/SuccessActionCriteria.mjs +14 -0
  57. package/src/elements/nces/WorkflowOutputs.cjs +16 -0
  58. package/src/elements/nces/WorkflowOutputs.mjs +13 -0
  59. package/src/elements/nces/WorkflowSteps.cjs +16 -0
  60. package/src/elements/nces/WorkflowSteps.mjs +13 -0
  61. package/src/elements/nces/Workflows.cjs +16 -0
  62. package/src/elements/nces/Workflows.mjs +13 -0
  63. package/src/index.cjs +115 -0
  64. package/src/index.mjs +32 -0
  65. package/src/media-types.cjs +34 -0
  66. package/src/media-types.mjs +30 -0
  67. package/src/namespace.cjs +43 -0
  68. package/src/namespace.mjs +38 -0
  69. package/src/predicates.cjs +311 -0
  70. package/src/predicates.mjs +305 -0
  71. package/src/refractor/index.cjs +52 -0
  72. package/src/refractor/index.mjs +46 -0
  73. package/src/refractor/plugins/replace-empty-element.cjs +89 -0
  74. package/src/refractor/plugins/replace-empty-element.mjs +83 -0
  75. package/src/refractor/predicates.cjs +17 -0
  76. package/src/refractor/predicates.mjs +11 -0
  77. package/src/refractor/registration.cjs +44 -0
  78. package/src/refractor/registration.mjs +28 -0
  79. package/src/refractor/specification.cjs +237 -0
  80. package/src/refractor/specification.mjs +231 -0
  81. package/src/refractor/toolbox.cjs +23 -0
  82. package/src/refractor/toolbox.mjs +17 -0
  83. package/src/refractor/visitors/FallbackVisitor.cjs +24 -0
  84. package/src/refractor/visitors/FallbackVisitor.mjs +18 -0
  85. package/src/refractor/visitors/SpecificationExtensionVisitor.cjs +18 -0
  86. package/src/refractor/visitors/SpecificationExtensionVisitor.mjs +13 -0
  87. package/src/refractor/visitors/SpecificationVisitor.cjs +74 -0
  88. package/src/refractor/visitors/SpecificationVisitor.mjs +68 -0
  89. package/src/refractor/visitors/Visitor.cjs +34 -0
  90. package/src/refractor/visitors/Visitor.mjs +31 -0
  91. package/src/refractor/visitors/arazzo-1/ArazzoSpecVisitor.cjs +26 -0
  92. package/src/refractor/visitors/arazzo-1/ArazzoSpecVisitor.mjs +20 -0
  93. package/src/refractor/visitors/arazzo-1/FailureActionCriteriaVisitor.cjs +34 -0
  94. package/src/refractor/visitors/arazzo-1/FailureActionCriteriaVisitor.mjs +28 -0
  95. package/src/refractor/visitors/arazzo-1/ParametersVisitor.cjs +39 -0
  96. package/src/refractor/visitors/arazzo-1/ParametersVisitor.mjs +33 -0
  97. package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.cjs +34 -0
  98. package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.mjs +28 -0
  99. package/src/refractor/visitors/arazzo-1/SuccessActionCriteriaVisitor.cjs +34 -0
  100. package/src/refractor/visitors/arazzo-1/SuccessActionCriteriaVisitor.mjs +28 -0
  101. package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.cjs +34 -0
  102. package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.mjs +28 -0
  103. package/src/refractor/visitors/arazzo-1/components/InputsVisitor.cjs +25 -0
  104. package/src/refractor/visitors/arazzo-1/components/InputsVisitor.mjs +19 -0
  105. package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.cjs +25 -0
  106. package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.mjs +19 -0
  107. package/src/refractor/visitors/arazzo-1/components/index.cjs +26 -0
  108. package/src/refractor/visitors/arazzo-1/components/index.mjs +20 -0
  109. package/src/refractor/visitors/arazzo-1/criterion/index.cjs +26 -0
  110. package/src/refractor/visitors/arazzo-1/criterion/index.mjs +20 -0
  111. package/src/refractor/visitors/arazzo-1/failure-action/index.cjs +26 -0
  112. package/src/refractor/visitors/arazzo-1/failure-action/index.mjs +20 -0
  113. package/src/refractor/visitors/arazzo-1/index.cjs +32 -0
  114. package/src/refractor/visitors/arazzo-1/index.mjs +26 -0
  115. package/src/refractor/visitors/arazzo-1/info/VersionVisitor.cjs +18 -0
  116. package/src/refractor/visitors/arazzo-1/info/VersionVisitor.mjs +13 -0
  117. package/src/refractor/visitors/arazzo-1/info/index.cjs +26 -0
  118. package/src/refractor/visitors/arazzo-1/info/index.mjs +20 -0
  119. package/src/refractor/visitors/arazzo-1/parameter/index.cjs +26 -0
  120. package/src/refractor/visitors/arazzo-1/parameter/index.mjs +20 -0
  121. package/src/refractor/visitors/arazzo-1/reference/$RefVisitor.cjs +18 -0
  122. package/src/refractor/visitors/arazzo-1/reference/$RefVisitor.mjs +12 -0
  123. package/src/refractor/visitors/arazzo-1/reference/index.cjs +36 -0
  124. package/src/refractor/visitors/arazzo-1/reference/index.mjs +30 -0
  125. package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.cjs +17 -0
  126. package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.mjs +12 -0
  127. package/src/refractor/visitors/arazzo-1/source-description/index.cjs +26 -0
  128. package/src/refractor/visitors/arazzo-1/source-description/index.mjs +20 -0
  129. package/src/refractor/visitors/arazzo-1/step/DependsOnVisitor.cjs +26 -0
  130. package/src/refractor/visitors/arazzo-1/step/DependsOnVisitor.mjs +20 -0
  131. package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.cjs +33 -0
  132. package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.mjs +27 -0
  133. package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.cjs +33 -0
  134. package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.mjs +27 -0
  135. package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.cjs +25 -0
  136. package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.mjs +19 -0
  137. package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.cjs +38 -0
  138. package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.mjs +32 -0
  139. package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.cjs +33 -0
  140. package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.mjs +27 -0
  141. package/src/refractor/visitors/arazzo-1/step/index.cjs +26 -0
  142. package/src/refractor/visitors/arazzo-1/step/index.mjs +20 -0
  143. package/src/refractor/visitors/arazzo-1/success-action/index.cjs +26 -0
  144. package/src/refractor/visitors/arazzo-1/success-action/index.mjs +20 -0
  145. package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.cjs +25 -0
  146. package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.mjs +19 -0
  147. package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.cjs +33 -0
  148. package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.mjs +27 -0
  149. package/src/refractor/visitors/arazzo-1/workflow/index.cjs +26 -0
  150. package/src/refractor/visitors/arazzo-1/workflow/index.mjs +20 -0
  151. package/src/refractor/visitors/generics/FixedFieldsVisitor.cjs +67 -0
  152. package/src/refractor/visitors/generics/FixedFieldsVisitor.mjs +60 -0
  153. package/src/refractor/visitors/generics/MapVisitor.cjs +21 -0
  154. package/src/refractor/visitors/generics/MapVisitor.mjs +15 -0
  155. package/src/refractor/visitors/generics/PatternedFieldsVisitor.cjs +67 -0
  156. package/src/refractor/visitors/generics/PatternedFieldsVisitor.mjs +61 -0
  157. package/src/traversal/visitor.cjs +35 -0
  158. package/src/traversal/visitor.mjs +32 -0
  159. package/types/apidom-ns-arazzo-1.d.ts +1549 -0
@@ -0,0 +1,78 @@
1
+ import { ObjectElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class Step extends ObjectElement {
7
+ constructor(content, meta, attributes) {
8
+ super(content, meta, attributes);
9
+ this.element = 'step';
10
+ }
11
+ get description() {
12
+ return this.get('description');
13
+ }
14
+ set description(description) {
15
+ this.set('description', description);
16
+ }
17
+ get stepId() {
18
+ return this.get('stepId');
19
+ }
20
+ set stepId(stepId) {
21
+ this.set('stepId', stepId);
22
+ }
23
+ get operationId() {
24
+ return this.get('operationId');
25
+ }
26
+ set operationId(operationId) {
27
+ this.set('operationId', operationId);
28
+ }
29
+ get operationRef() {
30
+ return this.get('operationRef');
31
+ }
32
+ set operationRef(operationRef) {
33
+ this.set('operationRef', operationRef);
34
+ }
35
+ get workflowId() {
36
+ return this.get('workflowId');
37
+ }
38
+ set workflowId(workflowId) {
39
+ this.set('workflowId', workflowId);
40
+ }
41
+ get parameters() {
42
+ return this.get('parameters');
43
+ }
44
+ set parameters(parameters) {
45
+ this.set('parameters', parameters);
46
+ }
47
+ get dependsOn() {
48
+ return this.get('dependsOn');
49
+ }
50
+ set dependsOn(dependsOn) {
51
+ this.set('dependsOn', dependsOn);
52
+ }
53
+ get successCriteria() {
54
+ return this.get('successCriteria');
55
+ }
56
+ set successCriteria(successCriteria) {
57
+ this.set('successCriteria', successCriteria);
58
+ }
59
+ get onSuccess() {
60
+ return this.get('onSuccess');
61
+ }
62
+ set onSuccess(onSuccess) {
63
+ this.set('onSuccess', onSuccess);
64
+ }
65
+ get onFailure() {
66
+ return this.get('onFailure');
67
+ }
68
+ set onFailure(onFailure) {
69
+ this.set('onFailure', onFailure);
70
+ }
71
+ get outputs() {
72
+ return this.get('outputs');
73
+ }
74
+ set outputs(outputs) {
75
+ this.set('outputs', outputs);
76
+ }
77
+ }
78
+ export default Step;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/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 type() {
15
+ return this.get('type');
16
+ }
17
+ set type(type) {
18
+ this.set('type', type);
19
+ }
20
+ get workflowId() {
21
+ return this.get('workflowId');
22
+ }
23
+ set workflowId(workflowId) {
24
+ this.set('workflowId', workflowId);
25
+ }
26
+ get stepId() {
27
+ return this.get('stepId');
28
+ }
29
+ set stepId(stepId) {
30
+ this.set('stepId', stepId);
31
+ }
32
+ get criteria() {
33
+ return this.get('criteria');
34
+ }
35
+ set criteria(criteria) {
36
+ this.set('criteria', criteria);
37
+ }
38
+ }
39
+ var _default = exports.default = SuccessAction;
@@ -0,0 +1,36 @@
1
+ import { ObjectElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class SuccessAction extends ObjectElement {
7
+ constructor(content, meta, attributes) {
8
+ super(content, meta, attributes);
9
+ this.element = 'successAction';
10
+ }
11
+ get type() {
12
+ return this.get('type');
13
+ }
14
+ set type(type) {
15
+ this.set('type', type);
16
+ }
17
+ get workflowId() {
18
+ return this.get('workflowId');
19
+ }
20
+ set workflowId(workflowId) {
21
+ this.set('workflowId', workflowId);
22
+ }
23
+ get stepId() {
24
+ return this.get('stepId');
25
+ }
26
+ set stepId(stepId) {
27
+ this.set('stepId', stepId);
28
+ }
29
+ get criteria() {
30
+ return this.get('criteria');
31
+ }
32
+ set criteria(criteria) {
33
+ this.set('criteria', criteria);
34
+ }
35
+ }
36
+ export default SuccessAction;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/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 steps() {
39
+ return this.get('steps');
40
+ }
41
+ set steps(steps) {
42
+ this.set('steps', steps);
43
+ }
44
+ get outputs() {
45
+ return this.get('outputs');
46
+ }
47
+ set outputs(outputs) {
48
+ this.set('outputs', outputs);
49
+ }
50
+ }
51
+ var _default = exports.default = Workflow;
@@ -0,0 +1,47 @@
1
+ import { ObjectElement } from '@swagger-api/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 steps() {
35
+ return this.get('steps');
36
+ }
37
+ set steps(steps) {
38
+ this.set('steps', steps);
39
+ }
40
+ get outputs() {
41
+ return this.get('outputs');
42
+ }
43
+ set outputs(outputs) {
44
+ this.set('outputs', outputs);
45
+ }
46
+ }
47
+ export default Workflow;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/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 '@swagger-api/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,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/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
+ }
15
+ }
16
+ var _default = exports.default = ComponentsParameters;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@swagger-api/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
+ }
12
+ }
13
+ export default ComponentsParameters;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/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 '@swagger-api/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("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class SourceDescriptions extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'sourceDescriptions';
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 '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class SourceDescriptions extends ArrayElement {
7
+ static primaryClass = 'sourceDescriptions';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(SourceDescriptions.primaryClass);
11
+ }
12
+ }
13
+ export default SourceDescriptions;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepDependsOn extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'step-depends-on';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepDependsOn.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = StepDependsOn;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepDependsOn extends ArrayElement {
7
+ static primaryClass = 'step-depends-on';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepDependsOn.primaryClass);
11
+ }
12
+ }
13
+ export default StepDependsOn;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepOnFailure extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'step-on-failure';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepOnFailure.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = StepOnFailure;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepOnFailure extends ArrayElement {
7
+ static primaryClass = 'step-on-failure';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepOnFailure.primaryClass);
11
+ }
12
+ }
13
+ export default StepOnFailure;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepOnSuccess extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'step-on-success';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepOnSuccess.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = StepOnSuccess;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepOnSuccess extends ArrayElement {
7
+ static primaryClass = 'step-on-success';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepOnSuccess.primaryClass);
11
+ }
12
+ }
13
+ export default StepOnSuccess;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepOutputs extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'step-outputs';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepOutputs.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = StepOutputs;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepOutputs extends ObjectElement {
7
+ static primaryClass = 'step-outputs';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepOutputs.primaryClass);
11
+ }
12
+ }
13
+ export default StepOutputs;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepParameters extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'step-parameters';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepParameters.primaryClass);
14
+ this.classes.push('parameters');
15
+ }
16
+ }
17
+ var _default = exports.default = StepParameters;
@@ -0,0 +1,14 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepParameters extends ArrayElement {
7
+ static primaryClass = 'step-parameters';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepParameters.primaryClass);
11
+ this.classes.push('parameters');
12
+ }
13
+ }
14
+ export default StepParameters;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class StepSuccessCriteria extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'step-success-criteria';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(StepSuccessCriteria.primaryClass);
14
+ this.classes.push('criteria');
15
+ }
16
+ }
17
+ var _default = exports.default = StepSuccessCriteria;
@@ -0,0 +1,14 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class StepSuccessCriteria extends ArrayElement {
7
+ static primaryClass = 'step-success-criteria';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(StepSuccessCriteria.primaryClass);
11
+ this.classes.push('criteria');
12
+ }
13
+ }
14
+ export default StepSuccessCriteria;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class SuccessActionCriteria extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'success-action-criteria';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(SuccessActionCriteria.primaryClass);
14
+ this.classes.push('criteria');
15
+ }
16
+ }
17
+ var _default = exports.default = SuccessActionCriteria;
@@ -0,0 +1,14 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class SuccessActionCriteria extends ArrayElement {
7
+ static primaryClass = 'success-action-criteria';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(SuccessActionCriteria.primaryClass);
11
+ this.classes.push('criteria');
12
+ }
13
+ }
14
+ export default SuccessActionCriteria;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class WorkflowOutputs extends _apidomCore.ObjectElement {
10
+ static primaryClass = 'workflow-outputs';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(WorkflowOutputs.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = WorkflowOutputs;
@@ -0,0 +1,13 @@
1
+ import { ObjectElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class WorkflowOutputs extends ObjectElement {
7
+ static primaryClass = 'workflow-outputs';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(WorkflowOutputs.primaryClass);
11
+ }
12
+ }
13
+ export default WorkflowOutputs;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomCore = require("@swagger-api/apidom-core");
6
+ /**
7
+ * @public
8
+ */
9
+ class WorkflowSteps extends _apidomCore.ArrayElement {
10
+ static primaryClass = 'workflow-steps';
11
+ constructor(content, meta, attributes) {
12
+ super(content, meta, attributes);
13
+ this.classes.push(WorkflowSteps.primaryClass);
14
+ }
15
+ }
16
+ var _default = exports.default = WorkflowSteps;
@@ -0,0 +1,13 @@
1
+ import { ArrayElement } from '@swagger-api/apidom-core';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ class WorkflowSteps extends ArrayElement {
7
+ static primaryClass = 'workflow-steps';
8
+ constructor(content, meta, attributes) {
9
+ super(content, meta, attributes);
10
+ this.classes.push(WorkflowSteps.primaryClass);
11
+ }
12
+ }
13
+ export default WorkflowSteps;