amf-client-js 5.6.0-SNAPSHOT.5 → 5.6.0-SNAPSHOT.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/amf.js +11765 -11662
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +301 -5
package/package.json
CHANGED
|
@@ -3866,7 +3866,6 @@ declare module "amf-client-js" {
|
|
|
3866
3866
|
withScheme(scheme: string): this;
|
|
3867
3867
|
}
|
|
3868
3868
|
export class IBMMQChannelBinding implements ChannelBinding {
|
|
3869
|
-
|
|
3870
3869
|
destinationType: StrField;
|
|
3871
3870
|
queue: IBMMQChannelQueue;
|
|
3872
3871
|
topic: IBMMQChannelTopic;
|
|
@@ -3894,7 +3893,6 @@ declare module "amf-client-js" {
|
|
|
3894
3893
|
link<T>(label: string): T;
|
|
3895
3894
|
linkCopy(): Linkable;
|
|
3896
3895
|
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3897
|
-
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3898
3896
|
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
3899
3897
|
withId(id: string): this;
|
|
3900
3898
|
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
@@ -3922,13 +3920,11 @@ declare module "amf-client-js" {
|
|
|
3922
3920
|
annotations(): Annotations;
|
|
3923
3921
|
graph(): Graph;
|
|
3924
3922
|
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3925
|
-
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3926
3923
|
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
3927
3924
|
withId(id: string): this;
|
|
3928
3925
|
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
3929
3926
|
}
|
|
3930
3927
|
export class IBMMQChannelTopic implements DomainElement {
|
|
3931
|
-
|
|
3932
3928
|
string: StrField;
|
|
3933
3929
|
objectName: StrField;
|
|
3934
3930
|
durablePermitted: BoolField;
|
|
@@ -3950,7 +3946,6 @@ declare module "amf-client-js" {
|
|
|
3950
3946
|
annotations(): Annotations;
|
|
3951
3947
|
graph(): Graph;
|
|
3952
3948
|
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3953
|
-
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
3954
3949
|
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
3955
3950
|
withId(id: string): this;
|
|
3956
3951
|
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
@@ -4389,6 +4384,93 @@ declare module "amf-client-js" {
|
|
|
4389
4384
|
|
|
4390
4385
|
withLinkTarget(target: undefined): this;
|
|
4391
4386
|
}
|
|
4387
|
+
export class KafkaMessageBinding010 implements KafkaMessageBinding {
|
|
4388
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4389
|
+
extendsNode: Array<DomainElement>;
|
|
4390
|
+
id: string;
|
|
4391
|
+
isExternalLink: BoolField;
|
|
4392
|
+
isLink: boolean;
|
|
4393
|
+
linkLabel: StrField;
|
|
4394
|
+
linkTarget: undefined | DomainElement;
|
|
4395
|
+
messageKey: Shape;
|
|
4396
|
+
position: Range;
|
|
4397
|
+
|
|
4398
|
+
constructor();
|
|
4399
|
+
|
|
4400
|
+
annotations(): Annotations;
|
|
4401
|
+
|
|
4402
|
+
graph(): Graph;
|
|
4403
|
+
|
|
4404
|
+
link<T>(label: string): T;
|
|
4405
|
+
|
|
4406
|
+
link<T>(): T;
|
|
4407
|
+
|
|
4408
|
+
linkCopy(): KafkaMessageBinding;
|
|
4409
|
+
|
|
4410
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4411
|
+
|
|
4412
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4413
|
+
|
|
4414
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4415
|
+
|
|
4416
|
+
withId(id: string): this;
|
|
4417
|
+
|
|
4418
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4419
|
+
|
|
4420
|
+
withKey(key: Shape): this;
|
|
4421
|
+
|
|
4422
|
+
withLinkLabel(label: string): this;
|
|
4423
|
+
|
|
4424
|
+
withLinkTarget(target: undefined): this;
|
|
4425
|
+
}
|
|
4426
|
+
export class KafkaMessageBinding030 implements KafkaMessageBinding {
|
|
4427
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4428
|
+
extendsNode: Array<DomainElement>;
|
|
4429
|
+
id: string;
|
|
4430
|
+
isExternalLink: BoolField;
|
|
4431
|
+
isLink: boolean;
|
|
4432
|
+
linkLabel: StrField;
|
|
4433
|
+
linkTarget: undefined | DomainElement;
|
|
4434
|
+
messageKey: Shape;
|
|
4435
|
+
schemaIdLocation: string;
|
|
4436
|
+
schemaIdPayloadEncoding: string;
|
|
4437
|
+
schemaLookupStrategy: string;
|
|
4438
|
+
position: Range;
|
|
4439
|
+
|
|
4440
|
+
constructor();
|
|
4441
|
+
|
|
4442
|
+
annotations(): Annotations;
|
|
4443
|
+
|
|
4444
|
+
graph(): Graph;
|
|
4445
|
+
|
|
4446
|
+
link<T>(label: string): T;
|
|
4447
|
+
|
|
4448
|
+
link<T>(): T;
|
|
4449
|
+
|
|
4450
|
+
linkCopy(): KafkaMessageBinding;
|
|
4451
|
+
|
|
4452
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4453
|
+
|
|
4454
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4455
|
+
|
|
4456
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4457
|
+
|
|
4458
|
+
withId(id: string): this;
|
|
4459
|
+
|
|
4460
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4461
|
+
|
|
4462
|
+
withKey(key: Shape): this;
|
|
4463
|
+
|
|
4464
|
+
withSchemaIdLocation(schemaIdLocation: string): this
|
|
4465
|
+
|
|
4466
|
+
withSchemaIdPayloadEncoding(schemaIdPayloadEncoding: string): this
|
|
4467
|
+
|
|
4468
|
+
withSchemaLookupStrategy(schemaLookupStrategy: string): this
|
|
4469
|
+
|
|
4470
|
+
withLinkLabel(label: string): this;
|
|
4471
|
+
|
|
4472
|
+
withLinkTarget(target: undefined): this;
|
|
4473
|
+
}
|
|
4392
4474
|
export class KafkaOperationBinding implements OperationBinding {
|
|
4393
4475
|
clientId: Shape;
|
|
4394
4476
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -4431,6 +4513,220 @@ declare module "amf-client-js" {
|
|
|
4431
4513
|
|
|
4432
4514
|
withLinkTarget(target: undefined): this;
|
|
4433
4515
|
}
|
|
4516
|
+
export class KafkaServerBinding implements ServerBinding {
|
|
4517
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4518
|
+
extendsNode: Array<DomainElement>;
|
|
4519
|
+
id: string;
|
|
4520
|
+
isExternalLink: BoolField;
|
|
4521
|
+
isLink: boolean;
|
|
4522
|
+
linkLabel: StrField;
|
|
4523
|
+
linkTarget: undefined | DomainElement;
|
|
4524
|
+
position: Range;
|
|
4525
|
+
schemaRegistryUrl: string;
|
|
4526
|
+
schemaRegistryVendor: string;
|
|
4527
|
+
|
|
4528
|
+
constructor();
|
|
4529
|
+
|
|
4530
|
+
annotations(): Annotations;
|
|
4531
|
+
|
|
4532
|
+
graph(): Graph;
|
|
4533
|
+
|
|
4534
|
+
link<T>(label: string): T;
|
|
4535
|
+
|
|
4536
|
+
link<T>(): T;
|
|
4537
|
+
|
|
4538
|
+
linkCopy(): KafkaOperationBinding;
|
|
4539
|
+
|
|
4540
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4541
|
+
|
|
4542
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4543
|
+
|
|
4544
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4545
|
+
|
|
4546
|
+
withId(id: string): this;
|
|
4547
|
+
|
|
4548
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4549
|
+
|
|
4550
|
+
withLinkLabel(label: string): this;
|
|
4551
|
+
|
|
4552
|
+
withLinkTarget(target: undefined): this;
|
|
4553
|
+
|
|
4554
|
+
withSchemaRegistryUrl(schemaRegistryUrl: string): this;
|
|
4555
|
+
|
|
4556
|
+
withSchemaRegistryVendor(schemaRegistryVendor: string): this;
|
|
4557
|
+
}
|
|
4558
|
+
export class KafkaChannelBinding implements ChannelBinding {
|
|
4559
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4560
|
+
extendsNode: Array<DomainElement>;
|
|
4561
|
+
id: string;
|
|
4562
|
+
isExternalLink: BoolField;
|
|
4563
|
+
isLink: boolean;
|
|
4564
|
+
linkLabel: StrField;
|
|
4565
|
+
linkTarget: undefined | DomainElement;
|
|
4566
|
+
position: Range;
|
|
4567
|
+
topic: string;
|
|
4568
|
+
partitions: number;
|
|
4569
|
+
replicas: number;
|
|
4570
|
+
|
|
4571
|
+
constructor();
|
|
4572
|
+
|
|
4573
|
+
annotations(): Annotations;
|
|
4574
|
+
|
|
4575
|
+
graph(): Graph;
|
|
4576
|
+
|
|
4577
|
+
link<T>(label: string): T;
|
|
4578
|
+
|
|
4579
|
+
link<T>(): T;
|
|
4580
|
+
|
|
4581
|
+
linkCopy(): KafkaOperationBinding;
|
|
4582
|
+
|
|
4583
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4584
|
+
|
|
4585
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4586
|
+
|
|
4587
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4588
|
+
|
|
4589
|
+
withId(id: string): this;
|
|
4590
|
+
|
|
4591
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4592
|
+
|
|
4593
|
+
withLinkLabel(label: string): this;
|
|
4594
|
+
|
|
4595
|
+
withLinkTarget(target: undefined): this;
|
|
4596
|
+
|
|
4597
|
+
withTopic(topic: string): this;
|
|
4598
|
+
|
|
4599
|
+
withPartitions(partitions: number): this;
|
|
4600
|
+
|
|
4601
|
+
withReplicas(replicas: number): this;
|
|
4602
|
+
}
|
|
4603
|
+
export class KafkaChannelBinding030 implements KafkaChannelBinding {
|
|
4604
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4605
|
+
extendsNode: Array<DomainElement>;
|
|
4606
|
+
id: string;
|
|
4607
|
+
isExternalLink: BoolField;
|
|
4608
|
+
isLink: boolean;
|
|
4609
|
+
linkLabel: StrField;
|
|
4610
|
+
linkTarget: undefined | DomainElement;
|
|
4611
|
+
position: Range;
|
|
4612
|
+
topic: string;
|
|
4613
|
+
partitions: number;
|
|
4614
|
+
replicas: number;
|
|
4615
|
+
|
|
4616
|
+
constructor();
|
|
4617
|
+
|
|
4618
|
+
annotations(): Annotations;
|
|
4619
|
+
|
|
4620
|
+
graph(): Graph;
|
|
4621
|
+
|
|
4622
|
+
link<T>(label: string): T;
|
|
4623
|
+
|
|
4624
|
+
link<T>(): T;
|
|
4625
|
+
|
|
4626
|
+
linkCopy(): KafkaOperationBinding;
|
|
4627
|
+
|
|
4628
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4629
|
+
|
|
4630
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4631
|
+
|
|
4632
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4633
|
+
|
|
4634
|
+
withId(id: string): this;
|
|
4635
|
+
|
|
4636
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4637
|
+
|
|
4638
|
+
withLinkLabel(label: string): this;
|
|
4639
|
+
|
|
4640
|
+
withLinkTarget(target: undefined): this;
|
|
4641
|
+
|
|
4642
|
+
withTopic(topic: string): this;
|
|
4643
|
+
|
|
4644
|
+
withPartitions(partitions: number): this;
|
|
4645
|
+
|
|
4646
|
+
withReplicas(replicas: number): this;
|
|
4647
|
+
}
|
|
4648
|
+
export class KafkaChannelBinding040 implements KafkaChannelBinding {
|
|
4649
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4650
|
+
extendsNode: Array<DomainElement>;
|
|
4651
|
+
id: string;
|
|
4652
|
+
isExternalLink: BoolField;
|
|
4653
|
+
isLink: boolean;
|
|
4654
|
+
linkLabel: StrField;
|
|
4655
|
+
linkTarget: undefined | DomainElement;
|
|
4656
|
+
position: Range;
|
|
4657
|
+
topic: string;
|
|
4658
|
+
partitions: number;
|
|
4659
|
+
replicas: number;
|
|
4660
|
+
topicConfiguration: KafkaTopicConfiguration;
|
|
4661
|
+
|
|
4662
|
+
constructor();
|
|
4663
|
+
|
|
4664
|
+
annotations(): Annotations;
|
|
4665
|
+
|
|
4666
|
+
graph(): Graph;
|
|
4667
|
+
|
|
4668
|
+
link<T>(label: string): T;
|
|
4669
|
+
|
|
4670
|
+
link<T>(): T;
|
|
4671
|
+
|
|
4672
|
+
linkCopy(): KafkaOperationBinding;
|
|
4673
|
+
|
|
4674
|
+
withBindingVersion(bindingVersion: string): this;
|
|
4675
|
+
|
|
4676
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4677
|
+
|
|
4678
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4679
|
+
|
|
4680
|
+
withId(id: string): this;
|
|
4681
|
+
|
|
4682
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4683
|
+
|
|
4684
|
+
withLinkLabel(label: string): this;
|
|
4685
|
+
|
|
4686
|
+
withLinkTarget(target: undefined): this;
|
|
4687
|
+
|
|
4688
|
+
withTopic(topic: string): this;
|
|
4689
|
+
|
|
4690
|
+
withPartitions(partitions: number): this;
|
|
4691
|
+
|
|
4692
|
+
withReplicas(replicas: number): this;
|
|
4693
|
+
|
|
4694
|
+
withTopicConfiguration(topicConfiguration: KafkaTopicConfiguration): this
|
|
4695
|
+
}
|
|
4696
|
+
export class KafkaTopicConfiguration implements DomainElement {
|
|
4697
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4698
|
+
extendsNode: Array<DomainElement>;
|
|
4699
|
+
id: string;
|
|
4700
|
+
isExternalLink: BoolField;
|
|
4701
|
+
position: Range;
|
|
4702
|
+
cleanupPolicy: Array<string>;
|
|
4703
|
+
retentionMs: number;
|
|
4704
|
+
retentionBytes: number;
|
|
4705
|
+
deleteRetentionMs: number;
|
|
4706
|
+
maxMessageBytes: number;
|
|
4707
|
+
|
|
4708
|
+
annotations(): Annotations;
|
|
4709
|
+
|
|
4710
|
+
graph(): Graph;
|
|
4711
|
+
|
|
4712
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4713
|
+
|
|
4714
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4715
|
+
|
|
4716
|
+
withId(id: string): this;
|
|
4717
|
+
|
|
4718
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4719
|
+
|
|
4720
|
+
withCleanupPolicy(cleanupPolicy: Array<string>): this;
|
|
4721
|
+
|
|
4722
|
+
withRetentionMs(retentionMs: number): this;
|
|
4723
|
+
|
|
4724
|
+
withRetentionBytes(retentionBytes: number): this;
|
|
4725
|
+
|
|
4726
|
+
withDeleteRetentionMS(deleteRetentionMS: number): this;
|
|
4727
|
+
|
|
4728
|
+
withMaxMessageBytes(maxMessageBytes: number): this;
|
|
4729
|
+
}
|
|
4434
4730
|
export class Key implements DomainElement {
|
|
4435
4731
|
components: Array<PropertyShapePath>;
|
|
4436
4732
|
customDomainProperties: Array<DomainExtension>;
|