amf-client-js 5.6.0-SNAPSHOT.9 → 5.7.0-SNAPSHOT.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/amf.js +12444 -11861
  2. package/package.json +3 -2
  3. package/typings/amf-client-js.d.ts +1556 -535
@@ -1443,6 +1443,9 @@ declare module "amf-client-js" {
1443
1443
  writeOnly: BoolField;
1444
1444
  xmlSerialization: XMLSerializer;
1445
1445
  xone: Array<Shape>;
1446
+ namespace: StrField;
1447
+ aliases: Array<StrField>;
1448
+ size: IntField;
1446
1449
 
1447
1450
  constructor();
1448
1451
 
@@ -1531,6 +1534,16 @@ declare module "amf-client-js" {
1531
1534
  withXMLSerialization(xmlSerialization: XMLSerializer): this;
1532
1535
 
1533
1536
  withXone(subShapes: Array<Shape>): this;
1537
+
1538
+ withNamespace(namespace: string): this;
1539
+
1540
+ withAliases(aliases: Array<string>): this;
1541
+
1542
+ withSize(size: number): this;
1543
+
1544
+ avroSchemaType(): undefined | string;
1545
+
1546
+ isAvroSchema(): boolean;
1534
1547
  }
1535
1548
  export class Api<A> implements DomainElement {
1536
1549
  accepts: Array<StrField>;
@@ -1716,6 +1729,9 @@ declare module "amf-client-js" {
1716
1729
 
1717
1730
  withVersion(version: string): this;
1718
1731
  }
1732
+ export class AvroConfiguration {
1733
+ static Avro(): AMFConfiguration;
1734
+ }
1719
1735
  export class BaseAMLBaseUnitClient extends AMFGraphBaseUnitClient {
1720
1736
  parseDialect(url: string): Promise<AMLDialectResult>;
1721
1737
 
@@ -3597,7 +3613,41 @@ declare module "amf-client-js" {
3597
3613
  withUsage(usage: string): this;
3598
3614
  }
3599
3615
  export class GooglePubSubChannelBinding implements ChannelBinding {
3616
+ labels: ObjectNode;
3617
+ messageRetentionDuration: StrField;
3618
+ messageStoragePolicy: GooglePubSubMessageStoragePolicy;
3619
+ schemaSettings: GooglePubSubSchemaSettings;
3620
+ bindingVersion: StrField;
3621
+
3622
+ withLabels(labels: ObjectNode): this;
3623
+ withMessageRetentionDuration(messageRetentionDuration: string): this;
3624
+ withMessageStoragePolicy(messageStoragePolicy: GooglePubSubMessageStoragePolicy): this;
3625
+ withSchemaSettings(schemaSettings: GooglePubSubSchemaSettings): this;
3626
+ withBindingVersion(bindingVersion: string): this;
3627
+
3628
+ customDomainProperties: Array<DomainExtension>;
3629
+ extendsNode: Array<DomainElement>;
3630
+ id: string;
3631
+ isExternalLink: BoolField;
3632
+ isLink: boolean;
3633
+ linkLabel: StrField;
3634
+ linkTarget: DomainElement | undefined;
3635
+ position: Range;
3600
3636
 
3637
+ annotations(): Annotations;
3638
+ graph(): Graph;
3639
+ link<T>(): T;
3640
+ link<T>(label: string): T;
3641
+ linkCopy(): Linkable;
3642
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3643
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3644
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3645
+ withId(id: string): this;
3646
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3647
+ withLinkLabel(label: string): this;
3648
+ withLinkTarget(target: undefined): this;
3649
+ }
3650
+ export class GooglePubSubChannelBinding010 implements GooglePubSubChannelBinding {
3601
3651
  labels: ObjectNode;
3602
3652
  messageRetentionDuration: StrField;
3603
3653
  messageStoragePolicy: GooglePubSubMessageStoragePolicy;
@@ -3634,6 +3684,41 @@ declare module "amf-client-js" {
3634
3684
  withLinkLabel(label: string): this;
3635
3685
  withLinkTarget(target: undefined): this;
3636
3686
  }
3687
+ export class GooglePubSubChannelBinding020 implements GooglePubSubChannelBinding {
3688
+ labels: ObjectNode;
3689
+ messageRetentionDuration: StrField;
3690
+ messageStoragePolicy: GooglePubSubMessageStoragePolicy;
3691
+ schemaSettings: GooglePubSubSchemaSettings;
3692
+ bindingVersion: StrField;
3693
+
3694
+ withLabels(labels: ObjectNode): this;
3695
+ withMessageRetentionDuration(messageRetentionDuration: string): this;
3696
+ withMessageStoragePolicy(messageStoragePolicy: GooglePubSubMessageStoragePolicy): this;
3697
+ withSchemaSettings(schemaSettings: GooglePubSubSchemaSettings): this;
3698
+ withBindingVersion(bindingVersion: string): this;
3699
+
3700
+ customDomainProperties: Array<DomainExtension>;
3701
+ extendsNode: Array<DomainElement>;
3702
+ id: string;
3703
+ isExternalLink: BoolField;
3704
+ isLink: boolean;
3705
+ linkLabel: StrField;
3706
+ linkTarget: DomainElement | undefined;
3707
+ position: Range;
3708
+
3709
+ annotations(): Annotations;
3710
+ graph(): Graph;
3711
+ link<T>(): T;
3712
+ link<T>(label: string): T;
3713
+ linkCopy(): Linkable;
3714
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3715
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3716
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3717
+ withId(id: string): this;
3718
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3719
+ withLinkLabel(label: string): this;
3720
+ withLinkTarget(target: undefined): this;
3721
+ }
3637
3722
  export class GooglePubSubMessageStoragePolicy implements DomainElement {
3638
3723
 
3639
3724
  allowedPersistenceRegions: Array<StrField>;
@@ -3681,7 +3766,6 @@ declare module "amf-client-js" {
3681
3766
  withIsExternalLink(isExternalLink: boolean): DomainElement;
3682
3767
  }
3683
3768
  export class GooglePubSubMessageBinding implements MessageBinding {
3684
-
3685
3769
  attributes: ObjectNode;
3686
3770
  orderingKey: StrField;
3687
3771
  schema: GooglePubSubSchemaDefinition;
@@ -3712,8 +3796,87 @@ declare module "amf-client-js" {
3712
3796
  withLinkLabel(label: string): this;
3713
3797
  withLinkTarget(target: undefined): this;
3714
3798
  }
3799
+ export class GooglePubSubMessageBinding010 implements GooglePubSubMessageBinding {
3800
+ attributes: ObjectNode;
3801
+ orderingKey: StrField;
3802
+ schema: GooglePubSubSchemaDefinition010;
3803
+
3804
+ withAttributes(attributes: ObjectNode): this;
3805
+ withOrderingKey(orderingKey: string): this;
3806
+ withSchema(schema: GooglePubSubSchemaDefinition010): this;
3807
+
3808
+ customDomainProperties: Array<DomainExtension>;
3809
+ extendsNode: Array<DomainElement>;
3810
+ id: string;
3811
+ isExternalLink: BoolField;
3812
+ isLink: boolean;
3813
+ linkLabel: StrField;
3814
+ linkTarget: DomainElement | undefined;
3815
+ position: Range;
3816
+
3817
+ annotations(): Annotations;
3818
+ graph(): Graph;
3819
+ link<T>(): T;
3820
+ link<T>(label: string): T;
3821
+ linkCopy(): Linkable;
3822
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3823
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3824
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3825
+ withId(id: string): this;
3826
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3827
+ withLinkLabel(label: string): this;
3828
+ withLinkTarget(target: undefined): this;
3829
+ }
3830
+ export class GooglePubSubMessageBinding020 implements GooglePubSubMessageBinding {
3831
+ attributes: ObjectNode;
3832
+ orderingKey: StrField;
3833
+ schema: GooglePubSubSchemaDefinition020;
3834
+
3835
+ withAttributes(attributes: ObjectNode): this;
3836
+ withOrderingKey(orderingKey: string): this;
3837
+ withSchema(schema: GooglePubSubSchemaDefinition020): this;
3838
+
3839
+ customDomainProperties: Array<DomainExtension>;
3840
+ extendsNode: Array<DomainElement>;
3841
+ id: string;
3842
+ isExternalLink: BoolField;
3843
+ isLink: boolean;
3844
+ linkLabel: StrField;
3845
+ linkTarget: DomainElement | undefined;
3846
+ position: Range;
3847
+
3848
+ annotations(): Annotations;
3849
+ graph(): Graph;
3850
+ link<T>(): T;
3851
+ link<T>(label: string): T;
3852
+ linkCopy(): Linkable;
3853
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3854
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3855
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3856
+ withId(id: string): this;
3857
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3858
+ withLinkLabel(label: string): this;
3859
+ withLinkTarget(target: undefined): this;
3860
+ }
3715
3861
  export class GooglePubSubSchemaDefinition implements DomainElement {
3862
+ name: StrField;
3863
+ withName(name: string): this;
3716
3864
 
3865
+ customDomainProperties: Array<DomainExtension>;
3866
+ extendsNode: Array<DomainElement>;
3867
+ id: string;
3868
+ isExternalLink: BoolField;
3869
+ position: Range;
3870
+
3871
+ annotations(): Annotations;
3872
+ graph(): Graph;
3873
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3874
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3875
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3876
+ withId(id: string): this;
3877
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3878
+ }
3879
+ export class GooglePubSubSchemaDefinition010 implements GooglePubSubSchemaDefinition {
3717
3880
  name: StrField;
3718
3881
  fieldType: StrField;
3719
3882
 
@@ -3734,6 +3897,24 @@ declare module "amf-client-js" {
3734
3897
  withId(id: string): this;
3735
3898
  withIsExternalLink(isExternalLink: boolean): DomainElement;
3736
3899
  }
3900
+ export class GooglePubSubSchemaDefinition020 implements GooglePubSubSchemaDefinition {
3901
+ name: StrField;
3902
+ withName(name: string): this;
3903
+
3904
+ customDomainProperties: Array<DomainExtension>;
3905
+ extendsNode: Array<DomainElement>;
3906
+ id: string;
3907
+ isExternalLink: BoolField;
3908
+ position: Range;
3909
+
3910
+ annotations(): Annotations;
3911
+ graph(): Graph;
3912
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3913
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3914
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3915
+ withId(id: string): this;
3916
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
3917
+ }
3737
3918
  export class Graph {
3738
3919
  containsProperty(uri: string): boolean;
3739
3920
 
@@ -3810,18 +3991,16 @@ declare module "amf-client-js" {
3810
3991
 
3811
3992
  withLinkTarget(target: undefined): this;
3812
3993
  }
3813
- export class HttpOperationBinding implements OperationBinding {
3994
+ export class HttpMessageBinding020 implements HttpMessageBinding {
3814
3995
  customDomainProperties: Array<DomainExtension>;
3815
3996
  extendsNode: Array<DomainElement>;
3997
+ headers: Shape;
3816
3998
  id: string;
3817
3999
  isExternalLink: BoolField;
3818
4000
  isLink: boolean;
3819
4001
  linkLabel: StrField;
3820
4002
  linkTarget: undefined | DomainElement;
3821
- method: StrField;
3822
- operationType: StrField;
3823
4003
  position: Range;
3824
- query: Shape;
3825
4004
 
3826
4005
  constructor();
3827
4006
 
@@ -3833,7 +4012,7 @@ declare module "amf-client-js" {
3833
4012
 
3834
4013
  link<T>(): T;
3835
4014
 
3836
- linkCopy(): HttpOperationBinding;
4015
+ linkCopy(): HttpMessageBinding;
3837
4016
 
3838
4017
  withBindingVersion(bindingVersion: string): this;
3839
4018
 
@@ -3841,6 +4020,8 @@ declare module "amf-client-js" {
3841
4020
 
3842
4021
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3843
4022
 
4023
+ withHeaders(headers: Shape): this;
4024
+
3844
4025
  withId(id: string): this;
3845
4026
 
3846
4027
  withIsExternalLink(isExternalLink: boolean): DomainElement;
@@ -3848,83 +4029,248 @@ declare module "amf-client-js" {
3848
4029
  withLinkLabel(label: string): this;
3849
4030
 
3850
4031
  withLinkTarget(target: undefined): this;
3851
-
3852
- withMethod(method: string): this;
3853
-
3854
- withOperationType(type: string): this;
3855
-
3856
- withQuery(query: Shape): this;
3857
- }
3858
- export class HttpSettings extends Settings {
3859
- bearerFormat: StrField;
3860
- scheme: StrField;
3861
-
3862
- constructor();
3863
-
3864
- withBearerFormat(bearerFormat: string): this;
3865
-
3866
- withScheme(scheme: string): this;
3867
4032
  }
3868
- export class IBMMQChannelBinding implements ChannelBinding {
3869
- destinationType: StrField;
3870
- queue: IBMMQChannelQueue;
3871
- topic: IBMMQChannelTopic;
3872
- maxMsgLength: IntField;
3873
- bindingVersion: StrField;
3874
-
3875
- withDestinationType(destinationType: string): this;
3876
- withQueue(queue: IBMMQChannelQueue): this;
3877
- withTopic(topic: IBMMQChannelTopic): this;
3878
- withMaxMsgLength(maxMsgLength: number): this;
3879
- withBindingVersion(bindingVersion: string): this;
3880
-
4033
+ export class HttpMessageBinding030 implements HttpMessageBinding {
3881
4034
  customDomainProperties: Array<DomainExtension>;
3882
4035
  extendsNode: Array<DomainElement>;
4036
+ headers: Shape;
3883
4037
  id: string;
3884
4038
  isExternalLink: BoolField;
3885
4039
  isLink: boolean;
3886
4040
  linkLabel: StrField;
3887
- linkTarget: DomainElement | undefined;
4041
+ linkTarget: undefined | DomainElement;
3888
4042
  position: Range;
4043
+ statusCode: number;
4044
+
4045
+ constructor();
3889
4046
 
3890
4047
  annotations(): Annotations;
4048
+
3891
4049
  graph(): Graph;
3892
- link<T>(): T;
4050
+
3893
4051
  link<T>(label: string): T;
3894
- linkCopy(): Linkable;
4052
+
4053
+ link<T>(): T;
4054
+
4055
+ linkCopy(): HttpMessageBinding;
4056
+
4057
+ withBindingVersion(bindingVersion: string): this;
4058
+
3895
4059
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4060
+
3896
4061
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4062
+
4063
+ withHeaders(headers: Shape): this;
4064
+
3897
4065
  withId(id: string): this;
4066
+
3898
4067
  withIsExternalLink(isExternalLink: boolean): DomainElement;
3899
- withLinkLabel(label: string): this;
3900
- withLinkTarget(target: undefined): this;
3901
- }
3902
- export class IBMMQChannelQueue implements DomainElement {
3903
4068
 
3904
- objectName: StrField;
3905
- isPartitioned: BoolField;
3906
- exclusive: BoolField;
3907
- name: StrField;
4069
+ withLinkLabel(label: string): this;
3908
4070
 
3909
- withObjectName(objectName: string): this;
3910
- withIsPartitioned(isPartitioned: boolean): this;
3911
- withExclusive(exclusive: boolean): this;
3912
- withName(name: string): this;
4071
+ withLinkTarget(target: undefined): this;
3913
4072
 
4073
+ withStatusCode(statusCode: number): this;
4074
+ }
4075
+ export class HttpOperationBinding implements OperationBinding {
3914
4076
  customDomainProperties: Array<DomainExtension>;
3915
4077
  extendsNode: Array<DomainElement>;
3916
4078
  id: string;
3917
4079
  isExternalLink: BoolField;
4080
+ isLink: boolean;
4081
+ linkLabel: StrField;
4082
+ linkTarget: undefined | DomainElement;
4083
+ method: StrField;
3918
4084
  position: Range;
4085
+ query: Shape;
4086
+
4087
+ constructor();
3919
4088
 
3920
4089
  annotations(): Annotations;
4090
+
3921
4091
  graph(): Graph;
3922
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3923
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
3924
- withId(id: string): this;
3925
- withIsExternalLink(isExternalLink: boolean): DomainElement;
3926
- }
3927
- export class IBMMQChannelTopic implements DomainElement {
4092
+
4093
+ link<T>(label: string): T;
4094
+
4095
+ link<T>(): T;
4096
+
4097
+ linkCopy(): HttpOperationBinding;
4098
+
4099
+ withBindingVersion(bindingVersion: string): this;
4100
+
4101
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4102
+
4103
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4104
+
4105
+ withId(id: string): this;
4106
+
4107
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
4108
+
4109
+ withLinkLabel(label: string): this;
4110
+
4111
+ withLinkTarget(target: undefined): this;
4112
+
4113
+ withMethod(method: string): this;
4114
+
4115
+ withQuery(query: Shape): this;
4116
+ }
4117
+ export class HttpOperationBinding010 implements HttpOperationBinding {
4118
+ customDomainProperties: Array<DomainExtension>;
4119
+ extendsNode: Array<DomainElement>;
4120
+ id: string;
4121
+ isExternalLink: BoolField;
4122
+ isLink: boolean;
4123
+ linkLabel: StrField;
4124
+ linkTarget: undefined | DomainElement;
4125
+ method: StrField;
4126
+ operationType: StrField;
4127
+ position: Range;
4128
+ query: Shape;
4129
+
4130
+ constructor();
4131
+
4132
+ annotations(): Annotations;
4133
+
4134
+ graph(): Graph;
4135
+
4136
+ link<T>(label: string): T;
4137
+
4138
+ link<T>(): T;
4139
+
4140
+ linkCopy(): HttpOperationBinding010;
4141
+
4142
+ withBindingVersion(bindingVersion: string): this;
4143
+
4144
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4145
+
4146
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4147
+
4148
+ withId(id: string): this;
4149
+
4150
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
4151
+
4152
+ withLinkLabel(label: string): this;
4153
+
4154
+ withLinkTarget(target: undefined): this;
4155
+
4156
+ withMethod(method: string): this;
4157
+
4158
+ withOperationType(type: string): this;
4159
+
4160
+ withQuery(query: Shape): this;
4161
+ }
4162
+ export class HttpOperationBinding020 implements HttpOperationBinding {
4163
+ customDomainProperties: Array<DomainExtension>;
4164
+ extendsNode: Array<DomainElement>;
4165
+ id: string;
4166
+ isExternalLink: BoolField;
4167
+ isLink: boolean;
4168
+ linkLabel: StrField;
4169
+ linkTarget: undefined | DomainElement;
4170
+ method: StrField;
4171
+ position: Range;
4172
+ query: Shape;
4173
+
4174
+ constructor();
4175
+
4176
+ annotations(): Annotations;
4177
+
4178
+ graph(): Graph;
4179
+
4180
+ link<T>(label: string): T;
4181
+
4182
+ link<T>(): T;
4183
+
4184
+ linkCopy(): HttpOperationBinding020;
4185
+
4186
+ withBindingVersion(bindingVersion: string): this;
4187
+
4188
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4189
+
4190
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4191
+
4192
+ withId(id: string): this;
4193
+
4194
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
4195
+
4196
+ withLinkLabel(label: string): this;
4197
+
4198
+ withLinkTarget(target: undefined): this;
4199
+
4200
+ withMethod(method: string): this;
4201
+
4202
+ withQuery(query: Shape): this;
4203
+ }
4204
+ export class HttpSettings extends Settings {
4205
+ bearerFormat: StrField;
4206
+ scheme: StrField;
4207
+
4208
+ constructor();
4209
+
4210
+ withBearerFormat(bearerFormat: string): this;
4211
+
4212
+ withScheme(scheme: string): this;
4213
+ }
4214
+ export class IBMMQChannelBinding implements ChannelBinding {
4215
+ destinationType: StrField;
4216
+ queue: IBMMQChannelQueue;
4217
+ topic: IBMMQChannelTopic;
4218
+ maxMsgLength: IntField;
4219
+ bindingVersion: StrField;
4220
+
4221
+ withDestinationType(destinationType: string): this;
4222
+ withQueue(queue: IBMMQChannelQueue): this;
4223
+ withTopic(topic: IBMMQChannelTopic): this;
4224
+ withMaxMsgLength(maxMsgLength: number): this;
4225
+ withBindingVersion(bindingVersion: string): this;
4226
+
4227
+ customDomainProperties: Array<DomainExtension>;
4228
+ extendsNode: Array<DomainElement>;
4229
+ id: string;
4230
+ isExternalLink: BoolField;
4231
+ isLink: boolean;
4232
+ linkLabel: StrField;
4233
+ linkTarget: DomainElement | undefined;
4234
+ position: Range;
4235
+
4236
+ annotations(): Annotations;
4237
+ graph(): Graph;
4238
+ link<T>(): T;
4239
+ link<T>(label: string): T;
4240
+ linkCopy(): Linkable;
4241
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4242
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4243
+ withId(id: string): this;
4244
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
4245
+ withLinkLabel(label: string): this;
4246
+ withLinkTarget(target: undefined): this;
4247
+ }
4248
+ export class IBMMQChannelQueue implements DomainElement {
4249
+
4250
+ objectName: StrField;
4251
+ isPartitioned: BoolField;
4252
+ exclusive: BoolField;
4253
+ name: StrField;
4254
+
4255
+ withObjectName(objectName: string): this;
4256
+ withIsPartitioned(isPartitioned: boolean): this;
4257
+ withExclusive(exclusive: boolean): this;
4258
+ withName(name: string): this;
4259
+
4260
+ customDomainProperties: Array<DomainExtension>;
4261
+ extendsNode: Array<DomainElement>;
4262
+ id: string;
4263
+ isExternalLink: BoolField;
4264
+ position: Range;
4265
+
4266
+ annotations(): Annotations;
4267
+ graph(): Graph;
4268
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
4269
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
4270
+ withId(id: string): this;
4271
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
4272
+ }
4273
+ export class IBMMQChannelTopic implements DomainElement {
3928
4274
  string: StrField;
3929
4275
  objectName: StrField;
3930
4276
  durablePermitted: BoolField;
@@ -5158,7 +5504,7 @@ declare module "amf-client-js" {
5158
5504
 
5159
5505
  withLinkTarget(target: undefined): this;
5160
5506
  }
5161
- export class MqttOperationBinding implements OperationBinding {
5507
+ export class MqttMessageBinding010 implements MqttMessageBinding {
5162
5508
  customDomainProperties: Array<DomainExtension>;
5163
5509
  extendsNode: Array<DomainElement>;
5164
5510
  id: string;
@@ -5167,8 +5513,6 @@ declare module "amf-client-js" {
5167
5513
  linkLabel: StrField;
5168
5514
  linkTarget: undefined | DomainElement;
5169
5515
  position: Range;
5170
- qos: IntField;
5171
- retain: BoolField;
5172
5516
 
5173
5517
  constructor();
5174
5518
 
@@ -5180,7 +5524,7 @@ declare module "amf-client-js" {
5180
5524
 
5181
5525
  link<T>(): T;
5182
5526
 
5183
- linkCopy(): MqttOperationBinding;
5527
+ linkCopy(): MqttMessageBinding;
5184
5528
 
5185
5529
  withBindingVersion(bindingVersion: string): this;
5186
5530
 
@@ -5195,24 +5539,21 @@ declare module "amf-client-js" {
5195
5539
  withLinkLabel(label: string): this;
5196
5540
 
5197
5541
  withLinkTarget(target: undefined): this;
5198
-
5199
- withQos(qos: number): this;
5200
-
5201
- withRetain(retain: boolean): this;
5202
5542
  }
5203
- export class MqttServerBinding implements ServerBinding {
5204
- cleanSession: BoolField;
5205
- clientId: StrField;
5543
+ export class MqttMessageBinding020 implements MqttMessageBinding {
5206
5544
  customDomainProperties: Array<DomainExtension>;
5207
5545
  extendsNode: Array<DomainElement>;
5208
5546
  id: string;
5209
5547
  isExternalLink: BoolField;
5210
5548
  isLink: boolean;
5211
- keepAlive: IntField;
5212
- lastWill: MqttServerLastWill;
5213
5549
  linkLabel: StrField;
5214
5550
  linkTarget: undefined | DomainElement;
5215
5551
  position: Range;
5552
+ payloadFormatIndicator: IntField;
5553
+ correlationData: Shape;
5554
+ contentType: StrField;
5555
+ responseTopic: StrField;
5556
+ responseTopicSchema: Shape;
5216
5557
 
5217
5558
  constructor();
5218
5559
 
@@ -5224,14 +5565,10 @@ declare module "amf-client-js" {
5224
5565
 
5225
5566
  link<T>(): T;
5226
5567
 
5227
- linkCopy(): MqttServerBinding;
5568
+ linkCopy(): MqttMessageBinding;
5228
5569
 
5229
5570
  withBindingVersion(bindingVersion: string): this;
5230
5571
 
5231
- withCleanSession(cleanSession: boolean): this;
5232
-
5233
- withClientId(clientId: string): this;
5234
-
5235
5572
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5236
5573
 
5237
5574
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
@@ -5240,24 +5577,31 @@ declare module "amf-client-js" {
5240
5577
 
5241
5578
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5242
5579
 
5243
- withKeepAlive(keepAlive: number): this;
5244
-
5245
- withLastWill(lastWill: MqttServerLastWill): this;
5246
-
5247
5580
  withLinkLabel(label: string): this;
5248
5581
 
5249
5582
  withLinkTarget(target: undefined): this;
5583
+
5584
+ withPayloadFormatIndicator(payloadFormatIndicator: number): this;
5585
+
5586
+ withCorrelationData(correlationData: Shape): this;
5587
+
5588
+ withContentType(contentType: string): this;
5589
+
5590
+ withResponseTopic(responseTopic: string): this;
5591
+
5592
+ withResponseTopicSchema(responseTopicSchema: Shape): this;
5250
5593
  }
5251
- export class MqttServerLastWill implements DomainElement {
5594
+ export class MqttOperationBinding implements OperationBinding {
5252
5595
  customDomainProperties: Array<DomainExtension>;
5253
5596
  extendsNode: Array<DomainElement>;
5254
5597
  id: string;
5255
5598
  isExternalLink: BoolField;
5256
- message: StrField;
5599
+ isLink: boolean;
5600
+ linkLabel: StrField;
5601
+ linkTarget: undefined | DomainElement;
5257
5602
  position: Range;
5258
5603
  qos: IntField;
5259
5604
  retain: BoolField;
5260
- topic: StrField;
5261
5605
 
5262
5606
  constructor();
5263
5607
 
@@ -5265,6 +5609,14 @@ declare module "amf-client-js" {
5265
5609
 
5266
5610
  graph(): Graph;
5267
5611
 
5612
+ link<T>(label: string): T;
5613
+
5614
+ link<T>(): T;
5615
+
5616
+ linkCopy(): MqttOperationBinding;
5617
+
5618
+ withBindingVersion(bindingVersion: string): this;
5619
+
5268
5620
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5269
5621
 
5270
5622
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
@@ -5273,170 +5625,165 @@ declare module "amf-client-js" {
5273
5625
 
5274
5626
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5275
5627
 
5276
- withMessage(message: string): this;
5628
+ withLinkLabel(label: string): this;
5629
+
5630
+ withLinkTarget(target: undefined): this;
5277
5631
 
5278
5632
  withQos(qos: number): this;
5279
5633
 
5280
5634
  withRetain(retain: boolean): this;
5281
-
5282
- withTopic(topic: string): this;
5283
- }
5284
- export class NamedExample extends Fragment {
5285
- constructor();
5286
- }
5287
- export class NilShape extends AnyShape {
5288
- constructor();
5289
-
5290
- linkCopy(): NilShape;
5291
5635
  }
5292
- export class NodeMapping extends AnyMapping implements Linkable {
5293
- closed: BoolField;
5294
- idTemplate: StrField;
5636
+ export class MqttOperationBinding010 implements MqttOperationBinding {
5637
+ customDomainProperties: Array<DomainExtension>;
5638
+ extendsNode: Array<DomainElement>;
5639
+ id: string;
5640
+ isExternalLink: BoolField;
5295
5641
  isLink: boolean;
5296
5642
  linkLabel: StrField;
5297
5643
  linkTarget: undefined | DomainElement;
5298
- mergePolicy: StrField;
5299
- name: StrField;
5300
- nodetypeMapping: StrField;
5644
+ position: Range;
5645
+ qos: IntField;
5646
+ retain: BoolField;
5301
5647
 
5302
5648
  constructor();
5303
5649
 
5650
+ annotations(): Annotations;
5651
+
5652
+ graph(): Graph;
5653
+
5304
5654
  link<T>(label: string): T;
5305
5655
 
5306
5656
  link<T>(): T;
5307
5657
 
5308
- linkCopy(): NodeMapping;
5658
+ linkCopy(): MqttOperationBinding;
5309
5659
 
5310
- propertiesMapping(): Array<PropertyMapping>;
5660
+ withBindingVersion(bindingVersion: string): this;
5311
5661
 
5312
- withIdTemplate(idTemplate: string): NodeMapping;
5662
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5313
5663
 
5314
- withLinkLabel(label: string): this;
5664
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5315
5665
 
5316
- withLinkTarget(target: undefined): this;
5666
+ withId(id: string): this;
5317
5667
 
5318
- withMergePolicy(mergePolicy: string): NodeMapping;
5668
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5319
5669
 
5320
- withName(name: string): NodeMapping;
5670
+ withLinkLabel(label: string): this;
5321
5671
 
5322
- withNodeTypeMapping(nodeType: string): NodeMapping;
5672
+ withLinkTarget(target: undefined): this;
5323
5673
 
5324
- withPropertiesMapping(props: Array<PropertyMapping>): NodeMapping;
5674
+ withQos(qos: number): this;
5675
+
5676
+ withRetain(retain: boolean): this;
5325
5677
  }
5326
- export class NodeShape extends AnyShape {
5327
- additionalPropertiesKeySchema: Shape;
5328
- additionalPropertiesSchema: Shape;
5329
- closed: BoolField;
5330
- dependencies: Array<PropertyDependencies>;
5331
- discriminator: StrField;
5332
- discriminatorMapping: Array<IriTemplateMapping>;
5333
- discriminatorValue: StrField;
5334
- discriminatorValueMapping: Array<DiscriminatorValueMapping>;
5335
- externalProperties: Array<ExternalPropertyShape>;
5336
- isAbstract: BoolField;
5337
- isInputOnly: BoolField;
5338
- keys: undefined;
5339
- maxProperties: IntField;
5340
- minProperties: IntField;
5341
- properties: Array<PropertyShape>;
5342
- propertyNames: Shape;
5343
- schemaDependencies: Array<SchemaDependencies>;
5344
- unevaluatedProperties: boolean;
5345
- unevaluatedPropertiesSchema: Shape;
5678
+ export class MqttOperationBinding020 implements MqttOperationBinding {
5679
+ customDomainProperties: Array<DomainExtension>;
5680
+ extendsNode: Array<DomainElement>;
5681
+ id: string;
5682
+ isExternalLink: BoolField;
5683
+ isLink: boolean;
5684
+ linkLabel: StrField;
5685
+ linkTarget: undefined | DomainElement;
5686
+ position: Range;
5687
+ qos: IntField;
5688
+ retain: BoolField;
5689
+ messageExpiryInterval: IntField;
5690
+ messageExpiryIntervalSchema: Shape;
5346
5691
 
5347
5692
  constructor();
5348
5693
 
5349
- linkCopy(): NodeShape;
5694
+ annotations(): Annotations;
5350
5695
 
5351
- withAdditionalPropertiesKeySchema(
5352
- additionalPropertiesKeySchema: Shape
5353
- ): this;
5696
+ graph(): Graph;
5354
5697
 
5355
- withAdditionalPropertiesSchema(additionalPropertiesSchema: Shape): this;
5698
+ link<T>(label: string): T;
5356
5699
 
5357
- withClosed(closed: boolean): this;
5700
+ link<T>(): T;
5358
5701
 
5359
- withDependencies(dependencies: Array<PropertyDependencies>): this;
5702
+ linkCopy(): MqttOperationBinding;
5360
5703
 
5361
- withDependency(): PropertyDependencies;
5704
+ withBindingVersion(bindingVersion: string): this;
5362
5705
 
5363
- withDiscriminator(discriminator: string): this;
5706
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5364
5707
 
5365
- withDiscriminatorMapping(mappings: Array<IriTemplateMapping>): this;
5708
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5366
5709
 
5367
- withDiscriminatorValue(value: string): this;
5710
+ withId(id: string): this;
5368
5711
 
5369
- withExternalProperties(
5370
- externalProperties: Array<ExternalPropertyShape>
5371
- ): this;
5712
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5372
5713
 
5373
- withInheritsObject(name: string): NodeShape;
5714
+ withLinkLabel(label: string): this;
5374
5715
 
5375
- withInheritsScalar(name: string): ScalarShape;
5716
+ withLinkTarget(target: undefined): this;
5376
5717
 
5377
- withIsAbstract(isAbstract: boolean): this;
5718
+ withQos(qos: number): this;
5378
5719
 
5379
- withIsInputOnly(isInputOnly: boolean): this;
5720
+ withRetain(retain: boolean): this;
5380
5721
 
5381
- withKeys(keys: undefined): this;
5722
+ withMessageExpiryInterval(messageExpiryInterval: number): this;
5382
5723
 
5383
- withMaxProperties(max: number): this;
5724
+ withMessageExpiryIntervalSchema(messageExpiryIntervalSchema: Shape): this;
5725
+ }
5726
+ export class MqttServerBinding implements ServerBinding {
5727
+ cleanSession: BoolField;
5728
+ clientId: StrField;
5729
+ customDomainProperties: Array<DomainExtension>;
5730
+ extendsNode: Array<DomainElement>;
5731
+ id: string;
5732
+ isExternalLink: BoolField;
5733
+ isLink: boolean;
5734
+ keepAlive: IntField;
5735
+ lastWill: MqttServerLastWill;
5736
+ linkLabel: StrField;
5737
+ linkTarget: undefined | DomainElement;
5738
+ position: Range;
5384
5739
 
5385
- withMinProperties(min: number): this;
5740
+ constructor();
5386
5741
 
5387
- withProperties(properties: Array<PropertyShape>): this;
5742
+ annotations(): Annotations;
5388
5743
 
5389
- withProperty(name: string): PropertyShape;
5744
+ graph(): Graph;
5390
5745
 
5391
- withPropertyNames(propertyNames: Shape): this;
5746
+ link<T>(label: string): T;
5392
5747
 
5393
- withSchemaDependencies(dependencies: Array<SchemaDependencies>): this;
5748
+ link<T>(): T;
5394
5749
 
5395
- withUnevaluatedProperties(value: boolean): this;
5750
+ linkCopy(): MqttServerBinding;
5396
5751
 
5397
- withUnevaluatedPropertiesSchema(schema: Shape): this;
5398
- }
5399
- export class NormalPriority extends PluginPriority {}
5400
- export class OASConfiguration {
5401
- static OAS(): AMFConfiguration;
5752
+ withBindingVersion(bindingVersion: string): this;
5402
5753
 
5403
- static OAS20(): AMFConfiguration;
5754
+ withCleanSession(cleanSession: boolean): this;
5404
5755
 
5405
- static OAS30(): AMFConfiguration;
5756
+ withClientId(clientId: string): this;
5406
5757
 
5407
- static OAS30Component(): AMFConfiguration;
5758
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5408
5759
 
5409
- static OASComponent(): AMFConfiguration;
5760
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5410
5761
 
5411
- static fromSpec(spec: Spec): AMFConfiguration;
5412
- }
5413
- export class OAuth1Settings extends Settings {
5414
- authorizationUri: StrField;
5415
- requestTokenUri: StrField;
5416
- signatures: Array<StrField>;
5417
- tokenCredentialsUri: StrField;
5762
+ withId(id: string): this;
5418
5763
 
5419
- constructor();
5764
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5420
5765
 
5421
- withAuthorizationUri(authorizationUri: string): this;
5766
+ withKeepAlive(keepAlive: number): this;
5422
5767
 
5423
- withRequestTokenUri(requestTokenUri: string): this;
5768
+ withLastWill(lastWill: MqttServerLastWill): this;
5424
5769
 
5425
- withSignatures(signatures: Array<string>): this;
5770
+ withLinkLabel(label: string): this;
5426
5771
 
5427
- withTokenCredentialsUri(tokenCredentialsUri: string): this;
5772
+ withLinkTarget(target: undefined): this;
5428
5773
  }
5429
- export class OAuth2Flow implements DomainElement {
5430
- accessTokenUri: StrField;
5431
- authorizationUri: StrField;
5774
+ export class MqttServerBinding010 implements MqttServerBinding {
5775
+ cleanSession: BoolField;
5776
+ clientId: StrField;
5432
5777
  customDomainProperties: Array<DomainExtension>;
5433
5778
  extendsNode: Array<DomainElement>;
5434
- flow: StrField;
5435
5779
  id: string;
5436
5780
  isExternalLink: BoolField;
5781
+ isLink: boolean;
5782
+ keepAlive: IntField;
5783
+ lastWill: MqttServerLastWill;
5784
+ linkLabel: StrField;
5785
+ linkTarget: undefined | DomainElement;
5437
5786
  position: Range;
5438
- refreshUri: StrField;
5439
- scopes: Array<Scope>;
5440
5787
 
5441
5788
  constructor();
5442
5789
 
@@ -5444,283 +5791,283 @@ declare module "amf-client-js" {
5444
5791
 
5445
5792
  graph(): Graph;
5446
5793
 
5447
- withAccessTokenUri(accessTokenUri: string): this;
5794
+ link<T>(label: string): T;
5448
5795
 
5449
- withAuthorizationUri(authorizationUri: string): this;
5796
+ link<T>(): T;
5797
+
5798
+ linkCopy(): MqttServerBinding;
5799
+
5800
+ withBindingVersion(bindingVersion: string): this;
5801
+
5802
+ withCleanSession(cleanSession: boolean): this;
5803
+
5804
+ withClientId(clientId: string): this;
5450
5805
 
5451
5806
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5452
5807
 
5453
5808
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5454
5809
 
5455
- withFlow(flow: string): this;
5456
-
5457
5810
  withId(id: string): this;
5458
5811
 
5459
5812
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5460
5813
 
5461
- withRefreshUri(refreshUri: string): this;
5462
-
5463
- withScopes(scopes: Array<Scope>): this;
5464
- }
5465
- export class OAuth2Settings extends Settings {
5466
- authorizationGrants: Array<StrField>;
5467
- flows: Array<OAuth2Flow>;
5814
+ withKeepAlive(keepAlive: number): this;
5468
5815
 
5469
- constructor();
5816
+ withLastWill(lastWill: MqttServerLastWill): this;
5470
5817
 
5471
- withAuthorizationGrants(grants: Array<string>): this;
5818
+ withLinkLabel(label: string): this;
5472
5819
 
5473
- withFlows(flows: Array<OAuth2Flow>): this;
5820
+ withLinkTarget(target: undefined): this;
5474
5821
  }
5475
- export class ObjectNode implements DataNode {
5822
+ export class MqttServerBinding020 implements MqttServerBinding {
5823
+ cleanSession: BoolField;
5824
+ clientId: StrField;
5476
5825
  customDomainProperties: Array<DomainExtension>;
5477
5826
  extendsNode: Array<DomainElement>;
5478
5827
  id: string;
5479
5828
  isExternalLink: BoolField;
5480
- name: StrField;
5829
+ isLink: boolean;
5830
+ keepAlive: IntField;
5831
+ lastWill: MqttServerLastWill;
5832
+ linkLabel: StrField;
5833
+ linkTarget: undefined | DomainElement;
5481
5834
  position: Range;
5482
- properties: Map<string, DataNode>;
5835
+ sessionExpiryInterval: number;
5836
+ sessionExpiryIntervalSchema: Shape;
5837
+ maximumPacketSize: number;
5838
+ maximumPacketSizeSchema: Shape;
5483
5839
 
5484
5840
  constructor();
5485
5841
 
5486
- addProperty(property: string, node: DataNode): this;
5487
-
5488
5842
  annotations(): Annotations;
5489
5843
 
5490
- getProperty(property: string): undefined | DataNode;
5491
-
5492
5844
  graph(): Graph;
5493
5845
 
5494
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5846
+ link<T>(label: string): T;
5495
5847
 
5496
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5848
+ link<T>(): T;
5497
5849
 
5498
- withId(id: string): this;
5850
+ linkCopy(): MqttServerBinding;
5499
5851
 
5500
- withIsExternalLink(isExternalLink: boolean): DomainElement;
5852
+ withBindingVersion(bindingVersion: string): this;
5501
5853
 
5502
- withName(name: string): this;
5503
- }
5504
- export class ObjectPropertyTerm extends PropertyTerm {
5505
- constructor();
5506
- }
5507
- export class OpenIdConnectSettings extends Settings {
5508
- scopes: Array<Scope>;
5509
- url: StrField;
5854
+ withCleanSession(cleanSession: boolean): this;
5510
5855
 
5511
- constructor();
5856
+ withClientId(clientId: string): this;
5512
5857
 
5513
- withScopes(scopes: Array<Scope>): this;
5858
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5514
5859
 
5515
- withUrl(url: string): this;
5516
- }
5517
- export class Operation extends AbstractOperation implements Linkable {
5518
- accepts: Array<StrField>;
5519
- bindings: OperationBindings;
5520
- callbacks: Array<Callback>;
5521
- contentType: Array<StrField>;
5522
- deprecated: BoolField;
5523
- documentation: CreativeWork;
5524
- federationMetadata: OperationFederationMetadata;
5525
- isAbstract: BoolField;
5526
- isLink: boolean;
5527
- linkLabel: StrField;
5528
- linkTarget: undefined | DomainElement;
5529
- operationId: StrField;
5530
- request: Request;
5531
- requests: Array<Request>;
5532
- response: Response;
5533
- responses: Array<Response>;
5534
- schemes: Array<StrField>;
5535
- security: Array<SecurityRequirement>;
5536
- servers: Array<Server>;
5537
- summary: StrField;
5538
- tags: Array<Tag>;
5860
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5539
5861
 
5540
- constructor();
5862
+ withId(id: string): this;
5541
5863
 
5542
- link<T>(label: string): T;
5864
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5543
5865
 
5544
- link<T>(): T;
5866
+ withKeepAlive(keepAlive: number): this;
5545
5867
 
5546
- linkCopy(): Operation;
5868
+ withLastWill(lastWill: MqttServerLastWill): this;
5547
5869
 
5548
- withAbstract(abs: boolean): this;
5870
+ withLinkLabel(label: string): this;
5549
5871
 
5550
- withAccepts(accepts: Array<string>): this;
5872
+ withLinkTarget(target: undefined): this;
5551
5873
 
5552
- withBindings(bindings: OperationBindings): this;
5874
+ withSessionExpiryInterval(sessionExpiryInterval: number): this;
5553
5875
 
5554
- withCallback(name: string): Callback;
5876
+ withSessionExpiryIntervalSchema(sessionExpiryIntervalSchema: Shape): this;
5555
5877
 
5556
- withCallbacks(callbacks: Array<Callback>): this;
5557
-
5558
- withContentType(contentType: Array<string>): this;
5559
-
5560
- withDeprecated(deprecated: boolean): this;
5561
-
5562
- withDocumentation(documentation: CreativeWork): this;
5563
-
5564
- withFederationMetadata(
5565
- federationMetadata: OperationFederationMetadata
5566
- ): this;
5567
-
5568
- withLinkLabel(label: string): this;
5878
+ withMaximumPacketSize(maximumPacketSize: number): this;
5569
5879
 
5570
- withLinkTarget(target: undefined): this;
5880
+ withMaximumPacketSizeSchema(maximumPacketSizeSchema: Shape): this;
5881
+ }
5882
+ export class MqttServerLastWill implements DomainElement {
5883
+ customDomainProperties: Array<DomainExtension>;
5884
+ extendsNode: Array<DomainElement>;
5885
+ id: string;
5886
+ isExternalLink: BoolField;
5887
+ message: StrField;
5888
+ position: Range;
5889
+ qos: IntField;
5890
+ retain: BoolField;
5891
+ topic: StrField;
5571
5892
 
5572
- withOperationId(operationId: string): this;
5893
+ constructor();
5573
5894
 
5574
- withRequest(request: Request): this;
5895
+ annotations(): Annotations;
5575
5896
 
5576
- withRequest(): Request;
5897
+ graph(): Graph;
5577
5898
 
5578
- withRequests(requests: Array<Request>): this;
5899
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5579
5900
 
5580
- withResponse(name: string): Response;
5901
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5581
5902
 
5582
- withResponses(responses: Array<Response>): this;
5903
+ withId(id: string): this;
5583
5904
 
5584
- withSchemes(schemes: Array<string>): this;
5905
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5585
5906
 
5586
- withSecurity(security: Array<SecurityRequirement>): this;
5907
+ withMessage(message: string): this;
5587
5908
 
5588
- withServer(name: string): Server;
5909
+ withQos(qos: number): this;
5589
5910
 
5590
- withServers(servers: Array<Server>): this;
5911
+ withRetain(retain: boolean): this;
5591
5912
 
5592
- withSummary(summary: string): this;
5913
+ withTopic(topic: string): this;
5914
+ }
5915
+ export class NamedExample extends Fragment {
5916
+ constructor();
5917
+ }
5918
+ export class NilShape extends AnyShape {
5919
+ constructor();
5593
5920
 
5594
- withTags(tags: Array<Tag>): this;
5921
+ linkCopy(): NilShape;
5595
5922
  }
5596
- export interface OperationBinding extends DomainElement, Linkable {}
5597
- export class OperationBindings implements DomainElement, Linkable {
5598
- bindings: Array<OperationBinding>;
5599
- customDomainProperties: Array<DomainExtension>;
5600
- extendsNode: Array<DomainElement>;
5601
- id: string;
5602
- isExternalLink: BoolField;
5923
+ export class NodeMapping extends AnyMapping implements Linkable {
5924
+ closed: BoolField;
5925
+ idTemplate: StrField;
5603
5926
  isLink: boolean;
5604
5927
  linkLabel: StrField;
5605
5928
  linkTarget: undefined | DomainElement;
5929
+ mergePolicy: StrField;
5606
5930
  name: StrField;
5607
- position: Range;
5931
+ nodetypeMapping: StrField;
5608
5932
 
5609
5933
  constructor();
5610
5934
 
5611
- annotations(): Annotations;
5612
-
5613
- graph(): Graph;
5614
-
5615
5935
  link<T>(label: string): T;
5616
5936
 
5617
5937
  link<T>(): T;
5618
5938
 
5619
- linkCopy(): OperationBindings;
5939
+ linkCopy(): NodeMapping;
5620
5940
 
5621
- withBindings(bindings: Array<OperationBinding>): this;
5941
+ propertiesMapping(): Array<PropertyMapping>;
5622
5942
 
5623
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5943
+ withIdTemplate(idTemplate: string): NodeMapping;
5624
5944
 
5625
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5945
+ withLinkLabel(label: string): this;
5626
5946
 
5627
- withId(id: string): this;
5947
+ withLinkTarget(target: undefined): this;
5628
5948
 
5629
- withIsExternalLink(isExternalLink: boolean): DomainElement;
5949
+ withMergePolicy(mergePolicy: string): NodeMapping;
5630
5950
 
5631
- withLinkLabel(label: string): this;
5951
+ withName(name: string): NodeMapping;
5632
5952
 
5633
- withLinkTarget(target: undefined): this;
5953
+ withNodeTypeMapping(nodeType: string): NodeMapping;
5634
5954
 
5635
- withName(name: string): this;
5955
+ withPropertiesMapping(props: Array<PropertyMapping>): NodeMapping;
5636
5956
  }
5637
- export class OperationFederationMetadata {
5638
- federationMethod: StrField;
5639
- keyMappings: Array<ParameterKeyMapping>;
5640
- providedEntity: NodeShape;
5957
+ export class NodeShape extends AnyShape {
5958
+ additionalPropertiesKeySchema: Shape;
5959
+ additionalPropertiesSchema: Shape;
5960
+ closed: BoolField;
5961
+ dependencies: Array<PropertyDependencies>;
5962
+ discriminator: StrField;
5963
+ discriminatorMapping: Array<IriTemplateMapping>;
5964
+ discriminatorValue: StrField;
5965
+ discriminatorValueMapping: Array<DiscriminatorValueMapping>;
5966
+ externalProperties: Array<ExternalPropertyShape>;
5967
+ isAbstract: BoolField;
5968
+ isInputOnly: BoolField;
5969
+ keys: undefined;
5970
+ maxProperties: IntField;
5971
+ minProperties: IntField;
5972
+ properties: Array<PropertyShape>;
5973
+ propertyNames: Shape;
5974
+ schemaDependencies: Array<SchemaDependencies>;
5975
+ unevaluatedProperties: boolean;
5976
+ unevaluatedPropertiesSchema: Shape;
5641
5977
 
5642
5978
  constructor();
5643
5979
 
5644
- withFederationMethod(federationMethod: string): this;
5980
+ linkCopy(): NodeShape;
5645
5981
 
5646
- withKeyMappings(keyMappings: Array<ParameterKeyMapping>): this;
5982
+ withAdditionalPropertiesKeySchema(
5983
+ additionalPropertiesKeySchema: Shape
5984
+ ): this;
5647
5985
 
5648
- withProvidedEntity(providedEntity: NodeShape): this;
5649
- }
5650
- export class Organization implements DomainElement {
5651
- customDomainProperties: Array<DomainExtension>;
5652
- email: StrField;
5653
- extendsNode: Array<DomainElement>;
5654
- id: string;
5655
- isExternalLink: BoolField;
5656
- name: StrField;
5657
- position: Range;
5658
- url: StrField;
5986
+ withAdditionalPropertiesSchema(additionalPropertiesSchema: Shape): this;
5659
5987
 
5660
- constructor();
5988
+ withClosed(closed: boolean): this;
5661
5989
 
5662
- annotations(): Annotations;
5990
+ withDependencies(dependencies: Array<PropertyDependencies>): this;
5663
5991
 
5664
- graph(): Graph;
5992
+ withDependency(): PropertyDependencies;
5665
5993
 
5666
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5994
+ withDiscriminator(discriminator: string): this;
5667
5995
 
5668
- withEmail(email: string): this;
5996
+ withDiscriminatorMapping(mappings: Array<IriTemplateMapping>): this;
5669
5997
 
5670
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5998
+ withDiscriminatorValue(value: string): this;
5671
5999
 
5672
- withId(id: string): this;
6000
+ withExternalProperties(
6001
+ externalProperties: Array<ExternalPropertyShape>
6002
+ ): this;
5673
6003
 
5674
- withIsExternalLink(isExternalLink: boolean): DomainElement;
6004
+ withInheritsObject(name: string): NodeShape;
5675
6005
 
5676
- withName(name: string): this;
6006
+ withInheritsScalar(name: string): ScalarShape;
5677
6007
 
5678
- withUrl(url: string): this;
5679
- }
5680
- export class Overlay extends Document {
5681
- constructor();
5682
- }
5683
- export class Parameter extends AbstractParameter {
5684
- allowEmptyValue: BoolField;
5685
- allowReserved: BoolField;
5686
- deprecated: BoolField;
5687
- examples: Array<Example>;
5688
- explode: BoolField;
5689
- federationMetadata: ParameterFederationMetadata;
5690
- payloads: Array<Payload>;
5691
- style: StrField;
6008
+ withIsAbstract(isAbstract: boolean): this;
5692
6009
 
5693
- constructor();
6010
+ withIsInputOnly(isInputOnly: boolean): this;
5694
6011
 
5695
- withAllowEmptyValue(allowEmptyValue: boolean): this;
6012
+ withKeys(keys: undefined): this;
5696
6013
 
5697
- withAllowReserved(allowReserved: boolean): this;
6014
+ withMaxProperties(max: number): this;
5698
6015
 
5699
- withDeprecated(deprecated: boolean): this;
6016
+ withMinProperties(min: number): this;
5700
6017
 
5701
- withExample(name: string): Example;
6018
+ withProperties(properties: Array<PropertyShape>): this;
5702
6019
 
5703
- withExamples(examples: Array<Example>): this;
6020
+ withProperty(name: string): PropertyShape;
5704
6021
 
5705
- withExplode(explode: boolean): this;
6022
+ withPropertyNames(propertyNames: Shape): this;
5706
6023
 
5707
- withPayload(mediaType: string): Payload;
6024
+ withSchemaDependencies(dependencies: Array<SchemaDependencies>): this;
5708
6025
 
5709
- withPayloads(payloads: Array<Payload>): this;
6026
+ withUnevaluatedProperties(value: boolean): this;
5710
6027
 
5711
- withStyle(style: string): this;
6028
+ withUnevaluatedPropertiesSchema(schema: Shape): this;
5712
6029
  }
5713
- export class ParameterFederationMetadata {
6030
+ export class NormalPriority extends PluginPriority {}
6031
+ export class OASConfiguration {
6032
+ static OAS(): AMFConfiguration;
6033
+
6034
+ static OAS20(): AMFConfiguration;
6035
+
6036
+ static OAS30(): AMFConfiguration;
6037
+
6038
+ static OAS30Component(): AMFConfiguration;
6039
+
6040
+ static OASComponent(): AMFConfiguration;
6041
+
6042
+ static fromSpec(spec: Spec): AMFConfiguration;
6043
+ }
6044
+ export class OAuth1Settings extends Settings {
6045
+ authorizationUri: StrField;
6046
+ requestTokenUri: StrField;
6047
+ signatures: Array<StrField>;
6048
+ tokenCredentialsUri: StrField;
6049
+
5714
6050
  constructor();
6051
+
6052
+ withAuthorizationUri(authorizationUri: string): this;
6053
+
6054
+ withRequestTokenUri(requestTokenUri: string): this;
6055
+
6056
+ withSignatures(signatures: Array<string>): this;
6057
+
6058
+ withTokenCredentialsUri(tokenCredentialsUri: string): this;
5715
6059
  }
5716
- export class ParameterKeyMapping implements KeyMapping {
6060
+ export class OAuth2Flow implements DomainElement {
6061
+ accessTokenUri: StrField;
6062
+ authorizationUri: StrField;
5717
6063
  customDomainProperties: Array<DomainExtension>;
5718
6064
  extendsNode: Array<DomainElement>;
6065
+ flow: StrField;
5719
6066
  id: string;
5720
6067
  isExternalLink: BoolField;
5721
6068
  position: Range;
5722
- source: Parameter;
5723
- target: PropertyShapePath;
6069
+ refreshUri: StrField;
6070
+ scopes: Array<Scope>;
5724
6071
 
5725
6072
  constructor();
5726
6073
 
@@ -5728,44 +6075,52 @@ declare module "amf-client-js" {
5728
6075
 
5729
6076
  graph(): Graph;
5730
6077
 
6078
+ withAccessTokenUri(accessTokenUri: string): this;
6079
+
6080
+ withAuthorizationUri(authorizationUri: string): this;
6081
+
5731
6082
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5732
6083
 
5733
6084
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5734
6085
 
6086
+ withFlow(flow: string): this;
6087
+
5735
6088
  withId(id: string): this;
5736
6089
 
5737
6090
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5738
6091
 
5739
- withSource(source: Parameter): this;
6092
+ withRefreshUri(refreshUri: string): this;
5740
6093
 
5741
- withTarget(target: PropertyShapePath): this;
6094
+ withScopes(scopes: Array<Scope>): this;
5742
6095
  }
5743
- export interface ParametrizedDeclaration extends DomainElement {
5744
- name: StrField;
5745
- target: AbstractDeclaration;
5746
- variables: Array<VariableValue>;
6096
+ export class OAuth2Settings extends Settings {
6097
+ authorizationGrants: Array<StrField>;
6098
+ flows: Array<OAuth2Flow>;
5747
6099
 
5748
- withName(name: string): this;
6100
+ constructor();
5749
6101
 
5750
- withTarget(target: AbstractDeclaration): this;
6102
+ withAuthorizationGrants(grants: Array<string>): this;
5751
6103
 
5752
- withVariables(variables: Array<VariableValue>): this;
6104
+ withFlows(flows: Array<OAuth2Flow>): this;
5753
6105
  }
5754
- export class ParametrizedResourceType implements ParametrizedDeclaration {
6106
+ export class ObjectNode implements DataNode {
5755
6107
  customDomainProperties: Array<DomainExtension>;
5756
6108
  extendsNode: Array<DomainElement>;
5757
6109
  id: string;
5758
6110
  isExternalLink: BoolField;
5759
6111
  name: StrField;
5760
6112
  position: Range;
5761
- target: AbstractDeclaration;
5762
- variables: Array<VariableValue>;
6113
+ properties: Map<string, DataNode>;
5763
6114
 
5764
6115
  constructor();
5765
6116
 
6117
+ addProperty(property: string, node: DataNode): this;
6118
+
5766
6119
  annotations(): Annotations;
5767
6120
 
5768
- graph(): Graph;
6121
+ getProperty(property: string): undefined | DataNode;
6122
+
6123
+ graph(): Graph;
5769
6124
 
5770
6125
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5771
6126
 
@@ -5776,22 +6131,111 @@ declare module "amf-client-js" {
5776
6131
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5777
6132
 
5778
6133
  withName(name: string): this;
6134
+ }
6135
+ export class ObjectPropertyTerm extends PropertyTerm {
6136
+ constructor();
6137
+ }
6138
+ export class OpenIdConnectSettings extends Settings {
6139
+ scopes: Array<Scope>;
6140
+ url: StrField;
5779
6141
 
5780
- withTarget(target: AbstractDeclaration): this;
6142
+ constructor();
5781
6143
 
5782
- withVariables(variables: Array<VariableValue>): this;
6144
+ withScopes(scopes: Array<Scope>): this;
6145
+
6146
+ withUrl(url: string): this;
5783
6147
  }
5784
- export class ParametrizedSecurityScheme implements DomainElement {
6148
+ export class Operation extends AbstractOperation implements Linkable {
6149
+ accepts: Array<StrField>;
6150
+ bindings: OperationBindings;
6151
+ callbacks: Array<Callback>;
6152
+ contentType: Array<StrField>;
6153
+ deprecated: BoolField;
6154
+ documentation: CreativeWork;
6155
+ federationMetadata: OperationFederationMetadata;
6156
+ isAbstract: BoolField;
6157
+ isLink: boolean;
6158
+ linkLabel: StrField;
6159
+ linkTarget: undefined | DomainElement;
6160
+ operationId: StrField;
6161
+ request: Request;
6162
+ requests: Array<Request>;
6163
+ response: Response;
6164
+ responses: Array<Response>;
6165
+ schemes: Array<StrField>;
6166
+ security: Array<SecurityRequirement>;
6167
+ servers: Array<Server>;
6168
+ summary: StrField;
6169
+ tags: Array<Tag>;
6170
+
6171
+ constructor();
6172
+
6173
+ link<T>(label: string): T;
6174
+
6175
+ link<T>(): T;
6176
+
6177
+ linkCopy(): Operation;
6178
+
6179
+ withAbstract(abs: boolean): this;
6180
+
6181
+ withAccepts(accepts: Array<string>): this;
6182
+
6183
+ withBindings(bindings: OperationBindings): this;
6184
+
6185
+ withCallback(name: string): Callback;
6186
+
6187
+ withCallbacks(callbacks: Array<Callback>): this;
6188
+
6189
+ withContentType(contentType: Array<string>): this;
6190
+
6191
+ withDeprecated(deprecated: boolean): this;
6192
+
6193
+ withDocumentation(documentation: CreativeWork): this;
6194
+
6195
+ withFederationMetadata(
6196
+ federationMetadata: OperationFederationMetadata
6197
+ ): this;
6198
+
6199
+ withLinkLabel(label: string): this;
6200
+
6201
+ withLinkTarget(target: undefined): this;
6202
+
6203
+ withOperationId(operationId: string): this;
6204
+
6205
+ withRequest(request: Request): this;
6206
+
6207
+ withRequest(): Request;
6208
+
6209
+ withRequests(requests: Array<Request>): this;
6210
+
6211
+ withResponse(name: string): Response;
6212
+
6213
+ withResponses(responses: Array<Response>): this;
6214
+
6215
+ withSchemes(schemes: Array<string>): this;
6216
+
6217
+ withSecurity(security: Array<SecurityRequirement>): this;
6218
+
6219
+ withServer(name: string): Server;
6220
+
6221
+ withServers(servers: Array<Server>): this;
6222
+
6223
+ withSummary(summary: string): this;
6224
+
6225
+ withTags(tags: Array<Tag>): this;
6226
+ }
6227
+ export interface OperationBinding extends DomainElement, Linkable {}
6228
+ export class OperationBindings implements DomainElement, Linkable {
6229
+ bindings: Array<OperationBinding>;
5785
6230
  customDomainProperties: Array<DomainExtension>;
5786
- description: StrField;
5787
6231
  extendsNode: Array<DomainElement>;
5788
- hasNullSecurityScheme: boolean;
5789
6232
  id: string;
5790
6233
  isExternalLink: BoolField;
6234
+ isLink: boolean;
6235
+ linkLabel: StrField;
6236
+ linkTarget: undefined | DomainElement;
5791
6237
  name: StrField;
5792
6238
  position: Range;
5793
- scheme: SecurityScheme;
5794
- settings: Settings;
5795
6239
 
5796
6240
  constructor();
5797
6241
 
@@ -5799,43 +6243,50 @@ declare module "amf-client-js" {
5799
6243
 
5800
6244
  graph(): Graph;
5801
6245
 
5802
- withApiKeySettings(): ApiKeySettings;
6246
+ link<T>(label: string): T;
5803
6247
 
5804
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6248
+ link<T>(): T;
5805
6249
 
5806
- withDefaultSettings(): Settings;
6250
+ linkCopy(): OperationBindings;
5807
6251
 
5808
- withDescription(description: string): this;
6252
+ withBindings(bindings: Array<OperationBinding>): this;
5809
6253
 
5810
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6254
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5811
6255
 
5812
- withHttpSettings(): HttpSettings;
6256
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5813
6257
 
5814
6258
  withId(id: string): this;
5815
6259
 
5816
6260
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5817
6261
 
5818
- withName(name: string): this;
6262
+ withLinkLabel(label: string): this;
5819
6263
 
5820
- withOAuth1Settings(): OAuth1Settings;
6264
+ withLinkTarget(target: undefined): this;
5821
6265
 
5822
- withOAuth2Settings(): OAuth2Settings;
6266
+ withName(name: string): this;
6267
+ }
6268
+ export class OperationFederationMetadata {
6269
+ federationMethod: StrField;
6270
+ keyMappings: Array<ParameterKeyMapping>;
6271
+ providedEntity: NodeShape;
5823
6272
 
5824
- withOpenIdConnectSettings(): OpenIdConnectSettings;
6273
+ constructor();
5825
6274
 
5826
- withScheme(scheme: SecurityScheme): this;
6275
+ withFederationMethod(federationMethod: string): this;
5827
6276
 
5828
- withSettings(settings: Settings): this;
6277
+ withKeyMappings(keyMappings: Array<ParameterKeyMapping>): this;
6278
+
6279
+ withProvidedEntity(providedEntity: NodeShape): this;
5829
6280
  }
5830
- export class ParametrizedTrait implements ParametrizedDeclaration {
6281
+ export class Organization implements DomainElement {
5831
6282
  customDomainProperties: Array<DomainExtension>;
6283
+ email: StrField;
5832
6284
  extendsNode: Array<DomainElement>;
5833
6285
  id: string;
5834
6286
  isExternalLink: BoolField;
5835
6287
  name: StrField;
5836
6288
  position: Range;
5837
- target: AbstractDeclaration;
5838
- variables: Array<VariableValue>;
6289
+ url: StrField;
5839
6290
 
5840
6291
  constructor();
5841
6292
 
@@ -5845,6 +6296,8 @@ declare module "amf-client-js" {
5845
6296
 
5846
6297
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5847
6298
 
6299
+ withEmail(email: string): this;
6300
+
5848
6301
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5849
6302
 
5850
6303
  withId(id: string): this;
@@ -5853,84 +6306,262 @@ declare module "amf-client-js" {
5853
6306
 
5854
6307
  withName(name: string): this;
5855
6308
 
5856
- withTarget(target: AbstractDeclaration): this;
5857
-
5858
- withVariables(variables: Array<VariableValue>): this;
5859
- }
5860
- export class ParsedModelEvent {
5861
- unit: BaseUnit;
5862
- url: string;
6309
+ withUrl(url: string): this;
5863
6310
  }
5864
- export class ParsedSyntaxEvent {
5865
- content: Content;
5866
- url: string;
6311
+ export class Overlay extends Document {
6312
+ constructor();
5867
6313
  }
5868
- export class ParsingOptions {
5869
- definedBaseUrl: undefined | string;
5870
- getMaxJSONComplexity: undefined | number;
5871
- getMaxJsonYamlDepth: undefined | number;
5872
- getMaxYamlReferences: undefined | number;
5873
- isAmfJsonLdSerialization: boolean;
5874
- isTokens: boolean;
6314
+ export class Parameter extends AbstractParameter {
6315
+ allowEmptyValue: BoolField;
6316
+ allowReserved: BoolField;
6317
+ deprecated: BoolField;
6318
+ examples: Array<Example>;
6319
+ explode: BoolField;
6320
+ federationMetadata: ParameterFederationMetadata;
6321
+ payloads: Array<Payload>;
6322
+ style: StrField;
5875
6323
 
5876
6324
  constructor();
5877
6325
 
5878
- setMaxJSONComplexity(value: number): ParsingOptions;
6326
+ withAllowEmptyValue(allowEmptyValue: boolean): this;
5879
6327
 
5880
- setMaxJsonYamlDepth(value: number): ParsingOptions;
6328
+ withAllowReserved(allowReserved: boolean): this;
5881
6329
 
5882
- setMaxYamlReferences(value: number): ParsingOptions;
6330
+ withDeprecated(deprecated: boolean): this;
5883
6331
 
5884
- withAmfJsonLdSerialization(): ParsingOptions;
6332
+ withExample(name: string): Example;
5885
6333
 
5886
- withBaseUnitUrl(baseUnit: string): ParsingOptions;
6334
+ withExamples(examples: Array<Example>): this;
5887
6335
 
5888
- withTokens(): ParsingOptions;
6336
+ withExplode(explode: boolean): this;
5889
6337
 
5890
- withoutAmfJsonLdSerialization(): ParsingOptions;
6338
+ withPayload(mediaType: string): Payload;
5891
6339
 
5892
- withoutBaseUnitUrl(): ParsingOptions;
6340
+ withPayloads(payloads: Array<Payload>): this;
5893
6341
 
5894
- withoutTokens(): ParsingOptions;
6342
+ withStyle(style: string): this;
5895
6343
  }
5896
- export class Path {
5897
- static delimiter: string;
5898
- static sep: string;
6344
+ export class ParameterFederationMetadata {
6345
+ constructor();
6346
+ }
6347
+ export class ParameterKeyMapping implements KeyMapping {
6348
+ customDomainProperties: Array<DomainExtension>;
6349
+ extendsNode: Array<DomainElement>;
6350
+ id: string;
6351
+ isExternalLink: BoolField;
6352
+ position: Range;
6353
+ source: Parameter;
6354
+ target: PropertyShapePath;
5899
6355
 
5900
- static basename(p: string, ext: string): string;
6356
+ constructor();
5901
6357
 
5902
- static dirname(p: string): string;
6358
+ annotations(): Annotations;
5903
6359
 
5904
- static extname(p: string): string;
6360
+ graph(): Graph;
5905
6361
 
5906
- static isAbsolute(path: string): boolean;
6362
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5907
6363
 
5908
- static join(paths: undefined): string;
6364
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5909
6365
 
5910
- static normalize(p: string): string;
6366
+ withId(id: string): this;
5911
6367
 
5912
- static relative(from: string, to: string): string;
6368
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5913
6369
 
5914
- static resolve(pathSegments: undefined): string;
6370
+ withSource(source: Parameter): this;
6371
+
6372
+ withTarget(target: PropertyShapePath): this;
5915
6373
  }
5916
- export class Payload extends AbstractPayload {
5917
- encoding: Array<Encoding>;
5918
- encodings: Array<Encoding>;
5919
- examples: Array<Example>;
5920
- required: BoolField;
5921
- schemaMediaType: StrField;
6374
+ export interface ParametrizedDeclaration extends DomainElement {
6375
+ name: StrField;
6376
+ target: AbstractDeclaration;
6377
+ variables: Array<VariableValue>;
5922
6378
 
5923
- constructor();
6379
+ withName(name: string): this;
5924
6380
 
5925
- linkCopy(): Payload;
6381
+ withTarget(target: AbstractDeclaration): this;
5926
6382
 
5927
- withEncoding(name: string): Encoding;
6383
+ withVariables(variables: Array<VariableValue>): this;
6384
+ }
6385
+ export class ParametrizedResourceType implements ParametrizedDeclaration {
6386
+ customDomainProperties: Array<DomainExtension>;
6387
+ extendsNode: Array<DomainElement>;
6388
+ id: string;
6389
+ isExternalLink: BoolField;
6390
+ name: StrField;
6391
+ position: Range;
6392
+ target: AbstractDeclaration;
6393
+ variables: Array<VariableValue>;
5928
6394
 
5929
- withEncoding(encoding: Array<Encoding>): this;
6395
+ constructor();
5930
6396
 
5931
- withEncodings(encoding: Array<Encoding>): this;
6397
+ annotations(): Annotations;
5932
6398
 
5933
- withExample(name: string): Example;
6399
+ graph(): Graph;
6400
+
6401
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6402
+
6403
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6404
+
6405
+ withId(id: string): this;
6406
+
6407
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6408
+
6409
+ withName(name: string): this;
6410
+
6411
+ withTarget(target: AbstractDeclaration): this;
6412
+
6413
+ withVariables(variables: Array<VariableValue>): this;
6414
+ }
6415
+ export class ParametrizedSecurityScheme implements DomainElement {
6416
+ customDomainProperties: Array<DomainExtension>;
6417
+ description: StrField;
6418
+ extendsNode: Array<DomainElement>;
6419
+ hasNullSecurityScheme: boolean;
6420
+ id: string;
6421
+ isExternalLink: BoolField;
6422
+ name: StrField;
6423
+ position: Range;
6424
+ scheme: SecurityScheme;
6425
+ settings: Settings;
6426
+
6427
+ constructor();
6428
+
6429
+ annotations(): Annotations;
6430
+
6431
+ graph(): Graph;
6432
+
6433
+ withApiKeySettings(): ApiKeySettings;
6434
+
6435
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6436
+
6437
+ withDefaultSettings(): Settings;
6438
+
6439
+ withDescription(description: string): this;
6440
+
6441
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6442
+
6443
+ withHttpSettings(): HttpSettings;
6444
+
6445
+ withId(id: string): this;
6446
+
6447
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6448
+
6449
+ withName(name: string): this;
6450
+
6451
+ withOAuth1Settings(): OAuth1Settings;
6452
+
6453
+ withOAuth2Settings(): OAuth2Settings;
6454
+
6455
+ withOpenIdConnectSettings(): OpenIdConnectSettings;
6456
+
6457
+ withScheme(scheme: SecurityScheme): this;
6458
+
6459
+ withSettings(settings: Settings): this;
6460
+ }
6461
+ export class ParametrizedTrait implements ParametrizedDeclaration {
6462
+ customDomainProperties: Array<DomainExtension>;
6463
+ extendsNode: Array<DomainElement>;
6464
+ id: string;
6465
+ isExternalLink: BoolField;
6466
+ name: StrField;
6467
+ position: Range;
6468
+ target: AbstractDeclaration;
6469
+ variables: Array<VariableValue>;
6470
+
6471
+ constructor();
6472
+
6473
+ annotations(): Annotations;
6474
+
6475
+ graph(): Graph;
6476
+
6477
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6478
+
6479
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6480
+
6481
+ withId(id: string): this;
6482
+
6483
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6484
+
6485
+ withName(name: string): this;
6486
+
6487
+ withTarget(target: AbstractDeclaration): this;
6488
+
6489
+ withVariables(variables: Array<VariableValue>): this;
6490
+ }
6491
+ export class ParsedModelEvent {
6492
+ unit: BaseUnit;
6493
+ url: string;
6494
+ }
6495
+ export class ParsedSyntaxEvent {
6496
+ content: Content;
6497
+ url: string;
6498
+ }
6499
+ export class ParsingOptions {
6500
+ definedBaseUrl: undefined | string;
6501
+ getMaxJSONComplexity: undefined | number;
6502
+ getMaxJsonYamlDepth: undefined | number;
6503
+ getMaxYamlReferences: undefined | number;
6504
+ isAmfJsonLdSerialization: boolean;
6505
+ isTokens: boolean;
6506
+
6507
+ constructor();
6508
+
6509
+ setMaxJSONComplexity(value: number): ParsingOptions;
6510
+
6511
+ setMaxJsonYamlDepth(value: number): ParsingOptions;
6512
+
6513
+ setMaxYamlReferences(value: number): ParsingOptions;
6514
+
6515
+ withAmfJsonLdSerialization(): ParsingOptions;
6516
+
6517
+ withBaseUnitUrl(baseUnit: string): ParsingOptions;
6518
+
6519
+ withTokens(): ParsingOptions;
6520
+
6521
+ withoutAmfJsonLdSerialization(): ParsingOptions;
6522
+
6523
+ withoutBaseUnitUrl(): ParsingOptions;
6524
+
6525
+ withoutTokens(): ParsingOptions;
6526
+ }
6527
+ export class Path {
6528
+ static delimiter: string;
6529
+ static sep: string;
6530
+
6531
+ static basename(p: string, ext: string): string;
6532
+
6533
+ static dirname(p: string): string;
6534
+
6535
+ static extname(p: string): string;
6536
+
6537
+ static isAbsolute(path: string): boolean;
6538
+
6539
+ static join(paths: undefined): string;
6540
+
6541
+ static normalize(p: string): string;
6542
+
6543
+ static relative(from: string, to: string): string;
6544
+
6545
+ static resolve(pathSegments: undefined): string;
6546
+ }
6547
+ export class Payload extends AbstractPayload {
6548
+ encoding: Array<Encoding>;
6549
+ encodings: Array<Encoding>;
6550
+ examples: Array<Example>;
6551
+ required: BoolField;
6552
+ schemaMediaType: StrField;
6553
+
6554
+ constructor();
6555
+
6556
+ linkCopy(): Payload;
6557
+
6558
+ withEncoding(name: string): Encoding;
6559
+
6560
+ withEncoding(encoding: Array<Encoding>): this;
6561
+
6562
+ withEncodings(encoding: Array<Encoding>): this;
6563
+
6564
+ withExample(name: string): Example;
5934
6565
 
5935
6566
  withExamples(examples: Array<Example>): this;
5936
6567
 
@@ -6015,6 +6646,7 @@ declare module "amf-client-js" {
6015
6646
  static readonly GRAPHQL_FEDERATION: ProfileName;
6016
6647
  static readonly GRPC: ProfileName;
6017
6648
  static readonly JSONSCHEMA: ProfileName;
6649
+ static readonly AVROSCHEMA: ProfileName;
6018
6650
  static readonly OAS20: ProfileName;
6019
6651
  static readonly OAS30: ProfileName;
6020
6652
  static readonly PAYLOAD: ProfileName;
@@ -7445,154 +8077,423 @@ declare module "amf-client-js" {
7445
8077
  extendsNode: Array<DomainElement>;
7446
8078
  id: string;
7447
8079
  isExternalLink: BoolField;
7448
- name: StrField;
7449
- position: Range;
7450
- queryParameters: Array<ShapeParameter>;
7451
-
7452
- constructor();
8080
+ name: StrField;
8081
+ position: Range;
8082
+ queryParameters: Array<ShapeParameter>;
8083
+
8084
+ constructor();
8085
+
8086
+ annotations(): Annotations;
8087
+
8088
+ graph(): Graph;
8089
+
8090
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8091
+
8092
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8093
+
8094
+ withId(id: string): this;
8095
+
8096
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8097
+
8098
+ withName(name: string): this;
8099
+
8100
+ withQueryParameter(name: string): ShapeParameter;
8101
+
8102
+ withQueryParameters(parameters: Array<ShapeParameter>): this;
8103
+ }
8104
+ export class ShapeResponse implements AbstractResponse {
8105
+ customDomainProperties: Array<DomainExtension>;
8106
+ extendsNode: Array<DomainElement>;
8107
+ id: string;
8108
+ isExternalLink: BoolField;
8109
+ name: StrField;
8110
+ payload: ShapePayload;
8111
+ position: Range;
8112
+
8113
+ constructor();
8114
+
8115
+ annotations(): Annotations;
8116
+
8117
+ graph(): Graph;
8118
+
8119
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8120
+
8121
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8122
+
8123
+ withId(id: string): this;
8124
+
8125
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8126
+
8127
+ withName(name: string): this;
8128
+
8129
+ withPayload(payload: ShapePayload): ShapePayload;
8130
+ }
8131
+ export class ShapeValidationConfiguration {
8132
+ readonly maxYamlReferences: undefined | number;
8133
+
8134
+ static apply(config: AMFGraphConfiguration): ShapeValidationConfiguration;
8135
+
8136
+ eh(): ClientErrorHandler;
8137
+
8138
+ fetchContent(url: string): Promise<Content>;
8139
+
8140
+ static predefined(): ShapeValidationConfiguration;
8141
+ }
8142
+ export class ShapesConfiguration extends BaseShapesConfiguration {
8143
+ baseUnitClient(): AMLBaseUnitClient;
8144
+
8145
+ configurationState(): AMLConfigurationState;
8146
+
8147
+ elementClient(): ShapesElementClient;
8148
+
8149
+ static empty(): ShapesConfiguration;
8150
+
8151
+ forInstance(url: string): Promise<ShapesConfiguration>;
8152
+
8153
+ static predefined(): ShapesConfiguration;
8154
+
8155
+ withDialect(dialect: Dialect): ShapesConfiguration;
8156
+
8157
+ withDialect(url: string): Promise<ShapesConfiguration>;
8158
+
8159
+ withErrorHandlerProvider(
8160
+ provider: ErrorHandlerProvider
8161
+ ): ShapesConfiguration;
8162
+
8163
+ withEventListener(listener: AMFEventListener): ShapesConfiguration;
8164
+
8165
+ withParsingOptions(parsingOptions: ParsingOptions): ShapesConfiguration;
8166
+
8167
+ withRenderOptions(renderOptions: RenderOptions): ShapesConfiguration;
8168
+
8169
+ withResourceLoader(rl: ResourceLoader): ShapesConfiguration;
8170
+
8171
+ withResourceLoaders(rl: Array<ResourceLoader>): ShapesConfiguration;
8172
+
8173
+ withShapePayloadPlugin(
8174
+ plugin: AMFShapePayloadValidationPlugin
8175
+ ): ShapesConfiguration;
8176
+
8177
+ withTransformationPipeline(
8178
+ pipeline: TransformationPipeline
8179
+ ): ShapesConfiguration;
8180
+
8181
+ withUnitCache(cache: UnitCache): ShapesConfiguration;
8182
+ }
8183
+ export class ShapesElementClient extends BaseShapesElementClient {
8184
+ getConfiguration(): ShapesConfiguration;
8185
+ }
8186
+ export class SkippedValidationPluginEvent {}
8187
+ export class SolaceOperationBinding implements OperationBinding {
8188
+
8189
+ withBindingVersion(bindingVersion: string): this;
8190
+
8191
+ customDomainProperties: Array<DomainExtension>;
8192
+ extendsNode: Array<DomainElement>;
8193
+ id: string;
8194
+ isExternalLink: BoolField;
8195
+ isLink: boolean;
8196
+ linkLabel: StrField;
8197
+ linkTarget: DomainElement | undefined;
8198
+ position: Range;
8199
+
8200
+ annotations(): Annotations;
8201
+ graph(): Graph;
8202
+ link<T>(): T;
8203
+ link<T>(label: string): T;
8204
+ linkCopy(): Linkable;
8205
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8206
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8207
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8208
+ withId(id: string): this;
8209
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8210
+ withLinkLabel(label: string): this;
8211
+ withLinkTarget(target: undefined): this;
8212
+ }
8213
+ export class SolaceOperationBinding010 implements SolaceOperationBinding {
8214
+
8215
+ withBindingVersion(bindingVersion: string): this;
8216
+
8217
+ customDomainProperties: Array<DomainExtension>;
8218
+ extendsNode: Array<DomainElement>;
8219
+ id: string;
8220
+ isExternalLink: BoolField;
8221
+ isLink: boolean;
8222
+ linkLabel: StrField;
8223
+ linkTarget: DomainElement | undefined;
8224
+ position: Range;
8225
+ destinations: Array<SolaceOperationDestination>;
8226
+
8227
+ annotations(): Annotations;
8228
+ graph(): Graph;
8229
+ link<T>(): T;
8230
+ link<T>(label: string): T;
8231
+ linkCopy(): Linkable;
8232
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8233
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8234
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8235
+ withId(id: string): this;
8236
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8237
+ withLinkLabel(label: string): this;
8238
+ withLinkTarget(target: undefined): this;
8239
+ withDestinations(destinations: Array<SolaceOperationDestination>): this;
8240
+ }
8241
+ export class SolaceOperationBinding020 implements SolaceOperationBinding {
8242
+
8243
+ withBindingVersion(bindingVersion: string): this;
8244
+
8245
+ customDomainProperties: Array<DomainExtension>;
8246
+ extendsNode: Array<DomainElement>;
8247
+ id: string;
8248
+ isExternalLink: BoolField;
8249
+ isLink: boolean;
8250
+ linkLabel: StrField;
8251
+ linkTarget: DomainElement | undefined;
8252
+ position: Range;
8253
+ destinations: Array<SolaceOperationDestination020>;
8254
+
8255
+ annotations(): Annotations;
8256
+ graph(): Graph;
8257
+ link<T>(): T;
8258
+ link<T>(label: string): T;
8259
+ linkCopy(): Linkable;
8260
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8261
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8262
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8263
+ withId(id: string): this;
8264
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8265
+ withLinkLabel(label: string): this;
8266
+ withLinkTarget(target: undefined): this;
8267
+ withDestinations(destinations: Array<SolaceOperationDestination020>): this;
8268
+ }
8269
+ export class SolaceOperationBinding030 implements SolaceOperationBinding {
8270
+
8271
+ withBindingVersion(bindingVersion: string): this;
8272
+
8273
+ customDomainProperties: Array<DomainExtension>;
8274
+ extendsNode: Array<DomainElement>;
8275
+ id: string;
8276
+ isExternalLink: BoolField;
8277
+ isLink: boolean;
8278
+ linkLabel: StrField;
8279
+ linkTarget: DomainElement | undefined;
8280
+ position: Range;
8281
+ destinations: Array<SolaceOperationDestination030>;
8282
+
8283
+ annotations(): Annotations;
8284
+ graph(): Graph;
8285
+ link<T>(): T;
8286
+ link<T>(label: string): T;
8287
+ linkCopy(): Linkable;
8288
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8289
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8290
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8291
+ withId(id: string): this;
8292
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8293
+ withLinkLabel(label: string): this;
8294
+ withLinkTarget(target: undefined): this;
8295
+ withDestinations(destinations: Array<SolaceOperationDestination030>): this;
8296
+ }
8297
+ export class SolaceOperationBinding040 implements SolaceOperationBinding {
8298
+
8299
+ withBindingVersion(bindingVersion: string): this;
8300
+
8301
+ customDomainProperties: Array<DomainExtension>;
8302
+ extendsNode: Array<DomainElement>;
8303
+ id: string;
8304
+ isExternalLink: BoolField;
8305
+ isLink: boolean;
8306
+ linkLabel: StrField;
8307
+ linkTarget: DomainElement | undefined;
8308
+ position: Range;
8309
+ destinations: Array<SolaceOperationDestination040>;
8310
+ timeToLive: IntField;
8311
+ priority: IntField;
8312
+ dmqEligible:BoolField;
8313
+
8314
+ annotations(): Annotations;
8315
+ graph(): Graph;
8316
+ link<T>(): T;
8317
+ link<T>(label: string): T;
8318
+ linkCopy(): Linkable;
8319
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8320
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8321
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8322
+ withId(id: string): this;
8323
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8324
+ withLinkLabel(label: string): this;
8325
+ withLinkTarget(target: undefined): this;
8326
+ withDestinations(destinations: Array<SolaceOperationDestination040>): this;
8327
+ withTimeToLive(timeToLive: number): this;
8328
+ withPriority(priority:number): this;
8329
+ withDmqEligible(dmqEligible:boolean): this;
8330
+ }
8331
+ export class SolaceOperationDestination implements DomainElement {
8332
+
8333
+ destinationType: StrField;
8334
+ deliveryMode: StrField;
8335
+ queue: SolaceOperationQueue;
8336
+
8337
+ withDestinationType(destinationType: string): this;
8338
+ withDeliveryMode(deliveryMode: string): this;
8339
+ withQueue(queue: SolaceOperationQueue): this;
8340
+
8341
+ customDomainProperties: Array<DomainExtension>;
8342
+ extendsNode: Array<DomainElement>;
8343
+ id: string;
8344
+ isExternalLink: BoolField;
8345
+ position: Range;
8346
+
8347
+ annotations(): Annotations;
8348
+ graph(): Graph;
8349
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8350
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8351
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8352
+ withId(id: string): this;
8353
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8354
+ }
8355
+ export class SolaceOperationDestination010 implements SolaceOperationDestination {
8356
+
8357
+ destinationType: StrField;
8358
+ deliveryMode: StrField;
8359
+ queue: SolaceOperationQueue010;
8360
+
8361
+
8362
+ withDestinationType(destinationType: string): this;
8363
+ withDeliveryMode(deliveryMode: string): this;
8364
+ withQueue(queue: SolaceOperationQueue010): this;
8365
+
8366
+
8367
+ customDomainProperties: Array<DomainExtension>;
8368
+ extendsNode: Array<DomainElement>;
8369
+ id: string;
8370
+ isExternalLink: BoolField;
8371
+ position: Range;
8372
+
8373
+ annotations(): Annotations;
8374
+ graph(): Graph;
8375
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8376
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8377
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8378
+ withId(id: string): this;
8379
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8380
+ }
8381
+ export class SolaceOperationDestination020 implements SolaceOperationDestination {
8382
+
8383
+ destinationType: StrField;
8384
+ deliveryMode: StrField;
8385
+ queue: SolaceOperationQueue010;
8386
+ topic: SolaceOperationTopic;
8387
+ destinations: Array<SolaceOperationDestination020>;
8388
+
8389
+ withDestinationType(destinationType: string): this;
8390
+ withDeliveryMode(deliveryMode: string): this;
8391
+ withQueue(queue: SolaceOperationQueue010): this;
8392
+ withDestinations(destinations: Array<SolaceOperationDestination020>): this;
8393
+ withTopic(topic: SolaceOperationTopic): this;
8394
+ customDomainProperties: Array<DomainExtension>;
8395
+ extendsNode: Array<DomainElement>;
8396
+ id: string;
8397
+ isExternalLink: BoolField;
7453
8398
 
8399
+ position: Range;
7454
8400
  annotations(): Annotations;
7455
-
7456
8401
  graph(): Graph;
7457
-
7458
8402
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7459
-
8403
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7460
8404
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7461
-
7462
8405
  withId(id: string): this;
7463
-
7464
8406
  withIsExternalLink(isExternalLink: boolean): DomainElement;
8407
+ }
8408
+ export class SolaceOperationDestination030 implements SolaceOperationDestination {
7465
8409
 
7466
- withName(name: string): this;
8410
+ destinationType: StrField;
8411
+ deliveryMode: StrField;
8412
+ queue: SolaceOperationQueue030;
8413
+ topic: SolaceOperationTopic;
8414
+ destinations: Array<SolaceOperationDestination030>;
7467
8415
 
7468
- withQueryParameter(name: string): ShapeParameter;
8416
+ withDestinationType(destinationType: string): this;
8417
+ withDeliveryMode(deliveryMode: string): this;
8418
+ withQueue(queue: SolaceOperationQueue030): this;
8419
+ withTopic(topic: SolaceOperationTopic): this;
8420
+ withDestinations(destinations: Array<SolaceOperationDestination030>): this;
7469
8421
 
7470
- withQueryParameters(parameters: Array<ShapeParameter>): this;
7471
- }
7472
- export class ShapeResponse implements AbstractResponse {
7473
8422
  customDomainProperties: Array<DomainExtension>;
7474
8423
  extendsNode: Array<DomainElement>;
7475
8424
  id: string;
7476
8425
  isExternalLink: BoolField;
7477
- name: StrField;
7478
- payload: ShapePayload;
7479
8426
  position: Range;
7480
8427
 
7481
- constructor();
7482
-
7483
8428
  annotations(): Annotations;
7484
-
7485
8429
  graph(): Graph;
7486
-
7487
8430
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7488
-
8431
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7489
8432
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7490
-
7491
8433
  withId(id: string): this;
7492
-
7493
8434
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7494
-
7495
- withName(name: string): this;
7496
-
7497
- withPayload(payload: ShapePayload): ShapePayload;
7498
- }
7499
- export class ShapeValidationConfiguration {
7500
- readonly maxYamlReferences: undefined | number;
7501
-
7502
- static apply(config: AMFGraphConfiguration): ShapeValidationConfiguration;
7503
-
7504
- eh(): ClientErrorHandler;
7505
-
7506
- fetchContent(url: string): Promise<Content>;
7507
-
7508
- static predefined(): ShapeValidationConfiguration;
7509
8435
  }
7510
- export class ShapesConfiguration extends BaseShapesConfiguration {
7511
- baseUnitClient(): AMLBaseUnitClient;
7512
-
7513
- configurationState(): AMLConfigurationState;
7514
-
7515
- elementClient(): ShapesElementClient;
7516
-
7517
- static empty(): ShapesConfiguration;
7518
-
7519
- forInstance(url: string): Promise<ShapesConfiguration>;
7520
-
7521
- static predefined(): ShapesConfiguration;
8436
+ export class SolaceOperationDestination040 implements SolaceOperationDestination {
7522
8437
 
7523
- withDialect(dialect: Dialect): ShapesConfiguration;
7524
-
7525
- withDialect(url: string): Promise<ShapesConfiguration>;
7526
-
7527
- withErrorHandlerProvider(
7528
- provider: ErrorHandlerProvider
7529
- ): ShapesConfiguration;
7530
-
7531
- withEventListener(listener: AMFEventListener): ShapesConfiguration;
7532
-
7533
- withParsingOptions(parsingOptions: ParsingOptions): ShapesConfiguration;
7534
-
7535
- withRenderOptions(renderOptions: RenderOptions): ShapesConfiguration;
7536
-
7537
- withResourceLoader(rl: ResourceLoader): ShapesConfiguration;
7538
-
7539
- withResourceLoaders(rl: Array<ResourceLoader>): ShapesConfiguration;
8438
+ destinationType: StrField;
8439
+ deliveryMode: StrField;
8440
+ queue: SolaceOperationQueue030;
8441
+ topic: SolaceOperationTopic;
8442
+ destinations: Array<SolaceOperationDestination040>;
7540
8443
 
7541
- withShapePayloadPlugin(
7542
- plugin: AMFShapePayloadValidationPlugin
7543
- ): ShapesConfiguration;
8444
+ withDestinationType(destinationType: string): this;
8445
+ withDeliveryMode(deliveryMode: string): this;
8446
+ withQueue(queue: SolaceOperationQueue030): this;
8447
+ withTopic(topic: SolaceOperationTopic): this;
8448
+ withDestinations(destinations: Array<SolaceOperationDestination040>): this;
7544
8449
 
7545
- withTransformationPipeline(
7546
- pipeline: TransformationPipeline
7547
- ): ShapesConfiguration;
8450
+ customDomainProperties: Array<DomainExtension>;
8451
+ extendsNode: Array<DomainElement>;
8452
+ id: string;
8453
+ isExternalLink: BoolField;
8454
+ position: Range;
7548
8455
 
7549
- withUnitCache(cache: UnitCache): ShapesConfiguration;
7550
- }
7551
- export class ShapesElementClient extends BaseShapesElementClient {
7552
- getConfiguration(): ShapesConfiguration;
8456
+ annotations(): Annotations;
8457
+ graph(): Graph;
8458
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8459
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8460
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8461
+ withId(id: string): this;
8462
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
7553
8463
  }
7554
- export class SkippedValidationPluginEvent {}
7555
- export class SolaceOperationBinding implements OperationBinding {
8464
+ export class SolaceOperationQueue implements DomainElement {
7556
8465
 
7557
- destinations: Array<SolaceOperationDestination>;
7558
- bindingVersion: StrField;
8466
+ topicSubscriptions: Array<StrField>;
8467
+ accessType: StrField;
8468
+ name: StrField;
7559
8469
 
7560
- withDestinations(destinations: Array<SolaceOperationDestination>): this;
7561
- withBindingVersion(bindingVersion: string): this;
8470
+ withTopicSubscriptions(topicSubscriptions: Array<string>): this;
8471
+ withAccessType(accessType: string): this;
8472
+ withName(name: string): this;
7562
8473
 
7563
8474
  customDomainProperties: Array<DomainExtension>;
7564
8475
  extendsNode: Array<DomainElement>;
7565
8476
  id: string;
7566
8477
  isExternalLink: BoolField;
7567
- isLink: boolean;
7568
- linkLabel: StrField;
7569
- linkTarget: DomainElement | undefined;
7570
8478
  position: Range;
7571
8479
 
7572
8480
  annotations(): Annotations;
7573
8481
  graph(): Graph;
7574
- link<T>(): T;
7575
- link<T>(label: string): T;
7576
- linkCopy(): Linkable;
7577
8482
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7578
8483
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7579
8484
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7580
8485
  withId(id: string): this;
7581
8486
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7582
- withLinkLabel(label: string): this;
7583
- withLinkTarget(target: undefined): this;
7584
8487
  }
7585
- export class SolaceOperationDestination implements DomainElement {
8488
+ export class SolaceOperationQueue010 implements SolaceOperationQueue {
7586
8489
 
7587
- destinationType: StrField;
7588
- deliveryMode: StrField;
7589
- queue: SolaceOperationQueue;
7590
- topic: SolaceOperationTopic;
8490
+ topicSubscriptions: Array<StrField>;
8491
+ accessType: StrField;
8492
+ name: StrField;
7591
8493
 
7592
- withDestinationType(destinationType: string): this;
7593
- withDeliveryMode(deliveryMode: string): this;
7594
- withQueue(queue: SolaceOperationQueue): this;
7595
- withTopic(topic: SolaceOperationTopic): this;
8494
+ withTopicSubscriptions(topicSubscriptions: Array<string>): this;
8495
+ withAccessType(accessType: string): this;
8496
+ withName(name: string): this;
7596
8497
 
7597
8498
  customDomainProperties: Array<DomainExtension>;
7598
8499
  extendsNode: Array<DomainElement>;
@@ -7608,7 +8509,7 @@ declare module "amf-client-js" {
7608
8509
  withId(id: string): this;
7609
8510
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7610
8511
  }
7611
- export class SolaceOperationQueue implements DomainElement {
8512
+ export class SolaceOperationQueue030 implements SolaceOperationQueue {
7612
8513
 
7613
8514
  topicSubscriptions: Array<StrField>;
7614
8515
  accessType: StrField;
@@ -7639,7 +8540,6 @@ declare module "amf-client-js" {
7639
8540
  export class SolaceOperationTopic implements DomainElement {
7640
8541
 
7641
8542
  topicSubscriptions: Array<StrField>;
7642
-
7643
8543
  withTopicSubscriptions(topicSubscriptions: Array<string>): this;
7644
8544
 
7645
8545
  customDomainProperties: Array<DomainExtension>;
@@ -7656,6 +8556,127 @@ declare module "amf-client-js" {
7656
8556
  withId(id: string): this;
7657
8557
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7658
8558
  }
8559
+ export class SolaceServerBinding implements ServerBinding {
8560
+ customDomainProperties: Array<DomainExtension>;
8561
+ extendsNode: Array<DomainElement>;
8562
+ id: string;
8563
+ isExternalLink: BoolField;
8564
+ isLink: boolean;
8565
+ linkLabel: StrField;
8566
+ linkTarget: undefined | DomainElement;
8567
+ msgVpn: StrField;
8568
+ clientName: StrField;
8569
+ position: Range;
8570
+
8571
+ constructor();
8572
+
8573
+ annotations(): Annotations;
8574
+
8575
+ graph(): Graph;
8576
+
8577
+ link<T>(label: string): T;
8578
+
8579
+ link<T>(): T;
8580
+
8581
+ linkCopy(): SolaceServerBinding;
8582
+
8583
+ withBindingVersion(bindingVersion: string): this;
8584
+
8585
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8586
+
8587
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8588
+
8589
+ withId(id: string): this;
8590
+
8591
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8592
+
8593
+ withMsgVpn(msgVpn: string): this;
8594
+
8595
+ withClientName(clientName: string): this;
8596
+
8597
+ withLinkLabel(label: string): this;
8598
+
8599
+ withLinkTarget(target: undefined): this;
8600
+
8601
+ }
8602
+ export class SolaceServerBinding010 implements ServerBinding {
8603
+ customDomainProperties: Array<DomainExtension>;
8604
+ extendsNode: Array<DomainElement>;
8605
+ id: string;
8606
+ isExternalLink: BoolField;
8607
+ isLink: boolean;
8608
+ linkLabel: StrField;
8609
+ linkTarget: undefined | DomainElement;
8610
+ position: Range;
8611
+
8612
+ constructor();
8613
+
8614
+ annotations(): Annotations;
8615
+
8616
+ graph(): Graph;
8617
+
8618
+ link<T>(label: string): T;
8619
+
8620
+ link<T>(): T;
8621
+
8622
+ linkCopy(): SolaceServerBinding;
8623
+
8624
+ withBindingVersion(bindingVersion: string): this;
8625
+
8626
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8627
+
8628
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8629
+
8630
+ withId(id: string): this;
8631
+
8632
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8633
+
8634
+ withLinkLabel(label: string): this;
8635
+
8636
+ withLinkTarget(target: undefined): this;
8637
+
8638
+ }
8639
+ export class SolaceServerBinding040 implements ServerBinding {
8640
+ customDomainProperties: Array<DomainExtension>;
8641
+ extendsNode: Array<DomainElement>;
8642
+ id: string;
8643
+ isExternalLink: BoolField;
8644
+ isLink: boolean;
8645
+ linkLabel: StrField;
8646
+ linkTarget: undefined | DomainElement;
8647
+ clientName: StrField;
8648
+ position: Range;
8649
+
8650
+ constructor();
8651
+
8652
+ annotations(): Annotations;
8653
+
8654
+ graph(): Graph;
8655
+
8656
+ link<T>(label: string): T;
8657
+
8658
+ link<T>(): T;
8659
+
8660
+ linkCopy(): SolaceServerBinding;
8661
+
8662
+ withBindingVersion(bindingVersion: string): this;
8663
+
8664
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
8665
+
8666
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
8667
+
8668
+ withId(id: string): this;
8669
+
8670
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
8671
+
8672
+ withMsgVpn(msgVpn: string): this;
8673
+
8674
+
8675
+ withLinkLabel(label: string): this;
8676
+
8677
+ withLinkTarget(target: undefined): this;
8678
+
8679
+ }
7659
8680
  export interface Spec {
7660
8681
  readonly id: string;
7661
8682
  isAsync: boolean;