@api-client/core 0.7.12 → 0.8.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.
- package/SECURITY.md +14 -0
- package/build/browser.d.ts +8 -1
- package/build/browser.js +7 -0
- package/build/browser.js.map +1 -1
- package/build/index.d.ts +8 -1
- package/build/index.js +7 -0
- package/build/index.js.map +1 -1
- package/build/src/amf/AmfMixin.d.ts +56 -42
- package/build/src/amf/AmfMixin.js +9 -3
- package/build/src/amf/AmfMixin.js.map +1 -1
- package/build/src/amf/AmfSerializer.d.ts +72 -72
- package/build/src/amf/AmfSerializer.js +9 -4
- package/build/src/amf/AmfSerializer.js.map +1 -1
- package/build/src/amf/AmfShapeGenerator.d.ts +17 -17
- package/build/src/amf/AmfShapeGenerator.js +3 -3
- package/build/src/amf/AmfShapeGenerator.js.map +1 -1
- package/build/src/amf/AmfTypes.d.ts +16 -16
- package/build/src/amf/AmfTypes.js +16 -16
- package/build/src/amf/AmfTypes.js.map +1 -1
- package/build/src/amf/ApiExampleGenerator.d.ts +3 -3
- package/build/src/amf/ApiExampleGenerator.js.map +1 -1
- package/build/src/amf/ApiMonacoSchemaGenerator.d.ts +6 -6
- package/build/src/amf/ApiMonacoSchemaGenerator.js.map +1 -1
- package/build/src/amf/ApiSchemaGenerator.d.ts +2 -2
- package/build/src/amf/ApiSchemaGenerator.js.map +1 -1
- package/build/src/amf/ApiSchemaValues.d.ts +12 -12
- package/build/src/amf/ApiSchemaValues.js.map +1 -1
- package/build/src/amf/Parsing.d.ts +5 -5
- package/build/src/amf/Utils.d.ts +6 -6
- package/build/src/amf/Utils.js.map +1 -1
- package/build/src/amf/data-node/DataNodeBase.d.ts +5 -5
- package/build/src/amf/data-node/DataNodeBase.js.map +1 -1
- package/build/src/amf/data-node/JsonDataNodeGenerator.d.ts +2 -2
- package/build/src/amf/data-node/JsonDataNodeGenerator.js.map +1 -1
- package/build/src/amf/data-node/UrlEncodedDataNodeGenerator.d.ts +2 -2
- package/build/src/amf/data-node/UrlEncodedDataNodeGenerator.js.map +1 -1
- package/build/src/amf/data-node/XmlDataNodeGenerator.d.ts +2 -2
- package/build/src/amf/data-node/XmlDataNodeGenerator.js.map +1 -1
- package/build/src/amf/definitions/Amf.d.ts +339 -339
- package/build/src/amf/definitions/Api.d.ts +158 -158
- package/build/src/amf/definitions/Base.d.ts +5 -5
- package/build/src/amf/definitions/Shapes.d.ts +46 -46
- package/build/src/amf/definitions/Shapes.js +11 -11
- package/build/src/amf/definitions/Shapes.js.map +1 -1
- package/build/src/amf/models/AmfDataNode.d.ts +5 -5
- package/build/src/amf/models/AmfDataNode.js +4 -4
- package/build/src/amf/models/AmfDataNode.js.map +1 -1
- package/build/src/amf/shape/ShapeBase.d.ts +13 -13
- package/build/src/amf/shape/ShapeBase.js.map +1 -1
- package/build/src/amf/shape/ShapeJsonSchemaGenerator.d.ts +13 -13
- package/build/src/amf/shape/ShapeJsonSchemaGenerator.js.map +1 -1
- package/build/src/amf/shape/ShapeXmlSchemaGenerator.d.ts +16 -16
- package/build/src/amf/shape/ShapeXmlSchemaGenerator.js.map +1 -1
- package/build/src/events/amf/AmfEvents.d.ts +4 -4
- package/build/src/events/amf/AmfEvents.js.map +1 -1
- package/build/src/lib/timers/Timers.d.ts +9 -0
- package/build/src/lib/timers/Timers.js +13 -0
- package/build/src/lib/timers/Timers.js.map +1 -1
- package/build/src/models/data/Bindings.d.ts +2 -2
- package/build/src/models/data/DataAssociation.d.ts +4 -4
- package/build/src/models/data/DataAssociation.js.map +1 -1
- package/build/src/models/data/DataEntity.d.ts +2 -2
- package/build/src/models/data/DataProperty.d.ts +2 -2
- package/data/apis/amf-helper-api/amf-helper-api.raml +1024 -0
- package/data/apis/amf-helper-api/examples/comment-example.json +42 -0
- package/data/apis/amf-helper-api/examples/commentCreateRequest-example.json +7 -0
- package/data/apis/amf-helper-api/examples/commentList-example.json +48 -0
- package/data/apis/amf-helper-api/examples/person.json +14 -0
- package/data/apis/amf-helper-api/examples/person.raml +13 -0
- package/data/apis/amf-helper-api/examples/person.xml +14 -0
- package/data/apis/amf-helper-api/libraries/comment-lib.raml +143 -0
- package/data/apis/amf-helper-api/library.raml +7 -0
- package/data/apis/amf-helper-api/schemas/person.json +104 -0
- package/data/apis/amf-helper-api/schemas/person.xsd +26 -0
- package/data/apis/amf-helper-api/traits/file.raml +33 -0
- package/data/apis/amf-helper-api/traits/pagination.raml +80 -0
- package/data/apis/amf-helper-api/traits/results.raml +19 -0
- package/data/apis/amf-helper-api/traits/visibility.raml +14 -0
- package/data/apis/amf-helper-api/types/app-person.raml +101 -0
- package/data/apis/amf-helper-api/types/dimensions.raml +24 -0
- package/data/apis/amf-helper-api/types/external-type.raml +7 -0
- package/data/apis/amf-helper-api/types/image.raml +23 -0
- package/data/apis/amf-helper-api/types/product.raml +52 -0
- package/data/apis/amf-helper-api/types/resource.raml +11 -0
- package/data/apis/amf-helper-api/types/standard-request.raml +50 -0
- package/data/apis/amf-helper-api/types/user.raml +37 -0
- package/data/apis/async-api/async-api.yaml +96 -0
- package/data/apis/expanded-api/expanded-api.raml +8 -0
- package/data/apis/flattened-api/flattened-api.raml +8 -0
- package/data/apis/multiple-servers/multiple-servers.yaml +112 -0
- package/data/model.js +5 -0
- package/data/models/amf-helper-api.json +85908 -0
- package/data/models/async-api.json +3108 -0
- package/data/models/expanded-api.json +251 -0
- package/data/models/flattened-api.json +251 -0
- package/data/models/multiple-servers.json +2753 -0
- package/package.json +1 -1
- package/src/amf/AmfMixin.ts +125 -117
- package/src/amf/AmfSerializer.ts +245 -240
- package/src/amf/AmfShapeGenerator.ts +23 -23
- package/src/amf/AmfTypes.ts +16 -16
- package/src/amf/ApiExampleGenerator.ts +4 -4
- package/src/amf/ApiMonacoSchemaGenerator.ts +11 -11
- package/src/amf/ApiSchemaGenerator.ts +3 -3
- package/src/amf/ApiSchemaValues.ts +21 -21
- package/src/amf/Parsing.ts +5 -5
- package/src/amf/Utils.ts +15 -15
- package/src/amf/data-node/DataNodeBase.ts +8 -8
- package/src/amf/data-node/JsonDataNodeGenerator.ts +2 -2
- package/src/amf/data-node/UrlEncodedDataNodeGenerator.ts +2 -2
- package/src/amf/data-node/XmlDataNodeGenerator.ts +2 -2
- package/src/amf/definitions/Amf.ts +315 -314
- package/src/amf/definitions/Api.ts +158 -157
- package/src/amf/definitions/Base.ts +5 -5
- package/src/amf/definitions/Shapes.ts +60 -60
- package/src/amf/models/AmfDataNode.ts +17 -17
- package/src/amf/shape/ShapeBase.ts +16 -16
- package/src/amf/shape/ShapeJsonSchemaGenerator.ts +27 -27
- package/src/amf/shape/ShapeXmlSchemaGenerator.ts +42 -42
- package/src/events/amf/AmfEvents.ts +7 -7
- package/src/lib/timers/Timers.ts +14 -0
- package/src/models/data/Bindings.ts +2 -2
- package/src/models/data/DataAssociation.ts +4 -4
- package/src/models/data/DataEntity.ts +2 -2
- package/src/models/data/DataProperty.ts +2 -2
package/SECURITY.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
We support only latest major version of the package. For previous major versions, please, upgrade the package to the newest version or introduce a PR with a fix.
|
|
6
|
+
|
|
7
|
+
| Version | Supported |
|
|
8
|
+
| ------- | ------------------ |
|
|
9
|
+
| >= 0.8.0 | :white_check_mark: |
|
|
10
|
+
| < 0.8.0 | :x: |
|
|
11
|
+
|
|
12
|
+
## Reporting a Vulnerability
|
|
13
|
+
|
|
14
|
+
Please, contact me at "jarrodek @ gmail . com" to report a security issue. I will respond as soon as I read the email.
|
package/build/browser.d.ts
CHANGED
|
@@ -54,13 +54,20 @@ export { DataProperty, IDataProperty, Kind as DataPropertyKind, DataPropertyType
|
|
|
54
54
|
export { AppRequest, IAppRequest, Kind as AppRequestKind } from './src/models/AppRequest.js';
|
|
55
55
|
export * from './src/models/AppProject.js';
|
|
56
56
|
export { AmfNamespace } from './src/amf/definitions/Namespace.js';
|
|
57
|
+
export * as ApiDefinitions from './src/amf/definitions/Api.js';
|
|
58
|
+
export * as AmfDefinitions from './src/amf/definitions/Amf.js';
|
|
59
|
+
export * as AmfShapes from './src/amf/definitions/Shapes.js';
|
|
60
|
+
export * as AmfBase from './src/amf/definitions/Base.js';
|
|
57
61
|
export { ApiExampleGenerator } from './src/amf/ApiExampleGenerator.js';
|
|
58
62
|
export { ApiMonacoSchemaGenerator } from './src/amf/ApiMonacoSchemaGenerator.js';
|
|
59
63
|
export { ApiSchemaValues } from './src/amf/ApiSchemaValues.js';
|
|
60
64
|
export { ApiSchemaGenerator } from './src/amf/ApiSchemaGenerator.js';
|
|
61
65
|
export { AmfShapeGenerator } from './src/amf/AmfShapeGenerator.js';
|
|
62
66
|
export { AmfSerializer } from './src/amf/AmfSerializer.js';
|
|
63
|
-
export { AmfMixin } from './src/amf/AmfMixin.js';
|
|
67
|
+
export { AmfMixin, ServersQueryOptions } from './src/amf/AmfMixin.js';
|
|
68
|
+
export * as AmfTypes from './src/amf/AmfTypes.js';
|
|
69
|
+
export * as AmfParsing from './src/amf/Parsing.js';
|
|
70
|
+
export * as AmfUtils from './src/amf/Utils.js';
|
|
64
71
|
export { PayloadSerializer, ISafePayload, IMultipartBody, Payload, DeserializedPayload, IBlobMeta, IFileMeta } from './src/lib/transformers/PayloadSerializer.js';
|
|
65
72
|
export { ILogger, Logger } from './src/lib/logging/Logger.js';
|
|
66
73
|
export { DummyLogger } from './src/lib/logging/DummyLogger.js';
|
package/build/browser.js
CHANGED
|
@@ -53,6 +53,10 @@ export * from './src/models/AppProject.js';
|
|
|
53
53
|
// AMF
|
|
54
54
|
//
|
|
55
55
|
export { AmfNamespace } from './src/amf/definitions/Namespace.js';
|
|
56
|
+
export * as ApiDefinitions from './src/amf/definitions/Api.js';
|
|
57
|
+
export * as AmfDefinitions from './src/amf/definitions/Amf.js';
|
|
58
|
+
export * as AmfShapes from './src/amf/definitions/Shapes.js';
|
|
59
|
+
export * as AmfBase from './src/amf/definitions/Base.js';
|
|
56
60
|
export { ApiExampleGenerator } from './src/amf/ApiExampleGenerator.js';
|
|
57
61
|
export { ApiMonacoSchemaGenerator } from './src/amf/ApiMonacoSchemaGenerator.js';
|
|
58
62
|
export { ApiSchemaValues } from './src/amf/ApiSchemaValues.js';
|
|
@@ -60,6 +64,9 @@ export { ApiSchemaGenerator } from './src/amf/ApiSchemaGenerator.js';
|
|
|
60
64
|
export { AmfShapeGenerator } from './src/amf/AmfShapeGenerator.js';
|
|
61
65
|
export { AmfSerializer } from './src/amf/AmfSerializer.js';
|
|
62
66
|
export { AmfMixin } from './src/amf/AmfMixin.js';
|
|
67
|
+
export * as AmfTypes from './src/amf/AmfTypes.js';
|
|
68
|
+
export * as AmfParsing from './src/amf/Parsing.js';
|
|
69
|
+
export * as AmfUtils from './src/amf/Utils.js';
|
|
63
70
|
//
|
|
64
71
|
// Libs
|
|
65
72
|
//
|
package/build/browser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser.js","sourceRoot":"","sources":["../browser.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"browser.js","sourceRoot":"","sources":["../browser.ts"],"names":[],"mappings":"AAAA,wDAAwD;AAMxD,OAAO,EAAE,QAAQ,EAAa,IAAI,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAErF,OAAO,EAAE,iBAAiB,EAAsB,MAAM,mCAAmC,CAAC;AAC1F,OAAO,EAAE,WAAW,EAA8L,IAAI,IAAI,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACrR,OAAO,EAAE,WAAW,EAAgB,IAAI,IAAI,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACjG,OAAO,EAAE,aAAa,EAAkB,MAAM,+BAA+B,CAAC;AAC9E,OAAO,EAAa,QAAQ,EAAE,IAAI,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACrF,OAAO,EAAe,UAAU,EAA0C,MAAM,4BAA4B,CAAC;AAC7G,OAAO,EAAgB,WAAW,EAAE,IAAI,IAAI,eAAe,EAAuB,MAAM,6BAA6B,CAAC;AACtH,OAAO,EAAE,WAAW,EAAgB,IAAI,IAAI,eAAe,EAA0O,MAAM,6BAA6B,CAAC;AACzU,OAAO,EAAgB,WAAW,EAAE,IAAI,IAAI,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACjG,OAAO,EAAE,YAAY,EAAiB,IAAI,IAAI,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrG,OAAO,EAAE,OAAO,EAAY,IAAI,IAAI,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACjF,OAAO,EAAE,OAAO,EAAY,IAAI,IAAI,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACjF,OAAO,EAAkB,aAAa,EAAE,IAAI,IAAI,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAC5H,OAAO,EAAE,WAAW,EAAgB,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAmB,cAAc,EAAE,IAAI,IAAI,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAC7G,OAAO,EAAE,aAAa,EAAkB,IAAI,IAAI,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AACzG,OAAO,EAAE,QAAQ,EAAa,IAAI,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACrF,OAAO,EAAE,QAAQ,EAAa,IAAI,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACrF,OAAO,EAAE,OAAO,EAAY,IAAI,IAAI,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACjF,OAAO,EAAE,oBAAoB,EAAyB,IAAI,IAAI,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AACrI,OAAO,EAAE,aAAa,EAAsC,IAAI,IAAI,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAC7H,OAAO,EAAE,UAAU,EAAe,IAAI,IAAI,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC7F,OAAO,EAAE,YAAY,EAAiB,IAAI,IAAI,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrG,OAAO,EAAE,WAAW,EAAgB,IAAI,IAAI,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACjG,OAAO,EAAE,aAAa,EAAkB,IAAI,IAAI,iBAAiB,EAA2F,MAAM,+BAA+B,CAAC;AAClM,OAAO,EAAE,qBAAqB,EAA0B,IAAI,IAAI,yBAAyB,EAAE,MAAM,uCAAuC,CAAC;AACzI,OAAO,EAAE,gBAAgB,EAAqB,IAAI,IAAI,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACrH,OAAO,EAAgB,WAAW,EAAoB,MAAM,6BAA6B,CAAC;AAC1F,OAAO,EAAE,iBAAiB,EAAoB,MAAM,mCAAmC,CAAC;AACxF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,MAAM,EAAW,IAAI,IAAI,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC7E,OAAO,EAAE,KAAK,EAAU,IAAI,IAAI,SAAS,EAAE,MAAM,uBAAuB,CAAC;AACzE,OAAO,EAAE,GAAG,EAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,MAAM,EAA2B,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,WAAW,EAAoC,MAAM,6BAA6B,CAAC;AAC5F,OAAO,EAAc,SAAS,EAAE,IAAI,IAAI,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAEzF,cAAc,+BAA+B,CAAC;AAG9C,OAAO,EAAS,IAAI,EAAe,UAAU,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAEhG,OAAO,EAAiE,UAAU,EAAgC,IAAI,IAAI,cAAc,EAAkC,MAAM,kCAAkC,CAAC;AACnN,OAAO,EAAa,IAAI,IAAI,YAAY,EAAE,MAAM,gCAAgC,CAAC;AACjF,OAAO,EAA+B,IAAI,IAAI,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAE3F,OAAO,EAAE,eAAe,EAAoB,IAAI,IAAI,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AACtH,OAAO,EAAE,UAAU,EAAe,IAAI,IAAI,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAClG,OAAO,EAAE,QAAQ,EAAa,IAAI,IAAI,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC1F,OAAO,EAAE,SAAS,EAAc,IAAI,IAAI,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC9F,OAAO,EAAE,aAAa,EAAkB,IAAI,IAAI,iBAAiB,EAAE,QAAQ,EAAa,MAAM,oCAAoC,CAAC;AACnI,OAAO,EAAE,YAAY,EAAiB,IAAI,IAAI,gBAAgB,EAAoB,iBAAiB,EAAE,gBAAgB,EAAc,WAAW,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAE1M,OAAO,EAAE,UAAU,EAAe,IAAI,IAAI,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC7F,cAAc,4BAA4B,CAAC;AAE3C,GAAG;AACH,MAAM;AACN,GAAG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,KAAK,cAAc,MAAM,8BAA8B,CAAC;AAC/D,OAAO,KAAK,cAAc,MAAM,8BAA8B,CAAC;AAC/D,OAAO,KAAK,SAAS,MAAM,iCAAiC,CAAC;AAC7D,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAC;AACjF,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAuB,MAAM,uBAAuB,CAAC;AACtE,OAAO,KAAK,QAAQ,MAAM,uBAAuB,CAAC;AAClD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AACnD,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAC;AAE/C,EAAE;AACF,OAAO;AACP,EAAE;AACF,OAAO,EAAE,iBAAiB,EAAoF,MAAM,6CAA6C,CAAC;AAClK,OAAO,EAAW,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,KAAK,UAAU,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,KAAK,MAAM,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAE,WAAW,EAAuB,MAAM,kCAAkC,CAAC;AACpF,cAAc,mCAAmC,CAAC;AAClD,OAAO,KAAK,eAAe,MAAM,0CAA0C,CAAC;AAC5E,OAAO,KAAK,MAAM,MAAM,qBAAqB,CAAC;AAE9C,GAAG;AACH,UAAU;AACV,GAAG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAA;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAA;AAEtD,GAAG;AACH,gBAAgB;AAChB,GAAG;AACH,OAAO,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAA;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAA;AAC5E,OAAO,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,2CAA2C,CAAA;AACzF,OAAO,KAAK,SAAS,MAAM,8BAA8B,CAAC;AAC1D,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,KAAK,WAAW,MAAM,wCAAwC,CAAC;AACtE,OAAO,KAAK,kBAAkB,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAqB,MAAM,8CAA8C,CAAC;AAEpG,GAAG;AACH,aAAa;AACb,GAAG;AAEH,cAAc,0CAA0C,CAAC;AAEzD,EAAE;AACF,UAAU;AACV,EAAE;AACF,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,cAAc,yCAAyC,CAAC;AAExD,GAAG;AACH,kBAAkB;AAClB,GAAG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAE1E,GAAG;AACH,aAAa;AACb,GAAG;AACH,cAAc,oCAAoC,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAa,QAAQ,EAAa,MAAM,+BAA+B,CAAC;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAEnE,GAAG;AACH,sBAAsB;AACtB,GAAG;AACH,OAAO,EAAE,QAAQ,EAAoD,MAAM,qCAAqC,CAAC;AAEjH,GAAG;AACH,UAAU;AACV,GAAG;AACH,cAAc,8BAA8B,CAAC;AAE7C,EAAE;AACF,cAAc;AACd,EAAE;AACF,OAAO,EAAE,cAAc,EAAE,MAAM,yCAAyC,CAAC;AAEzE,GAAG;AACH,SAAS;AACT,GAAG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,cAAc,4BAA4B,CAAC;AA8B3C,GAAG;AACH,0BAA0B;AAC1B,GAAG;AACH,OAAO,EAAE,4BAA4B,EAAE,MAAM,2DAA2D,CAAC;AACzG,OAAO,EAAE,sBAAsB,EAAE,MAAM,qDAAqD,CAAC;AAC7F,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC"}
|
package/build/index.d.ts
CHANGED
|
@@ -54,13 +54,20 @@ export { DataProperty, IDataProperty, Kind as DataPropertyKind, DataPropertyType
|
|
|
54
54
|
export { AppRequest, IAppRequest, Kind as AppRequestKind, } from './src/models/AppRequest.js';
|
|
55
55
|
export * from './src/models/AppProject.js';
|
|
56
56
|
export { AmfNamespace } from './src/amf/definitions/Namespace.js';
|
|
57
|
+
export * as ApiDefinitions from './src/amf/definitions/Api.js';
|
|
58
|
+
export * as AmfDefinitions from './src/amf/definitions/Amf.js';
|
|
59
|
+
export * as AmfShapes from './src/amf/definitions/Shapes.js';
|
|
60
|
+
export * as AmfBase from './src/amf/definitions/Base.js';
|
|
57
61
|
export { ApiExampleGenerator } from './src/amf/ApiExampleGenerator.js';
|
|
58
62
|
export { ApiMonacoSchemaGenerator } from './src/amf/ApiMonacoSchemaGenerator.js';
|
|
59
63
|
export { ApiSchemaValues } from './src/amf/ApiSchemaValues.js';
|
|
60
64
|
export { ApiSchemaGenerator } from './src/amf/ApiSchemaGenerator.js';
|
|
61
65
|
export { AmfShapeGenerator } from './src/amf/AmfShapeGenerator.js';
|
|
62
66
|
export { AmfSerializer } from './src/amf/AmfSerializer.js';
|
|
63
|
-
export { AmfMixin } from './src/amf/AmfMixin.js';
|
|
67
|
+
export { AmfMixin, ServersQueryOptions } from './src/amf/AmfMixin.js';
|
|
68
|
+
export * as AmfTypes from './src/amf/AmfTypes.js';
|
|
69
|
+
export * as AmfParsing from './src/amf/Parsing.js';
|
|
70
|
+
export * as AmfUtils from './src/amf/Utils.js';
|
|
64
71
|
export { PayloadSerializer, ISafePayload, IMultipartBody, Payload, DeserializedPayload, IBlobMeta, IFileMeta } from './src/lib/transformers/PayloadSerializer.js';
|
|
65
72
|
export { ILogger, Logger } from './src/lib/logging/Logger.js';
|
|
66
73
|
export { DummyLogger } from './src/lib/logging/DummyLogger.js';
|
package/build/index.js
CHANGED
|
@@ -53,6 +53,10 @@ export * from './src/models/AppProject.js';
|
|
|
53
53
|
// AMF
|
|
54
54
|
//
|
|
55
55
|
export { AmfNamespace } from './src/amf/definitions/Namespace.js';
|
|
56
|
+
export * as ApiDefinitions from './src/amf/definitions/Api.js';
|
|
57
|
+
export * as AmfDefinitions from './src/amf/definitions/Amf.js';
|
|
58
|
+
export * as AmfShapes from './src/amf/definitions/Shapes.js';
|
|
59
|
+
export * as AmfBase from './src/amf/definitions/Base.js';
|
|
56
60
|
export { ApiExampleGenerator } from './src/amf/ApiExampleGenerator.js';
|
|
57
61
|
export { ApiMonacoSchemaGenerator } from './src/amf/ApiMonacoSchemaGenerator.js';
|
|
58
62
|
export { ApiSchemaValues } from './src/amf/ApiSchemaValues.js';
|
|
@@ -60,6 +64,9 @@ export { ApiSchemaGenerator } from './src/amf/ApiSchemaGenerator.js';
|
|
|
60
64
|
export { AmfShapeGenerator } from './src/amf/AmfShapeGenerator.js';
|
|
61
65
|
export { AmfSerializer } from './src/amf/AmfSerializer.js';
|
|
62
66
|
export { AmfMixin } from './src/amf/AmfMixin.js';
|
|
67
|
+
export * as AmfTypes from './src/amf/AmfTypes.js';
|
|
68
|
+
export * as AmfParsing from './src/amf/Parsing.js';
|
|
69
|
+
export * as AmfUtils from './src/amf/Utils.js';
|
|
63
70
|
//
|
|
64
71
|
// Libs
|
|
65
72
|
//
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
@license
|
|
3
|
+
Copyright 2018 The Advanced REST client authors <arc@mulesoft.com>
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
5
|
+
use this file except in compliance with the License. You may obtain a copy of
|
|
6
|
+
the License at
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
10
|
+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
11
|
+
License for the specific language governing permissions and limitations under
|
|
12
|
+
the License.
|
|
13
|
+
*/
|
|
14
|
+
import { IAmfDocument, IAmfDomainElement, IAmfEndPoint, IAmfSecurityScheme, IAmfShape, IAmfWebApi, IAmfOperation, IAmfAsyncApi, IAmfServer, IAmfRequest } from './definitions/Amf.js';
|
|
2
15
|
export declare const expandKey: unique symbol;
|
|
3
16
|
export declare const findAmfType: unique symbol;
|
|
4
17
|
export declare const findReferenceObject: unique symbol;
|
|
@@ -30,14 +43,15 @@ export interface ServerQueryOptions {
|
|
|
30
43
|
}
|
|
31
44
|
declare type Constructor<T = {}> = new (...args: any[]) => T;
|
|
32
45
|
export declare class AmfMixinInterface {
|
|
33
|
-
amf?:
|
|
46
|
+
amf?: IAmfDocument;
|
|
47
|
+
_amf?: IAmfDocument;
|
|
34
48
|
/**
|
|
35
49
|
* This is an abstract method to be implemented by the components.
|
|
36
50
|
* If, instead, the component uses `amf` setter you must use `super.amf` to
|
|
37
51
|
* set the value.
|
|
38
52
|
* @param amf Current AMF model. Can be undefined.
|
|
39
53
|
*/
|
|
40
|
-
_amfChanged(amf?:
|
|
54
|
+
_amfChanged(amf?: IAmfDocument): void;
|
|
41
55
|
/**
|
|
42
56
|
* Expands flattened AMF model
|
|
43
57
|
*/
|
|
@@ -48,14 +62,14 @@ export declare class AmfMixinInterface {
|
|
|
48
62
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
49
63
|
* @returns Compact model property name or the same value if value not found in the context.
|
|
50
64
|
*/
|
|
51
|
-
_getAmfKey(property?: string, context?: Record<string, string>): string
|
|
65
|
+
_getAmfKey(property?: string, context?: Record<string, string>): string;
|
|
52
66
|
/**
|
|
53
67
|
* Ensures that the model is AMF object.
|
|
54
68
|
*
|
|
55
69
|
* @param amf AMF json/ld model
|
|
56
70
|
* @returns The API spec
|
|
57
71
|
*/
|
|
58
|
-
_ensureAmfModel(amf: any):
|
|
72
|
+
_ensureAmfModel(amf: any): IAmfDocument | undefined;
|
|
59
73
|
/**
|
|
60
74
|
* Ensures that the value is an array.
|
|
61
75
|
* It returns undefined when there's no value.
|
|
@@ -72,7 +86,7 @@ export declare class AmfMixinInterface {
|
|
|
72
86
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
73
87
|
* @returns Value for key
|
|
74
88
|
*/
|
|
75
|
-
_getValue(model:
|
|
89
|
+
_getValue(model: IAmfDomainElement, untrustedKey: string, context?: Record<string, string>): string | number | boolean | undefined | null;
|
|
76
90
|
/**
|
|
77
91
|
* Gets values from a model as an array of `@value` properties.
|
|
78
92
|
* @param model Amf model to extract the value from.
|
|
@@ -80,7 +94,7 @@ export declare class AmfMixinInterface {
|
|
|
80
94
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
81
95
|
* @returns The value for key
|
|
82
96
|
*/
|
|
83
|
-
_getValueArray(model:
|
|
97
|
+
_getValueArray(model: IAmfDomainElement, untrustedKey: string, context?: Record<string, string>): (string | number | boolean | null)[] | undefined;
|
|
84
98
|
/**
|
|
85
99
|
* Reads an array from the model.
|
|
86
100
|
*
|
|
@@ -89,21 +103,21 @@ export declare class AmfMixinInterface {
|
|
|
89
103
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
90
104
|
* @returns Value for the key
|
|
91
105
|
*/
|
|
92
|
-
[getArrayItems](model?:
|
|
106
|
+
[getArrayItems](model?: IAmfDomainElement, untrustedKey?: string, context?: Record<string, string>): IAmfDomainElement[] | undefined;
|
|
93
107
|
/**
|
|
94
108
|
* Reads the value of the `@id` property.
|
|
95
109
|
* @param model Amf model to extract the value from.
|
|
96
110
|
* @param untrustedKey Model key to search for the @id
|
|
97
111
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
98
112
|
*/
|
|
99
|
-
_getLinkValue(model:
|
|
113
|
+
_getLinkValue(model: IAmfDomainElement, untrustedKey: string, context?: Record<string, string>): string | undefined;
|
|
100
114
|
/**
|
|
101
115
|
* Reads the list of value for the `@id` property.
|
|
102
116
|
* @param model Amf model to extract the value from.
|
|
103
117
|
* @param untrustedKey Model key to search for the @id
|
|
104
118
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
105
119
|
*/
|
|
106
|
-
_getLinkValues(model:
|
|
120
|
+
_getLinkValues(model: IAmfDomainElement, untrustedKey: string, context?: Record<string, string>): string[] | undefined;
|
|
107
121
|
/**
|
|
108
122
|
* Checks if a model has a type.
|
|
109
123
|
* @param model Model to test
|
|
@@ -111,14 +125,14 @@ export declare class AmfMixinInterface {
|
|
|
111
125
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
112
126
|
* @returns True if model has a type.
|
|
113
127
|
*/
|
|
114
|
-
_hasType(model?:
|
|
128
|
+
_hasType(model?: IAmfDomainElement, type?: string, context?: Record<string, string>): boolean;
|
|
115
129
|
/**
|
|
116
130
|
* Checks if a shape has a property.
|
|
117
131
|
* @param shape The shape to test
|
|
118
132
|
* @param untrustedKey Property name to test
|
|
119
133
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
120
134
|
*/
|
|
121
|
-
_hasProperty(shape:
|
|
135
|
+
_hasProperty(shape: IAmfDomainElement, untrustedKey: string, context?: Record<string, string>): boolean;
|
|
122
136
|
/**
|
|
123
137
|
* Computes array value of a property in a model (shape).
|
|
124
138
|
*
|
|
@@ -126,14 +140,14 @@ export declare class AmfMixinInterface {
|
|
|
126
140
|
* @param untrustedKey Property name
|
|
127
141
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
128
142
|
*/
|
|
129
|
-
_computePropertyArray(shape?:
|
|
143
|
+
_computePropertyArray(shape?: IAmfDomainElement, untrustedKey?: string, context?: Record<string, string>): (string | number | boolean | null | Object)[] | undefined;
|
|
130
144
|
/**
|
|
131
145
|
* Computes API version from the AMF model.
|
|
132
146
|
*
|
|
133
147
|
* @param amf
|
|
134
148
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
135
149
|
*/
|
|
136
|
-
_computeApiVersion(amf?:
|
|
150
|
+
_computeApiVersion(amf?: IAmfDocument, context?: Record<string, string>): string | undefined;
|
|
137
151
|
/**
|
|
138
152
|
* Computes model's `encodes` property.
|
|
139
153
|
*
|
|
@@ -141,7 +155,7 @@ export declare class AmfMixinInterface {
|
|
|
141
155
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
142
156
|
* @returns List of encodes
|
|
143
157
|
*/
|
|
144
|
-
_computeEncodes(model?:
|
|
158
|
+
_computeEncodes(model?: IAmfDocument, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
145
159
|
/**
|
|
146
160
|
* Computes list of declarations in the AMF api model.
|
|
147
161
|
*
|
|
@@ -149,7 +163,7 @@ export declare class AmfMixinInterface {
|
|
|
149
163
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
150
164
|
* @returns List of declarations
|
|
151
165
|
*/
|
|
152
|
-
_computeDeclares(model?:
|
|
166
|
+
_computeDeclares(model?: IAmfDocument, context?: Record<string, string>): IAmfDomainElement[] | undefined;
|
|
153
167
|
/**
|
|
154
168
|
* Computes list of references in the AMF api model.
|
|
155
169
|
*
|
|
@@ -157,7 +171,7 @@ export declare class AmfMixinInterface {
|
|
|
157
171
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
158
172
|
* @returns List of declarations
|
|
159
173
|
*/
|
|
160
|
-
_computeReferences(model?:
|
|
174
|
+
_computeReferences(model?: IAmfDocument, context?: Record<string, string>): IAmfDomainElement[] | undefined;
|
|
161
175
|
/**
|
|
162
176
|
* Computes AMF's `http://schema.org/WebAPI` model
|
|
163
177
|
*
|
|
@@ -165,7 +179,7 @@ export declare class AmfMixinInterface {
|
|
|
165
179
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
166
180
|
* @returns Web API declaration.
|
|
167
181
|
*/
|
|
168
|
-
_computeWebApi(model?:
|
|
182
|
+
_computeWebApi(model?: IAmfDocument, context?: Record<string, string>): IAmfWebApi | undefined;
|
|
169
183
|
/**
|
|
170
184
|
* Computes AMF's `http://schema.org/API` model
|
|
171
185
|
*
|
|
@@ -173,28 +187,28 @@ export declare class AmfMixinInterface {
|
|
|
173
187
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
174
188
|
* @returns API declaration.
|
|
175
189
|
*/
|
|
176
|
-
_computeApi(model?:
|
|
190
|
+
_computeApi(model?: IAmfDocument, context?: Record<string, string>): IAmfAsyncApi | IAmfWebApi | undefined;
|
|
177
191
|
/**
|
|
178
192
|
* Returns whether an AMF node is a WebAPI node
|
|
179
193
|
*
|
|
180
194
|
* @param model AMF json/ld model for an API
|
|
181
195
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
182
196
|
*/
|
|
183
|
-
_isWebAPI(model?:
|
|
197
|
+
_isWebAPI(model?: IAmfDocument, context?: Record<string, string>): boolean;
|
|
184
198
|
/**
|
|
185
199
|
* Returns whether an AMF node is an AsyncAPI node
|
|
186
200
|
*
|
|
187
201
|
* @param model AMF json/ld model for an API
|
|
188
202
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
189
203
|
*/
|
|
190
|
-
_isAsyncAPI(model?:
|
|
204
|
+
_isAsyncAPI(model?: IAmfDocument, context?: Record<string, string>): boolean;
|
|
191
205
|
/**
|
|
192
206
|
* Returns whether an AMF node is an API node
|
|
193
207
|
*
|
|
194
208
|
* @param model AMF json/ld model for an API
|
|
195
209
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
196
210
|
*/
|
|
197
|
-
_isAPI(model?:
|
|
211
|
+
_isAPI(model?: IAmfDocument, context?: Record<string, string>): boolean;
|
|
198
212
|
/**
|
|
199
213
|
* Determines whether a partial model is valid for reading servers from
|
|
200
214
|
* Current valid values:
|
|
@@ -206,27 +220,27 @@ export declare class AmfMixinInterface {
|
|
|
206
220
|
* to read servers
|
|
207
221
|
* @private
|
|
208
222
|
*/
|
|
209
|
-
_isValidServerPartial(model:
|
|
223
|
+
_isValidServerPartial(model: IAmfDomainElement | IAmfDomainElement[], context?: Record<string, string>): boolean;
|
|
210
224
|
/**
|
|
211
225
|
* @param options Server query options
|
|
212
226
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
213
227
|
* @returns List of servers for method, if defined, or endpoint, if defined, or root level
|
|
214
228
|
*/
|
|
215
|
-
_getServers(options?: ServersQueryOptions, context?: Record<string, string>):
|
|
229
|
+
_getServers(options?: ServersQueryOptions, context?: Record<string, string>): IAmfServer[] | undefined;
|
|
216
230
|
/**
|
|
217
231
|
* Computes value for the `expects` property.
|
|
218
232
|
*
|
|
219
233
|
* @param method AMF `supportedOperation` model
|
|
220
234
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
221
235
|
*/
|
|
222
|
-
_computeExpects(method?:
|
|
236
|
+
_computeExpects(method?: IAmfOperation, context?: Record<string, string>): IAmfRequest | undefined;
|
|
223
237
|
/**
|
|
224
238
|
* Computes list of endpoints from a WebApi model.
|
|
225
239
|
* @param webApi
|
|
226
240
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
227
241
|
* @returns An array of endpoints.
|
|
228
242
|
*/
|
|
229
|
-
_computeEndpoints(webApi?:
|
|
243
|
+
_computeEndpoints(webApi?: IAmfWebApi, context?: Record<string, string>): IAmfEndPoint[] | undefined;
|
|
230
244
|
/**
|
|
231
245
|
* Computes model for an endpoint documentation.
|
|
232
246
|
*
|
|
@@ -235,7 +249,7 @@ export declare class AmfMixinInterface {
|
|
|
235
249
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
236
250
|
* @returns An endpoint definition
|
|
237
251
|
*/
|
|
238
|
-
_computeEndpointModel(webApi?:
|
|
252
|
+
_computeEndpointModel(webApi?: IAmfWebApi, id?: string, context?: Record<string, string>): IAmfEndPoint | undefined;
|
|
239
253
|
/**
|
|
240
254
|
* Computes method for the method documentation.
|
|
241
255
|
*
|
|
@@ -244,7 +258,7 @@ export declare class AmfMixinInterface {
|
|
|
244
258
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
245
259
|
* @returns A method definition
|
|
246
260
|
*/
|
|
247
|
-
_computeMethodModel(webApi?:
|
|
261
|
+
_computeMethodModel(webApi?: IAmfWebApi, selected?: string, context?: Record<string, string>): IAmfOperation | undefined;
|
|
248
262
|
/**
|
|
249
263
|
* Computes an endpoint for a method.
|
|
250
264
|
* @param webApi The WebApi AMF model
|
|
@@ -252,7 +266,7 @@ export declare class AmfMixinInterface {
|
|
|
252
266
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
253
267
|
* @returns An endpoint model of undefined.
|
|
254
268
|
*/
|
|
255
|
-
_computeMethodEndpoint(webApi?:
|
|
269
|
+
_computeMethodEndpoint(webApi?: IAmfWebApi, methodId?: string, context?: Record<string, string>): IAmfEndPoint | undefined;
|
|
256
270
|
/**
|
|
257
271
|
* Computes a list of methods for an endpoint that contains a method with
|
|
258
272
|
* given id.
|
|
@@ -262,7 +276,7 @@ export declare class AmfMixinInterface {
|
|
|
262
276
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
263
277
|
* @returns A list of sibling methods or undefined.
|
|
264
278
|
*/
|
|
265
|
-
__computeMethodsListForMethod(webApi?:
|
|
279
|
+
__computeMethodsListForMethod(webApi?: IAmfWebApi, methodId?: string, context?: Record<string, string>): IAmfOperation[] | undefined;
|
|
266
280
|
/**
|
|
267
281
|
* Computes a type documentation model.
|
|
268
282
|
*
|
|
@@ -272,14 +286,14 @@ export declare class AmfMixinInterface {
|
|
|
272
286
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
273
287
|
* @returns A type definition
|
|
274
288
|
*/
|
|
275
|
-
_computeType(declares?:
|
|
289
|
+
_computeType(declares?: IAmfDomainElement[], references?: IAmfDomainElement[], selected?: string, context?: Record<string, string>): IAmfShape | undefined;
|
|
276
290
|
/**
|
|
277
291
|
* Finds a type in the model declares and references.
|
|
278
292
|
* @param domainId The domain id of the type (AMF's shape).
|
|
279
293
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
280
294
|
* @returns The AMF shape or undefined when not found.
|
|
281
295
|
*/
|
|
282
|
-
[findAmfType](domainId?: string, context?: Record<string, string>):
|
|
296
|
+
[findAmfType](domainId?: string, context?: Record<string, string>): IAmfShape | undefined;
|
|
283
297
|
/**
|
|
284
298
|
* Searches for an object in model's references list.
|
|
285
299
|
* It does not resolve the object (useful for handling links correctly).
|
|
@@ -288,7 +302,7 @@ export declare class AmfMixinInterface {
|
|
|
288
302
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
289
303
|
* @returns The domain object or undefined.
|
|
290
304
|
*/
|
|
291
|
-
[findReferenceObject](domainId: string, context?: Record<string, string>):
|
|
305
|
+
[findReferenceObject](domainId: string, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
292
306
|
/**
|
|
293
307
|
* Computes a type model from a reference (library for example).
|
|
294
308
|
* @param reference AMF model for a reference to extract the data from
|
|
@@ -296,7 +310,7 @@ export declare class AmfMixinInterface {
|
|
|
296
310
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
297
311
|
* @returns Type definition or undefined if not found.
|
|
298
312
|
*/
|
|
299
|
-
_computeReferenceType(reference?:
|
|
313
|
+
_computeReferenceType(reference?: IAmfDomainElement, selected?: string, context?: Record<string, string>): IAmfShape | undefined;
|
|
300
314
|
/**
|
|
301
315
|
* Computes a documentation model.
|
|
302
316
|
*
|
|
@@ -304,7 +318,7 @@ export declare class AmfMixinInterface {
|
|
|
304
318
|
* @param selected Selected shape
|
|
305
319
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
306
320
|
*/
|
|
307
|
-
_computeDocument(webApi?:
|
|
321
|
+
_computeDocument(webApi?: IAmfDomainElement, selected?: string, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
308
322
|
/**
|
|
309
323
|
* Resolves a reference to an external fragment.
|
|
310
324
|
*
|
|
@@ -319,7 +333,7 @@ export declare class AmfMixinInterface {
|
|
|
319
333
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
320
334
|
* @returns Resolved shape for given reference, undefined otherwise
|
|
321
335
|
*/
|
|
322
|
-
_getLinkTarget(amf?:
|
|
336
|
+
_getLinkTarget(amf?: IAmfDocument, id?: string, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
323
337
|
/**
|
|
324
338
|
* Resolves the shape of a given reference.
|
|
325
339
|
*
|
|
@@ -328,7 +342,7 @@ export declare class AmfMixinInterface {
|
|
|
328
342
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
329
343
|
* @returns Resolved shape for given reference, undefined otherwise
|
|
330
344
|
*/
|
|
331
|
-
_obtainShapeFromReferences(references?:
|
|
345
|
+
_obtainShapeFromReferences(references?: IAmfDomainElement[], id?: string, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
332
346
|
/**
|
|
333
347
|
* Searches a node with a given ID in an array
|
|
334
348
|
*
|
|
@@ -336,8 +350,8 @@ export declare class AmfMixinInterface {
|
|
|
336
350
|
* @param id Id to search for
|
|
337
351
|
* @returns Node with the given ID when found, undefined otherwise
|
|
338
352
|
*/
|
|
339
|
-
_findById(array?:
|
|
340
|
-
_getReferenceId(amf?:
|
|
353
|
+
_findById(array?: IAmfDomainElement[], id?: string): IAmfDomainElement | undefined;
|
|
354
|
+
_getReferenceId(amf?: IAmfDocument, id?: string, context?: Record<string, string>): IAmfDomainElement | undefined;
|
|
341
355
|
_resolveRecursive(shape: any, context?: Record<string, string>): void;
|
|
342
356
|
/**
|
|
343
357
|
* Merge two shapes together. If the resulting shape has one of the "special merge" keys,
|
|
@@ -371,7 +385,7 @@ export declare class AmfMixinInterface {
|
|
|
371
385
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
372
386
|
* @returns Type definition or undefined if not found.
|
|
373
387
|
*/
|
|
374
|
-
findSecurityScheme(domainId: string, context?: Record<string, string>):
|
|
388
|
+
findSecurityScheme(domainId: string, context?: Record<string, string>): IAmfSecurityScheme | undefined;
|
|
375
389
|
/**
|
|
376
390
|
* Computes a security model from a reference (library for example).
|
|
377
391
|
* @param reference AMF model for a reference to extract the data from
|
|
@@ -379,14 +393,14 @@ export declare class AmfMixinInterface {
|
|
|
379
393
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
380
394
|
* @returns Type definition or undefined if not found.
|
|
381
395
|
*/
|
|
382
|
-
[computeReferenceSecurity](reference:
|
|
396
|
+
[computeReferenceSecurity](reference: IAmfDomainElement, selected: string, context?: Record<string, string>): IAmfSecurityScheme | undefined;
|
|
383
397
|
/**
|
|
384
398
|
* Collects domain objects by a domain type.
|
|
385
399
|
* @param source The element to search for declare/encoded objects.
|
|
386
400
|
* @param type The domain type
|
|
387
401
|
* @param context A context to use. If not set, it looks for the context of the passed model
|
|
388
402
|
*/
|
|
389
|
-
getByType(source:
|
|
403
|
+
getByType(source: IAmfDomainElement, type: string, context?: Record<string, string>): IAmfDomainElement[];
|
|
390
404
|
}
|
|
391
405
|
/**
|
|
392
406
|
* Common functions used by AMF components to compute AMF values.
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
+
/* eslint-disable @typescript-eslint/ban-types */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
1
5
|
/**
|
|
2
6
|
@license
|
|
3
7
|
Copyright 2018 The Advanced REST client authors <arc@mulesoft.com>
|
|
@@ -61,7 +65,9 @@ export const AmfMixin = (superClass) => {
|
|
|
61
65
|
* @param amf Current AMF model. Can be undefined.
|
|
62
66
|
*/
|
|
63
67
|
/* eslint-disable-next-line no-unused-vars */
|
|
64
|
-
_amfChanged(amf) {
|
|
68
|
+
_amfChanged(amf) {
|
|
69
|
+
// ...
|
|
70
|
+
}
|
|
65
71
|
/**
|
|
66
72
|
* Expands flattened AMF model
|
|
67
73
|
*/
|
|
@@ -84,7 +90,7 @@ export const AmfMixin = (superClass) => {
|
|
|
84
90
|
*/
|
|
85
91
|
_getAmfKey(property, context) {
|
|
86
92
|
if (!property) {
|
|
87
|
-
return
|
|
93
|
+
return '';
|
|
88
94
|
}
|
|
89
95
|
let { amf } = this;
|
|
90
96
|
if (!amf && !context) {
|
|
@@ -753,7 +759,7 @@ export const AmfMixin = (superClass) => {
|
|
|
753
759
|
}
|
|
754
760
|
const compactId = domainId.replace('amf://id', '');
|
|
755
761
|
for (let i = 0, len = references.length; i < len; i++) {
|
|
756
|
-
const ref = /** @type
|
|
762
|
+
const ref = /** @type IAmfDocument */ (references[i]);
|
|
757
763
|
const declares = this._computeDeclares(ref, context);
|
|
758
764
|
if (!Array.isArray(declares)) {
|
|
759
765
|
continue;
|