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.
@@ -43,12 +43,17 @@ export declare class Fdc3Context extends Fdc3Dictionary {
43
43
  constructor(a: number);
44
44
  constructor(a: number, b: Fdc3ContextType);
45
45
  constructor(a: number, ..._rest: any[]);
46
- intent: Fdc3IntentType;
47
- type: string;
48
- target: string;
49
- name: string;
46
+ get intent(): Fdc3IntentType;
47
+ set intent(a: Fdc3IntentType);
48
+ get type(): string;
49
+ set type(a: string);
50
+ get target(): string;
51
+ set target(a: string);
52
+ get name(): string;
53
+ set name(a: string);
50
54
  private _id;
51
- id: Fdc3Dictionary;
55
+ get id(): Fdc3Dictionary;
56
+ set id(a: Fdc3Dictionary);
52
57
  toJson(): string;
53
58
  }
54
59
  /**
@@ -57,7 +62,8 @@ export declare class Fdc3Context extends Fdc3Dictionary {
57
62
  export declare class Fdc3Instrument extends Fdc3Context {
58
63
  static $t: Type;
59
64
  constructor();
60
- ticker: string;
65
+ get ticker(): string;
66
+ set ticker(a: string);
61
67
  }
62
68
  /**
63
69
  * @hidden
@@ -66,7 +72,8 @@ export declare class Fdc3InstrumentList extends Fdc3Context {
66
72
  static $t: Type;
67
73
  constructor();
68
74
  private _instruments;
69
- instruments: Fdc3Instrument[];
75
+ get instruments(): Fdc3Instrument[];
76
+ set instruments(a: Fdc3Instrument[]);
70
77
  }
71
78
  /**
72
79
  * @hidden
@@ -74,10 +81,14 @@ export declare class Fdc3InstrumentList extends Fdc3Context {
74
81
  export declare class Fdc3Position extends Fdc3Context {
75
82
  static $t: Type;
76
83
  constructor();
77
- instrument: Fdc3Instrument;
78
- shares: number;
79
- cost: number;
80
- price: number;
84
+ get instrument(): Fdc3Instrument;
85
+ set instrument(a: Fdc3Instrument);
86
+ get shares(): number;
87
+ set shares(a: number);
88
+ get cost(): number;
89
+ set cost(a: number);
90
+ get price(): number;
91
+ set price(a: number);
81
92
  }
82
93
  /**
83
94
  * @hidden
@@ -86,7 +97,8 @@ export declare class Fdc3Portfolio extends Fdc3Context {
86
97
  static $t: Type;
87
98
  constructor();
88
99
  private _positions;
89
- positions: Fdc3Position[];
100
+ get positions(): Fdc3Position[];
101
+ set positions(a: Fdc3Position[]);
90
102
  }
91
103
  /**
92
104
  * @hidden
@@ -102,7 +114,8 @@ export declare class Fdc3OrganizationList extends Fdc3Context {
102
114
  static $t: Type;
103
115
  constructor();
104
116
  private _organizations;
105
- organizations: Fdc3Instrument[];
117
+ get organizations(): Fdc3Instrument[];
118
+ set organizations(a: Fdc3Instrument[]);
106
119
  }
107
120
  /**
108
121
  * @hidden
@@ -112,9 +125,12 @@ export declare class Fdc3Contact extends Fdc3Context {
112
125
  constructor(a: number);
113
126
  constructor(a: number, b: string, c: string, d: string, e?: string);
114
127
  constructor(a: number, ..._rest: any[]);
115
- email: string;
116
- phone: string;
117
- twitter: string;
128
+ get email(): string;
129
+ set email(a: string);
130
+ get phone(): string;
131
+ set phone(a: string);
132
+ get twitter(): string;
133
+ set twitter(a: string);
118
134
  }
119
135
  /**
120
136
  * @hidden
@@ -125,5 +141,6 @@ export declare class Fdc3ContactList extends Fdc3Context {
125
141
  constructor(a: number, b: Fdc3Contact[]);
126
142
  constructor(a: number, ..._rest: any[]);
127
143
  private _contacts;
128
- contacts: Fdc3Contact[];
144
+ get contacts(): Fdc3Contact[];
145
+ set contacts(a: Fdc3Contact[]);
129
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-fdc3",
3
- "version": "4.2.4-alpha",
3
+ "version": "4.3.0-beta.0",
4
4
  "description": "Ignite UI Web Components FDC3 data adapter generates financial data for received FDC3 intents as well as sending messages to other FDC3-enabled apps using OpenFin's FDC3 service.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-fdc3",
6
6
  "keywords": [
@@ -20,7 +20,7 @@
20
20
  "tslib": "^2.3.1"
21
21
  },
22
22
  "peerDependencies": {
23
- "igniteui-webcomponents-core": "4.2.4-alpha",
23
+ "igniteui-webcomponents-core": "4.3.0-beta.0",
24
24
  "openfin-fdc3": "^0.2.0",
25
25
  "openfin-launcher": "^1.4.8"
26
26
  },