amf-client-js 5.6.0-SNAPSHOT.8 → 5.6.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 -11827
  2. package/package.json +3 -2
  3. package/typings/amf-client-js.d.ts +1498 -397
@@ -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;
@@ -4727,6 +5073,86 @@ declare module "amf-client-js" {
4727
5073
 
4728
5074
  withMaxMessageBytes(maxMessageBytes: number): this;
4729
5075
  }
5076
+ export class KafkaTopicConfiguration040 implements KafkaTopicConfiguration {
5077
+ customDomainProperties: Array<DomainExtension>;
5078
+ extendsNode: Array<DomainElement>;
5079
+ id: string;
5080
+ isExternalLink: BoolField;
5081
+ position: Range;
5082
+ cleanupPolicy: Array<string>;
5083
+ retentionMs: number;
5084
+ retentionBytes: number;
5085
+ deleteRetentionMs: number;
5086
+ maxMessageBytes: number;
5087
+
5088
+ annotations(): Annotations;
5089
+
5090
+ graph(): Graph;
5091
+
5092
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5093
+
5094
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5095
+
5096
+ withId(id: string): this;
5097
+
5098
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5099
+
5100
+ withCleanupPolicy(cleanupPolicy: Array<string>): this;
5101
+
5102
+ withRetentionMs(retentionMs: number): this;
5103
+
5104
+ withRetentionBytes(retentionBytes: number): this;
5105
+
5106
+ withDeleteRetentionMS(deleteRetentionMS: number): this;
5107
+
5108
+ withMaxMessageBytes(maxMessageBytes: number): this;
5109
+ }
5110
+ export class KafkaTopicConfiguration050 implements KafkaTopicConfiguration {
5111
+ customDomainProperties: Array<DomainExtension>;
5112
+ extendsNode: Array<DomainElement>;
5113
+ id: string;
5114
+ isExternalLink: BoolField;
5115
+ position: Range;
5116
+ cleanupPolicy: Array<string>;
5117
+ retentionMs: number;
5118
+ retentionBytes: number;
5119
+ deleteRetentionMs: number;
5120
+ maxMessageBytes: number;
5121
+ confluentKeySchemaValidation: boolean;
5122
+ confluentKeySubjectNameStrategy: string;
5123
+ confluentValueSchemaValidation: boolean;
5124
+ confluentValueSubjectNameStrategy: string;
5125
+
5126
+ annotations(): Annotations;
5127
+
5128
+ graph(): Graph;
5129
+
5130
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5131
+
5132
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5133
+
5134
+ withId(id: string): this;
5135
+
5136
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5137
+
5138
+ withCleanupPolicy(cleanupPolicy: Array<string>): this;
5139
+
5140
+ withRetentionMs(retentionMs: number): this;
5141
+
5142
+ withRetentionBytes(retentionBytes: number): this;
5143
+
5144
+ withDeleteRetentionMS(deleteRetentionMS: number): this;
5145
+
5146
+ withMaxMessageBytes(maxMessageBytes: number): this;
5147
+
5148
+ withConfluentKeySchemaValidation(confluentKeySchemaValidation: string): this;
5149
+
5150
+ withConfluentKeySubjectNameStrategy(confluentKeySubjectNameStrategy: string): this;
5151
+
5152
+ withConfluentValueSchemaValidation(confluentValueSchemaValidation: string): this;
5153
+
5154
+ withConfluentValueSubjectNameStrategy(confluentValueSubjectNameStrategy: string): this;
5155
+ }
4730
5156
  export class Key implements DomainElement {
4731
5157
  components: Array<PropertyShapePath>;
4732
5158
  customDomainProperties: Array<DomainExtension>;
@@ -5078,7 +5504,7 @@ declare module "amf-client-js" {
5078
5504
 
5079
5505
  withLinkTarget(target: undefined): this;
5080
5506
  }
5081
- export class MqttOperationBinding implements OperationBinding {
5507
+ export class MqttMessageBinding010 implements MqttMessageBinding {
5082
5508
  customDomainProperties: Array<DomainExtension>;
5083
5509
  extendsNode: Array<DomainElement>;
5084
5510
  id: string;
@@ -5087,8 +5513,6 @@ declare module "amf-client-js" {
5087
5513
  linkLabel: StrField;
5088
5514
  linkTarget: undefined | DomainElement;
5089
5515
  position: Range;
5090
- qos: IntField;
5091
- retain: BoolField;
5092
5516
 
5093
5517
  constructor();
5094
5518
 
@@ -5100,7 +5524,7 @@ declare module "amf-client-js" {
5100
5524
 
5101
5525
  link<T>(): T;
5102
5526
 
5103
- linkCopy(): MqttOperationBinding;
5527
+ linkCopy(): MqttMessageBinding;
5104
5528
 
5105
5529
  withBindingVersion(bindingVersion: string): this;
5106
5530
 
@@ -5115,24 +5539,21 @@ declare module "amf-client-js" {
5115
5539
  withLinkLabel(label: string): this;
5116
5540
 
5117
5541
  withLinkTarget(target: undefined): this;
5118
-
5119
- withQos(qos: number): this;
5120
-
5121
- withRetain(retain: boolean): this;
5122
5542
  }
5123
- export class MqttServerBinding implements ServerBinding {
5124
- cleanSession: BoolField;
5125
- clientId: StrField;
5543
+ export class MqttMessageBinding020 implements MqttMessageBinding {
5126
5544
  customDomainProperties: Array<DomainExtension>;
5127
5545
  extendsNode: Array<DomainElement>;
5128
5546
  id: string;
5129
5547
  isExternalLink: BoolField;
5130
5548
  isLink: boolean;
5131
- keepAlive: IntField;
5132
- lastWill: MqttServerLastWill;
5133
5549
  linkLabel: StrField;
5134
5550
  linkTarget: undefined | DomainElement;
5135
5551
  position: Range;
5552
+ payloadFormatIndicator: IntField;
5553
+ correlationData: Shape;
5554
+ contentType: StrField;
5555
+ responseTopic: StrField;
5556
+ responseTopicSchema: Shape;
5136
5557
 
5137
5558
  constructor();
5138
5559
 
@@ -5144,14 +5565,10 @@ declare module "amf-client-js" {
5144
5565
 
5145
5566
  link<T>(): T;
5146
5567
 
5147
- linkCopy(): MqttServerBinding;
5568
+ linkCopy(): MqttMessageBinding;
5148
5569
 
5149
5570
  withBindingVersion(bindingVersion: string): this;
5150
5571
 
5151
- withCleanSession(cleanSession: boolean): this;
5152
-
5153
- withClientId(clientId: string): this;
5154
-
5155
5572
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5156
5573
 
5157
5574
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
@@ -5160,24 +5577,31 @@ declare module "amf-client-js" {
5160
5577
 
5161
5578
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5162
5579
 
5163
- withKeepAlive(keepAlive: number): this;
5164
-
5165
- withLastWill(lastWill: MqttServerLastWill): this;
5166
-
5167
5580
  withLinkLabel(label: string): this;
5168
5581
 
5169
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;
5170
5593
  }
5171
- export class MqttServerLastWill implements DomainElement {
5594
+ export class MqttOperationBinding implements OperationBinding {
5172
5595
  customDomainProperties: Array<DomainExtension>;
5173
5596
  extendsNode: Array<DomainElement>;
5174
5597
  id: string;
5175
5598
  isExternalLink: BoolField;
5176
- message: StrField;
5599
+ isLink: boolean;
5600
+ linkLabel: StrField;
5601
+ linkTarget: undefined | DomainElement;
5177
5602
  position: Range;
5178
5603
  qos: IntField;
5179
5604
  retain: BoolField;
5180
- topic: StrField;
5181
5605
 
5182
5606
  constructor();
5183
5607
 
@@ -5185,6 +5609,14 @@ declare module "amf-client-js" {
5185
5609
 
5186
5610
  graph(): Graph;
5187
5611
 
5612
+ link<T>(label: string): T;
5613
+
5614
+ link<T>(): T;
5615
+
5616
+ linkCopy(): MqttOperationBinding;
5617
+
5618
+ withBindingVersion(bindingVersion: string): this;
5619
+
5188
5620
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5189
5621
 
5190
5622
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
@@ -5193,170 +5625,165 @@ declare module "amf-client-js" {
5193
5625
 
5194
5626
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5195
5627
 
5196
- withMessage(message: string): this;
5628
+ withLinkLabel(label: string): this;
5629
+
5630
+ withLinkTarget(target: undefined): this;
5197
5631
 
5198
5632
  withQos(qos: number): this;
5199
5633
 
5200
5634
  withRetain(retain: boolean): this;
5201
-
5202
- withTopic(topic: string): this;
5203
- }
5204
- export class NamedExample extends Fragment {
5205
- constructor();
5206
- }
5207
- export class NilShape extends AnyShape {
5208
- constructor();
5209
-
5210
- linkCopy(): NilShape;
5211
5635
  }
5212
- export class NodeMapping extends AnyMapping implements Linkable {
5213
- closed: BoolField;
5214
- idTemplate: StrField;
5636
+ export class MqttOperationBinding010 implements MqttOperationBinding {
5637
+ customDomainProperties: Array<DomainExtension>;
5638
+ extendsNode: Array<DomainElement>;
5639
+ id: string;
5640
+ isExternalLink: BoolField;
5215
5641
  isLink: boolean;
5216
5642
  linkLabel: StrField;
5217
5643
  linkTarget: undefined | DomainElement;
5218
- mergePolicy: StrField;
5219
- name: StrField;
5220
- nodetypeMapping: StrField;
5644
+ position: Range;
5645
+ qos: IntField;
5646
+ retain: BoolField;
5221
5647
 
5222
5648
  constructor();
5223
5649
 
5650
+ annotations(): Annotations;
5651
+
5652
+ graph(): Graph;
5653
+
5224
5654
  link<T>(label: string): T;
5225
5655
 
5226
5656
  link<T>(): T;
5227
5657
 
5228
- linkCopy(): NodeMapping;
5658
+ linkCopy(): MqttOperationBinding;
5229
5659
 
5230
- propertiesMapping(): Array<PropertyMapping>;
5660
+ withBindingVersion(bindingVersion: string): this;
5231
5661
 
5232
- withIdTemplate(idTemplate: string): NodeMapping;
5662
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5233
5663
 
5234
- withLinkLabel(label: string): this;
5664
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5235
5665
 
5236
- withLinkTarget(target: undefined): this;
5666
+ withId(id: string): this;
5237
5667
 
5238
- withMergePolicy(mergePolicy: string): NodeMapping;
5668
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5239
5669
 
5240
- withName(name: string): NodeMapping;
5670
+ withLinkLabel(label: string): this;
5241
5671
 
5242
- withNodeTypeMapping(nodeType: string): NodeMapping;
5672
+ withLinkTarget(target: undefined): this;
5243
5673
 
5244
- withPropertiesMapping(props: Array<PropertyMapping>): NodeMapping;
5674
+ withQos(qos: number): this;
5675
+
5676
+ withRetain(retain: boolean): this;
5245
5677
  }
5246
- export class NodeShape extends AnyShape {
5247
- additionalPropertiesKeySchema: Shape;
5248
- additionalPropertiesSchema: Shape;
5249
- closed: BoolField;
5250
- dependencies: Array<PropertyDependencies>;
5251
- discriminator: StrField;
5252
- discriminatorMapping: Array<IriTemplateMapping>;
5253
- discriminatorValue: StrField;
5254
- discriminatorValueMapping: Array<DiscriminatorValueMapping>;
5255
- externalProperties: Array<ExternalPropertyShape>;
5256
- isAbstract: BoolField;
5257
- isInputOnly: BoolField;
5258
- keys: undefined;
5259
- maxProperties: IntField;
5260
- minProperties: IntField;
5261
- properties: Array<PropertyShape>;
5262
- propertyNames: Shape;
5263
- schemaDependencies: Array<SchemaDependencies>;
5264
- unevaluatedProperties: boolean;
5265
- 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;
5266
5691
 
5267
5692
  constructor();
5268
5693
 
5269
- linkCopy(): NodeShape;
5694
+ annotations(): Annotations;
5270
5695
 
5271
- withAdditionalPropertiesKeySchema(
5272
- additionalPropertiesKeySchema: Shape
5273
- ): this;
5696
+ graph(): Graph;
5274
5697
 
5275
- withAdditionalPropertiesSchema(additionalPropertiesSchema: Shape): this;
5698
+ link<T>(label: string): T;
5276
5699
 
5277
- withClosed(closed: boolean): this;
5700
+ link<T>(): T;
5278
5701
 
5279
- withDependencies(dependencies: Array<PropertyDependencies>): this;
5702
+ linkCopy(): MqttOperationBinding;
5280
5703
 
5281
- withDependency(): PropertyDependencies;
5704
+ withBindingVersion(bindingVersion: string): this;
5282
5705
 
5283
- withDiscriminator(discriminator: string): this;
5706
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5284
5707
 
5285
- withDiscriminatorMapping(mappings: Array<IriTemplateMapping>): this;
5708
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5286
5709
 
5287
- withDiscriminatorValue(value: string): this;
5710
+ withId(id: string): this;
5288
5711
 
5289
- withExternalProperties(
5290
- externalProperties: Array<ExternalPropertyShape>
5291
- ): this;
5712
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5292
5713
 
5293
- withInheritsObject(name: string): NodeShape;
5714
+ withLinkLabel(label: string): this;
5294
5715
 
5295
- withInheritsScalar(name: string): ScalarShape;
5716
+ withLinkTarget(target: undefined): this;
5296
5717
 
5297
- withIsAbstract(isAbstract: boolean): this;
5718
+ withQos(qos: number): this;
5298
5719
 
5299
- withIsInputOnly(isInputOnly: boolean): this;
5720
+ withRetain(retain: boolean): this;
5300
5721
 
5301
- withKeys(keys: undefined): this;
5722
+ withMessageExpiryInterval(messageExpiryInterval: number): this;
5302
5723
 
5303
- 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;
5304
5739
 
5305
- withMinProperties(min: number): this;
5740
+ constructor();
5306
5741
 
5307
- withProperties(properties: Array<PropertyShape>): this;
5742
+ annotations(): Annotations;
5308
5743
 
5309
- withProperty(name: string): PropertyShape;
5744
+ graph(): Graph;
5310
5745
 
5311
- withPropertyNames(propertyNames: Shape): this;
5746
+ link<T>(label: string): T;
5312
5747
 
5313
- withSchemaDependencies(dependencies: Array<SchemaDependencies>): this;
5748
+ link<T>(): T;
5314
5749
 
5315
- withUnevaluatedProperties(value: boolean): this;
5750
+ linkCopy(): MqttServerBinding;
5316
5751
 
5317
- withUnevaluatedPropertiesSchema(schema: Shape): this;
5318
- }
5319
- export class NormalPriority extends PluginPriority {}
5320
- export class OASConfiguration {
5321
- static OAS(): AMFConfiguration;
5752
+ withBindingVersion(bindingVersion: string): this;
5322
5753
 
5323
- static OAS20(): AMFConfiguration;
5754
+ withCleanSession(cleanSession: boolean): this;
5324
5755
 
5325
- static OAS30(): AMFConfiguration;
5756
+ withClientId(clientId: string): this;
5326
5757
 
5327
- static OAS30Component(): AMFConfiguration;
5758
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5328
5759
 
5329
- static OASComponent(): AMFConfiguration;
5760
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5330
5761
 
5331
- static fromSpec(spec: Spec): AMFConfiguration;
5332
- }
5333
- export class OAuth1Settings extends Settings {
5334
- authorizationUri: StrField;
5335
- requestTokenUri: StrField;
5336
- signatures: Array<StrField>;
5337
- tokenCredentialsUri: StrField;
5762
+ withId(id: string): this;
5338
5763
 
5339
- constructor();
5764
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5340
5765
 
5341
- withAuthorizationUri(authorizationUri: string): this;
5766
+ withKeepAlive(keepAlive: number): this;
5342
5767
 
5343
- withRequestTokenUri(requestTokenUri: string): this;
5768
+ withLastWill(lastWill: MqttServerLastWill): this;
5344
5769
 
5345
- withSignatures(signatures: Array<string>): this;
5770
+ withLinkLabel(label: string): this;
5346
5771
 
5347
- withTokenCredentialsUri(tokenCredentialsUri: string): this;
5772
+ withLinkTarget(target: undefined): this;
5348
5773
  }
5349
- export class OAuth2Flow implements DomainElement {
5350
- accessTokenUri: StrField;
5351
- authorizationUri: StrField;
5774
+ export class MqttServerBinding010 implements MqttServerBinding {
5775
+ cleanSession: BoolField;
5776
+ clientId: StrField;
5352
5777
  customDomainProperties: Array<DomainExtension>;
5353
5778
  extendsNode: Array<DomainElement>;
5354
- flow: StrField;
5355
5779
  id: string;
5356
5780
  isExternalLink: BoolField;
5781
+ isLink: boolean;
5782
+ keepAlive: IntField;
5783
+ lastWill: MqttServerLastWill;
5784
+ linkLabel: StrField;
5785
+ linkTarget: undefined | DomainElement;
5357
5786
  position: Range;
5358
- refreshUri: StrField;
5359
- scopes: Array<Scope>;
5360
5787
 
5361
5788
  constructor();
5362
5789
 
@@ -5364,50 +5791,108 @@ declare module "amf-client-js" {
5364
5791
 
5365
5792
  graph(): Graph;
5366
5793
 
5367
- withAccessTokenUri(accessTokenUri: string): this;
5794
+ link<T>(label: string): T;
5368
5795
 
5369
- 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;
5370
5805
 
5371
5806
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5372
5807
 
5373
5808
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5374
5809
 
5375
- withFlow(flow: string): this;
5376
-
5377
5810
  withId(id: string): this;
5378
5811
 
5379
5812
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5380
5813
 
5381
- withRefreshUri(refreshUri: string): this;
5382
-
5383
- withScopes(scopes: Array<Scope>): this;
5384
- }
5385
- export class OAuth2Settings extends Settings {
5386
- authorizationGrants: Array<StrField>;
5387
- flows: Array<OAuth2Flow>;
5814
+ withKeepAlive(keepAlive: number): this;
5388
5815
 
5389
- constructor();
5816
+ withLastWill(lastWill: MqttServerLastWill): this;
5390
5817
 
5391
- withAuthorizationGrants(grants: Array<string>): this;
5818
+ withLinkLabel(label: string): this;
5392
5819
 
5393
- withFlows(flows: Array<OAuth2Flow>): this;
5820
+ withLinkTarget(target: undefined): this;
5394
5821
  }
5395
- export class ObjectNode implements DataNode {
5822
+ export class MqttServerBinding020 implements MqttServerBinding {
5823
+ cleanSession: BoolField;
5824
+ clientId: StrField;
5396
5825
  customDomainProperties: Array<DomainExtension>;
5397
5826
  extendsNode: Array<DomainElement>;
5398
5827
  id: string;
5399
5828
  isExternalLink: BoolField;
5400
- name: StrField;
5829
+ isLink: boolean;
5830
+ keepAlive: IntField;
5831
+ lastWill: MqttServerLastWill;
5832
+ linkLabel: StrField;
5833
+ linkTarget: undefined | DomainElement;
5401
5834
  position: Range;
5402
- properties: Map<string, DataNode>;
5835
+ sessionExpiryInterval: number;
5836
+ sessionExpiryIntervalSchema: Shape;
5837
+ maximumPacketSize: number;
5838
+ maximumPacketSizeSchema: Shape;
5403
5839
 
5404
5840
  constructor();
5405
5841
 
5406
- addProperty(property: string, node: DataNode): this;
5407
-
5408
5842
  annotations(): Annotations;
5409
5843
 
5410
- getProperty(property: string): undefined | DataNode;
5844
+ graph(): Graph;
5845
+
5846
+ link<T>(label: string): T;
5847
+
5848
+ link<T>(): T;
5849
+
5850
+ linkCopy(): MqttServerBinding;
5851
+
5852
+ withBindingVersion(bindingVersion: string): this;
5853
+
5854
+ withCleanSession(cleanSession: boolean): this;
5855
+
5856
+ withClientId(clientId: string): this;
5857
+
5858
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
5859
+
5860
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5861
+
5862
+ withId(id: string): this;
5863
+
5864
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
5865
+
5866
+ withKeepAlive(keepAlive: number): this;
5867
+
5868
+ withLastWill(lastWill: MqttServerLastWill): this;
5869
+
5870
+ withLinkLabel(label: string): this;
5871
+
5872
+ withLinkTarget(target: undefined): this;
5873
+
5874
+ withSessionExpiryInterval(sessionExpiryInterval: number): this;
5875
+
5876
+ withSessionExpiryIntervalSchema(sessionExpiryIntervalSchema: Shape): this;
5877
+
5878
+ withMaximumPacketSize(maximumPacketSize: number): this;
5879
+
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;
5892
+
5893
+ constructor();
5894
+
5895
+ annotations(): Annotations;
5411
5896
 
5412
5897
  graph(): Graph;
5413
5898
 
@@ -5419,43 +5904,31 @@ declare module "amf-client-js" {
5419
5904
 
5420
5905
  withIsExternalLink(isExternalLink: boolean): DomainElement;
5421
5906
 
5422
- withName(name: string): this;
5907
+ withMessage(message: string): this;
5908
+
5909
+ withQos(qos: number): this;
5910
+
5911
+ withRetain(retain: boolean): this;
5912
+
5913
+ withTopic(topic: string): this;
5423
5914
  }
5424
- export class ObjectPropertyTerm extends PropertyTerm {
5915
+ export class NamedExample extends Fragment {
5425
5916
  constructor();
5426
5917
  }
5427
- export class OpenIdConnectSettings extends Settings {
5428
- scopes: Array<Scope>;
5429
- url: StrField;
5430
-
5918
+ export class NilShape extends AnyShape {
5431
5919
  constructor();
5432
5920
 
5433
- withScopes(scopes: Array<Scope>): this;
5434
-
5435
- withUrl(url: string): this;
5921
+ linkCopy(): NilShape;
5436
5922
  }
5437
- export class Operation extends AbstractOperation implements Linkable {
5438
- accepts: Array<StrField>;
5439
- bindings: OperationBindings;
5440
- callbacks: Array<Callback>;
5441
- contentType: Array<StrField>;
5442
- deprecated: BoolField;
5443
- documentation: CreativeWork;
5444
- federationMetadata: OperationFederationMetadata;
5445
- isAbstract: BoolField;
5923
+ export class NodeMapping extends AnyMapping implements Linkable {
5924
+ closed: BoolField;
5925
+ idTemplate: StrField;
5446
5926
  isLink: boolean;
5447
5927
  linkLabel: StrField;
5448
5928
  linkTarget: undefined | DomainElement;
5449
- operationId: StrField;
5450
- request: Request;
5451
- requests: Array<Request>;
5452
- response: Response;
5453
- responses: Array<Response>;
5454
- schemes: Array<StrField>;
5455
- security: Array<SecurityRequirement>;
5456
- servers: Array<Server>;
5457
- summary: StrField;
5458
- tags: Array<Tag>;
5929
+ mergePolicy: StrField;
5930
+ name: StrField;
5931
+ nodetypeMapping: StrField;
5459
5932
 
5460
5933
  constructor();
5461
5934
 
@@ -5463,119 +5936,138 @@ declare module "amf-client-js" {
5463
5936
 
5464
5937
  link<T>(): T;
5465
5938
 
5466
- linkCopy(): Operation;
5939
+ linkCopy(): NodeMapping;
5467
5940
 
5468
- withAbstract(abs: boolean): this;
5941
+ propertiesMapping(): Array<PropertyMapping>;
5469
5942
 
5470
- withAccepts(accepts: Array<string>): this;
5943
+ withIdTemplate(idTemplate: string): NodeMapping;
5471
5944
 
5472
- withBindings(bindings: OperationBindings): this;
5945
+ withLinkLabel(label: string): this;
5473
5946
 
5474
- withCallback(name: string): Callback;
5947
+ withLinkTarget(target: undefined): this;
5475
5948
 
5476
- withCallbacks(callbacks: Array<Callback>): this;
5949
+ withMergePolicy(mergePolicy: string): NodeMapping;
5477
5950
 
5478
- withContentType(contentType: Array<string>): this;
5951
+ withName(name: string): NodeMapping;
5479
5952
 
5480
- withDeprecated(deprecated: boolean): this;
5953
+ withNodeTypeMapping(nodeType: string): NodeMapping;
5481
5954
 
5482
- withDocumentation(documentation: CreativeWork): this;
5955
+ withPropertiesMapping(props: Array<PropertyMapping>): NodeMapping;
5956
+ }
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;
5483
5977
 
5484
- withFederationMetadata(
5485
- federationMetadata: OperationFederationMetadata
5486
- ): this;
5978
+ constructor();
5487
5979
 
5488
- withLinkLabel(label: string): this;
5980
+ linkCopy(): NodeShape;
5489
5981
 
5490
- withLinkTarget(target: undefined): this;
5982
+ withAdditionalPropertiesKeySchema(
5983
+ additionalPropertiesKeySchema: Shape
5984
+ ): this;
5491
5985
 
5492
- withOperationId(operationId: string): this;
5986
+ withAdditionalPropertiesSchema(additionalPropertiesSchema: Shape): this;
5493
5987
 
5494
- withRequest(request: Request): this;
5988
+ withClosed(closed: boolean): this;
5495
5989
 
5496
- withRequest(): Request;
5990
+ withDependencies(dependencies: Array<PropertyDependencies>): this;
5497
5991
 
5498
- withRequests(requests: Array<Request>): this;
5992
+ withDependency(): PropertyDependencies;
5499
5993
 
5500
- withResponse(name: string): Response;
5994
+ withDiscriminator(discriminator: string): this;
5501
5995
 
5502
- withResponses(responses: Array<Response>): this;
5996
+ withDiscriminatorMapping(mappings: Array<IriTemplateMapping>): this;
5503
5997
 
5504
- withSchemes(schemes: Array<string>): this;
5998
+ withDiscriminatorValue(value: string): this;
5505
5999
 
5506
- withSecurity(security: Array<SecurityRequirement>): this;
6000
+ withExternalProperties(
6001
+ externalProperties: Array<ExternalPropertyShape>
6002
+ ): this;
5507
6003
 
5508
- withServer(name: string): Server;
6004
+ withInheritsObject(name: string): NodeShape;
5509
6005
 
5510
- withServers(servers: Array<Server>): this;
6006
+ withInheritsScalar(name: string): ScalarShape;
5511
6007
 
5512
- withSummary(summary: string): this;
6008
+ withIsAbstract(isAbstract: boolean): this;
5513
6009
 
5514
- withTags(tags: Array<Tag>): this;
5515
- }
5516
- export interface OperationBinding extends DomainElement, Linkable {}
5517
- export class OperationBindings implements DomainElement, Linkable {
5518
- bindings: Array<OperationBinding>;
5519
- customDomainProperties: Array<DomainExtension>;
5520
- extendsNode: Array<DomainElement>;
5521
- id: string;
5522
- isExternalLink: BoolField;
5523
- isLink: boolean;
5524
- linkLabel: StrField;
5525
- linkTarget: undefined | DomainElement;
5526
- name: StrField;
5527
- position: Range;
6010
+ withIsInputOnly(isInputOnly: boolean): this;
5528
6011
 
5529
- constructor();
6012
+ withKeys(keys: undefined): this;
5530
6013
 
5531
- annotations(): Annotations;
6014
+ withMaxProperties(max: number): this;
5532
6015
 
5533
- graph(): Graph;
6016
+ withMinProperties(min: number): this;
5534
6017
 
5535
- link<T>(label: string): T;
6018
+ withProperties(properties: Array<PropertyShape>): this;
5536
6019
 
5537
- link<T>(): T;
6020
+ withProperty(name: string): PropertyShape;
5538
6021
 
5539
- linkCopy(): OperationBindings;
6022
+ withPropertyNames(propertyNames: Shape): this;
5540
6023
 
5541
- withBindings(bindings: Array<OperationBinding>): this;
6024
+ withSchemaDependencies(dependencies: Array<SchemaDependencies>): this;
5542
6025
 
5543
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6026
+ withUnevaluatedProperties(value: boolean): this;
5544
6027
 
5545
- withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6028
+ withUnevaluatedPropertiesSchema(schema: Shape): this;
6029
+ }
6030
+ export class NormalPriority extends PluginPriority {}
6031
+ export class OASConfiguration {
6032
+ static OAS(): AMFConfiguration;
5546
6033
 
5547
- withId(id: string): this;
6034
+ static OAS20(): AMFConfiguration;
5548
6035
 
5549
- withIsExternalLink(isExternalLink: boolean): DomainElement;
6036
+ static OAS30(): AMFConfiguration;
5550
6037
 
5551
- withLinkLabel(label: string): this;
6038
+ static OAS30Component(): AMFConfiguration;
5552
6039
 
5553
- withLinkTarget(target: undefined): this;
6040
+ static OASComponent(): AMFConfiguration;
5554
6041
 
5555
- withName(name: string): this;
6042
+ static fromSpec(spec: Spec): AMFConfiguration;
5556
6043
  }
5557
- export class OperationFederationMetadata {
5558
- federationMethod: StrField;
5559
- keyMappings: Array<ParameterKeyMapping>;
5560
- providedEntity: NodeShape;
6044
+ export class OAuth1Settings extends Settings {
6045
+ authorizationUri: StrField;
6046
+ requestTokenUri: StrField;
6047
+ signatures: Array<StrField>;
6048
+ tokenCredentialsUri: StrField;
5561
6049
 
5562
6050
  constructor();
5563
6051
 
5564
- withFederationMethod(federationMethod: string): this;
6052
+ withAuthorizationUri(authorizationUri: string): this;
5565
6053
 
5566
- withKeyMappings(keyMappings: Array<ParameterKeyMapping>): this;
6054
+ withRequestTokenUri(requestTokenUri: string): this;
5567
6055
 
5568
- withProvidedEntity(providedEntity: NodeShape): this;
6056
+ withSignatures(signatures: Array<string>): this;
6057
+
6058
+ withTokenCredentialsUri(tokenCredentialsUri: string): this;
5569
6059
  }
5570
- export class Organization implements DomainElement {
6060
+ export class OAuth2Flow implements DomainElement {
6061
+ accessTokenUri: StrField;
6062
+ authorizationUri: StrField;
5571
6063
  customDomainProperties: Array<DomainExtension>;
5572
- email: StrField;
5573
6064
  extendsNode: Array<DomainElement>;
6065
+ flow: StrField;
5574
6066
  id: string;
5575
6067
  isExternalLink: BoolField;
5576
- name: StrField;
5577
6068
  position: Range;
5578
- url: StrField;
6069
+ refreshUri: StrField;
6070
+ scopes: Array<Scope>;
5579
6071
 
5580
6072
  constructor();
5581
6073
 
@@ -5583,9 +6075,228 @@ declare module "amf-client-js" {
5583
6075
 
5584
6076
  graph(): Graph;
5585
6077
 
5586
- withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6078
+ withAccessTokenUri(accessTokenUri: string): this;
5587
6079
 
5588
- withEmail(email: string): this;
6080
+ withAuthorizationUri(authorizationUri: string): this;
6081
+
6082
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6083
+
6084
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6085
+
6086
+ withFlow(flow: string): this;
6087
+
6088
+ withId(id: string): this;
6089
+
6090
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6091
+
6092
+ withRefreshUri(refreshUri: string): this;
6093
+
6094
+ withScopes(scopes: Array<Scope>): this;
6095
+ }
6096
+ export class OAuth2Settings extends Settings {
6097
+ authorizationGrants: Array<StrField>;
6098
+ flows: Array<OAuth2Flow>;
6099
+
6100
+ constructor();
6101
+
6102
+ withAuthorizationGrants(grants: Array<string>): this;
6103
+
6104
+ withFlows(flows: Array<OAuth2Flow>): this;
6105
+ }
6106
+ export class ObjectNode implements DataNode {
6107
+ customDomainProperties: Array<DomainExtension>;
6108
+ extendsNode: Array<DomainElement>;
6109
+ id: string;
6110
+ isExternalLink: BoolField;
6111
+ name: StrField;
6112
+ position: Range;
6113
+ properties: Map<string, DataNode>;
6114
+
6115
+ constructor();
6116
+
6117
+ addProperty(property: string, node: DataNode): this;
6118
+
6119
+ annotations(): Annotations;
6120
+
6121
+ getProperty(property: string): undefined | DataNode;
6122
+
6123
+ graph(): Graph;
6124
+
6125
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6126
+
6127
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6128
+
6129
+ withId(id: string): this;
6130
+
6131
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6132
+
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;
6141
+
6142
+ constructor();
6143
+
6144
+ withScopes(scopes: Array<Scope>): this;
6145
+
6146
+ withUrl(url: string): this;
6147
+ }
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>;
6230
+ customDomainProperties: Array<DomainExtension>;
6231
+ extendsNode: Array<DomainElement>;
6232
+ id: string;
6233
+ isExternalLink: BoolField;
6234
+ isLink: boolean;
6235
+ linkLabel: StrField;
6236
+ linkTarget: undefined | DomainElement;
6237
+ name: StrField;
6238
+ position: Range;
6239
+
6240
+ constructor();
6241
+
6242
+ annotations(): Annotations;
6243
+
6244
+ graph(): Graph;
6245
+
6246
+ link<T>(label: string): T;
6247
+
6248
+ link<T>(): T;
6249
+
6250
+ linkCopy(): OperationBindings;
6251
+
6252
+ withBindings(bindings: Array<OperationBinding>): this;
6253
+
6254
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6255
+
6256
+ withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
6257
+
6258
+ withId(id: string): this;
6259
+
6260
+ withIsExternalLink(isExternalLink: boolean): DomainElement;
6261
+
6262
+ withLinkLabel(label: string): this;
6263
+
6264
+ withLinkTarget(target: undefined): this;
6265
+
6266
+ withName(name: string): this;
6267
+ }
6268
+ export class OperationFederationMetadata {
6269
+ federationMethod: StrField;
6270
+ keyMappings: Array<ParameterKeyMapping>;
6271
+ providedEntity: NodeShape;
6272
+
6273
+ constructor();
6274
+
6275
+ withFederationMethod(federationMethod: string): this;
6276
+
6277
+ withKeyMappings(keyMappings: Array<ParameterKeyMapping>): this;
6278
+
6279
+ withProvidedEntity(providedEntity: NodeShape): this;
6280
+ }
6281
+ export class Organization implements DomainElement {
6282
+ customDomainProperties: Array<DomainExtension>;
6283
+ email: StrField;
6284
+ extendsNode: Array<DomainElement>;
6285
+ id: string;
6286
+ isExternalLink: BoolField;
6287
+ name: StrField;
6288
+ position: Range;
6289
+ url: StrField;
6290
+
6291
+ constructor();
6292
+
6293
+ annotations(): Annotations;
6294
+
6295
+ graph(): Graph;
6296
+
6297
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
6298
+
6299
+ withEmail(email: string): this;
5589
6300
 
5590
6301
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
5591
6302
 
@@ -5935,6 +6646,7 @@ declare module "amf-client-js" {
5935
6646
  static readonly GRAPHQL_FEDERATION: ProfileName;
5936
6647
  static readonly GRPC: ProfileName;
5937
6648
  static readonly JSONSCHEMA: ProfileName;
6649
+ static readonly AVROSCHEMA: ProfileName;
5938
6650
  static readonly OAS20: ProfileName;
5939
6651
  static readonly OAS30: ProfileName;
5940
6652
  static readonly PAYLOAD: ProfileName;
@@ -7365,154 +8077,423 @@ declare module "amf-client-js" {
7365
8077
  extendsNode: Array<DomainElement>;
7366
8078
  id: string;
7367
8079
  isExternalLink: BoolField;
7368
- name: StrField;
7369
- position: Range;
7370
- queryParameters: Array<ShapeParameter>;
7371
-
7372
- 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;
7373
8398
 
8399
+ position: Range;
7374
8400
  annotations(): Annotations;
7375
-
7376
8401
  graph(): Graph;
7377
-
7378
8402
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7379
-
8403
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7380
8404
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7381
-
7382
8405
  withId(id: string): this;
7383
-
7384
8406
  withIsExternalLink(isExternalLink: boolean): DomainElement;
8407
+ }
8408
+ export class SolaceOperationDestination030 implements SolaceOperationDestination {
7385
8409
 
7386
- withName(name: string): this;
8410
+ destinationType: StrField;
8411
+ deliveryMode: StrField;
8412
+ queue: SolaceOperationQueue030;
8413
+ topic: SolaceOperationTopic;
8414
+ destinations: Array<SolaceOperationDestination030>;
7387
8415
 
7388
- 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;
7389
8421
 
7390
- withQueryParameters(parameters: Array<ShapeParameter>): this;
7391
- }
7392
- export class ShapeResponse implements AbstractResponse {
7393
8422
  customDomainProperties: Array<DomainExtension>;
7394
8423
  extendsNode: Array<DomainElement>;
7395
8424
  id: string;
7396
8425
  isExternalLink: BoolField;
7397
- name: StrField;
7398
- payload: ShapePayload;
7399
8426
  position: Range;
7400
8427
 
7401
- constructor();
7402
-
7403
8428
  annotations(): Annotations;
7404
-
7405
8429
  graph(): Graph;
7406
-
7407
8430
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7408
-
8431
+ withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7409
8432
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7410
-
7411
8433
  withId(id: string): this;
7412
-
7413
8434
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7414
-
7415
- withName(name: string): this;
7416
-
7417
- withPayload(payload: ShapePayload): ShapePayload;
7418
- }
7419
- export class ShapeValidationConfiguration {
7420
- readonly maxYamlReferences: undefined | number;
7421
-
7422
- static apply(config: AMFGraphConfiguration): ShapeValidationConfiguration;
7423
-
7424
- eh(): ClientErrorHandler;
7425
-
7426
- fetchContent(url: string): Promise<Content>;
7427
-
7428
- static predefined(): ShapeValidationConfiguration;
7429
8435
  }
7430
- export class ShapesConfiguration extends BaseShapesConfiguration {
7431
- baseUnitClient(): AMLBaseUnitClient;
7432
-
7433
- configurationState(): AMLConfigurationState;
7434
-
7435
- elementClient(): ShapesElementClient;
7436
-
7437
- static empty(): ShapesConfiguration;
7438
-
7439
- forInstance(url: string): Promise<ShapesConfiguration>;
7440
-
7441
- static predefined(): ShapesConfiguration;
8436
+ export class SolaceOperationDestination040 implements SolaceOperationDestination {
7442
8437
 
7443
- withDialect(dialect: Dialect): ShapesConfiguration;
7444
-
7445
- withDialect(url: string): Promise<ShapesConfiguration>;
7446
-
7447
- withErrorHandlerProvider(
7448
- provider: ErrorHandlerProvider
7449
- ): ShapesConfiguration;
7450
-
7451
- withEventListener(listener: AMFEventListener): ShapesConfiguration;
7452
-
7453
- withParsingOptions(parsingOptions: ParsingOptions): ShapesConfiguration;
7454
-
7455
- withRenderOptions(renderOptions: RenderOptions): ShapesConfiguration;
7456
-
7457
- withResourceLoader(rl: ResourceLoader): ShapesConfiguration;
7458
-
7459
- withResourceLoaders(rl: Array<ResourceLoader>): ShapesConfiguration;
8438
+ destinationType: StrField;
8439
+ deliveryMode: StrField;
8440
+ queue: SolaceOperationQueue030;
8441
+ topic: SolaceOperationTopic;
8442
+ destinations: Array<SolaceOperationDestination040>;
7460
8443
 
7461
- withShapePayloadPlugin(
7462
- plugin: AMFShapePayloadValidationPlugin
7463
- ): 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;
7464
8449
 
7465
- withTransformationPipeline(
7466
- pipeline: TransformationPipeline
7467
- ): ShapesConfiguration;
8450
+ customDomainProperties: Array<DomainExtension>;
8451
+ extendsNode: Array<DomainElement>;
8452
+ id: string;
8453
+ isExternalLink: BoolField;
8454
+ position: Range;
7468
8455
 
7469
- withUnitCache(cache: UnitCache): ShapesConfiguration;
7470
- }
7471
- export class ShapesElementClient extends BaseShapesElementClient {
7472
- 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;
7473
8463
  }
7474
- export class SkippedValidationPluginEvent {}
7475
- export class SolaceOperationBinding implements OperationBinding {
8464
+ export class SolaceOperationQueue implements DomainElement {
7476
8465
 
7477
- destinations: Array<SolaceOperationDestination>;
7478
- bindingVersion: StrField;
8466
+ topicSubscriptions: Array<StrField>;
8467
+ accessType: StrField;
8468
+ name: StrField;
7479
8469
 
7480
- withDestinations(destinations: Array<SolaceOperationDestination>): this;
7481
- withBindingVersion(bindingVersion: string): this;
8470
+ withTopicSubscriptions(topicSubscriptions: Array<string>): this;
8471
+ withAccessType(accessType: string): this;
8472
+ withName(name: string): this;
7482
8473
 
7483
8474
  customDomainProperties: Array<DomainExtension>;
7484
8475
  extendsNode: Array<DomainElement>;
7485
8476
  id: string;
7486
8477
  isExternalLink: BoolField;
7487
- isLink: boolean;
7488
- linkLabel: StrField;
7489
- linkTarget: DomainElement | undefined;
7490
8478
  position: Range;
7491
8479
 
7492
8480
  annotations(): Annotations;
7493
8481
  graph(): Graph;
7494
- link<T>(): T;
7495
- link<T>(label: string): T;
7496
- linkCopy(): Linkable;
7497
8482
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7498
8483
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
7499
8484
  withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
7500
8485
  withId(id: string): this;
7501
8486
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7502
- withLinkLabel(label: string): this;
7503
- withLinkTarget(target: undefined): this;
7504
8487
  }
7505
- export class SolaceOperationDestination implements DomainElement {
8488
+ export class SolaceOperationQueue010 implements SolaceOperationQueue {
7506
8489
 
7507
- destinationType: StrField;
7508
- deliveryMode: StrField;
7509
- queue: SolaceOperationQueue;
7510
- topic: SolaceOperationTopic;
8490
+ topicSubscriptions: Array<StrField>;
8491
+ accessType: StrField;
8492
+ name: StrField;
7511
8493
 
7512
- withDestinationType(destinationType: string): this;
7513
- withDeliveryMode(deliveryMode: string): this;
7514
- withQueue(queue: SolaceOperationQueue): this;
7515
- withTopic(topic: SolaceOperationTopic): this;
8494
+ withTopicSubscriptions(topicSubscriptions: Array<string>): this;
8495
+ withAccessType(accessType: string): this;
8496
+ withName(name: string): this;
7516
8497
 
7517
8498
  customDomainProperties: Array<DomainExtension>;
7518
8499
  extendsNode: Array<DomainElement>;
@@ -7528,7 +8509,7 @@ declare module "amf-client-js" {
7528
8509
  withId(id: string): this;
7529
8510
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7530
8511
  }
7531
- export class SolaceOperationQueue implements DomainElement {
8512
+ export class SolaceOperationQueue030 implements SolaceOperationQueue {
7532
8513
 
7533
8514
  topicSubscriptions: Array<StrField>;
7534
8515
  accessType: StrField;
@@ -7559,7 +8540,6 @@ declare module "amf-client-js" {
7559
8540
  export class SolaceOperationTopic implements DomainElement {
7560
8541
 
7561
8542
  topicSubscriptions: Array<StrField>;
7562
-
7563
8543
  withTopicSubscriptions(topicSubscriptions: Array<string>): this;
7564
8544
 
7565
8545
  customDomainProperties: Array<DomainExtension>;
@@ -7576,6 +8556,127 @@ declare module "amf-client-js" {
7576
8556
  withId(id: string): this;
7577
8557
  withIsExternalLink(isExternalLink: boolean): DomainElement;
7578
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
+ }
7579
8680
  export interface Spec {
7580
8681
  readonly id: string;
7581
8682
  isAsync: boolean;