@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
|
@@ -1,362 +1,362 @@
|
|
|
1
|
-
export declare interface
|
|
1
|
+
export declare interface IAmfDomainElement {
|
|
2
2
|
'@id': string;
|
|
3
3
|
'@type': string[];
|
|
4
4
|
'@context'?: Record<string, string>;
|
|
5
5
|
'http://a.ml/vocabularies/document#customDomainProperties'?: [];
|
|
6
6
|
}
|
|
7
|
-
export interface
|
|
8
|
-
'http://a.ml/vocabularies/document#raw':
|
|
9
|
-
'http://a.ml/vocabularies/core#mediaType':
|
|
7
|
+
export interface IAmfExternalDomainElement extends IAmfDomainElement {
|
|
8
|
+
'http://a.ml/vocabularies/document#raw': IAmfLdValueString[];
|
|
9
|
+
'http://a.ml/vocabularies/core#mediaType': IAmfLdValueString[];
|
|
10
10
|
}
|
|
11
|
-
export declare interface
|
|
12
|
-
'http://a.ml/vocabularies/document#link-target'?:
|
|
13
|
-
'http://a.ml/vocabularies/document#link-label'?:
|
|
11
|
+
export declare interface IAmfLinkable {
|
|
12
|
+
'http://a.ml/vocabularies/document#link-target'?: IAmfLdIdValue[];
|
|
13
|
+
'http://a.ml/vocabularies/document#link-label'?: IAmfLdValueString[];
|
|
14
14
|
}
|
|
15
|
-
export declare interface
|
|
15
|
+
export declare interface IAmfLdValue<T> {
|
|
16
16
|
'@value': T;
|
|
17
17
|
}
|
|
18
|
-
export declare interface
|
|
18
|
+
export declare interface IAmfLdIdValue {
|
|
19
19
|
'@id': string;
|
|
20
20
|
}
|
|
21
|
-
export declare interface
|
|
21
|
+
export declare interface IAmfLdValueString extends IAmfLdValue<string> {
|
|
22
22
|
}
|
|
23
|
-
export declare interface
|
|
23
|
+
export declare interface IAmfLdValueBoolean extends IAmfLdValue<boolean> {
|
|
24
24
|
}
|
|
25
|
-
export declare interface
|
|
25
|
+
export declare interface IAmfLdValueNumber extends IAmfLdValue<number> {
|
|
26
26
|
}
|
|
27
|
-
export declare interface
|
|
27
|
+
export declare interface IAmfLdValueRange extends IAmfLdIdValue {
|
|
28
28
|
'@type'?: string[];
|
|
29
29
|
}
|
|
30
|
-
export interface
|
|
31
|
-
'http://a.ml/vocabularies/document#version'?:
|
|
32
|
-
'http://a.ml/vocabularies/document#root'?:
|
|
33
|
-
'http://a.ml/vocabularies/document#encodes'?:
|
|
34
|
-
'http://a.ml/vocabularies/document#references'?:
|
|
35
|
-
'http://a.ml/vocabularies/document#declares'?:
|
|
36
|
-
}
|
|
37
|
-
export interface
|
|
38
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
39
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
40
|
-
'http://a.ml/vocabularies/apiContract#server'?:
|
|
41
|
-
'http://a.ml/vocabularies/apiContract#accepts'?:
|
|
42
|
-
'http://a.ml/vocabularies/apiContract#contentType'?:
|
|
43
|
-
'http://a.ml/vocabularies/apiContract#scheme'?:
|
|
44
|
-
'http://a.ml/vocabularies/core#version'?:
|
|
45
|
-
'http://a.ml/vocabularies/core#documentation'?:
|
|
46
|
-
'http://a.ml/vocabularies/apiContract#endpoint'?:
|
|
47
|
-
'http://a.ml/vocabularies/apiContract#tag'?:
|
|
48
|
-
'http://a.ml/vocabularies/core#provider'?:
|
|
49
|
-
'http://a.ml/vocabularies/core#license'?:
|
|
50
|
-
}
|
|
51
|
-
export interface
|
|
52
|
-
}
|
|
53
|
-
export interface
|
|
54
|
-
}
|
|
55
|
-
export interface
|
|
56
|
-
'http://a.ml/vocabularies/document#version'?:
|
|
57
|
-
'http://a.ml/vocabularies/document#root'?:
|
|
58
|
-
'http://a.ml/vocabularies/document#declares'?:
|
|
59
|
-
'http://a.ml/vocabularies/document#usage'?:
|
|
60
|
-
}
|
|
61
|
-
export interface
|
|
62
|
-
'http://a.ml/vocabularies/document#version'?:
|
|
63
|
-
'http://a.ml/vocabularies/document#root'?:
|
|
64
|
-
'http://a.ml/vocabularies/document#encodes'?:
|
|
65
|
-
'http://a.ml/vocabularies/document#references'?:
|
|
66
|
-
}
|
|
67
|
-
export interface
|
|
68
|
-
'http://a.ml/vocabularies/document#version'?:
|
|
69
|
-
'http://a.ml/vocabularies/document#root'?:
|
|
70
|
-
'http://a.ml/vocabularies/document#encodes'?:
|
|
71
|
-
}
|
|
72
|
-
export interface
|
|
73
|
-
'http://a.ml/vocabularies/core#email'?:
|
|
74
|
-
'http://a.ml/vocabularies/core#url'?:
|
|
75
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
76
|
-
}
|
|
77
|
-
export interface
|
|
78
|
-
'http://a.ml/vocabularies/core#url'?:
|
|
79
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
80
|
-
}
|
|
81
|
-
export declare interface
|
|
82
|
-
'http://a.ml/vocabularies/core#urlTemplate'?:
|
|
83
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
84
|
-
'http://a.ml/vocabularies/apiContract#variable'?:
|
|
85
|
-
}
|
|
86
|
-
export declare interface
|
|
87
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
88
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
89
|
-
'http://a.ml/vocabularies/apiContract#guiSummary'?:
|
|
90
|
-
'http://a.ml/vocabularies/apiContract#path'?:
|
|
91
|
-
'http://a.ml/vocabularies/apiContract#supportedOperation'?:
|
|
92
|
-
'http://a.ml/vocabularies/apiContract#parameter'?:
|
|
93
|
-
'http://a.ml/vocabularies/apiContract#payload'?:
|
|
94
|
-
'http://a.ml/vocabularies/apiContract#server'?:
|
|
95
|
-
'http://a.ml/vocabularies/security#security'?:
|
|
96
|
-
'http://a.ml/vocabularies/document#extends'?:
|
|
97
|
-
}
|
|
98
|
-
export declare interface
|
|
99
|
-
'http://a.ml/vocabularies/apiContract#method':
|
|
100
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
101
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
102
|
-
'http://a.ml/vocabularies/shapes#deprecated'?:
|
|
103
|
-
'http://a.ml/vocabularies/apiContract#guiSummary'?:
|
|
104
|
-
'http://a.ml/vocabularies/core#documentation'?:
|
|
105
|
-
'http://a.ml/vocabularies/apiContract#scheme'?:
|
|
106
|
-
'http://a.ml/vocabularies/apiContract#accepts'?:
|
|
107
|
-
'http://a.ml/vocabularies/apiContract#contentType'?:
|
|
108
|
-
'http://a.ml/vocabularies/apiContract#expects'?:
|
|
109
|
-
'http://a.ml/vocabularies/apiContract#returns'?:
|
|
110
|
-
'http://a.ml/vocabularies/security#security'?:
|
|
111
|
-
'http://a.ml/vocabularies/apiContract#callback'?:
|
|
112
|
-
'http://a.ml/vocabularies/apiContract#server'?:
|
|
113
|
-
'http://a.ml/vocabularies/document#extends'?:
|
|
114
|
-
}
|
|
115
|
-
export interface
|
|
116
|
-
'http://a.ml/vocabularies/core#mediaType':
|
|
117
|
-
'http://a.ml/vocabularies/shapes#schema'?:
|
|
118
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
119
|
-
'http://a.ml/vocabularies/apiContract#examples'?:
|
|
120
|
-
}
|
|
121
|
-
export interface
|
|
122
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
123
|
-
'http://a.ml/vocabularies/apiContract#payload'?:
|
|
124
|
-
'http://a.ml/vocabularies/apiContract#required'?:
|
|
125
|
-
'http://a.ml/vocabularies/apiContract#parameter'?:
|
|
126
|
-
'http://a.ml/vocabularies/apiContract#uriParameter'?:
|
|
127
|
-
'http://a.ml/vocabularies/apiContract#header'?:
|
|
128
|
-
'http://a.ml/vocabularies/apiContract#cookieParameter'?:
|
|
129
|
-
'http://a.ml/vocabularies/apiContract#queryString'?:
|
|
130
|
-
}
|
|
131
|
-
export interface
|
|
132
|
-
'http://a.ml/vocabularies/apiContract#statusCode':
|
|
133
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
134
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
135
|
-
'http://a.ml/vocabularies/apiContract#payload'?:
|
|
136
|
-
'http://a.ml/vocabularies/apiContract#header'?:
|
|
137
|
-
'http://a.ml/vocabularies/apiContract#examples'?:
|
|
138
|
-
'http://a.ml/vocabularies/apiContract#link'?:
|
|
139
|
-
}
|
|
140
|
-
export declare interface
|
|
141
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
142
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
143
|
-
'http://a.ml/vocabularies/shapes#schema'?:
|
|
144
|
-
'http://a.ml/vocabularies/shapes#deprecated'?:
|
|
145
|
-
'http://a.ml/vocabularies/apiContract#paramName'?:
|
|
146
|
-
'http://a.ml/vocabularies/apiContract#required'?:
|
|
147
|
-
'http://a.ml/vocabularies/apiContract#binding'?:
|
|
148
|
-
'http://a.ml/vocabularies/apiContract#allowEmptyValue'?:
|
|
149
|
-
'http://a.ml/vocabularies/apiContract#style'?:
|
|
150
|
-
'http://a.ml/vocabularies/apiContract#explode'?:
|
|
151
|
-
'http://a.ml/vocabularies/apiContract#allowReserved'?:
|
|
152
|
-
}
|
|
153
|
-
export interface
|
|
154
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
155
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
156
|
-
'http://a.ml/vocabularies/apiContract#operationId':
|
|
157
|
-
'http://a.ml/vocabularies/apiContract#mapping':
|
|
158
|
-
'http://a.ml/vocabularies/apiContract#server'?:
|
|
159
|
-
}
|
|
160
|
-
export interface
|
|
161
|
-
'http://a.ml/vocabularies/apiContract#templateVariable'?:
|
|
162
|
-
'http://a.ml/vocabularies/apiContract#linkExpression'?:
|
|
163
|
-
}
|
|
164
|
-
export declare interface
|
|
165
|
-
'http://www.w3.org/ns/shacl#name'?:
|
|
166
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
167
|
-
'http://a.ml/vocabularies/core#displayName'?:
|
|
168
|
-
'http://www.w3.org/ns/shacl#defaultValueStr'?:
|
|
169
|
-
'http://www.w3.org/ns/shacl#defaultValue'?:
|
|
170
|
-
'http://a.ml/vocabularies/shapes#readOnly'?:
|
|
171
|
-
'http://a.ml/vocabularies/shapes#writeOnly'?:
|
|
172
|
-
'http://a.ml/vocabularies/shapes#deprecated'?:
|
|
173
|
-
'http://a.ml/vocabularies/document#location'?:
|
|
174
|
-
'http://www.w3.org/ns/shacl#or'?:
|
|
175
|
-
'http://www.w3.org/ns/shacl#and'?:
|
|
176
|
-
'http://www.w3.org/ns/shacl#xone'?:
|
|
177
|
-
'http://www.w3.org/ns/shacl#not'?:
|
|
178
|
-
}
|
|
179
|
-
export declare interface
|
|
180
|
-
'http://www.w3.org/ns/shacl#path'?:
|
|
181
|
-
'http://a.ml/vocabularies/shapes#range'?:
|
|
182
|
-
'http://www.w3.org/ns/shacl#minCount'?:
|
|
183
|
-
'http://www.w3.org/ns/shacl#maxCount'?:
|
|
184
|
-
}
|
|
185
|
-
export declare interface
|
|
186
|
-
'http://a.ml/vocabularies/core#documentation'?:
|
|
187
|
-
'http://a.ml/vocabularies/shapes#xmlSerialization'?:
|
|
188
|
-
'http://a.ml/vocabularies/apiContract#examples'?:
|
|
189
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
190
|
-
}
|
|
191
|
-
export declare interface
|
|
192
|
-
}
|
|
193
|
-
export declare interface
|
|
194
|
-
'http://a.ml/vocabularies/shapes#items'?:
|
|
195
|
-
}
|
|
196
|
-
export declare interface
|
|
197
|
-
'http://a.ml/vocabularies/shapes#anyOf'?:
|
|
198
|
-
}
|
|
199
|
-
export declare interface
|
|
200
|
-
'http://a.ml/vocabularies/shapes#items'?:
|
|
201
|
-
}
|
|
202
|
-
export declare interface
|
|
203
|
-
'http://a.ml/vocabularies/shapes#fileType'?:
|
|
204
|
-
'http://www.w3.org/ns/shacl#pattern'?:
|
|
205
|
-
'http://www.w3.org/ns/shacl#minLength'?:
|
|
206
|
-
'http://www.w3.org/ns/shacl#maxLength'?:
|
|
207
|
-
'http://a.ml/vocabularies/shapes#minimum'?:
|
|
208
|
-
'http://a.ml/vocabularies/shapes#maximum'?:
|
|
209
|
-
'http://a.ml/vocabularies/shapes#exclusiveMinimum'?:
|
|
210
|
-
'http://a.ml/vocabularies/shapes#exclusiveMaximum'?:
|
|
211
|
-
'http://a.ml/vocabularies/shapes#format'?:
|
|
212
|
-
'http://a.ml/vocabularies/shapes#multipleOf'?:
|
|
213
|
-
}
|
|
214
|
-
export declare interface
|
|
215
|
-
}
|
|
216
|
-
export declare interface
|
|
217
|
-
'http://a.ml/vocabularies/shapes#fixPoint'?:
|
|
218
|
-
'http://a.ml/vocabularies/document#recursive'?:
|
|
219
|
-
}
|
|
220
|
-
export declare interface
|
|
221
|
-
'http://www.w3.org/ns/shacl#datatype'?:
|
|
222
|
-
'http://www.w3.org/ns/shacl#pattern'?:
|
|
223
|
-
'http://www.w3.org/ns/shacl#minLength'?:
|
|
224
|
-
'http://www.w3.org/ns/shacl#maxLength'?:
|
|
225
|
-
'http://a.ml/vocabularies/shapes#minimum':
|
|
226
|
-
'http://a.ml/vocabularies/shapes#maximum':
|
|
227
|
-
'http://a.ml/vocabularies/shapes#exclusiveMinimum':
|
|
228
|
-
'http://a.ml/vocabularies/shapes#exclusiveMaximum':
|
|
229
|
-
'http://a.ml/vocabularies/shapes#format'?:
|
|
230
|
-
'http://a.ml/vocabularies/shapes#multipleOf'?:
|
|
231
|
-
}
|
|
232
|
-
export declare interface
|
|
233
|
-
'http://a.ml/vocabularies/core#mediaType':
|
|
234
|
-
'http://a.ml/vocabularies/document#raw'?:
|
|
235
|
-
}
|
|
236
|
-
export declare interface
|
|
237
|
-
'http://www.w3.org/ns/shacl#closed'?:
|
|
238
|
-
'http://a.ml/vocabularies/shapes#discriminator'?:
|
|
239
|
-
'http://a.ml/vocabularies/shapes#discriminatorValue'?:
|
|
240
|
-
'http://www.w3.org/ns/shacl#property'?:
|
|
241
|
-
}
|
|
242
|
-
export declare interface
|
|
243
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
244
|
-
}
|
|
245
|
-
export declare interface
|
|
246
|
-
}
|
|
247
|
-
export declare interface
|
|
248
|
-
}
|
|
249
|
-
export declare interface
|
|
250
|
-
'http://a.ml/vocabularies/data#value'?:
|
|
251
|
-
'http://www.w3.org/ns/shacl#datatype'?:
|
|
252
|
-
}
|
|
253
|
-
export declare interface
|
|
254
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
255
|
-
'http://a.ml/vocabularies/core#displayName'?:
|
|
256
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
257
|
-
'http://a.ml/vocabularies/data#value'?:
|
|
258
|
-
'http://a.ml/vocabularies/document#structuredValue'?:
|
|
259
|
-
'http://a.ml/vocabularies/document#strict'?:
|
|
260
|
-
'http://a.ml/vocabularies/core#mediaType'?:
|
|
261
|
-
'http://a.ml/vocabularies/document#raw'?:
|
|
262
|
-
}
|
|
263
|
-
export interface
|
|
264
|
-
'http://a.ml/vocabularies/core#title'?:
|
|
265
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
266
|
-
}
|
|
267
|
-
export interface
|
|
268
|
-
'http://a.ml/vocabularies/security#schemes'?:
|
|
269
|
-
'http://a.ml/vocabularies/security#name'?:
|
|
270
|
-
}
|
|
271
|
-
export interface
|
|
272
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
273
|
-
'http://a.ml/vocabularies/security#scheme'?:
|
|
274
|
-
'http://a.ml/vocabularies/security#settings':
|
|
275
|
-
}
|
|
276
|
-
export interface
|
|
277
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
278
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
279
|
-
'http://a.ml/vocabularies/security#type'?:
|
|
280
|
-
'http://a.ml/vocabularies/core#displayName'?:
|
|
281
|
-
'http://a.ml/vocabularies/apiContract#parameter'?:
|
|
282
|
-
'http://a.ml/vocabularies/apiContract#header'?:
|
|
283
|
-
'http://a.ml/vocabularies/security#settings'?:
|
|
284
|
-
'http://a.ml/vocabularies/apiContract#response'?:
|
|
285
|
-
'http://a.ml/vocabularies/apiContract#queryString'?:
|
|
286
|
-
}
|
|
287
|
-
export interface
|
|
288
|
-
}
|
|
289
|
-
export interface
|
|
290
|
-
'http://a.ml/vocabularies/security#requestTokenUri'?:
|
|
291
|
-
'http://a.ml/vocabularies/security#authorizationUri'?:
|
|
292
|
-
'http://a.ml/vocabularies/security#tokenCredentialsUri'?:
|
|
293
|
-
'http://a.ml/vocabularies/security#signature':
|
|
294
|
-
}
|
|
295
|
-
export interface
|
|
296
|
-
'http://a.ml/vocabularies/security#authorizationGrant':
|
|
297
|
-
'http://a.ml/vocabularies/security#flows'?:
|
|
298
|
-
}
|
|
299
|
-
export interface
|
|
300
|
-
'http://a.ml/vocabularies/security#authorizationUri'?:
|
|
301
|
-
'http://a.ml/vocabularies/security#accessTokenUri':
|
|
302
|
-
'http://a.ml/vocabularies/security#flow'?:
|
|
303
|
-
'http://a.ml/vocabularies/security#refreshUri':
|
|
304
|
-
'http://a.ml/vocabularies/security#scope'?:
|
|
305
|
-
}
|
|
306
|
-
export interface
|
|
307
|
-
'http://a.ml/vocabularies/core#name':
|
|
308
|
-
'http://a.ml/vocabularies/security#in':
|
|
309
|
-
}
|
|
310
|
-
export interface
|
|
311
|
-
'http://a.ml/vocabularies/security#scheme'?:
|
|
312
|
-
'http://a.ml/vocabularies/security#bearerFormat'?:
|
|
313
|
-
}
|
|
314
|
-
export interface
|
|
315
|
-
'http://a.ml/vocabularies/security#openIdConnectUrl':
|
|
316
|
-
}
|
|
317
|
-
export interface
|
|
318
|
-
'http://a.ml/vocabularies/core#name':
|
|
319
|
-
'http://a.ml/vocabularies/core#description':
|
|
320
|
-
}
|
|
321
|
-
export interface
|
|
322
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
323
|
-
'http://a.ml/vocabularies/apiContract#expression'?:
|
|
324
|
-
'http://a.ml/vocabularies/apiContract#endpoint'?:
|
|
325
|
-
}
|
|
326
|
-
export interface
|
|
327
|
-
'http://a.ml/vocabularies/shapes#xmlAttribute'?:
|
|
328
|
-
'http://a.ml/vocabularies/shapes#xmlWrapped'?:
|
|
329
|
-
'http://a.ml/vocabularies/shapes#xmlName'?:
|
|
330
|
-
}
|
|
331
|
-
export interface
|
|
332
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
333
|
-
}
|
|
334
|
-
export interface
|
|
335
|
-
'http://a.ml/vocabularies/document-source-maps#synthesized-field'?:
|
|
336
|
-
'http://a.ml/vocabularies/document-source-maps#lexical'?:
|
|
337
|
-
'http://a.ml/vocabularies/document-source-maps#tracked-element'?:
|
|
338
|
-
}
|
|
339
|
-
export interface
|
|
30
|
+
export interface IAmfDocument extends IAmfDomainElement {
|
|
31
|
+
'http://a.ml/vocabularies/document#version'?: IAmfLdValueString[];
|
|
32
|
+
'http://a.ml/vocabularies/document#root'?: IAmfLdValueBoolean[];
|
|
33
|
+
'http://a.ml/vocabularies/document#encodes'?: IAmfDomainElement[];
|
|
34
|
+
'http://a.ml/vocabularies/document#references'?: IAmfDomainElement[];
|
|
35
|
+
'http://a.ml/vocabularies/document#declares'?: IAmfDomainElement[];
|
|
36
|
+
}
|
|
37
|
+
export interface IAmfApi extends IAmfDomainElement {
|
|
38
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
39
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
40
|
+
'http://a.ml/vocabularies/apiContract#server'?: IAmfServer[];
|
|
41
|
+
'http://a.ml/vocabularies/apiContract#accepts'?: IAmfLdValueString[];
|
|
42
|
+
'http://a.ml/vocabularies/apiContract#contentType'?: IAmfLdValueString[];
|
|
43
|
+
'http://a.ml/vocabularies/apiContract#scheme'?: IAmfLdValueString[];
|
|
44
|
+
'http://a.ml/vocabularies/core#version'?: IAmfLdValueString[];
|
|
45
|
+
'http://a.ml/vocabularies/core#documentation'?: IAmfCreativeWork[];
|
|
46
|
+
'http://a.ml/vocabularies/apiContract#endpoint'?: IAmfEndPoint[];
|
|
47
|
+
'http://a.ml/vocabularies/apiContract#tag'?: IAmfTag[];
|
|
48
|
+
'http://a.ml/vocabularies/core#provider'?: IAmfOrganization[];
|
|
49
|
+
'http://a.ml/vocabularies/core#license'?: IAmfLicense[];
|
|
50
|
+
}
|
|
51
|
+
export interface IAmfWebApi extends IAmfApi {
|
|
52
|
+
}
|
|
53
|
+
export interface IAmfAsyncApi extends IAmfApi {
|
|
54
|
+
}
|
|
55
|
+
export interface IAmfModule extends IAmfDomainElement {
|
|
56
|
+
'http://a.ml/vocabularies/document#version'?: IAmfLdValueString[];
|
|
57
|
+
'http://a.ml/vocabularies/document#root'?: IAmfLdValueBoolean[];
|
|
58
|
+
'http://a.ml/vocabularies/document#declares'?: IAmfDomainElement[];
|
|
59
|
+
'http://a.ml/vocabularies/document#usage'?: IAmfLdValueString[];
|
|
60
|
+
}
|
|
61
|
+
export interface IAmfDataTypeFragment extends IAmfDomainElement {
|
|
62
|
+
'http://a.ml/vocabularies/document#version'?: IAmfLdValueString[];
|
|
63
|
+
'http://a.ml/vocabularies/document#root'?: IAmfLdValueBoolean[];
|
|
64
|
+
'http://a.ml/vocabularies/document#encodes'?: IAmfShape[];
|
|
65
|
+
'http://a.ml/vocabularies/document#references'?: IAmfDomainElement[];
|
|
66
|
+
}
|
|
67
|
+
export interface IAmfExternalFragment extends IAmfDomainElement {
|
|
68
|
+
'http://a.ml/vocabularies/document#version'?: IAmfLdValueString[];
|
|
69
|
+
'http://a.ml/vocabularies/document#root'?: IAmfLdValueBoolean[];
|
|
70
|
+
'http://a.ml/vocabularies/document#encodes'?: IAmfExternalDomainElement[];
|
|
71
|
+
}
|
|
72
|
+
export interface IAmfOrganization extends IAmfDomainElement {
|
|
73
|
+
'http://a.ml/vocabularies/core#email'?: IAmfLdValueString[];
|
|
74
|
+
'http://a.ml/vocabularies/core#url'?: IAmfLdValueString[];
|
|
75
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
76
|
+
}
|
|
77
|
+
export interface IAmfLicense extends IAmfDomainElement {
|
|
78
|
+
'http://a.ml/vocabularies/core#url'?: IAmfLdValueString[];
|
|
79
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
80
|
+
}
|
|
81
|
+
export declare interface IAmfServer extends IAmfDomainElement {
|
|
82
|
+
'http://a.ml/vocabularies/core#urlTemplate'?: IAmfLdValueString[];
|
|
83
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
84
|
+
'http://a.ml/vocabularies/apiContract#variable'?: IAmfParameter[];
|
|
85
|
+
}
|
|
86
|
+
export declare interface IAmfEndPoint extends IAmfDomainElement {
|
|
87
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
88
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
89
|
+
'http://a.ml/vocabularies/apiContract#guiSummary'?: IAmfLdValueString[];
|
|
90
|
+
'http://a.ml/vocabularies/apiContract#path'?: IAmfLdValueString[];
|
|
91
|
+
'http://a.ml/vocabularies/apiContract#supportedOperation'?: IAmfOperation[];
|
|
92
|
+
'http://a.ml/vocabularies/apiContract#parameter'?: IAmfParameter[];
|
|
93
|
+
'http://a.ml/vocabularies/apiContract#payload'?: IAmfPayload[];
|
|
94
|
+
'http://a.ml/vocabularies/apiContract#server'?: IAmfServer[];
|
|
95
|
+
'http://a.ml/vocabularies/security#security'?: IAmfSecurityRequirement[];
|
|
96
|
+
'http://a.ml/vocabularies/document#extends'?: IAmfParametrizedDeclaration[];
|
|
97
|
+
}
|
|
98
|
+
export declare interface IAmfOperation extends IAmfDomainElement {
|
|
99
|
+
'http://a.ml/vocabularies/apiContract#method': IAmfLdValueString[];
|
|
100
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
101
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
102
|
+
'http://a.ml/vocabularies/shapes#deprecated'?: IAmfLdValueBoolean[];
|
|
103
|
+
'http://a.ml/vocabularies/apiContract#guiSummary'?: IAmfLdValueString[];
|
|
104
|
+
'http://a.ml/vocabularies/core#documentation'?: IAmfCreativeWork[];
|
|
105
|
+
'http://a.ml/vocabularies/apiContract#scheme'?: IAmfLdValueString[];
|
|
106
|
+
'http://a.ml/vocabularies/apiContract#accepts'?: IAmfLdValueString[];
|
|
107
|
+
'http://a.ml/vocabularies/apiContract#contentType'?: IAmfLdValueString[];
|
|
108
|
+
'http://a.ml/vocabularies/apiContract#expects'?: IAmfRequest[];
|
|
109
|
+
'http://a.ml/vocabularies/apiContract#returns'?: IAmfResponse[];
|
|
110
|
+
'http://a.ml/vocabularies/security#security'?: IAmfSecurityRequirement[];
|
|
111
|
+
'http://a.ml/vocabularies/apiContract#callback'?: IAmfCallback[];
|
|
112
|
+
'http://a.ml/vocabularies/apiContract#server'?: IAmfServer[];
|
|
113
|
+
'http://a.ml/vocabularies/document#extends'?: IAmfParametrizedTrait[];
|
|
114
|
+
}
|
|
115
|
+
export interface IAmfPayload extends IAmfDomainElement {
|
|
116
|
+
'http://a.ml/vocabularies/core#mediaType': IAmfLdValueString[];
|
|
117
|
+
'http://a.ml/vocabularies/shapes#schema'?: IAmfDomainElement[];
|
|
118
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
119
|
+
'http://a.ml/vocabularies/apiContract#examples'?: IAmfExample[];
|
|
120
|
+
}
|
|
121
|
+
export interface IAmfRequest extends IAmfDomainElement {
|
|
122
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
123
|
+
'http://a.ml/vocabularies/apiContract#payload'?: IAmfPayload[];
|
|
124
|
+
'http://a.ml/vocabularies/apiContract#required'?: IAmfLdValueBoolean[];
|
|
125
|
+
'http://a.ml/vocabularies/apiContract#parameter'?: IAmfParameter[];
|
|
126
|
+
'http://a.ml/vocabularies/apiContract#uriParameter'?: IAmfParameter[];
|
|
127
|
+
'http://a.ml/vocabularies/apiContract#header'?: IAmfParameter[];
|
|
128
|
+
'http://a.ml/vocabularies/apiContract#cookieParameter'?: IAmfParameter[];
|
|
129
|
+
'http://a.ml/vocabularies/apiContract#queryString'?: IAmfShape;
|
|
130
|
+
}
|
|
131
|
+
export interface IAmfResponse extends IAmfDomainElement {
|
|
132
|
+
'http://a.ml/vocabularies/apiContract#statusCode': IAmfLdValueString[];
|
|
133
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
134
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
135
|
+
'http://a.ml/vocabularies/apiContract#payload'?: IAmfPayload[];
|
|
136
|
+
'http://a.ml/vocabularies/apiContract#header'?: IAmfParameter[];
|
|
137
|
+
'http://a.ml/vocabularies/apiContract#examples'?: IAmfExample[];
|
|
138
|
+
'http://a.ml/vocabularies/apiContract#link'?: IAmfTemplatedLink[];
|
|
139
|
+
}
|
|
140
|
+
export declare interface IAmfParameter extends IAmfDomainElement {
|
|
141
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
142
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
143
|
+
'http://a.ml/vocabularies/shapes#schema'?: IAmfDomainElement[];
|
|
144
|
+
'http://a.ml/vocabularies/shapes#deprecated'?: IAmfLdValueBoolean[];
|
|
145
|
+
'http://a.ml/vocabularies/apiContract#paramName'?: IAmfLdValueString[];
|
|
146
|
+
'http://a.ml/vocabularies/apiContract#required'?: IAmfLdValueBoolean[];
|
|
147
|
+
'http://a.ml/vocabularies/apiContract#binding'?: IAmfLdValueString[];
|
|
148
|
+
'http://a.ml/vocabularies/apiContract#allowEmptyValue'?: IAmfLdValueBoolean[];
|
|
149
|
+
'http://a.ml/vocabularies/apiContract#style'?: IAmfLdValueString[];
|
|
150
|
+
'http://a.ml/vocabularies/apiContract#explode'?: IAmfLdValueBoolean[];
|
|
151
|
+
'http://a.ml/vocabularies/apiContract#allowReserved'?: IAmfLdValueBoolean[];
|
|
152
|
+
}
|
|
153
|
+
export interface IAmfTemplatedLink extends IAmfDomainElement {
|
|
154
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
155
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
156
|
+
'http://a.ml/vocabularies/apiContract#operationId': IAmfLdValueString[];
|
|
157
|
+
'http://a.ml/vocabularies/apiContract#mapping': IAmfIriTemplateMapping[];
|
|
158
|
+
'http://a.ml/vocabularies/apiContract#server'?: IAmfServer[];
|
|
159
|
+
}
|
|
160
|
+
export interface IAmfIriTemplateMapping extends IAmfDomainElement {
|
|
161
|
+
'http://a.ml/vocabularies/apiContract#templateVariable'?: IAmfLdValueString[];
|
|
162
|
+
'http://a.ml/vocabularies/apiContract#linkExpression'?: IAmfLdValueString[];
|
|
163
|
+
}
|
|
164
|
+
export declare interface IAmfShape extends IAmfDomainElement, IAmfLinkable {
|
|
165
|
+
'http://www.w3.org/ns/shacl#name'?: IAmfLdValueString[];
|
|
166
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
167
|
+
'http://a.ml/vocabularies/core#displayName'?: IAmfLdValueString[];
|
|
168
|
+
'http://www.w3.org/ns/shacl#defaultValueStr'?: IAmfLdValueString[];
|
|
169
|
+
'http://www.w3.org/ns/shacl#defaultValue'?: IAmfDataNode[];
|
|
170
|
+
'http://a.ml/vocabularies/shapes#readOnly'?: IAmfLdValueBoolean[];
|
|
171
|
+
'http://a.ml/vocabularies/shapes#writeOnly'?: IAmfLdValueBoolean[];
|
|
172
|
+
'http://a.ml/vocabularies/shapes#deprecated'?: IAmfLdValueBoolean[];
|
|
173
|
+
'http://a.ml/vocabularies/document#location'?: IAmfLdValueString[];
|
|
174
|
+
'http://www.w3.org/ns/shacl#or'?: IAmfShape[];
|
|
175
|
+
'http://www.w3.org/ns/shacl#and'?: IAmfShape[];
|
|
176
|
+
'http://www.w3.org/ns/shacl#xone'?: IAmfShape[];
|
|
177
|
+
'http://www.w3.org/ns/shacl#not'?: IAmfShape[];
|
|
178
|
+
}
|
|
179
|
+
export declare interface IAmfPropertyShape extends IAmfShape {
|
|
180
|
+
'http://www.w3.org/ns/shacl#path'?: IAmfLdIdValue[];
|
|
181
|
+
'http://a.ml/vocabularies/shapes#range'?: IAmfShape[];
|
|
182
|
+
'http://www.w3.org/ns/shacl#minCount'?: IAmfLdValueNumber[];
|
|
183
|
+
'http://www.w3.org/ns/shacl#maxCount'?: IAmfLdValueNumber[];
|
|
184
|
+
}
|
|
185
|
+
export declare interface IAmfAnyShape extends IAmfShape {
|
|
186
|
+
'http://a.ml/vocabularies/core#documentation'?: IAmfCreativeWork[];
|
|
187
|
+
'http://a.ml/vocabularies/shapes#xmlSerialization'?: IAmfDomainElement[];
|
|
188
|
+
'http://a.ml/vocabularies/apiContract#examples'?: IAmfDomainElement[];
|
|
189
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
190
|
+
}
|
|
191
|
+
export declare interface IAmfDataArrangeShape extends IAmfAnyShape {
|
|
192
|
+
}
|
|
193
|
+
export declare interface IAmfArrayShape extends IAmfDataArrangeShape {
|
|
194
|
+
'http://a.ml/vocabularies/shapes#items'?: IAmfShape[];
|
|
195
|
+
}
|
|
196
|
+
export declare interface IAmfUnionShape extends IAmfAnyShape {
|
|
197
|
+
'http://a.ml/vocabularies/shapes#anyOf'?: IAmfShape[];
|
|
198
|
+
}
|
|
199
|
+
export declare interface IAmfTupleShape extends IAmfAnyShape {
|
|
200
|
+
'http://a.ml/vocabularies/shapes#items'?: IAmfShape[];
|
|
201
|
+
}
|
|
202
|
+
export declare interface IAmfFileShape extends IAmfAnyShape {
|
|
203
|
+
'http://a.ml/vocabularies/shapes#fileType'?: IAmfLdValueString[];
|
|
204
|
+
'http://www.w3.org/ns/shacl#pattern'?: IAmfLdValueString[];
|
|
205
|
+
'http://www.w3.org/ns/shacl#minLength'?: IAmfLdValueNumber[];
|
|
206
|
+
'http://www.w3.org/ns/shacl#maxLength'?: IAmfLdValueNumber[];
|
|
207
|
+
'http://a.ml/vocabularies/shapes#minimum'?: IAmfLdValueNumber[];
|
|
208
|
+
'http://a.ml/vocabularies/shapes#maximum'?: IAmfLdValueNumber[];
|
|
209
|
+
'http://a.ml/vocabularies/shapes#exclusiveMinimum'?: IAmfLdValueBoolean[];
|
|
210
|
+
'http://a.ml/vocabularies/shapes#exclusiveMaximum'?: IAmfLdValueBoolean[];
|
|
211
|
+
'http://a.ml/vocabularies/shapes#format'?: IAmfLdValueString[];
|
|
212
|
+
'http://a.ml/vocabularies/shapes#multipleOf'?: IAmfLdValueNumber[];
|
|
213
|
+
}
|
|
214
|
+
export declare interface IAmfNilShape extends IAmfAnyShape {
|
|
215
|
+
}
|
|
216
|
+
export declare interface IAmfRecursiveShape extends IAmfShape {
|
|
217
|
+
'http://a.ml/vocabularies/shapes#fixPoint'?: IAmfLdIdValue[];
|
|
218
|
+
'http://a.ml/vocabularies/document#recursive'?: IAmfLdValueBoolean[];
|
|
219
|
+
}
|
|
220
|
+
export declare interface IAmfScalarShape extends IAmfShape {
|
|
221
|
+
'http://www.w3.org/ns/shacl#datatype'?: IAmfLdIdValue[];
|
|
222
|
+
'http://www.w3.org/ns/shacl#pattern'?: IAmfLdValueString[];
|
|
223
|
+
'http://www.w3.org/ns/shacl#minLength'?: IAmfLdValueNumber[];
|
|
224
|
+
'http://www.w3.org/ns/shacl#maxLength'?: IAmfLdValueNumber[];
|
|
225
|
+
'http://a.ml/vocabularies/shapes#minimum': IAmfLdValueNumber[];
|
|
226
|
+
'http://a.ml/vocabularies/shapes#maximum': IAmfLdValueNumber[];
|
|
227
|
+
'http://a.ml/vocabularies/shapes#exclusiveMinimum': IAmfLdValueBoolean[];
|
|
228
|
+
'http://a.ml/vocabularies/shapes#exclusiveMaximum': IAmfLdValueBoolean[];
|
|
229
|
+
'http://a.ml/vocabularies/shapes#format'?: IAmfLdValueString[];
|
|
230
|
+
'http://a.ml/vocabularies/shapes#multipleOf'?: IAmfLdValueNumber[];
|
|
231
|
+
}
|
|
232
|
+
export declare interface IAmfSchemaShape extends IAmfShape {
|
|
233
|
+
'http://a.ml/vocabularies/core#mediaType': IAmfLdValueString[];
|
|
234
|
+
'http://a.ml/vocabularies/document#raw'?: IAmfLdValueString[];
|
|
235
|
+
}
|
|
236
|
+
export declare interface IAmfNodeShape extends IAmfAnyShape {
|
|
237
|
+
'http://www.w3.org/ns/shacl#closed'?: IAmfLdValueBoolean[];
|
|
238
|
+
'http://a.ml/vocabularies/shapes#discriminator'?: IAmfLdValueString[];
|
|
239
|
+
'http://a.ml/vocabularies/shapes#discriminatorValue'?: IAmfLdValueString[];
|
|
240
|
+
'http://www.w3.org/ns/shacl#property'?: IAmfPropertyShape[];
|
|
241
|
+
}
|
|
242
|
+
export declare interface IAmfDataNode extends IAmfDomainElement {
|
|
243
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
244
|
+
}
|
|
245
|
+
export declare interface IAmfObjectNode extends IAmfDataNode {
|
|
246
|
+
}
|
|
247
|
+
export declare interface IAmfArrayNode extends IAmfDataNode {
|
|
248
|
+
}
|
|
249
|
+
export declare interface IAmfScalarNode extends IAmfDataNode {
|
|
250
|
+
'http://a.ml/vocabularies/data#value'?: IAmfLdValueString[];
|
|
251
|
+
'http://www.w3.org/ns/shacl#datatype'?: IAmfLdIdValue[];
|
|
252
|
+
}
|
|
253
|
+
export declare interface IAmfExample extends IAmfDomainElement, IAmfLinkable {
|
|
254
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
255
|
+
'http://a.ml/vocabularies/core#displayName'?: IAmfLdValueString[];
|
|
256
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
257
|
+
'http://a.ml/vocabularies/data#value'?: IAmfLdIdValue[];
|
|
258
|
+
'http://a.ml/vocabularies/document#structuredValue'?: IAmfDataNode[];
|
|
259
|
+
'http://a.ml/vocabularies/document#strict'?: IAmfLdValueBoolean[];
|
|
260
|
+
'http://a.ml/vocabularies/core#mediaType'?: IAmfLdValueString[];
|
|
261
|
+
'http://a.ml/vocabularies/document#raw'?: IAmfLdValueString[];
|
|
262
|
+
}
|
|
263
|
+
export interface IAmfCreativeWork extends IAmfDomainElement {
|
|
264
|
+
'http://a.ml/vocabularies/core#title'?: IAmfLdValueString[];
|
|
265
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
266
|
+
}
|
|
267
|
+
export interface IAmfSecurityRequirement extends IAmfDomainElement {
|
|
268
|
+
'http://a.ml/vocabularies/security#schemes'?: IAmfParametrizedSecurityScheme[];
|
|
269
|
+
'http://a.ml/vocabularies/security#name'?: IAmfLdValueString[];
|
|
270
|
+
}
|
|
271
|
+
export interface IAmfParametrizedSecurityScheme extends IAmfDomainElement {
|
|
272
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
273
|
+
'http://a.ml/vocabularies/security#scheme'?: IAmfSecurityScheme[];
|
|
274
|
+
'http://a.ml/vocabularies/security#settings': IAmfSettings[];
|
|
275
|
+
}
|
|
276
|
+
export interface IAmfSecurityScheme extends IAmfDomainElement {
|
|
277
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
278
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
279
|
+
'http://a.ml/vocabularies/security#type'?: IAmfLdValueString[];
|
|
280
|
+
'http://a.ml/vocabularies/core#displayName'?: IAmfLdValueString[];
|
|
281
|
+
'http://a.ml/vocabularies/apiContract#parameter'?: IAmfParameter[];
|
|
282
|
+
'http://a.ml/vocabularies/apiContract#header'?: IAmfParameter[];
|
|
283
|
+
'http://a.ml/vocabularies/security#settings'?: IAmfSettings[];
|
|
284
|
+
'http://a.ml/vocabularies/apiContract#response'?: IAmfResponse[];
|
|
285
|
+
'http://a.ml/vocabularies/apiContract#queryString'?: IAmfShape;
|
|
286
|
+
}
|
|
287
|
+
export interface IAmfSettings extends IAmfDomainElement {
|
|
288
|
+
}
|
|
289
|
+
export interface IAmfOAuth1Settings extends IAmfSettings {
|
|
290
|
+
'http://a.ml/vocabularies/security#requestTokenUri'?: IAmfLdValueString[];
|
|
291
|
+
'http://a.ml/vocabularies/security#authorizationUri'?: IAmfLdValueString[];
|
|
292
|
+
'http://a.ml/vocabularies/security#tokenCredentialsUri'?: IAmfLdValueString[];
|
|
293
|
+
'http://a.ml/vocabularies/security#signature': IAmfLdValueString[];
|
|
294
|
+
}
|
|
295
|
+
export interface IAmfOAuth2Settings extends IAmfSettings {
|
|
296
|
+
'http://a.ml/vocabularies/security#authorizationGrant': IAmfLdValueString[];
|
|
297
|
+
'http://a.ml/vocabularies/security#flows'?: IAmfOAuth2Flow[];
|
|
298
|
+
}
|
|
299
|
+
export interface IAmfOAuth2Flow extends IAmfSettings {
|
|
300
|
+
'http://a.ml/vocabularies/security#authorizationUri'?: IAmfLdValueString[];
|
|
301
|
+
'http://a.ml/vocabularies/security#accessTokenUri': IAmfLdValueString[];
|
|
302
|
+
'http://a.ml/vocabularies/security#flow'?: IAmfLdValueString[];
|
|
303
|
+
'http://a.ml/vocabularies/security#refreshUri': IAmfLdValueString[];
|
|
304
|
+
'http://a.ml/vocabularies/security#scope'?: IAmfScope[];
|
|
305
|
+
}
|
|
306
|
+
export interface IAmfApiKeySettings extends IAmfSettings {
|
|
307
|
+
'http://a.ml/vocabularies/core#name': IAmfLdValueString[];
|
|
308
|
+
'http://a.ml/vocabularies/security#in': IAmfLdValueString[];
|
|
309
|
+
}
|
|
310
|
+
export interface IAmfHttpSettings extends IAmfSettings {
|
|
311
|
+
'http://a.ml/vocabularies/security#scheme'?: IAmfLdValueString[];
|
|
312
|
+
'http://a.ml/vocabularies/security#bearerFormat'?: IAmfLdValueString[];
|
|
313
|
+
}
|
|
314
|
+
export interface IAmfOpenIdConnectSettings extends IAmfSettings {
|
|
315
|
+
'http://a.ml/vocabularies/security#openIdConnectUrl': IAmfLdValueString[];
|
|
316
|
+
}
|
|
317
|
+
export interface IAmfScope extends IAmfDomainElement {
|
|
318
|
+
'http://a.ml/vocabularies/core#name': IAmfLdValueString[];
|
|
319
|
+
'http://a.ml/vocabularies/core#description': IAmfLdValueString[];
|
|
320
|
+
}
|
|
321
|
+
export interface IAmfCallback extends IAmfDomainElement {
|
|
322
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
323
|
+
'http://a.ml/vocabularies/apiContract#expression'?: IAmfLdValueString[];
|
|
324
|
+
'http://a.ml/vocabularies/apiContract#endpoint'?: IAmfEndPoint[];
|
|
325
|
+
}
|
|
326
|
+
export interface IAmfXMLSerializer extends IAmfDomainElement {
|
|
327
|
+
'http://a.ml/vocabularies/shapes#xmlAttribute'?: IAmfLdValueBoolean[];
|
|
328
|
+
'http://a.ml/vocabularies/shapes#xmlWrapped'?: IAmfLdValueBoolean[];
|
|
329
|
+
'http://a.ml/vocabularies/shapes#xmlName'?: IAmfLdValueBoolean[];
|
|
330
|
+
}
|
|
331
|
+
export interface IAmfTag extends IAmfDomainElement {
|
|
332
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
333
|
+
}
|
|
334
|
+
export interface IAmfDocumentSourceMaps extends IAmfDomainElement {
|
|
335
|
+
'http://a.ml/vocabularies/document-source-maps#synthesized-field'?: IAmfSynthesizedField[];
|
|
336
|
+
'http://a.ml/vocabularies/document-source-maps#lexical'?: IAmfSynthesizedField[];
|
|
337
|
+
'http://a.ml/vocabularies/document-source-maps#tracked-element'?: IAmfSynthesizedField[];
|
|
338
|
+
}
|
|
339
|
+
export interface IAmfSynthesizedField {
|
|
340
340
|
'@id': string;
|
|
341
|
-
'http://a.ml/vocabularies/document-source-maps#element'?:
|
|
342
|
-
'http://a.ml/vocabularies/document-source-maps#value'?:
|
|
341
|
+
'http://a.ml/vocabularies/document-source-maps#element'?: IAmfLdValueString[];
|
|
342
|
+
'http://a.ml/vocabularies/document-source-maps#value'?: IAmfLdValueString[];
|
|
343
343
|
}
|
|
344
|
-
export interface
|
|
345
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
346
|
-
'http://a.ml/vocabularies/document#target'?:
|
|
347
|
-
'http://a.ml/vocabularies/document#variable'?:
|
|
344
|
+
export interface IAmfParametrizedDeclaration extends IAmfDomainElement {
|
|
345
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
346
|
+
'http://a.ml/vocabularies/document#target'?: IAmfAbstractDeclaration[];
|
|
347
|
+
'http://a.ml/vocabularies/document#variable'?: IAmfVariableValue[];
|
|
348
348
|
}
|
|
349
|
-
export interface
|
|
350
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
351
|
-
'http://a.ml/vocabularies/document#value'?:
|
|
349
|
+
export interface IAmfVariableValue extends IAmfDomainElement {
|
|
350
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
351
|
+
'http://a.ml/vocabularies/document#value'?: IAmfDataNode[];
|
|
352
352
|
}
|
|
353
|
-
export interface
|
|
354
|
-
'http://a.ml/vocabularies/core#name'?:
|
|
355
|
-
'http://a.ml/vocabularies/core#description'?:
|
|
356
|
-
'http://a.ml/vocabularies/document#dataNode'?:
|
|
357
|
-
'http://a.ml/vocabularies/document#variable'?:
|
|
353
|
+
export interface IAmfAbstractDeclaration extends IAmfDomainElement {
|
|
354
|
+
'http://a.ml/vocabularies/core#name'?: IAmfLdValueString[];
|
|
355
|
+
'http://a.ml/vocabularies/core#description'?: IAmfLdValueString[];
|
|
356
|
+
'http://a.ml/vocabularies/document#dataNode'?: IAmfDataNode[];
|
|
357
|
+
'http://a.ml/vocabularies/document#variable'?: IAmfLdValueString[];
|
|
358
358
|
}
|
|
359
|
-
export interface
|
|
359
|
+
export interface IAmfParametrizedTrait extends IAmfParametrizedDeclaration {
|
|
360
360
|
}
|
|
361
|
-
export interface
|
|
361
|
+
export interface IAmfParametrizedResourceType extends IAmfParametrizedDeclaration {
|
|
362
362
|
}
|