amf-client-js 5.0.6 → 5.0.8
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/amf.js +10649 -10594
- package/package.json +4 -1
- package/typings/amf-client-js.d.ts +197 -57
|
@@ -72,6 +72,8 @@ declare module 'amf-client-js' {
|
|
|
72
72
|
elseShape: Shape
|
|
73
73
|
thenShape: Shape
|
|
74
74
|
|
|
75
|
+
annotations(): Annotations
|
|
76
|
+
|
|
75
77
|
withName(name: string): this
|
|
76
78
|
|
|
77
79
|
withDisplayName(name: string): this
|
|
@@ -168,7 +170,8 @@ declare module 'amf-client-js' {
|
|
|
168
170
|
readonly option: undefined | boolean
|
|
169
171
|
isNull: boolean
|
|
170
172
|
nonNull: boolean
|
|
171
|
-
|
|
173
|
+
|
|
174
|
+
toString(): string
|
|
172
175
|
|
|
173
176
|
annotations(): Annotations
|
|
174
177
|
|
|
@@ -382,7 +385,8 @@ declare module 'amf-client-js' {
|
|
|
382
385
|
readonly option: undefined | number
|
|
383
386
|
isNull: boolean
|
|
384
387
|
nonNull: boolean
|
|
385
|
-
|
|
388
|
+
|
|
389
|
+
toString(): string
|
|
386
390
|
|
|
387
391
|
annotations(): Annotations
|
|
388
392
|
|
|
@@ -400,7 +404,8 @@ declare module 'amf-client-js' {
|
|
|
400
404
|
readonly option: undefined | any
|
|
401
405
|
isNull: boolean
|
|
402
406
|
nonNull: boolean
|
|
403
|
-
|
|
407
|
+
|
|
408
|
+
toString(): string
|
|
404
409
|
|
|
405
410
|
annotations(): Annotations
|
|
406
411
|
|
|
@@ -433,6 +438,8 @@ declare module 'amf-client-js' {
|
|
|
433
438
|
linkLabel: StrField
|
|
434
439
|
extendsNode: Array<DomainElement>
|
|
435
440
|
|
|
441
|
+
annotations(): Annotations
|
|
442
|
+
|
|
436
443
|
link<T>(label: string): T
|
|
437
444
|
|
|
438
445
|
linkCopy(): AbstractDeclaration
|
|
@@ -537,7 +544,8 @@ declare module 'amf-client-js' {
|
|
|
537
544
|
readonly option: undefined | number
|
|
538
545
|
isNull: boolean
|
|
539
546
|
nonNull: boolean
|
|
540
|
-
|
|
547
|
+
|
|
548
|
+
toString(): string
|
|
541
549
|
|
|
542
550
|
annotations(): Annotations
|
|
543
551
|
|
|
@@ -584,7 +592,8 @@ declare module 'amf-client-js' {
|
|
|
584
592
|
readonly option: undefined | number
|
|
585
593
|
isNull: boolean
|
|
586
594
|
nonNull: boolean
|
|
587
|
-
|
|
595
|
+
|
|
596
|
+
toString(): string
|
|
588
597
|
|
|
589
598
|
annotations(): Annotations
|
|
590
599
|
|
|
@@ -723,6 +732,8 @@ declare module 'amf-client-js' {
|
|
|
723
732
|
extendsNode: Array<DomainElement>
|
|
724
733
|
and: Array<Shape>
|
|
725
734
|
|
|
735
|
+
annotations(): Annotations
|
|
736
|
+
|
|
726
737
|
link<T>(label: string): T
|
|
727
738
|
|
|
728
739
|
withValues(values: Array<DataNode>): this
|
|
@@ -838,7 +849,8 @@ declare module 'amf-client-js' {
|
|
|
838
849
|
readonly option: undefined | string
|
|
839
850
|
nonEmpty: boolean
|
|
840
851
|
isNullOrEmpty: boolean
|
|
841
|
-
|
|
852
|
+
|
|
853
|
+
toString(): string
|
|
842
854
|
|
|
843
855
|
annotations(): Annotations
|
|
844
856
|
|
|
@@ -867,8 +879,14 @@ declare module 'amf-client-js' {
|
|
|
867
879
|
position: Range
|
|
868
880
|
extendsNode: Array<DomainElement>
|
|
869
881
|
|
|
882
|
+
annotations(): Annotations
|
|
883
|
+
|
|
884
|
+
withIfMapping(ifMapping: string): AnyMapping
|
|
885
|
+
|
|
870
886
|
or(): Array<StrField>
|
|
871
887
|
|
|
888
|
+
ifMapping(): StrField
|
|
889
|
+
|
|
872
890
|
and(): Array<StrField>
|
|
873
891
|
|
|
874
892
|
components(): Array<StrField>
|
|
@@ -877,10 +895,18 @@ declare module 'amf-client-js' {
|
|
|
877
895
|
|
|
878
896
|
graph(): Graph
|
|
879
897
|
|
|
898
|
+
thenMapping(): StrField
|
|
899
|
+
|
|
880
900
|
withOr(orMappings: Array<string>): AnyMapping
|
|
881
901
|
|
|
882
902
|
withIsExternalLink(isExternalLink: boolean): DomainElement
|
|
883
903
|
|
|
904
|
+
withThenMapping(thenMapping: string): AnyMapping
|
|
905
|
+
|
|
906
|
+
elseMapping(): StrField
|
|
907
|
+
|
|
908
|
+
withElseMapping(elseMapping: string): AnyMapping
|
|
909
|
+
|
|
884
910
|
withExtendsNode(extension: Array<ParametrizedDeclaration>): this
|
|
885
911
|
|
|
886
912
|
withCustomDomainProperties(extensions: Array<DomainExtension>): this
|
|
@@ -971,6 +997,8 @@ declare module 'amf-client-js' {
|
|
|
971
997
|
position: Range
|
|
972
998
|
isExternalLink: BoolField
|
|
973
999
|
|
|
1000
|
+
annotations(): Annotations
|
|
1001
|
+
|
|
974
1002
|
withCustomDomainProperties(extensions: Array<DomainExtension>): this
|
|
975
1003
|
|
|
976
1004
|
withExtendsNode(extension: Array<ParametrizedDeclaration>): this
|
|
@@ -999,6 +1027,8 @@ declare module 'amf-client-js' {
|
|
|
999
1027
|
position: Range
|
|
1000
1028
|
extendsNode: Array<DomainElement>
|
|
1001
1029
|
|
|
1030
|
+
annotations(): Annotations
|
|
1031
|
+
|
|
1002
1032
|
withName(name: string): PropertyTerm
|
|
1003
1033
|
|
|
1004
1034
|
withDescription(description: string): PropertyTerm
|
|
@@ -1121,7 +1151,8 @@ declare module 'amf-client-js' {
|
|
|
1121
1151
|
readonly option: undefined | T
|
|
1122
1152
|
isNull: boolean
|
|
1123
1153
|
nonNull: boolean
|
|
1124
|
-
|
|
1154
|
+
|
|
1155
|
+
toString(): string
|
|
1125
1156
|
|
|
1126
1157
|
value(): T
|
|
1127
1158
|
|
|
@@ -1167,6 +1198,8 @@ declare module 'amf-client-js' {
|
|
|
1167
1198
|
position: Range
|
|
1168
1199
|
extendsNode: Array<DomainElement>
|
|
1169
1200
|
|
|
1201
|
+
annotations(): Annotations
|
|
1202
|
+
|
|
1170
1203
|
withDocumentationTitle(title: string): CreativeWork
|
|
1171
1204
|
|
|
1172
1205
|
withEndPoint(path: string): EndPoint
|
|
@@ -1296,6 +1329,8 @@ declare module 'amf-client-js' {
|
|
|
1296
1329
|
|
|
1297
1330
|
constructor()
|
|
1298
1331
|
|
|
1332
|
+
annotations(): Annotations
|
|
1333
|
+
|
|
1299
1334
|
link<T>(label: string): T
|
|
1300
1335
|
|
|
1301
1336
|
withHeaderSchema(schema: NodeShape): this
|
|
@@ -1373,6 +1408,8 @@ declare module 'amf-client-js' {
|
|
|
1373
1408
|
|
|
1374
1409
|
constructor()
|
|
1375
1410
|
|
|
1411
|
+
annotations(): Annotations
|
|
1412
|
+
|
|
1376
1413
|
maximum(): DoubleField
|
|
1377
1414
|
|
|
1378
1415
|
typeDiscriminator(): Map<string, string>
|
|
@@ -1652,6 +1689,8 @@ declare module 'amf-client-js' {
|
|
|
1652
1689
|
|
|
1653
1690
|
constructor()
|
|
1654
1691
|
|
|
1692
|
+
annotations(): Annotations
|
|
1693
|
+
|
|
1655
1694
|
link<T>(label: string): T
|
|
1656
1695
|
|
|
1657
1696
|
withHeaders(headers: Array<Parameter>): this
|
|
@@ -1845,6 +1884,8 @@ declare module 'amf-client-js' {
|
|
|
1845
1884
|
|
|
1846
1885
|
constructor()
|
|
1847
1886
|
|
|
1887
|
+
annotations(): Annotations
|
|
1888
|
+
|
|
1848
1889
|
link<T>(label: string): T
|
|
1849
1890
|
|
|
1850
1891
|
withDeliveryMode(deliveryMode: number): this
|
|
@@ -1900,6 +1941,8 @@ declare module 'amf-client-js' {
|
|
|
1900
1941
|
|
|
1901
1942
|
constructor()
|
|
1902
1943
|
|
|
1944
|
+
annotations(): Annotations
|
|
1945
|
+
|
|
1903
1946
|
withName(name: string): this
|
|
1904
1947
|
|
|
1905
1948
|
graph(): Graph
|
|
@@ -1967,6 +2010,8 @@ declare module 'amf-client-js' {
|
|
|
1967
2010
|
|
|
1968
2011
|
constructor()
|
|
1969
2012
|
|
|
2013
|
+
annotations(): Annotations
|
|
2014
|
+
|
|
1970
2015
|
link<T>(label: string): T
|
|
1971
2016
|
|
|
1972
2017
|
withValues(values: Array<DataNode>): this
|
|
@@ -2057,6 +2102,8 @@ declare module 'amf-client-js' {
|
|
|
2057
2102
|
|
|
2058
2103
|
constructor()
|
|
2059
2104
|
|
|
2105
|
+
annotations(): Annotations
|
|
2106
|
+
|
|
2060
2107
|
withName(name: string): PublicNodeMapping
|
|
2061
2108
|
|
|
2062
2109
|
mappedNode(): StrField
|
|
@@ -2088,6 +2135,8 @@ declare module 'amf-client-js' {
|
|
|
2088
2135
|
|
|
2089
2136
|
constructor()
|
|
2090
2137
|
|
|
2138
|
+
annotations(): Annotations
|
|
2139
|
+
|
|
2091
2140
|
withName(name: string): this
|
|
2092
2141
|
|
|
2093
2142
|
withDescription(description: string): this
|
|
@@ -2122,6 +2171,8 @@ declare module 'amf-client-js' {
|
|
|
2122
2171
|
|
|
2123
2172
|
constructor()
|
|
2124
2173
|
|
|
2174
|
+
annotations(): Annotations
|
|
2175
|
+
|
|
2125
2176
|
withDefinedBy(definedBy: PropertyShape): this
|
|
2126
2177
|
|
|
2127
2178
|
graph(): Graph
|
|
@@ -2156,6 +2207,8 @@ declare module 'amf-client-js' {
|
|
|
2156
2207
|
|
|
2157
2208
|
constructor()
|
|
2158
2209
|
|
|
2210
|
+
annotations(): Annotations
|
|
2211
|
+
|
|
2159
2212
|
withName(name: string): ClassTerm
|
|
2160
2213
|
|
|
2161
2214
|
withDescription(description: string): ClassTerm
|
|
@@ -2192,6 +2245,8 @@ declare module 'amf-client-js' {
|
|
|
2192
2245
|
|
|
2193
2246
|
constructor()
|
|
2194
2247
|
|
|
2248
|
+
annotations(): Annotations
|
|
2249
|
+
|
|
2195
2250
|
withFlow(flow: string): this
|
|
2196
2251
|
|
|
2197
2252
|
withScopes(scopes: Array<Scope>): this
|
|
@@ -2228,6 +2283,8 @@ declare module 'amf-client-js' {
|
|
|
2228
2283
|
|
|
2229
2284
|
constructor()
|
|
2230
2285
|
|
|
2286
|
+
annotations(): Annotations
|
|
2287
|
+
|
|
2231
2288
|
link<T>(label: string): T
|
|
2232
2289
|
|
|
2233
2290
|
linkCopy(): OperationBindings
|
|
@@ -2285,6 +2342,8 @@ declare module 'amf-client-js' {
|
|
|
2285
2342
|
|
|
2286
2343
|
constructor()
|
|
2287
2344
|
|
|
2345
|
+
annotations(): Annotations
|
|
2346
|
+
|
|
2288
2347
|
link<T>(label: string): T
|
|
2289
2348
|
|
|
2290
2349
|
linkCopy(): MqttOperationBinding
|
|
@@ -2324,6 +2383,8 @@ declare module 'amf-client-js' {
|
|
|
2324
2383
|
|
|
2325
2384
|
constructor()
|
|
2326
2385
|
|
|
2386
|
+
annotations(): Annotations
|
|
2387
|
+
|
|
2327
2388
|
withSchemaTarget(schema: Shape): this
|
|
2328
2389
|
|
|
2329
2390
|
withPropertySource(propertySource: string): this
|
|
@@ -2356,6 +2417,8 @@ declare module 'amf-client-js' {
|
|
|
2356
2417
|
|
|
2357
2418
|
constructor()
|
|
2358
2419
|
|
|
2420
|
+
annotations(): Annotations
|
|
2421
|
+
|
|
2359
2422
|
withEncoding(name: string): Encoding
|
|
2360
2423
|
|
|
2361
2424
|
withEncodings(encoding: Array<Encoding>): this
|
|
@@ -2418,6 +2481,8 @@ declare module 'amf-client-js' {
|
|
|
2418
2481
|
|
|
2419
2482
|
constructor()
|
|
2420
2483
|
|
|
2484
|
+
annotations(): Annotations
|
|
2485
|
+
|
|
2421
2486
|
withRetain(retain: boolean): this
|
|
2422
2487
|
|
|
2423
2488
|
withMessage(message: string): this
|
|
@@ -2549,6 +2614,8 @@ declare module 'amf-client-js' {
|
|
|
2549
2614
|
|
|
2550
2615
|
constructor()
|
|
2551
2616
|
|
|
2617
|
+
annotations(): Annotations
|
|
2618
|
+
|
|
2552
2619
|
withName(name: string): this
|
|
2553
2620
|
|
|
2554
2621
|
graph(): Graph
|
|
@@ -2575,6 +2642,8 @@ declare module 'amf-client-js' {
|
|
|
2575
2642
|
|
|
2576
2643
|
constructor()
|
|
2577
2644
|
|
|
2645
|
+
annotations(): Annotations
|
|
2646
|
+
|
|
2578
2647
|
withExpression(expression: string): this
|
|
2579
2648
|
|
|
2580
2649
|
withName(name: string): this
|
|
@@ -2654,6 +2723,8 @@ declare module 'amf-client-js' {
|
|
|
2654
2723
|
|
|
2655
2724
|
constructor()
|
|
2656
2725
|
|
|
2726
|
+
annotations(): Annotations
|
|
2727
|
+
|
|
2657
2728
|
withPropertySource(propertySource: string): this
|
|
2658
2729
|
|
|
2659
2730
|
graph(): Graph
|
|
@@ -2749,6 +2820,8 @@ declare module 'amf-client-js' {
|
|
|
2749
2820
|
|
|
2750
2821
|
constructor()
|
|
2751
2822
|
|
|
2823
|
+
annotations(): Annotations
|
|
2824
|
+
|
|
2752
2825
|
withName(name: string): this
|
|
2753
2826
|
|
|
2754
2827
|
withScheme(): ParametrizedSecurityScheme
|
|
@@ -2783,6 +2856,8 @@ declare module 'amf-client-js' {
|
|
|
2783
2856
|
|
|
2784
2857
|
constructor()
|
|
2785
2858
|
|
|
2859
|
+
annotations(): Annotations
|
|
2860
|
+
|
|
2786
2861
|
link<T>(label: string): T
|
|
2787
2862
|
|
|
2788
2863
|
withKeepAlive(keepAlive: number): this
|
|
@@ -2832,6 +2907,8 @@ declare module 'amf-client-js' {
|
|
|
2832
2907
|
|
|
2833
2908
|
constructor()
|
|
2834
2909
|
|
|
2910
|
+
annotations(): Annotations
|
|
2911
|
+
|
|
2835
2912
|
withName(name: string): this
|
|
2836
2913
|
|
|
2837
2914
|
graph(): Graph
|
|
@@ -2891,6 +2968,8 @@ declare module 'amf-client-js' {
|
|
|
2891
2968
|
|
|
2892
2969
|
constructor()
|
|
2893
2970
|
|
|
2971
|
+
annotations(): Annotations
|
|
2972
|
+
|
|
2894
2973
|
withSecurity(security: Array<SecurityRequirement>): this
|
|
2895
2974
|
|
|
2896
2975
|
withPayloads(payloads: Array<Payload>): this
|
|
@@ -3059,6 +3138,8 @@ declare module 'amf-client-js' {
|
|
|
3059
3138
|
|
|
3060
3139
|
constructor()
|
|
3061
3140
|
|
|
3141
|
+
annotations(): Annotations
|
|
3142
|
+
|
|
3062
3143
|
link<T>(label: string): T
|
|
3063
3144
|
|
|
3064
3145
|
linkCopy(): ChannelBindings
|
|
@@ -3105,6 +3186,8 @@ declare module 'amf-client-js' {
|
|
|
3105
3186
|
|
|
3106
3187
|
constructor()
|
|
3107
3188
|
|
|
3189
|
+
annotations(): Annotations
|
|
3190
|
+
|
|
3108
3191
|
link<T>(label: string): T
|
|
3109
3192
|
|
|
3110
3193
|
withObjectCollectionProperty(propertyIri: string, value: Array<DialectDomainElement>): this
|
|
@@ -3177,6 +3260,8 @@ declare module 'amf-client-js' {
|
|
|
3177
3260
|
|
|
3178
3261
|
constructor()
|
|
3179
3262
|
|
|
3263
|
+
annotations(): Annotations
|
|
3264
|
+
|
|
3180
3265
|
link<T>(label: string): T
|
|
3181
3266
|
|
|
3182
3267
|
linkCopy(): MessageBindings
|
|
@@ -3338,6 +3423,8 @@ declare module 'amf-client-js' {
|
|
|
3338
3423
|
|
|
3339
3424
|
constructor()
|
|
3340
3425
|
|
|
3426
|
+
annotations(): Annotations
|
|
3427
|
+
|
|
3341
3428
|
withName(name: string): this
|
|
3342
3429
|
|
|
3343
3430
|
withDurable(durable: boolean): this
|
|
@@ -3372,6 +3459,8 @@ declare module 'amf-client-js' {
|
|
|
3372
3459
|
|
|
3373
3460
|
constructor()
|
|
3374
3461
|
|
|
3462
|
+
annotations(): Annotations
|
|
3463
|
+
|
|
3375
3464
|
withName(name: string): this
|
|
3376
3465
|
|
|
3377
3466
|
graph(): Graph
|
|
@@ -3443,6 +3532,8 @@ declare module 'amf-client-js' {
|
|
|
3443
3532
|
|
|
3444
3533
|
constructor()
|
|
3445
3534
|
|
|
3535
|
+
annotations(): Annotations
|
|
3536
|
+
|
|
3446
3537
|
withDescription(description: string): this
|
|
3447
3538
|
|
|
3448
3539
|
withTitle(title: string): this
|
|
@@ -3471,6 +3562,8 @@ declare module 'amf-client-js' {
|
|
|
3471
3562
|
|
|
3472
3563
|
constructor()
|
|
3473
3564
|
|
|
3565
|
+
annotations(): Annotations
|
|
3566
|
+
|
|
3474
3567
|
withName(name: string): this
|
|
3475
3568
|
|
|
3476
3569
|
graph(): Graph
|
|
@@ -3501,6 +3594,7 @@ declare module 'amf-client-js' {
|
|
|
3501
3594
|
export class Content {
|
|
3502
3595
|
constructor(stream: string, url: string)
|
|
3503
3596
|
constructor(stream: string, url: string, mime: string)
|
|
3597
|
+
readonly url: string
|
|
3504
3598
|
|
|
3505
3599
|
}
|
|
3506
3600
|
export class DatatypePropertyTerm extends PropertyTerm {
|
|
@@ -3535,6 +3629,8 @@ declare module 'amf-client-js' {
|
|
|
3535
3629
|
|
|
3536
3630
|
constructor()
|
|
3537
3631
|
|
|
3632
|
+
annotations(): Annotations
|
|
3633
|
+
|
|
3538
3634
|
withPayloads(payloads: Array<Payload>): this
|
|
3539
3635
|
|
|
3540
3636
|
withExplode(explode: boolean): this
|
|
@@ -3645,6 +3741,8 @@ declare module 'amf-client-js' {
|
|
|
3645
3741
|
|
|
3646
3742
|
constructor()
|
|
3647
3743
|
|
|
3744
|
+
annotations(): Annotations
|
|
3745
|
+
|
|
3648
3746
|
link<T>(label: string): T
|
|
3649
3747
|
|
|
3650
3748
|
withValues(values: Array<DataNode>): this
|
|
@@ -3742,6 +3840,8 @@ declare module 'amf-client-js' {
|
|
|
3742
3840
|
|
|
3743
3841
|
constructor()
|
|
3744
3842
|
|
|
3843
|
+
annotations(): Annotations
|
|
3844
|
+
|
|
3745
3845
|
link<T>(label: string): T
|
|
3746
3846
|
|
|
3747
3847
|
withBindings(bindings: Array<ServerBinding>): this
|
|
@@ -3788,6 +3888,8 @@ declare module 'amf-client-js' {
|
|
|
3788
3888
|
|
|
3789
3889
|
constructor()
|
|
3790
3890
|
|
|
3891
|
+
annotations(): Annotations
|
|
3892
|
+
|
|
3791
3893
|
withIsAbstract(isAbstract: boolean): this
|
|
3792
3894
|
|
|
3793
3895
|
withMinProperties(min: number): this
|
|
@@ -3906,6 +4008,8 @@ declare module 'amf-client-js' {
|
|
|
3906
4008
|
|
|
3907
4009
|
constructor()
|
|
3908
4010
|
|
|
4011
|
+
annotations(): Annotations
|
|
4012
|
+
|
|
3909
4013
|
withName(name: string): this
|
|
3910
4014
|
|
|
3911
4015
|
graph(): Graph
|
|
@@ -3934,6 +4038,8 @@ declare module 'amf-client-js' {
|
|
|
3934
4038
|
|
|
3935
4039
|
constructor()
|
|
3936
4040
|
|
|
4041
|
+
annotations(): Annotations
|
|
4042
|
+
|
|
3937
4043
|
withName(name: string): this
|
|
3938
4044
|
|
|
3939
4045
|
withDescription(description: string): this
|
|
@@ -3976,6 +4082,8 @@ declare module 'amf-client-js' {
|
|
|
3976
4082
|
|
|
3977
4083
|
constructor()
|
|
3978
4084
|
|
|
4085
|
+
annotations(): Annotations
|
|
4086
|
+
|
|
3979
4087
|
withName(name: string): this
|
|
3980
4088
|
|
|
3981
4089
|
graph(): Graph
|
|
@@ -4004,6 +4112,8 @@ declare module 'amf-client-js' {
|
|
|
4004
4112
|
|
|
4005
4113
|
constructor()
|
|
4006
4114
|
|
|
4115
|
+
annotations(): Annotations
|
|
4116
|
+
|
|
4007
4117
|
withEmail(email: string): this
|
|
4008
4118
|
|
|
4009
4119
|
withName(name: string): this
|
|
@@ -4034,6 +4144,8 @@ declare module 'amf-client-js' {
|
|
|
4034
4144
|
|
|
4035
4145
|
constructor()
|
|
4036
4146
|
|
|
4147
|
+
annotations(): Annotations
|
|
4148
|
+
|
|
4037
4149
|
withName(name: string): this
|
|
4038
4150
|
|
|
4039
4151
|
graph(): Graph
|
|
@@ -4063,6 +4175,8 @@ declare module 'amf-client-js' {
|
|
|
4063
4175
|
|
|
4064
4176
|
constructor()
|
|
4065
4177
|
|
|
4178
|
+
annotations(): Annotations
|
|
4179
|
+
|
|
4066
4180
|
withAlias(alias: string): VocabularyReference
|
|
4067
4181
|
|
|
4068
4182
|
graph(): Graph
|
|
@@ -4101,6 +4215,8 @@ declare module 'amf-client-js' {
|
|
|
4101
4215
|
|
|
4102
4216
|
constructor()
|
|
4103
4217
|
|
|
4218
|
+
annotations(): Annotations
|
|
4219
|
+
|
|
4104
4220
|
declarationsPath(): StrField
|
|
4105
4221
|
|
|
4106
4222
|
withRoot(documentMapping: DocumentMapping): DocumentsModel
|
|
@@ -4173,6 +4289,8 @@ declare module 'amf-client-js' {
|
|
|
4173
4289
|
|
|
4174
4290
|
constructor()
|
|
4175
4291
|
|
|
4292
|
+
annotations(): Annotations
|
|
4293
|
+
|
|
4176
4294
|
link<T>(label: string): T
|
|
4177
4295
|
|
|
4178
4296
|
withKey(key: Shape): this
|
|
@@ -4279,6 +4397,8 @@ declare module 'amf-client-js' {
|
|
|
4279
4397
|
constructor()
|
|
4280
4398
|
constructor(alias: string, value: string)
|
|
4281
4399
|
|
|
4400
|
+
annotations(): Annotations
|
|
4401
|
+
|
|
4282
4402
|
withAlias(alias: string): this
|
|
4283
4403
|
|
|
4284
4404
|
withName(name: string): this
|
|
@@ -4314,6 +4434,8 @@ declare module 'amf-client-js' {
|
|
|
4314
4434
|
|
|
4315
4435
|
constructor()
|
|
4316
4436
|
|
|
4437
|
+
annotations(): Annotations
|
|
4438
|
+
|
|
4317
4439
|
link<T>(label: string): T
|
|
4318
4440
|
|
|
4319
4441
|
withIdTemplate(idTemplate: string): NodeMapping
|
|
@@ -4378,6 +4500,8 @@ declare module 'amf-client-js' {
|
|
|
4378
4500
|
|
|
4379
4501
|
constructor()
|
|
4380
4502
|
|
|
4503
|
+
annotations(): Annotations
|
|
4504
|
+
|
|
4381
4505
|
link<T>(label: string): T
|
|
4382
4506
|
|
|
4383
4507
|
linkCopy(): CustomDomainProperty
|
|
@@ -4425,6 +4549,8 @@ declare module 'amf-client-js' {
|
|
|
4425
4549
|
|
|
4426
4550
|
constructor()
|
|
4427
4551
|
|
|
4552
|
+
annotations(): Annotations
|
|
4553
|
+
|
|
4428
4554
|
link<T>(label: string): T
|
|
4429
4555
|
|
|
4430
4556
|
linkCopy(): EmptyBinding
|
|
@@ -4463,6 +4589,8 @@ declare module 'amf-client-js' {
|
|
|
4463
4589
|
|
|
4464
4590
|
constructor()
|
|
4465
4591
|
|
|
4592
|
+
annotations(): Annotations
|
|
4593
|
+
|
|
4466
4594
|
withName(name: string): this
|
|
4467
4595
|
|
|
4468
4596
|
withWrapped(wrapped: boolean): this
|
|
@@ -4570,6 +4698,8 @@ declare module 'amf-client-js' {
|
|
|
4570
4698
|
|
|
4571
4699
|
constructor()
|
|
4572
4700
|
|
|
4701
|
+
annotations(): Annotations
|
|
4702
|
+
|
|
4573
4703
|
link<T>(label: string): T
|
|
4574
4704
|
|
|
4575
4705
|
linkCopy(): KafkaOperationBinding
|
|
@@ -4609,6 +4739,8 @@ declare module 'amf-client-js' {
|
|
|
4609
4739
|
|
|
4610
4740
|
constructor()
|
|
4611
4741
|
|
|
4742
|
+
annotations(): Annotations
|
|
4743
|
+
|
|
4612
4744
|
withName(name: string): this
|
|
4613
4745
|
|
|
4614
4746
|
graph(): Graph
|
|
@@ -4645,6 +4777,8 @@ declare module 'amf-client-js' {
|
|
|
4645
4777
|
|
|
4646
4778
|
constructor()
|
|
4647
4779
|
|
|
4780
|
+
annotations(): Annotations
|
|
4781
|
+
|
|
4648
4782
|
maximum(): DoubleField
|
|
4649
4783
|
|
|
4650
4784
|
typeDiscriminator(): Map<string, string>
|
|
@@ -4740,6 +4874,8 @@ declare module 'amf-client-js' {
|
|
|
4740
4874
|
|
|
4741
4875
|
constructor()
|
|
4742
4876
|
|
|
4877
|
+
annotations(): Annotations
|
|
4878
|
+
|
|
4743
4879
|
withSecurity(security: Array<SecurityRequirement>): this
|
|
4744
4880
|
|
|
4745
4881
|
withVariables(variables: Array<Parameter>): this
|
|
@@ -4767,55 +4903,6 @@ declare module 'amf-client-js' {
|
|
|
4767
4903
|
withId(id: string): this
|
|
4768
4904
|
|
|
4769
4905
|
|
|
4770
|
-
}
|
|
4771
|
-
export class ConditionalNodeMapping extends AnyMapping implements Linkable {
|
|
4772
|
-
name: StrField
|
|
4773
|
-
customDomainProperties: Array<DomainExtension>
|
|
4774
|
-
linkTarget: undefined | DomainElement
|
|
4775
|
-
isLink: boolean
|
|
4776
|
-
isExternalLink: BoolField
|
|
4777
|
-
id: string
|
|
4778
|
-
position: Range
|
|
4779
|
-
linkLabel: StrField
|
|
4780
|
-
extendsNode: Array<DomainElement>
|
|
4781
|
-
|
|
4782
|
-
constructor()
|
|
4783
|
-
|
|
4784
|
-
withIfMapping(ifMapping: string): ConditionalNodeMapping
|
|
4785
|
-
|
|
4786
|
-
link<T>(label: string): T
|
|
4787
|
-
|
|
4788
|
-
linkCopy(): ConditionalNodeMapping
|
|
4789
|
-
|
|
4790
|
-
withName(name: string): ConditionalNodeMapping
|
|
4791
|
-
|
|
4792
|
-
ifMapping(): StrField
|
|
4793
|
-
|
|
4794
|
-
graph(): Graph
|
|
4795
|
-
|
|
4796
|
-
thenMapping(): StrField
|
|
4797
|
-
|
|
4798
|
-
withIsExternalLink(isExternalLink: boolean): DomainElement
|
|
4799
|
-
|
|
4800
|
-
withLinkLabel(label: string): this
|
|
4801
|
-
|
|
4802
|
-
withThenMapping(thenMapping: string): ConditionalNodeMapping
|
|
4803
|
-
|
|
4804
|
-
elseMapping(): StrField
|
|
4805
|
-
|
|
4806
|
-
withElseMapping(elseMapping: string): ConditionalNodeMapping
|
|
4807
|
-
|
|
4808
|
-
withExtendsNode(extension: Array<ParametrizedDeclaration>): this
|
|
4809
|
-
|
|
4810
|
-
withCustomDomainProperties(extensions: Array<DomainExtension>): this
|
|
4811
|
-
|
|
4812
|
-
link<T>(): T
|
|
4813
|
-
|
|
4814
|
-
withLinkTarget(target: undefined): this
|
|
4815
|
-
|
|
4816
|
-
withId(id: string): this
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
4906
|
}
|
|
4820
4907
|
export class CorrelationId implements DomainElement, Linkable {
|
|
4821
4908
|
name: StrField
|
|
@@ -4832,6 +4919,8 @@ declare module 'amf-client-js' {
|
|
|
4832
4919
|
|
|
4833
4920
|
constructor()
|
|
4834
4921
|
|
|
4922
|
+
annotations(): Annotations
|
|
4923
|
+
|
|
4835
4924
|
link<T>(label: string): T
|
|
4836
4925
|
|
|
4837
4926
|
linkCopy(): CorrelationId
|
|
@@ -4880,6 +4969,8 @@ declare module 'amf-client-js' {
|
|
|
4880
4969
|
|
|
4881
4970
|
constructor()
|
|
4882
4971
|
|
|
4972
|
+
annotations(): Annotations
|
|
4973
|
+
|
|
4883
4974
|
link<T>(label: string): T
|
|
4884
4975
|
|
|
4885
4976
|
linkCopy(): HttpMessageBinding
|
|
@@ -4926,6 +5017,8 @@ declare module 'amf-client-js' {
|
|
|
4926
5017
|
|
|
4927
5018
|
constructor()
|
|
4928
5019
|
|
|
5020
|
+
annotations(): Annotations
|
|
5021
|
+
|
|
4929
5022
|
link<T>(label: string): T
|
|
4930
5023
|
|
|
4931
5024
|
linkCopy(): Amqp091ChannelBinding
|
|
@@ -5032,6 +5125,8 @@ declare module 'amf-client-js' {
|
|
|
5032
5125
|
|
|
5033
5126
|
constructor()
|
|
5034
5127
|
|
|
5128
|
+
annotations(): Annotations
|
|
5129
|
+
|
|
5035
5130
|
link<T>(label: string): T
|
|
5036
5131
|
|
|
5037
5132
|
linkCopy(): MqttMessageBinding
|
|
@@ -5080,6 +5175,8 @@ declare module 'amf-client-js' {
|
|
|
5080
5175
|
|
|
5081
5176
|
constructor()
|
|
5082
5177
|
|
|
5178
|
+
annotations(): Annotations
|
|
5179
|
+
|
|
5083
5180
|
link<T>(label: string): T
|
|
5084
5181
|
|
|
5085
5182
|
withMessageType(messageType: string): this
|
|
@@ -5139,6 +5236,8 @@ declare module 'amf-client-js' {
|
|
|
5139
5236
|
|
|
5140
5237
|
constructor()
|
|
5141
5238
|
|
|
5239
|
+
annotations(): Annotations
|
|
5240
|
+
|
|
5142
5241
|
link<T>(label: string): T
|
|
5143
5242
|
|
|
5144
5243
|
withSecurity(security: Array<SecurityRequirement>): this
|
|
@@ -5201,6 +5300,8 @@ declare module 'amf-client-js' {
|
|
|
5201
5300
|
|
|
5202
5301
|
withRequest(): Request
|
|
5203
5302
|
|
|
5303
|
+
withRequests(requests: Array<Request>): this
|
|
5304
|
+
|
|
5204
5305
|
withDocumentation(documentation: CreativeWork): this
|
|
5205
5306
|
|
|
5206
5307
|
withDeprecated(deprecated: boolean): this
|
|
@@ -5222,6 +5323,8 @@ declare module 'amf-client-js' {
|
|
|
5222
5323
|
|
|
5223
5324
|
constructor()
|
|
5224
5325
|
|
|
5326
|
+
annotations(): Annotations
|
|
5327
|
+
|
|
5225
5328
|
withAlias(alias: string): External
|
|
5226
5329
|
|
|
5227
5330
|
graph(): Graph
|
|
@@ -5258,6 +5361,8 @@ declare module 'amf-client-js' {
|
|
|
5258
5361
|
|
|
5259
5362
|
constructor()
|
|
5260
5363
|
|
|
5364
|
+
annotations(): Annotations
|
|
5365
|
+
|
|
5261
5366
|
withTargetShape(shape: Shape): this
|
|
5262
5367
|
|
|
5263
5368
|
graph(): Graph
|
|
@@ -5304,6 +5409,8 @@ declare module 'amf-client-js' {
|
|
|
5304
5409
|
|
|
5305
5410
|
constructor()
|
|
5306
5411
|
|
|
5412
|
+
annotations(): Annotations
|
|
5413
|
+
|
|
5307
5414
|
link<T>(label: string): T
|
|
5308
5415
|
|
|
5309
5416
|
linkCopy(): HttpOperationBinding
|
|
@@ -5347,6 +5454,8 @@ declare module 'amf-client-js' {
|
|
|
5347
5454
|
|
|
5348
5455
|
constructor()
|
|
5349
5456
|
|
|
5457
|
+
annotations(): Annotations
|
|
5458
|
+
|
|
5350
5459
|
link<T>(label: string): T
|
|
5351
5460
|
|
|
5352
5461
|
typeDiscriminator(): Map<string, string>
|
|
@@ -5412,6 +5521,8 @@ declare module 'amf-client-js' {
|
|
|
5412
5521
|
|
|
5413
5522
|
constructor()
|
|
5414
5523
|
|
|
5524
|
+
annotations(): Annotations
|
|
5525
|
+
|
|
5415
5526
|
withRequestBody(requestBody: string): this
|
|
5416
5527
|
|
|
5417
5528
|
withServer(server: Server): this
|
|
@@ -5455,6 +5566,8 @@ declare module 'amf-client-js' {
|
|
|
5455
5566
|
|
|
5456
5567
|
constructor()
|
|
5457
5568
|
|
|
5569
|
+
annotations(): Annotations
|
|
5570
|
+
|
|
5458
5571
|
withContentType(contentType: string): this
|
|
5459
5572
|
|
|
5460
5573
|
withHeaders(headers: Array<Parameter>): this
|
|
@@ -5495,6 +5608,8 @@ declare module 'amf-client-js' {
|
|
|
5495
5608
|
|
|
5496
5609
|
constructor()
|
|
5497
5610
|
|
|
5611
|
+
annotations(): Annotations
|
|
5612
|
+
|
|
5498
5613
|
withName(name: string): this
|
|
5499
5614
|
|
|
5500
5615
|
withDurable(durable: boolean): this
|
|
@@ -5527,6 +5642,8 @@ declare module 'amf-client-js' {
|
|
|
5527
5642
|
|
|
5528
5643
|
constructor()
|
|
5529
5644
|
|
|
5645
|
+
annotations(): Annotations
|
|
5646
|
+
|
|
5530
5647
|
withName(name: string): this
|
|
5531
5648
|
|
|
5532
5649
|
graph(): Graph
|
|
@@ -5550,6 +5667,8 @@ declare module 'amf-client-js' {
|
|
|
5550
5667
|
|
|
5551
5668
|
constructor()
|
|
5552
5669
|
|
|
5670
|
+
annotations(): Annotations
|
|
5671
|
+
|
|
5553
5672
|
extensionName(): StrField
|
|
5554
5673
|
|
|
5555
5674
|
extensionMappingDefinition(): StrField
|
|
@@ -5582,6 +5701,8 @@ declare module 'amf-client-js' {
|
|
|
5582
5701
|
|
|
5583
5702
|
constructor()
|
|
5584
5703
|
|
|
5704
|
+
annotations(): Annotations
|
|
5705
|
+
|
|
5585
5706
|
withName(name: string): this
|
|
5586
5707
|
|
|
5587
5708
|
withDefinedBy(property: CustomDomainProperty): this
|
|
@@ -5611,6 +5732,8 @@ declare module 'amf-client-js' {
|
|
|
5611
5732
|
|
|
5612
5733
|
constructor()
|
|
5613
5734
|
|
|
5735
|
+
annotations(): Annotations
|
|
5736
|
+
|
|
5614
5737
|
graph(): Graph
|
|
5615
5738
|
|
|
5616
5739
|
withTemplateVariable(variable: string): this
|
|
@@ -5686,6 +5809,8 @@ declare module 'amf-client-js' {
|
|
|
5686
5809
|
|
|
5687
5810
|
constructor()
|
|
5688
5811
|
|
|
5812
|
+
annotations(): Annotations
|
|
5813
|
+
|
|
5689
5814
|
withDeclaredNodes(declarations: Array<PublicNodeMapping>): DocumentMapping
|
|
5690
5815
|
|
|
5691
5816
|
withDocumentName(name: string): DocumentMapping
|
|
@@ -5772,6 +5897,8 @@ declare module 'amf-client-js' {
|
|
|
5772
5897
|
|
|
5773
5898
|
constructor()
|
|
5774
5899
|
|
|
5900
|
+
annotations(): Annotations
|
|
5901
|
+
|
|
5775
5902
|
withName(name: string): this
|
|
5776
5903
|
|
|
5777
5904
|
graph(): Graph
|
|
@@ -5828,6 +5955,8 @@ declare module 'amf-client-js' {
|
|
|
5828
5955
|
|
|
5829
5956
|
constructor()
|
|
5830
5957
|
|
|
5958
|
+
annotations(): Annotations
|
|
5959
|
+
|
|
5831
5960
|
link<T>(label: string): T
|
|
5832
5961
|
|
|
5833
5962
|
linkCopy(): Example
|
|
@@ -5880,6 +6009,8 @@ declare module 'amf-client-js' {
|
|
|
5880
6009
|
|
|
5881
6010
|
constructor()
|
|
5882
6011
|
|
|
6012
|
+
annotations(): Annotations
|
|
6013
|
+
|
|
5883
6014
|
link<T>(label: string): T
|
|
5884
6015
|
|
|
5885
6016
|
linkCopy(): WebSocketsChannelBinding
|
|
@@ -5953,6 +6084,8 @@ declare module 'amf-client-js' {
|
|
|
5953
6084
|
|
|
5954
6085
|
constructor()
|
|
5955
6086
|
|
|
6087
|
+
annotations(): Annotations
|
|
6088
|
+
|
|
5956
6089
|
withRaw(raw: string): this
|
|
5957
6090
|
|
|
5958
6091
|
graph(): Graph
|
|
@@ -6010,6 +6143,8 @@ declare module 'amf-client-js' {
|
|
|
6010
6143
|
|
|
6011
6144
|
constructor()
|
|
6012
6145
|
|
|
6146
|
+
annotations(): Annotations
|
|
6147
|
+
|
|
6013
6148
|
withName(name: string): this
|
|
6014
6149
|
|
|
6015
6150
|
withDescription(description: string): this
|
|
@@ -6059,6 +6194,8 @@ declare module 'amf-client-js' {
|
|
|
6059
6194
|
|
|
6060
6195
|
constructor()
|
|
6061
6196
|
|
|
6197
|
+
annotations(): Annotations
|
|
6198
|
+
|
|
6062
6199
|
withAdditionalProperties(properties: DataNode): this
|
|
6063
6200
|
|
|
6064
6201
|
graph(): Graph
|
|
@@ -6233,10 +6370,11 @@ declare module 'amf-client-js' {
|
|
|
6233
6370
|
export class ProfileName {
|
|
6234
6371
|
profile: string
|
|
6235
6372
|
messageStyle: MessageStyle
|
|
6236
|
-
toString: string
|
|
6237
6373
|
|
|
6238
6374
|
constructor(profile: string)
|
|
6239
6375
|
|
|
6376
|
+
toString(): string
|
|
6377
|
+
|
|
6240
6378
|
isOas(): boolean
|
|
6241
6379
|
|
|
6242
6380
|
isRaml(): boolean
|
|
@@ -6259,6 +6397,8 @@ declare module 'amf-client-js' {
|
|
|
6259
6397
|
constructor()
|
|
6260
6398
|
constructor(value: string, dataType: string)
|
|
6261
6399
|
|
|
6400
|
+
annotations(): Annotations
|
|
6401
|
+
|
|
6262
6402
|
withName(name: string): this
|
|
6263
6403
|
|
|
6264
6404
|
graph(): Graph
|