@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.
- package/CHANGELOG.md +252 -0
- package/LICENSES/AFL-3.0.txt +182 -0
- package/LICENSES/Apache-2.0.txt +202 -0
- package/LICENSES/BSD-3-Clause.txt +26 -0
- package/LICENSES/MIT.txt +9 -0
- package/NOTICE +83 -0
- package/README.md +203 -0
- package/dist/apidom-ns-arazzo-1.browser.js +26005 -0
- package/dist/apidom-ns-arazzo-1.browser.min.js +1 -0
- package/package.json +63 -0
- package/src/elements/ArazzoSpec.cjs +17 -0
- package/src/elements/ArazzoSpec.mjs +14 -0
- package/src/elements/ArazzoSpecification1.cjs +47 -0
- package/src/elements/ArazzoSpecification1.mjs +43 -0
- package/src/elements/Components.cjs +27 -0
- package/src/elements/Components.mjs +24 -0
- package/src/elements/Criterion.cjs +33 -0
- package/src/elements/Criterion.mjs +30 -0
- package/src/elements/FailureAction.cjs +51 -0
- package/src/elements/FailureAction.mjs +48 -0
- package/src/elements/Info.cjs +40 -0
- package/src/elements/Info.mjs +37 -0
- package/src/elements/Parameter.cjs +45 -0
- package/src/elements/Parameter.mjs +42 -0
- package/src/elements/Reference.cjs +28 -0
- package/src/elements/Reference.mjs +25 -0
- package/src/elements/SourceDescription.cjs +33 -0
- package/src/elements/SourceDescription.mjs +30 -0
- package/src/elements/Step.cjs +81 -0
- package/src/elements/Step.mjs +78 -0
- package/src/elements/SuccessAction.cjs +39 -0
- package/src/elements/SuccessAction.mjs +36 -0
- package/src/elements/Workflow.cjs +51 -0
- package/src/elements/Workflow.mjs +47 -0
- package/src/elements/nces/ComponentsInputs.cjs +16 -0
- package/src/elements/nces/ComponentsInputs.mjs +13 -0
- package/src/elements/nces/ComponentsParameters.cjs +16 -0
- package/src/elements/nces/ComponentsParameters.mjs +13 -0
- package/src/elements/nces/FailureActionCriteria.cjs +17 -0
- package/src/elements/nces/FailureActionCriteria.mjs +14 -0
- package/src/elements/nces/SourceDescriptions.cjs +16 -0
- package/src/elements/nces/SourceDescriptions.mjs +13 -0
- package/src/elements/nces/StepDependsOn.cjs +16 -0
- package/src/elements/nces/StepDependsOn.mjs +13 -0
- package/src/elements/nces/StepOnFailure.cjs +16 -0
- package/src/elements/nces/StepOnFailure.mjs +13 -0
- package/src/elements/nces/StepOnSuccess.cjs +16 -0
- package/src/elements/nces/StepOnSuccess.mjs +13 -0
- package/src/elements/nces/StepOutputs.cjs +16 -0
- package/src/elements/nces/StepOutputs.mjs +13 -0
- package/src/elements/nces/StepParameters.cjs +17 -0
- package/src/elements/nces/StepParameters.mjs +14 -0
- package/src/elements/nces/StepSuccessCriteria.cjs +17 -0
- package/src/elements/nces/StepSuccessCriteria.mjs +14 -0
- package/src/elements/nces/SuccessActionCriteria.cjs +17 -0
- package/src/elements/nces/SuccessActionCriteria.mjs +14 -0
- package/src/elements/nces/WorkflowOutputs.cjs +16 -0
- package/src/elements/nces/WorkflowOutputs.mjs +13 -0
- package/src/elements/nces/WorkflowSteps.cjs +16 -0
- package/src/elements/nces/WorkflowSteps.mjs +13 -0
- package/src/elements/nces/Workflows.cjs +16 -0
- package/src/elements/nces/Workflows.mjs +13 -0
- package/src/index.cjs +115 -0
- package/src/index.mjs +32 -0
- package/src/media-types.cjs +34 -0
- package/src/media-types.mjs +30 -0
- package/src/namespace.cjs +43 -0
- package/src/namespace.mjs +38 -0
- package/src/predicates.cjs +311 -0
- package/src/predicates.mjs +305 -0
- package/src/refractor/index.cjs +52 -0
- package/src/refractor/index.mjs +46 -0
- package/src/refractor/plugins/replace-empty-element.cjs +89 -0
- package/src/refractor/plugins/replace-empty-element.mjs +83 -0
- package/src/refractor/predicates.cjs +17 -0
- package/src/refractor/predicates.mjs +11 -0
- package/src/refractor/registration.cjs +44 -0
- package/src/refractor/registration.mjs +28 -0
- package/src/refractor/specification.cjs +237 -0
- package/src/refractor/specification.mjs +231 -0
- package/src/refractor/toolbox.cjs +23 -0
- package/src/refractor/toolbox.mjs +17 -0
- package/src/refractor/visitors/FallbackVisitor.cjs +24 -0
- package/src/refractor/visitors/FallbackVisitor.mjs +18 -0
- package/src/refractor/visitors/SpecificationExtensionVisitor.cjs +18 -0
- package/src/refractor/visitors/SpecificationExtensionVisitor.mjs +13 -0
- package/src/refractor/visitors/SpecificationVisitor.cjs +74 -0
- package/src/refractor/visitors/SpecificationVisitor.mjs +68 -0
- package/src/refractor/visitors/Visitor.cjs +34 -0
- package/src/refractor/visitors/Visitor.mjs +31 -0
- package/src/refractor/visitors/arazzo-1/ArazzoSpecVisitor.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/ArazzoSpecVisitor.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/FailureActionCriteriaVisitor.cjs +34 -0
- package/src/refractor/visitors/arazzo-1/FailureActionCriteriaVisitor.mjs +28 -0
- package/src/refractor/visitors/arazzo-1/ParametersVisitor.cjs +39 -0
- package/src/refractor/visitors/arazzo-1/ParametersVisitor.mjs +33 -0
- package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.cjs +34 -0
- package/src/refractor/visitors/arazzo-1/SourceDescriptionsVisitor.mjs +28 -0
- package/src/refractor/visitors/arazzo-1/SuccessActionCriteriaVisitor.cjs +34 -0
- package/src/refractor/visitors/arazzo-1/SuccessActionCriteriaVisitor.mjs +28 -0
- package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.cjs +34 -0
- package/src/refractor/visitors/arazzo-1/WorkflowsVisitor.mjs +28 -0
- package/src/refractor/visitors/arazzo-1/components/InputsVisitor.cjs +25 -0
- package/src/refractor/visitors/arazzo-1/components/InputsVisitor.mjs +19 -0
- package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.cjs +25 -0
- package/src/refractor/visitors/arazzo-1/components/ParametersVisitor.mjs +19 -0
- package/src/refractor/visitors/arazzo-1/components/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/components/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/criterion/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/criterion/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/failure-action/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/failure-action/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/index.cjs +32 -0
- package/src/refractor/visitors/arazzo-1/index.mjs +26 -0
- package/src/refractor/visitors/arazzo-1/info/VersionVisitor.cjs +18 -0
- package/src/refractor/visitors/arazzo-1/info/VersionVisitor.mjs +13 -0
- package/src/refractor/visitors/arazzo-1/info/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/info/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/parameter/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/parameter/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/reference/$RefVisitor.cjs +18 -0
- package/src/refractor/visitors/arazzo-1/reference/$RefVisitor.mjs +12 -0
- package/src/refractor/visitors/arazzo-1/reference/index.cjs +36 -0
- package/src/refractor/visitors/arazzo-1/reference/index.mjs +30 -0
- package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.cjs +17 -0
- package/src/refractor/visitors/arazzo-1/source-description/UrlVisitor.mjs +12 -0
- package/src/refractor/visitors/arazzo-1/source-description/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/source-description/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/step/DependsOnVisitor.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/step/DependsOnVisitor.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.cjs +33 -0
- package/src/refractor/visitors/arazzo-1/step/OnFailureVisitor.mjs +27 -0
- package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.cjs +33 -0
- package/src/refractor/visitors/arazzo-1/step/OnSuccessVisitor.mjs +27 -0
- package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.cjs +25 -0
- package/src/refractor/visitors/arazzo-1/step/OutputsVisitor.mjs +19 -0
- package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.cjs +38 -0
- package/src/refractor/visitors/arazzo-1/step/ParametersVisitor.mjs +32 -0
- package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.cjs +33 -0
- package/src/refractor/visitors/arazzo-1/step/SuccessCriteriaVisitor.mjs +27 -0
- package/src/refractor/visitors/arazzo-1/step/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/step/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/success-action/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/success-action/index.mjs +20 -0
- package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.cjs +25 -0
- package/src/refractor/visitors/arazzo-1/workflow/OutputsVisitor.mjs +19 -0
- package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.cjs +33 -0
- package/src/refractor/visitors/arazzo-1/workflow/StepsVisitor.mjs +27 -0
- package/src/refractor/visitors/arazzo-1/workflow/index.cjs +26 -0
- package/src/refractor/visitors/arazzo-1/workflow/index.mjs +20 -0
- package/src/refractor/visitors/generics/FixedFieldsVisitor.cjs +67 -0
- package/src/refractor/visitors/generics/FixedFieldsVisitor.mjs +60 -0
- package/src/refractor/visitors/generics/MapVisitor.cjs +21 -0
- package/src/refractor/visitors/generics/MapVisitor.mjs +15 -0
- package/src/refractor/visitors/generics/PatternedFieldsVisitor.cjs +67 -0
- package/src/refractor/visitors/generics/PatternedFieldsVisitor.mjs +61 -0
- package/src/traversal/visitor.cjs +35 -0
- package/src/traversal/visitor.mjs +32 -0
- package/types/apidom-ns-arazzo-1.d.ts +1549 -0
|
@@ -0,0 +1,47 @@
|
|
|
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 ArazzoSpecification1 extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'arazzoSpecification1';
|
|
13
|
+
this.classes.push('api');
|
|
14
|
+
this.classes.push('arazzo');
|
|
15
|
+
}
|
|
16
|
+
get arazzoSpec() {
|
|
17
|
+
return this.get('arazzoSpec');
|
|
18
|
+
}
|
|
19
|
+
set arazzoSpec(arazzoSpec) {
|
|
20
|
+
this.set('arazzoSpec', arazzoSpec);
|
|
21
|
+
}
|
|
22
|
+
get info() {
|
|
23
|
+
return this.get('info');
|
|
24
|
+
}
|
|
25
|
+
set info(info) {
|
|
26
|
+
this.set('info', info);
|
|
27
|
+
}
|
|
28
|
+
get sourceDescriptions() {
|
|
29
|
+
return this.get('sourceDescriptions');
|
|
30
|
+
}
|
|
31
|
+
set sourceDescriptions(sourceDescriptions) {
|
|
32
|
+
this.set('sourceDescriptions', sourceDescriptions);
|
|
33
|
+
}
|
|
34
|
+
get workflows() {
|
|
35
|
+
return this.get('workflows');
|
|
36
|
+
}
|
|
37
|
+
set workflows(workflows) {
|
|
38
|
+
this.set('workflows', workflows);
|
|
39
|
+
}
|
|
40
|
+
get components() {
|
|
41
|
+
return this.get('components');
|
|
42
|
+
}
|
|
43
|
+
set components(components) {
|
|
44
|
+
this.set('components', components);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
var _default = exports.default = ArazzoSpecification1;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
class ArazzoSpecification1 extends ObjectElement {
|
|
6
|
+
constructor(content, meta, attributes) {
|
|
7
|
+
super(content, meta, attributes);
|
|
8
|
+
this.element = 'arazzoSpecification1';
|
|
9
|
+
this.classes.push('api');
|
|
10
|
+
this.classes.push('arazzo');
|
|
11
|
+
}
|
|
12
|
+
get arazzoSpec() {
|
|
13
|
+
return this.get('arazzoSpec');
|
|
14
|
+
}
|
|
15
|
+
set arazzoSpec(arazzoSpec) {
|
|
16
|
+
this.set('arazzoSpec', arazzoSpec);
|
|
17
|
+
}
|
|
18
|
+
get info() {
|
|
19
|
+
return this.get('info');
|
|
20
|
+
}
|
|
21
|
+
set info(info) {
|
|
22
|
+
this.set('info', info);
|
|
23
|
+
}
|
|
24
|
+
get sourceDescriptions() {
|
|
25
|
+
return this.get('sourceDescriptions');
|
|
26
|
+
}
|
|
27
|
+
set sourceDescriptions(sourceDescriptions) {
|
|
28
|
+
this.set('sourceDescriptions', sourceDescriptions);
|
|
29
|
+
}
|
|
30
|
+
get workflows() {
|
|
31
|
+
return this.get('workflows');
|
|
32
|
+
}
|
|
33
|
+
set workflows(workflows) {
|
|
34
|
+
this.set('workflows', workflows);
|
|
35
|
+
}
|
|
36
|
+
get components() {
|
|
37
|
+
return this.get('components');
|
|
38
|
+
}
|
|
39
|
+
set components(components) {
|
|
40
|
+
this.set('components', components);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
export default ArazzoSpecification1;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 Components extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'components';
|
|
13
|
+
}
|
|
14
|
+
get inputs() {
|
|
15
|
+
return this.get('inputs');
|
|
16
|
+
}
|
|
17
|
+
set inputs(inputs) {
|
|
18
|
+
this.set('inputs', inputs);
|
|
19
|
+
}
|
|
20
|
+
get parameters() {
|
|
21
|
+
return this.get('parameters');
|
|
22
|
+
}
|
|
23
|
+
set parameters(parameters) {
|
|
24
|
+
this.set('parameters', parameters);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
var _default = exports.default = Components;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Components extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'components';
|
|
10
|
+
}
|
|
11
|
+
get inputs() {
|
|
12
|
+
return this.get('inputs');
|
|
13
|
+
}
|
|
14
|
+
set inputs(inputs) {
|
|
15
|
+
this.set('inputs', inputs);
|
|
16
|
+
}
|
|
17
|
+
get parameters() {
|
|
18
|
+
return this.get('parameters');
|
|
19
|
+
}
|
|
20
|
+
set parameters(parameters) {
|
|
21
|
+
this.set('parameters', parameters);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
export default Components;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 Criterion extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'criterion';
|
|
13
|
+
}
|
|
14
|
+
get context() {
|
|
15
|
+
return this.get('context');
|
|
16
|
+
}
|
|
17
|
+
set context(context) {
|
|
18
|
+
this.set('context', context);
|
|
19
|
+
}
|
|
20
|
+
get condition() {
|
|
21
|
+
return this.get('condition');
|
|
22
|
+
}
|
|
23
|
+
set condition(condition) {
|
|
24
|
+
this.set('condition', condition);
|
|
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 = Criterion;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Criterion extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'criterion';
|
|
10
|
+
}
|
|
11
|
+
get context() {
|
|
12
|
+
return this.get('context');
|
|
13
|
+
}
|
|
14
|
+
set context(context) {
|
|
15
|
+
this.set('context', context);
|
|
16
|
+
}
|
|
17
|
+
get condition() {
|
|
18
|
+
return this.get('condition');
|
|
19
|
+
}
|
|
20
|
+
set condition(condition) {
|
|
21
|
+
this.set('condition', condition);
|
|
22
|
+
}
|
|
23
|
+
get type() {
|
|
24
|
+
return this.get('type');
|
|
25
|
+
}
|
|
26
|
+
set type(type) {
|
|
27
|
+
this.set('type', type);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export default Criterion;
|
|
@@ -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 FailureAction extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'failureAction';
|
|
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 retryAfter() {
|
|
33
|
+
return this.get('retryAfter');
|
|
34
|
+
}
|
|
35
|
+
set retryAfter(retryAfter) {
|
|
36
|
+
this.set('retryAfter', retryAfter);
|
|
37
|
+
}
|
|
38
|
+
get retryLimit() {
|
|
39
|
+
return this.get('retryLimit');
|
|
40
|
+
}
|
|
41
|
+
set retryLimit(retryLimit) {
|
|
42
|
+
this.set('retryLimit', retryLimit);
|
|
43
|
+
}
|
|
44
|
+
get criteria() {
|
|
45
|
+
return this.get('criteria');
|
|
46
|
+
}
|
|
47
|
+
set criteria(criteria) {
|
|
48
|
+
this.set('criteria', criteria);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
var _default = exports.default = FailureAction;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class FailureAction extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'failureAction';
|
|
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 retryAfter() {
|
|
30
|
+
return this.get('retryAfter');
|
|
31
|
+
}
|
|
32
|
+
set retryAfter(retryAfter) {
|
|
33
|
+
this.set('retryAfter', retryAfter);
|
|
34
|
+
}
|
|
35
|
+
get retryLimit() {
|
|
36
|
+
return this.get('retryLimit');
|
|
37
|
+
}
|
|
38
|
+
set retryLimit(retryLimit) {
|
|
39
|
+
this.set('retryLimit', retryLimit);
|
|
40
|
+
}
|
|
41
|
+
get criteria() {
|
|
42
|
+
return this.get('criteria');
|
|
43
|
+
}
|
|
44
|
+
set criteria(criteria) {
|
|
45
|
+
this.set('criteria', criteria);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
export default FailureAction;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 Info extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'info';
|
|
13
|
+
this.classes.push('info');
|
|
14
|
+
}
|
|
15
|
+
get title() {
|
|
16
|
+
return this.get('title');
|
|
17
|
+
}
|
|
18
|
+
set title(title) {
|
|
19
|
+
this.set('title', title);
|
|
20
|
+
}
|
|
21
|
+
get summary() {
|
|
22
|
+
return this.get('summary');
|
|
23
|
+
}
|
|
24
|
+
set summary(summary) {
|
|
25
|
+
this.set('summary', summary);
|
|
26
|
+
}
|
|
27
|
+
get description() {
|
|
28
|
+
return this.get('description');
|
|
29
|
+
}
|
|
30
|
+
set description(description) {
|
|
31
|
+
this.set('description', description);
|
|
32
|
+
}
|
|
33
|
+
get version() {
|
|
34
|
+
return this.get('version');
|
|
35
|
+
}
|
|
36
|
+
set version(version) {
|
|
37
|
+
this.set('version', version);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
var _default = exports.default = Info;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Info extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'info';
|
|
10
|
+
this.classes.push('info');
|
|
11
|
+
}
|
|
12
|
+
get title() {
|
|
13
|
+
return this.get('title');
|
|
14
|
+
}
|
|
15
|
+
set title(title) {
|
|
16
|
+
this.set('title', title);
|
|
17
|
+
}
|
|
18
|
+
get summary() {
|
|
19
|
+
return this.get('summary');
|
|
20
|
+
}
|
|
21
|
+
set summary(summary) {
|
|
22
|
+
this.set('summary', summary);
|
|
23
|
+
}
|
|
24
|
+
get description() {
|
|
25
|
+
return this.get('description');
|
|
26
|
+
}
|
|
27
|
+
set description(description) {
|
|
28
|
+
this.set('description', description);
|
|
29
|
+
}
|
|
30
|
+
get version() {
|
|
31
|
+
return this.get('version');
|
|
32
|
+
}
|
|
33
|
+
set version(version) {
|
|
34
|
+
this.set('version', version);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
export default Info;
|
|
@@ -0,0 +1,45 @@
|
|
|
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 Parameter extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'parameter';
|
|
13
|
+
}
|
|
14
|
+
get name() {
|
|
15
|
+
return this.get('name');
|
|
16
|
+
}
|
|
17
|
+
set name(name) {
|
|
18
|
+
this.set('name', name);
|
|
19
|
+
}
|
|
20
|
+
get in() {
|
|
21
|
+
return this.get('in');
|
|
22
|
+
}
|
|
23
|
+
set in(val) {
|
|
24
|
+
this.set('in', val);
|
|
25
|
+
}
|
|
26
|
+
get style() {
|
|
27
|
+
return this.get('style');
|
|
28
|
+
}
|
|
29
|
+
set style(style) {
|
|
30
|
+
this.set('style', style);
|
|
31
|
+
}
|
|
32
|
+
get target() {
|
|
33
|
+
return this.get('target');
|
|
34
|
+
}
|
|
35
|
+
set target(target) {
|
|
36
|
+
this.set('target', target);
|
|
37
|
+
}
|
|
38
|
+
get value() {
|
|
39
|
+
return this.get('value');
|
|
40
|
+
}
|
|
41
|
+
set value(value) {
|
|
42
|
+
this.set('value', value);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
var _default = exports.default = Parameter;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Parameter extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'parameter';
|
|
10
|
+
}
|
|
11
|
+
get name() {
|
|
12
|
+
return this.get('name');
|
|
13
|
+
}
|
|
14
|
+
set name(name) {
|
|
15
|
+
this.set('name', name);
|
|
16
|
+
}
|
|
17
|
+
get in() {
|
|
18
|
+
return this.get('in');
|
|
19
|
+
}
|
|
20
|
+
set in(val) {
|
|
21
|
+
this.set('in', val);
|
|
22
|
+
}
|
|
23
|
+
get style() {
|
|
24
|
+
return this.get('style');
|
|
25
|
+
}
|
|
26
|
+
set style(style) {
|
|
27
|
+
this.set('style', style);
|
|
28
|
+
}
|
|
29
|
+
get target() {
|
|
30
|
+
return this.get('target');
|
|
31
|
+
}
|
|
32
|
+
set target(target) {
|
|
33
|
+
this.set('target', target);
|
|
34
|
+
}
|
|
35
|
+
get value() {
|
|
36
|
+
return this.get('value');
|
|
37
|
+
}
|
|
38
|
+
set value(value) {
|
|
39
|
+
this.set('value', value);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
export default Parameter;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 Reference extends _apidomCore.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'reference';
|
|
13
|
+
this.classes.push('arazzo-spec-reference');
|
|
14
|
+
}
|
|
15
|
+
get $ref() {
|
|
16
|
+
return this.get('$ref');
|
|
17
|
+
}
|
|
18
|
+
set $ref($ref) {
|
|
19
|
+
this.set('$ref', $ref);
|
|
20
|
+
}
|
|
21
|
+
get value() {
|
|
22
|
+
return this.get('value');
|
|
23
|
+
}
|
|
24
|
+
set value(value) {
|
|
25
|
+
this.set('value', value);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
var _default = exports.default = Reference;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ObjectElement } from '@swagger-api/apidom-core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Reference extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'reference';
|
|
10
|
+
this.classes.push('arazzo-spec-reference');
|
|
11
|
+
}
|
|
12
|
+
get $ref() {
|
|
13
|
+
return this.get('$ref');
|
|
14
|
+
}
|
|
15
|
+
set $ref($ref) {
|
|
16
|
+
this.set('$ref', $ref);
|
|
17
|
+
}
|
|
18
|
+
get value() {
|
|
19
|
+
return this.get('value');
|
|
20
|
+
}
|
|
21
|
+
set value(value) {
|
|
22
|
+
this.set('value', value);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export default Reference;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 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 '@swagger-api/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("@swagger-api/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 operationRef() {
|
|
33
|
+
return this.get('operationRef');
|
|
34
|
+
}
|
|
35
|
+
set operationRef(operationRef) {
|
|
36
|
+
this.set('operationRef', operationRef);
|
|
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 dependsOn() {
|
|
51
|
+
return this.get('dependsOn');
|
|
52
|
+
}
|
|
53
|
+
set dependsOn(dependsOn) {
|
|
54
|
+
this.set('dependsOn', dependsOn);
|
|
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;
|