amf-client-js 5.6.0-SNAPSHOT.2 → 5.6.0-SNAPSHOT.4
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 +11706 -11641
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +349 -1
package/package.json
CHANGED
|
@@ -647,6 +647,96 @@ declare module "amf-client-js" {
|
|
|
647
647
|
|
|
648
648
|
withQueue(queue: Amqp091Queue): this;
|
|
649
649
|
}
|
|
650
|
+
export class Amqp091ChannelBinding010 implements Amqp091ChannelBinding {
|
|
651
|
+
customDomainProperties: Array<DomainExtension>;
|
|
652
|
+
exchange: Amqp091ChannelExchange010;
|
|
653
|
+
extendsNode: Array<DomainElement>;
|
|
654
|
+
id: string;
|
|
655
|
+
is: StrField;
|
|
656
|
+
isExternalLink: BoolField;
|
|
657
|
+
isLink: boolean;
|
|
658
|
+
linkLabel: StrField;
|
|
659
|
+
linkTarget: undefined | DomainElement;
|
|
660
|
+
position: Range;
|
|
661
|
+
queue: Amqp091Queue010;
|
|
662
|
+
|
|
663
|
+
constructor();
|
|
664
|
+
|
|
665
|
+
annotations(): Annotations;
|
|
666
|
+
|
|
667
|
+
graph(): Graph;
|
|
668
|
+
|
|
669
|
+
link<T>(label: string): T;
|
|
670
|
+
|
|
671
|
+
link<T>(): T;
|
|
672
|
+
|
|
673
|
+
linkCopy(): Amqp091ChannelBinding010;
|
|
674
|
+
|
|
675
|
+
withBindingVersion(bindingVersion: string): this;
|
|
676
|
+
|
|
677
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
678
|
+
|
|
679
|
+
withExchange(exchange: Amqp091ChannelExchange): this;
|
|
680
|
+
|
|
681
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
682
|
+
|
|
683
|
+
withId(id: string): this;
|
|
684
|
+
|
|
685
|
+
withIs(is: string): this;
|
|
686
|
+
|
|
687
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
688
|
+
|
|
689
|
+
withLinkLabel(label: string): this;
|
|
690
|
+
|
|
691
|
+
withLinkTarget(target: undefined): this;
|
|
692
|
+
|
|
693
|
+
withQueue(queue: Amqp091Queue): this;
|
|
694
|
+
}
|
|
695
|
+
export class Amqp091ChannelBinding020 implements Amqp091ChannelBinding {
|
|
696
|
+
customDomainProperties: Array<DomainExtension>;
|
|
697
|
+
exchange: Amqp091ChannelExchange020;
|
|
698
|
+
extendsNode: Array<DomainElement>;
|
|
699
|
+
id: string;
|
|
700
|
+
is: StrField;
|
|
701
|
+
isExternalLink: BoolField;
|
|
702
|
+
isLink: boolean;
|
|
703
|
+
linkLabel: StrField;
|
|
704
|
+
linkTarget: undefined | DomainElement;
|
|
705
|
+
position: Range;
|
|
706
|
+
queue: Amqp091Queue020;
|
|
707
|
+
|
|
708
|
+
constructor();
|
|
709
|
+
|
|
710
|
+
annotations(): Annotations;
|
|
711
|
+
|
|
712
|
+
graph(): Graph;
|
|
713
|
+
|
|
714
|
+
link<T>(label: string): T;
|
|
715
|
+
|
|
716
|
+
link<T>(): T;
|
|
717
|
+
|
|
718
|
+
linkCopy(): Amqp091ChannelBinding020;
|
|
719
|
+
|
|
720
|
+
withBindingVersion(bindingVersion: string): this;
|
|
721
|
+
|
|
722
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
723
|
+
|
|
724
|
+
withExchange(exchange: Amqp091ChannelExchange): this;
|
|
725
|
+
|
|
726
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
727
|
+
|
|
728
|
+
withId(id: string): this;
|
|
729
|
+
|
|
730
|
+
withIs(is: string): this;
|
|
731
|
+
|
|
732
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
733
|
+
|
|
734
|
+
withLinkLabel(label: string): this;
|
|
735
|
+
|
|
736
|
+
withLinkTarget(target: undefined): this;
|
|
737
|
+
|
|
738
|
+
withQueue(queue: Amqp091Queue): this;
|
|
739
|
+
}
|
|
650
740
|
export class Amqp091ChannelExchange implements DomainElement {
|
|
651
741
|
autoDelete: BoolField;
|
|
652
742
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -657,6 +747,72 @@ declare module "amf-client-js" {
|
|
|
657
747
|
name: StrField;
|
|
658
748
|
position: Range;
|
|
659
749
|
type: StrField;
|
|
750
|
+
|
|
751
|
+
constructor();
|
|
752
|
+
|
|
753
|
+
annotations(): Annotations;
|
|
754
|
+
|
|
755
|
+
graph(): Graph;
|
|
756
|
+
|
|
757
|
+
withAutoDelete(autoDelete: boolean): this;
|
|
758
|
+
|
|
759
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
760
|
+
|
|
761
|
+
withDurable(durable: boolean): this;
|
|
762
|
+
|
|
763
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
764
|
+
|
|
765
|
+
withId(id: string): this;
|
|
766
|
+
|
|
767
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
768
|
+
|
|
769
|
+
withName(name: string): this;
|
|
770
|
+
|
|
771
|
+
withType(type: string): this;
|
|
772
|
+
}
|
|
773
|
+
export class Amqp091ChannelExchange010 implements Amqp091ChannelExchange {
|
|
774
|
+
autoDelete: BoolField;
|
|
775
|
+
customDomainProperties: Array<DomainExtension>;
|
|
776
|
+
durable: BoolField;
|
|
777
|
+
extendsNode: Array<DomainElement>;
|
|
778
|
+
id: string;
|
|
779
|
+
isExternalLink: BoolField;
|
|
780
|
+
name: StrField;
|
|
781
|
+
position: Range;
|
|
782
|
+
type: StrField;
|
|
783
|
+
|
|
784
|
+
constructor();
|
|
785
|
+
|
|
786
|
+
annotations(): Annotations;
|
|
787
|
+
|
|
788
|
+
graph(): Graph;
|
|
789
|
+
|
|
790
|
+
withAutoDelete(autoDelete: boolean): this;
|
|
791
|
+
|
|
792
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
793
|
+
|
|
794
|
+
withDurable(durable: boolean): this;
|
|
795
|
+
|
|
796
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
797
|
+
|
|
798
|
+
withId(id: string): this;
|
|
799
|
+
|
|
800
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
801
|
+
|
|
802
|
+
withName(name: string): this;
|
|
803
|
+
|
|
804
|
+
withType(type: string): this;
|
|
805
|
+
}
|
|
806
|
+
export class Amqp091ChannelExchange020 implements Amqp091ChannelExchange {
|
|
807
|
+
autoDelete: BoolField;
|
|
808
|
+
customDomainProperties: Array<DomainExtension>;
|
|
809
|
+
durable: BoolField;
|
|
810
|
+
extendsNode: Array<DomainElement>;
|
|
811
|
+
id: string;
|
|
812
|
+
isExternalLink: BoolField;
|
|
813
|
+
name: StrField;
|
|
814
|
+
position: Range;
|
|
815
|
+
type: StrField;
|
|
660
816
|
vHost: StrField;
|
|
661
817
|
|
|
662
818
|
constructor();
|
|
@@ -741,7 +897,6 @@ declare module "amf-client-js" {
|
|
|
741
897
|
mandatory: BoolField;
|
|
742
898
|
position: Range;
|
|
743
899
|
priority: IntField;
|
|
744
|
-
replyTo: StrField;
|
|
745
900
|
timestamp: BoolField;
|
|
746
901
|
userId: StrField;
|
|
747
902
|
|
|
@@ -785,12 +940,139 @@ declare module "amf-client-js" {
|
|
|
785
940
|
|
|
786
941
|
withPriority(priority: number): this;
|
|
787
942
|
|
|
943
|
+
withTimestamp(timestamp: boolean): this;
|
|
944
|
+
|
|
945
|
+
withUserId(userId: string): this;
|
|
946
|
+
}
|
|
947
|
+
export class Amqp091OperationBinding010 implements Amqp091OperationBinding {
|
|
948
|
+
ack: BoolField;
|
|
949
|
+
bcc: Array<StrField>;
|
|
950
|
+
cc: Array<StrField>;
|
|
951
|
+
customDomainProperties: Array<DomainExtension>;
|
|
952
|
+
deliveryMode: IntField;
|
|
953
|
+
expiration: IntField;
|
|
954
|
+
extendsNode: Array<DomainElement>;
|
|
955
|
+
id: string;
|
|
956
|
+
isExternalLink: BoolField;
|
|
957
|
+
isLink: boolean;
|
|
958
|
+
linkLabel: StrField;
|
|
959
|
+
linkTarget: undefined | DomainElement;
|
|
960
|
+
mandatory: BoolField;
|
|
961
|
+
position: Range;
|
|
962
|
+
priority: IntField;
|
|
963
|
+
replyTo: StrField;
|
|
964
|
+
timestamp: BoolField;
|
|
965
|
+
userId: StrField;
|
|
966
|
+
|
|
967
|
+
constructor();
|
|
968
|
+
|
|
969
|
+
annotations(): Annotations;
|
|
970
|
+
|
|
971
|
+
graph(): Graph;
|
|
972
|
+
|
|
973
|
+
link<T>(label: string): T;
|
|
974
|
+
|
|
975
|
+
link<T>(): T;
|
|
976
|
+
|
|
977
|
+
linkCopy(): Amqp091OperationBinding010;
|
|
978
|
+
|
|
979
|
+
withAck(ack: boolean): this;
|
|
980
|
+
|
|
981
|
+
withBcc(bCC: Array<string>): this;
|
|
982
|
+
|
|
983
|
+
withBindingVersion(bindingVersion: string): this;
|
|
984
|
+
|
|
985
|
+
withCc(cC: Array<string>): this;
|
|
986
|
+
|
|
987
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
988
|
+
|
|
989
|
+
withDeliveryMode(deliveryMode: number): this;
|
|
990
|
+
|
|
991
|
+
withExpiration(expiration: number): this;
|
|
992
|
+
|
|
993
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
994
|
+
|
|
995
|
+
withId(id: string): this;
|
|
996
|
+
|
|
997
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
998
|
+
|
|
999
|
+
withLinkLabel(label: string): this;
|
|
1000
|
+
|
|
1001
|
+
withLinkTarget(target: undefined): this;
|
|
1002
|
+
|
|
1003
|
+
withMandatory(mandatory: boolean): this;
|
|
1004
|
+
|
|
1005
|
+
withPriority(priority: number): this;
|
|
1006
|
+
|
|
788
1007
|
withReplyTo(replyTo: string): this;
|
|
789
1008
|
|
|
790
1009
|
withTimestamp(timestamp: boolean): this;
|
|
791
1010
|
|
|
792
1011
|
withUserId(userId: string): this;
|
|
793
1012
|
}
|
|
1013
|
+
export class Amqp091OperationBinding030 implements Amqp091OperationBinding {
|
|
1014
|
+
ack: BoolField;
|
|
1015
|
+
bcc: Array<StrField>;
|
|
1016
|
+
cc: Array<StrField>;
|
|
1017
|
+
customDomainProperties: Array<DomainExtension>;
|
|
1018
|
+
deliveryMode: IntField;
|
|
1019
|
+
expiration: IntField;
|
|
1020
|
+
extendsNode: Array<DomainElement>;
|
|
1021
|
+
id: string;
|
|
1022
|
+
isExternalLink: BoolField;
|
|
1023
|
+
isLink: boolean;
|
|
1024
|
+
linkLabel: StrField;
|
|
1025
|
+
linkTarget: undefined | DomainElement;
|
|
1026
|
+
mandatory: BoolField;
|
|
1027
|
+
position: Range;
|
|
1028
|
+
priority: IntField;
|
|
1029
|
+
timestamp: BoolField;
|
|
1030
|
+
userId: StrField;
|
|
1031
|
+
|
|
1032
|
+
constructor();
|
|
1033
|
+
|
|
1034
|
+
annotations(): Annotations;
|
|
1035
|
+
|
|
1036
|
+
graph(): Graph;
|
|
1037
|
+
|
|
1038
|
+
link<T>(label: string): T;
|
|
1039
|
+
|
|
1040
|
+
link<T>(): T;
|
|
1041
|
+
|
|
1042
|
+
linkCopy(): Amqp091OperationBinding030;
|
|
1043
|
+
|
|
1044
|
+
withAck(ack: boolean): this;
|
|
1045
|
+
|
|
1046
|
+
withBcc(bCC: Array<string>): this;
|
|
1047
|
+
|
|
1048
|
+
withBindingVersion(bindingVersion: string): this;
|
|
1049
|
+
|
|
1050
|
+
withCc(cC: Array<string>): this;
|
|
1051
|
+
|
|
1052
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
1053
|
+
|
|
1054
|
+
withDeliveryMode(deliveryMode: number): this;
|
|
1055
|
+
|
|
1056
|
+
withExpiration(expiration: number): this;
|
|
1057
|
+
|
|
1058
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
1059
|
+
|
|
1060
|
+
withId(id: string): this;
|
|
1061
|
+
|
|
1062
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
1063
|
+
|
|
1064
|
+
withLinkLabel(label: string): this;
|
|
1065
|
+
|
|
1066
|
+
withLinkTarget(target: undefined): this;
|
|
1067
|
+
|
|
1068
|
+
withMandatory(mandatory: boolean): this;
|
|
1069
|
+
|
|
1070
|
+
withPriority(priority: number): this;
|
|
1071
|
+
|
|
1072
|
+
withTimestamp(timestamp: boolean): this;
|
|
1073
|
+
|
|
1074
|
+
withUserId(userId: string): this;
|
|
1075
|
+
}
|
|
794
1076
|
export class Amqp091Queue implements DomainElement {
|
|
795
1077
|
autoDelete: BoolField;
|
|
796
1078
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -801,6 +1083,72 @@ declare module "amf-client-js" {
|
|
|
801
1083
|
isExternalLink: BoolField;
|
|
802
1084
|
name: StrField;
|
|
803
1085
|
position: Range;
|
|
1086
|
+
|
|
1087
|
+
constructor();
|
|
1088
|
+
|
|
1089
|
+
annotations(): Annotations;
|
|
1090
|
+
|
|
1091
|
+
graph(): Graph;
|
|
1092
|
+
|
|
1093
|
+
withAutoDelete(autoDelete: boolean): this;
|
|
1094
|
+
|
|
1095
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
1096
|
+
|
|
1097
|
+
withDurable(durable: boolean): this;
|
|
1098
|
+
|
|
1099
|
+
withExclusive(exclusive: boolean): this;
|
|
1100
|
+
|
|
1101
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
1102
|
+
|
|
1103
|
+
withId(id: string): this;
|
|
1104
|
+
|
|
1105
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
1106
|
+
|
|
1107
|
+
withName(name: string): this;
|
|
1108
|
+
}
|
|
1109
|
+
export class Amqp091Queue010 implements Amqp091Queue {
|
|
1110
|
+
autoDelete: BoolField;
|
|
1111
|
+
customDomainProperties: Array<DomainExtension>;
|
|
1112
|
+
durable: BoolField;
|
|
1113
|
+
exclusive: BoolField;
|
|
1114
|
+
extendsNode: Array<DomainElement>;
|
|
1115
|
+
id: string;
|
|
1116
|
+
isExternalLink: BoolField;
|
|
1117
|
+
name: StrField;
|
|
1118
|
+
position: Range;
|
|
1119
|
+
|
|
1120
|
+
constructor();
|
|
1121
|
+
|
|
1122
|
+
annotations(): Annotations;
|
|
1123
|
+
|
|
1124
|
+
graph(): Graph;
|
|
1125
|
+
|
|
1126
|
+
withAutoDelete(autoDelete: boolean): this;
|
|
1127
|
+
|
|
1128
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
1129
|
+
|
|
1130
|
+
withDurable(durable: boolean): this;
|
|
1131
|
+
|
|
1132
|
+
withExclusive(exclusive: boolean): this;
|
|
1133
|
+
|
|
1134
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
1135
|
+
|
|
1136
|
+
withId(id: string): this;
|
|
1137
|
+
|
|
1138
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
1139
|
+
|
|
1140
|
+
withName(name: string): this;
|
|
1141
|
+
}
|
|
1142
|
+
export class Amqp091Queue020 implements Amqp091Queue {
|
|
1143
|
+
autoDelete: BoolField;
|
|
1144
|
+
customDomainProperties: Array<DomainExtension>;
|
|
1145
|
+
durable: BoolField;
|
|
1146
|
+
exclusive: BoolField;
|
|
1147
|
+
extendsNode: Array<DomainElement>;
|
|
1148
|
+
id: string;
|
|
1149
|
+
isExternalLink: BoolField;
|
|
1150
|
+
name: StrField;
|
|
1151
|
+
position: Range;
|
|
804
1152
|
vHost: StrField;
|
|
805
1153
|
|
|
806
1154
|
constructor();
|