igniteui-webcomponents-fdc3 4.2.4-alpha → 4.3.0-beta.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.
- package/bundles/igniteui-webcomponents-fdc3.umd.js +46 -46
- package/bundles/igniteui-webcomponents-fdc3.umd.min.js +1 -1
- package/esm2015/lib/Fdc3DataAdapter.js +7 -7
- package/esm5/lib/Fdc3Converter.js +2 -2
- package/esm5/lib/Fdc3DataAdapter.js +5 -5
- package/esm5/lib/Fdc3Dictionary.js +4 -4
- package/esm5/lib/Fdc3Message.js +8 -8
- package/esm5/lib/Fdc3Serializer_combined.js +28 -28
- package/esm5/lib/Fdc3Util.js +2 -2
- package/esm5/lib/Randomizer.js +2 -2
- package/fesm2015/igniteui-webcomponents-fdc3.js +7 -7
- package/fesm5/igniteui-webcomponents-fdc3.js +24 -24
- package/lib/Fdc3DataAdapter.d.ts +2 -1
- package/lib/Fdc3Message.d.ts +12 -6
- package/lib/Fdc3Serializer_combined.d.ts +34 -17
- package/package.json +2 -2
package/esm5/lib/Fdc3Message.js
CHANGED
|
@@ -4,13 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
8
|
import { Base, markType } from "igniteui-webcomponents-core";
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
-
|
|
13
|
+
__extends(Fdc3Message, _super);
|
|
14
14
|
function Fdc3Message() {
|
|
15
15
|
var _this = _super.call(this) || this;
|
|
16
16
|
_this._tickerSymbols = null;
|
|
@@ -30,7 +30,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30
30
|
set: function (a) {
|
|
31
31
|
this._tickerSymbols = a;
|
|
32
32
|
},
|
|
33
|
-
enumerable:
|
|
33
|
+
enumerable: false,
|
|
34
34
|
configurable: true
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(Fdc3Message.prototype, "tickerNames", {
|
|
@@ -40,7 +40,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
40
40
|
set: function (a) {
|
|
41
41
|
this._tickerNames = a;
|
|
42
42
|
},
|
|
43
|
-
enumerable:
|
|
43
|
+
enumerable: false,
|
|
44
44
|
configurable: true
|
|
45
45
|
});
|
|
46
46
|
Object.defineProperty(Fdc3Message.prototype, "json", {
|
|
@@ -50,7 +50,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
50
50
|
set: function (a) {
|
|
51
51
|
this._json = a;
|
|
52
52
|
},
|
|
53
|
-
enumerable:
|
|
53
|
+
enumerable: false,
|
|
54
54
|
configurable: true
|
|
55
55
|
});
|
|
56
56
|
Object.defineProperty(Fdc3Message.prototype, "context", {
|
|
@@ -60,7 +60,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
60
60
|
set: function (a) {
|
|
61
61
|
this._context = a;
|
|
62
62
|
},
|
|
63
|
-
enumerable:
|
|
63
|
+
enumerable: false,
|
|
64
64
|
configurable: true
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(Fdc3Message.prototype, "intentType", {
|
|
@@ -70,7 +70,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
70
70
|
set: function (a) {
|
|
71
71
|
this._intentType = a;
|
|
72
72
|
},
|
|
73
|
-
enumerable:
|
|
73
|
+
enumerable: false,
|
|
74
74
|
configurable: true
|
|
75
75
|
});
|
|
76
76
|
Object.defineProperty(Fdc3Message.prototype, "contextType", {
|
|
@@ -80,7 +80,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80
80
|
set: function (a) {
|
|
81
81
|
this._contextType = a;
|
|
82
82
|
},
|
|
83
|
-
enumerable:
|
|
83
|
+
enumerable: false,
|
|
84
84
|
configurable: true
|
|
85
85
|
});
|
|
86
86
|
Fdc3Message.$t = markType(Fdc3Message, 'Fdc3Message');
|
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
8
|
import { Base, typeCast, EnumUtil, Boolean_$type, markType, enumGetBox } from "igniteui-webcomponents-core";
|
|
9
9
|
import { StringBuilder } from "igniteui-webcomponents-core";
|
|
10
10
|
import { Fdc3IntentType_$type } from "./Fdc3IntentType";
|
|
@@ -15,7 +15,7 @@ import { Fdc3Util } from "./Fdc3Util";
|
|
|
15
15
|
* @hidden
|
|
16
16
|
*/
|
|
17
17
|
var Fdc3Serializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
18
|
-
|
|
18
|
+
__extends(Fdc3Serializer, _super);
|
|
19
19
|
function Fdc3Serializer() {
|
|
20
20
|
var _this = _super.call(this) || this;
|
|
21
21
|
_this._sb = null;
|
|
@@ -613,7 +613,7 @@ export { Fdc3Serializer };
|
|
|
613
613
|
* @hidden
|
|
614
614
|
*/
|
|
615
615
|
var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
616
|
-
|
|
616
|
+
__extends(Fdc3Context, _super);
|
|
617
617
|
function Fdc3Context(a) {
|
|
618
618
|
var _rest = [];
|
|
619
619
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
@@ -650,7 +650,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
650
650
|
set: function (a) {
|
|
651
651
|
this.item("intent", enumGetBox(Fdc3IntentType_$type, a));
|
|
652
652
|
},
|
|
653
|
-
enumerable:
|
|
653
|
+
enumerable: false,
|
|
654
654
|
configurable: true
|
|
655
655
|
});
|
|
656
656
|
Object.defineProperty(Fdc3Context.prototype, "type", {
|
|
@@ -660,7 +660,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
660
660
|
set: function (a) {
|
|
661
661
|
this.item("type", a);
|
|
662
662
|
},
|
|
663
|
-
enumerable:
|
|
663
|
+
enumerable: false,
|
|
664
664
|
configurable: true
|
|
665
665
|
});
|
|
666
666
|
Object.defineProperty(Fdc3Context.prototype, "target", {
|
|
@@ -670,7 +670,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
670
670
|
set: function (a) {
|
|
671
671
|
this.item("target", a);
|
|
672
672
|
},
|
|
673
|
-
enumerable:
|
|
673
|
+
enumerable: false,
|
|
674
674
|
configurable: true
|
|
675
675
|
});
|
|
676
676
|
Object.defineProperty(Fdc3Context.prototype, "name", {
|
|
@@ -680,7 +680,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
680
680
|
set: function (a) {
|
|
681
681
|
this.item("name", a);
|
|
682
682
|
},
|
|
683
|
-
enumerable:
|
|
683
|
+
enumerable: false,
|
|
684
684
|
configurable: true
|
|
685
685
|
});
|
|
686
686
|
Object.defineProperty(Fdc3Context.prototype, "id", {
|
|
@@ -690,7 +690,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
690
690
|
set: function (a) {
|
|
691
691
|
this._id = a;
|
|
692
692
|
},
|
|
693
|
-
enumerable:
|
|
693
|
+
enumerable: false,
|
|
694
694
|
configurable: true
|
|
695
695
|
});
|
|
696
696
|
Fdc3Context.prototype.toJson = function () {
|
|
@@ -706,7 +706,7 @@ export { Fdc3Context };
|
|
|
706
706
|
* @hidden
|
|
707
707
|
*/
|
|
708
708
|
var Fdc3Instrument = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
709
|
-
|
|
709
|
+
__extends(Fdc3Instrument, _super);
|
|
710
710
|
function Fdc3Instrument() {
|
|
711
711
|
return _super.call(this, 1, 1) || this;
|
|
712
712
|
}
|
|
@@ -717,7 +717,7 @@ var Fdc3Instrument = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
717
717
|
set: function (a) {
|
|
718
718
|
this.id.item("ticker", a);
|
|
719
719
|
},
|
|
720
|
-
enumerable:
|
|
720
|
+
enumerable: false,
|
|
721
721
|
configurable: true
|
|
722
722
|
});
|
|
723
723
|
Fdc3Instrument.$t = markType(Fdc3Instrument, 'Fdc3Instrument', Fdc3Context.$);
|
|
@@ -728,7 +728,7 @@ export { Fdc3Instrument };
|
|
|
728
728
|
* @hidden
|
|
729
729
|
*/
|
|
730
730
|
var Fdc3InstrumentList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
731
|
-
|
|
731
|
+
__extends(Fdc3InstrumentList, _super);
|
|
732
732
|
function Fdc3InstrumentList() {
|
|
733
733
|
var _this = _super.call(this, 0) || this;
|
|
734
734
|
_this._instruments = null;
|
|
@@ -743,7 +743,7 @@ var Fdc3InstrumentList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
743
743
|
set: function (a) {
|
|
744
744
|
this._instruments = a;
|
|
745
745
|
},
|
|
746
|
-
enumerable:
|
|
746
|
+
enumerable: false,
|
|
747
747
|
configurable: true
|
|
748
748
|
});
|
|
749
749
|
Fdc3InstrumentList.$t = markType(Fdc3InstrumentList, 'Fdc3InstrumentList', Fdc3Context.$);
|
|
@@ -754,7 +754,7 @@ export { Fdc3InstrumentList };
|
|
|
754
754
|
* @hidden
|
|
755
755
|
*/
|
|
756
756
|
var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
757
|
-
|
|
757
|
+
__extends(Fdc3Position, _super);
|
|
758
758
|
function Fdc3Position() {
|
|
759
759
|
var _this = _super.call(this, 1, 3) || this;
|
|
760
760
|
_this.instrument = new Fdc3Instrument();
|
|
@@ -767,7 +767,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
767
767
|
set: function (a) {
|
|
768
768
|
this.item("instrument", a);
|
|
769
769
|
},
|
|
770
|
-
enumerable:
|
|
770
|
+
enumerable: false,
|
|
771
771
|
configurable: true
|
|
772
772
|
});
|
|
773
773
|
Object.defineProperty(Fdc3Position.prototype, "shares", {
|
|
@@ -777,7 +777,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
777
777
|
set: function (a) {
|
|
778
778
|
this.item("shares", a);
|
|
779
779
|
},
|
|
780
|
-
enumerable:
|
|
780
|
+
enumerable: false,
|
|
781
781
|
configurable: true
|
|
782
782
|
});
|
|
783
783
|
Object.defineProperty(Fdc3Position.prototype, "cost", {
|
|
@@ -787,7 +787,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
787
787
|
set: function (a) {
|
|
788
788
|
this.item("cost", a);
|
|
789
789
|
},
|
|
790
|
-
enumerable:
|
|
790
|
+
enumerable: false,
|
|
791
791
|
configurable: true
|
|
792
792
|
});
|
|
793
793
|
Object.defineProperty(Fdc3Position.prototype, "price", {
|
|
@@ -797,7 +797,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
797
797
|
set: function (a) {
|
|
798
798
|
this.item("price", a);
|
|
799
799
|
},
|
|
800
|
-
enumerable:
|
|
800
|
+
enumerable: false,
|
|
801
801
|
configurable: true
|
|
802
802
|
});
|
|
803
803
|
Fdc3Position.$t = markType(Fdc3Position, 'Fdc3Position', Fdc3Context.$);
|
|
@@ -808,7 +808,7 @@ export { Fdc3Position };
|
|
|
808
808
|
* @hidden
|
|
809
809
|
*/
|
|
810
810
|
var Fdc3Portfolio = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
811
|
-
|
|
811
|
+
__extends(Fdc3Portfolio, _super);
|
|
812
812
|
function Fdc3Portfolio() {
|
|
813
813
|
var _this = _super.call(this, 1, 4) || this;
|
|
814
814
|
_this._positions = null;
|
|
@@ -822,7 +822,7 @@ var Fdc3Portfolio = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
822
822
|
set: function (a) {
|
|
823
823
|
this._positions = a;
|
|
824
824
|
},
|
|
825
|
-
enumerable:
|
|
825
|
+
enumerable: false,
|
|
826
826
|
configurable: true
|
|
827
827
|
});
|
|
828
828
|
Fdc3Portfolio.$t = markType(Fdc3Portfolio, 'Fdc3Portfolio', Fdc3Context.$);
|
|
@@ -833,7 +833,7 @@ export { Fdc3Portfolio };
|
|
|
833
833
|
* @hidden
|
|
834
834
|
*/
|
|
835
835
|
var Fdc3Organization = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
836
|
-
|
|
836
|
+
__extends(Fdc3Organization, _super);
|
|
837
837
|
function Fdc3Organization() {
|
|
838
838
|
return _super.call(this, 1, 7) || this;
|
|
839
839
|
}
|
|
@@ -845,7 +845,7 @@ export { Fdc3Organization };
|
|
|
845
845
|
* @hidden
|
|
846
846
|
*/
|
|
847
847
|
var Fdc3OrganizationList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
848
|
-
|
|
848
|
+
__extends(Fdc3OrganizationList, _super);
|
|
849
849
|
function Fdc3OrganizationList() {
|
|
850
850
|
var _this = _super.call(this, 1, 8) || this;
|
|
851
851
|
_this._organizations = null;
|
|
@@ -858,7 +858,7 @@ var Fdc3OrganizationList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
858
858
|
set: function (a) {
|
|
859
859
|
this._organizations = a;
|
|
860
860
|
},
|
|
861
|
-
enumerable:
|
|
861
|
+
enumerable: false,
|
|
862
862
|
configurable: true
|
|
863
863
|
});
|
|
864
864
|
Fdc3OrganizationList.$t = markType(Fdc3OrganizationList, 'Fdc3OrganizationList', Fdc3Context.$);
|
|
@@ -869,7 +869,7 @@ export { Fdc3OrganizationList };
|
|
|
869
869
|
* @hidden
|
|
870
870
|
*/
|
|
871
871
|
var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
872
|
-
|
|
872
|
+
__extends(Fdc3Contact, _super);
|
|
873
873
|
function Fdc3Contact(a) {
|
|
874
874
|
var _rest = [];
|
|
875
875
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
@@ -917,7 +917,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
917
917
|
set: function (a) {
|
|
918
918
|
this.id.item("email", a);
|
|
919
919
|
},
|
|
920
|
-
enumerable:
|
|
920
|
+
enumerable: false,
|
|
921
921
|
configurable: true
|
|
922
922
|
});
|
|
923
923
|
Object.defineProperty(Fdc3Contact.prototype, "phone", {
|
|
@@ -927,7 +927,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
927
927
|
set: function (a) {
|
|
928
928
|
this.id.item("phone", a);
|
|
929
929
|
},
|
|
930
|
-
enumerable:
|
|
930
|
+
enumerable: false,
|
|
931
931
|
configurable: true
|
|
932
932
|
});
|
|
933
933
|
Object.defineProperty(Fdc3Contact.prototype, "twitter", {
|
|
@@ -937,7 +937,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
937
937
|
set: function (a) {
|
|
938
938
|
this.id.item("twitter", a);
|
|
939
939
|
},
|
|
940
|
-
enumerable:
|
|
940
|
+
enumerable: false,
|
|
941
941
|
configurable: true
|
|
942
942
|
});
|
|
943
943
|
Fdc3Contact.$t = markType(Fdc3Contact, 'Fdc3Contact', Fdc3Context.$);
|
|
@@ -948,7 +948,7 @@ export { Fdc3Contact };
|
|
|
948
948
|
* @hidden
|
|
949
949
|
*/
|
|
950
950
|
var Fdc3ContactList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
951
|
-
|
|
951
|
+
__extends(Fdc3ContactList, _super);
|
|
952
952
|
function Fdc3ContactList(a) {
|
|
953
953
|
var _rest = [];
|
|
954
954
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
@@ -985,7 +985,7 @@ var Fdc3ContactList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
985
985
|
set: function (a) {
|
|
986
986
|
this._contacts = a;
|
|
987
987
|
},
|
|
988
|
-
enumerable:
|
|
988
|
+
enumerable: false,
|
|
989
989
|
configurable: true
|
|
990
990
|
});
|
|
991
991
|
Fdc3ContactList.$t = markType(Fdc3ContactList, 'Fdc3ContactList', Fdc3Context.$);
|
package/esm5/lib/Fdc3Util.js
CHANGED
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
8
|
import { Base, callStaticConstructors, String_$type, EnumUtil, markType } from "igniteui-webcomponents-core";
|
|
9
9
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
10
10
|
import { Fdc3ContextType_$type } from "./Fdc3ContextType";
|
|
@@ -13,7 +13,7 @@ import { Fdc3IntentType_$type } from "./Fdc3IntentType";
|
|
|
13
13
|
* @hidden
|
|
14
14
|
*/
|
|
15
15
|
var Fdc3Util = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
16
|
-
|
|
16
|
+
__extends(Fdc3Util, _super);
|
|
17
17
|
function Fdc3Util() {
|
|
18
18
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
19
19
|
}
|
package/esm5/lib/Randomizer.js
CHANGED
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
8
|
import { Base, markType } from "igniteui-webcomponents-core";
|
|
9
9
|
import { Random } from "igniteui-webcomponents-core";
|
|
10
10
|
import { truncate } from "igniteui-webcomponents-core";
|
|
@@ -12,7 +12,7 @@ import { truncate } from "igniteui-webcomponents-core";
|
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
14
14
|
var Randomizer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
-
|
|
15
|
+
__extends(Randomizer, _super);
|
|
16
16
|
function Randomizer() {
|
|
17
17
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
18
18
|
}
|
|
@@ -1491,13 +1491,6 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
1491
1491
|
*/
|
|
1492
1492
|
let Fdc3DataAdapter = /*@__PURE__*/ (() => {
|
|
1493
1493
|
class Fdc3DataAdapter extends FinancialDataAdapter {
|
|
1494
|
-
constructor(a) {
|
|
1495
|
-
super();
|
|
1496
|
-
this.messageReceived = null;
|
|
1497
|
-
this._openFin = null;
|
|
1498
|
-
this.a3 = false;
|
|
1499
|
-
this._openFin = a;
|
|
1500
|
-
}
|
|
1501
1494
|
aq(a, b, c) {
|
|
1502
1495
|
super.aq(a, b, c);
|
|
1503
1496
|
}
|
|
@@ -1725,6 +1718,13 @@ let Fdc3DataAdapter = /*@__PURE__*/ (() => {
|
|
|
1725
1718
|
}
|
|
1726
1719
|
;
|
|
1727
1720
|
}
|
|
1721
|
+
constructor(a) {
|
|
1722
|
+
super();
|
|
1723
|
+
this.messageReceived = null;
|
|
1724
|
+
this._openFin = null;
|
|
1725
|
+
this.a3 = false;
|
|
1726
|
+
this._openFin = a;
|
|
1727
|
+
}
|
|
1728
1728
|
get a4() {
|
|
1729
1729
|
return this.a3;
|
|
1730
1730
|
}
|
|
@@ -961,7 +961,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
961
961
|
set: function (a) {
|
|
962
962
|
this.item("intent", enumGetBox(Fdc3IntentType_$type, a));
|
|
963
963
|
},
|
|
964
|
-
enumerable:
|
|
964
|
+
enumerable: false,
|
|
965
965
|
configurable: true
|
|
966
966
|
});
|
|
967
967
|
Object.defineProperty(Fdc3Context.prototype, "type", {
|
|
@@ -971,7 +971,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
971
971
|
set: function (a) {
|
|
972
972
|
this.item("type", a);
|
|
973
973
|
},
|
|
974
|
-
enumerable:
|
|
974
|
+
enumerable: false,
|
|
975
975
|
configurable: true
|
|
976
976
|
});
|
|
977
977
|
Object.defineProperty(Fdc3Context.prototype, "target", {
|
|
@@ -981,7 +981,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
981
981
|
set: function (a) {
|
|
982
982
|
this.item("target", a);
|
|
983
983
|
},
|
|
984
|
-
enumerable:
|
|
984
|
+
enumerable: false,
|
|
985
985
|
configurable: true
|
|
986
986
|
});
|
|
987
987
|
Object.defineProperty(Fdc3Context.prototype, "name", {
|
|
@@ -991,7 +991,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
991
991
|
set: function (a) {
|
|
992
992
|
this.item("name", a);
|
|
993
993
|
},
|
|
994
|
-
enumerable:
|
|
994
|
+
enumerable: false,
|
|
995
995
|
configurable: true
|
|
996
996
|
});
|
|
997
997
|
Object.defineProperty(Fdc3Context.prototype, "id", {
|
|
@@ -1001,7 +1001,7 @@ var Fdc3Context = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1001
1001
|
set: function (a) {
|
|
1002
1002
|
this._id = a;
|
|
1003
1003
|
},
|
|
1004
|
-
enumerable:
|
|
1004
|
+
enumerable: false,
|
|
1005
1005
|
configurable: true
|
|
1006
1006
|
});
|
|
1007
1007
|
Fdc3Context.prototype.toJson = function () {
|
|
@@ -1027,7 +1027,7 @@ var Fdc3Instrument = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1027
1027
|
set: function (a) {
|
|
1028
1028
|
this.id.item("ticker", a);
|
|
1029
1029
|
},
|
|
1030
|
-
enumerable:
|
|
1030
|
+
enumerable: false,
|
|
1031
1031
|
configurable: true
|
|
1032
1032
|
});
|
|
1033
1033
|
Fdc3Instrument.$t = markType(Fdc3Instrument, 'Fdc3Instrument', Fdc3Context.$);
|
|
@@ -1052,7 +1052,7 @@ var Fdc3InstrumentList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1052
1052
|
set: function (a) {
|
|
1053
1053
|
this._instruments = a;
|
|
1054
1054
|
},
|
|
1055
|
-
enumerable:
|
|
1055
|
+
enumerable: false,
|
|
1056
1056
|
configurable: true
|
|
1057
1057
|
});
|
|
1058
1058
|
Fdc3InstrumentList.$t = markType(Fdc3InstrumentList, 'Fdc3InstrumentList', Fdc3Context.$);
|
|
@@ -1075,7 +1075,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1075
1075
|
set: function (a) {
|
|
1076
1076
|
this.item("instrument", a);
|
|
1077
1077
|
},
|
|
1078
|
-
enumerable:
|
|
1078
|
+
enumerable: false,
|
|
1079
1079
|
configurable: true
|
|
1080
1080
|
});
|
|
1081
1081
|
Object.defineProperty(Fdc3Position.prototype, "shares", {
|
|
@@ -1085,7 +1085,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1085
1085
|
set: function (a) {
|
|
1086
1086
|
this.item("shares", a);
|
|
1087
1087
|
},
|
|
1088
|
-
enumerable:
|
|
1088
|
+
enumerable: false,
|
|
1089
1089
|
configurable: true
|
|
1090
1090
|
});
|
|
1091
1091
|
Object.defineProperty(Fdc3Position.prototype, "cost", {
|
|
@@ -1095,7 +1095,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1095
1095
|
set: function (a) {
|
|
1096
1096
|
this.item("cost", a);
|
|
1097
1097
|
},
|
|
1098
|
-
enumerable:
|
|
1098
|
+
enumerable: false,
|
|
1099
1099
|
configurable: true
|
|
1100
1100
|
});
|
|
1101
1101
|
Object.defineProperty(Fdc3Position.prototype, "price", {
|
|
@@ -1105,7 +1105,7 @@ var Fdc3Position = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1105
1105
|
set: function (a) {
|
|
1106
1106
|
this.item("price", a);
|
|
1107
1107
|
},
|
|
1108
|
-
enumerable:
|
|
1108
|
+
enumerable: false,
|
|
1109
1109
|
configurable: true
|
|
1110
1110
|
});
|
|
1111
1111
|
Fdc3Position.$t = markType(Fdc3Position, 'Fdc3Position', Fdc3Context.$);
|
|
@@ -1129,7 +1129,7 @@ var Fdc3Portfolio = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1129
1129
|
set: function (a) {
|
|
1130
1130
|
this._positions = a;
|
|
1131
1131
|
},
|
|
1132
|
-
enumerable:
|
|
1132
|
+
enumerable: false,
|
|
1133
1133
|
configurable: true
|
|
1134
1134
|
});
|
|
1135
1135
|
Fdc3Portfolio.$t = markType(Fdc3Portfolio, 'Fdc3Portfolio', Fdc3Context.$);
|
|
@@ -1163,7 +1163,7 @@ var Fdc3OrganizationList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1163
1163
|
set: function (a) {
|
|
1164
1164
|
this._organizations = a;
|
|
1165
1165
|
},
|
|
1166
|
-
enumerable:
|
|
1166
|
+
enumerable: false,
|
|
1167
1167
|
configurable: true
|
|
1168
1168
|
});
|
|
1169
1169
|
Fdc3OrganizationList.$t = markType(Fdc3OrganizationList, 'Fdc3OrganizationList', Fdc3Context.$);
|
|
@@ -1221,7 +1221,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1221
1221
|
set: function (a) {
|
|
1222
1222
|
this.id.item("email", a);
|
|
1223
1223
|
},
|
|
1224
|
-
enumerable:
|
|
1224
|
+
enumerable: false,
|
|
1225
1225
|
configurable: true
|
|
1226
1226
|
});
|
|
1227
1227
|
Object.defineProperty(Fdc3Contact.prototype, "phone", {
|
|
@@ -1231,7 +1231,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1231
1231
|
set: function (a) {
|
|
1232
1232
|
this.id.item("phone", a);
|
|
1233
1233
|
},
|
|
1234
|
-
enumerable:
|
|
1234
|
+
enumerable: false,
|
|
1235
1235
|
configurable: true
|
|
1236
1236
|
});
|
|
1237
1237
|
Object.defineProperty(Fdc3Contact.prototype, "twitter", {
|
|
@@ -1241,7 +1241,7 @@ var Fdc3Contact = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1241
1241
|
set: function (a) {
|
|
1242
1242
|
this.id.item("twitter", a);
|
|
1243
1243
|
},
|
|
1244
|
-
enumerable:
|
|
1244
|
+
enumerable: false,
|
|
1245
1245
|
configurable: true
|
|
1246
1246
|
});
|
|
1247
1247
|
Fdc3Contact.$t = markType(Fdc3Contact, 'Fdc3Contact', Fdc3Context.$);
|
|
@@ -1288,7 +1288,7 @@ var Fdc3ContactList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1288
1288
|
set: function (a) {
|
|
1289
1289
|
this._contacts = a;
|
|
1290
1290
|
},
|
|
1291
|
-
enumerable:
|
|
1291
|
+
enumerable: false,
|
|
1292
1292
|
configurable: true
|
|
1293
1293
|
});
|
|
1294
1294
|
Fdc3ContactList.$t = markType(Fdc3ContactList, 'Fdc3ContactList', Fdc3Context.$);
|
|
@@ -1590,7 +1590,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1590
1590
|
set: function (a) {
|
|
1591
1591
|
this._tickerSymbols = a;
|
|
1592
1592
|
},
|
|
1593
|
-
enumerable:
|
|
1593
|
+
enumerable: false,
|
|
1594
1594
|
configurable: true
|
|
1595
1595
|
});
|
|
1596
1596
|
Object.defineProperty(Fdc3Message.prototype, "tickerNames", {
|
|
@@ -1600,7 +1600,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1600
1600
|
set: function (a) {
|
|
1601
1601
|
this._tickerNames = a;
|
|
1602
1602
|
},
|
|
1603
|
-
enumerable:
|
|
1603
|
+
enumerable: false,
|
|
1604
1604
|
configurable: true
|
|
1605
1605
|
});
|
|
1606
1606
|
Object.defineProperty(Fdc3Message.prototype, "json", {
|
|
@@ -1610,7 +1610,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1610
1610
|
set: function (a) {
|
|
1611
1611
|
this._json = a;
|
|
1612
1612
|
},
|
|
1613
|
-
enumerable:
|
|
1613
|
+
enumerable: false,
|
|
1614
1614
|
configurable: true
|
|
1615
1615
|
});
|
|
1616
1616
|
Object.defineProperty(Fdc3Message.prototype, "context", {
|
|
@@ -1620,7 +1620,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1620
1620
|
set: function (a) {
|
|
1621
1621
|
this._context = a;
|
|
1622
1622
|
},
|
|
1623
|
-
enumerable:
|
|
1623
|
+
enumerable: false,
|
|
1624
1624
|
configurable: true
|
|
1625
1625
|
});
|
|
1626
1626
|
Object.defineProperty(Fdc3Message.prototype, "intentType", {
|
|
@@ -1630,7 +1630,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1630
1630
|
set: function (a) {
|
|
1631
1631
|
this._intentType = a;
|
|
1632
1632
|
},
|
|
1633
|
-
enumerable:
|
|
1633
|
+
enumerable: false,
|
|
1634
1634
|
configurable: true
|
|
1635
1635
|
});
|
|
1636
1636
|
Object.defineProperty(Fdc3Message.prototype, "contextType", {
|
|
@@ -1640,7 +1640,7 @@ var Fdc3Message = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1640
1640
|
set: function (a) {
|
|
1641
1641
|
this._contextType = a;
|
|
1642
1642
|
},
|
|
1643
|
-
enumerable:
|
|
1643
|
+
enumerable: false,
|
|
1644
1644
|
configurable: true
|
|
1645
1645
|
});
|
|
1646
1646
|
Fdc3Message.$t = markType(Fdc3Message, 'Fdc3Message');
|
|
@@ -1952,7 +1952,7 @@ var Fdc3DataAdapter = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1952
1952
|
set: function (a) {
|
|
1953
1953
|
this.a3 = a;
|
|
1954
1954
|
},
|
|
1955
|
-
enumerable:
|
|
1955
|
+
enumerable: false,
|
|
1956
1956
|
configurable: true
|
|
1957
1957
|
});
|
|
1958
1958
|
Fdc3DataAdapter.prototype.a7 = function (a) {
|
package/lib/Fdc3DataAdapter.d.ts
CHANGED
|
@@ -24,7 +24,8 @@ export declare class Fdc3DataAdapter extends FinancialDataAdapter implements IDi
|
|
|
24
24
|
private _openFin;
|
|
25
25
|
constructor(a: any);
|
|
26
26
|
private a3;
|
|
27
|
-
private a4;
|
|
27
|
+
private get a4();
|
|
28
|
+
private set a4(value);
|
|
28
29
|
protected a7(a: boolean): void;
|
|
29
30
|
dispose(): void;
|
|
30
31
|
}
|
package/lib/Fdc3Message.d.ts
CHANGED
|
@@ -7,15 +7,21 @@ export declare class Fdc3Message extends Base {
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
constructor();
|
|
9
9
|
private _tickerSymbols;
|
|
10
|
-
tickerSymbols: string[];
|
|
10
|
+
get tickerSymbols(): string[];
|
|
11
|
+
set tickerSymbols(a: string[]);
|
|
11
12
|
private _tickerNames;
|
|
12
|
-
tickerNames: string[];
|
|
13
|
+
get tickerNames(): string[];
|
|
14
|
+
set tickerNames(a: string[]);
|
|
13
15
|
private _json;
|
|
14
|
-
json: string;
|
|
16
|
+
get json(): string;
|
|
17
|
+
set json(a: string);
|
|
15
18
|
private _context;
|
|
16
|
-
context: Fdc3Context;
|
|
19
|
+
get context(): Fdc3Context;
|
|
20
|
+
set context(a: Fdc3Context);
|
|
17
21
|
private _intentType;
|
|
18
|
-
intentType: string;
|
|
22
|
+
get intentType(): string;
|
|
23
|
+
set intentType(a: string);
|
|
19
24
|
private _contextType;
|
|
20
|
-
contextType: string;
|
|
25
|
+
get contextType(): string;
|
|
26
|
+
set contextType(a: string);
|
|
21
27
|
}
|