igniteui-webcomponents-fdc3 6.3.0 → 6.3.1

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 (37) hide show
  1. package/esm2015/lib/Fdc3Converter.js +2 -4
  2. package/esm2015/lib/Fdc3DataAdapter.js +2 -4
  3. package/esm2015/lib/Fdc3Dictionary.js +2 -4
  4. package/esm2015/lib/Fdc3Message.js +2 -4
  5. package/esm2015/lib/Fdc3Serializer_combined.js +20 -40
  6. package/esm2015/lib/Fdc3Util.js +2 -4
  7. package/esm2015/lib/Randomizer.js +2 -4
  8. package/esm5/lib/Fdc3Converter.js +1 -2
  9. package/esm5/lib/Fdc3DataAdapter.js +1 -2
  10. package/esm5/lib/Fdc3Dictionary.js +1 -2
  11. package/esm5/lib/Fdc3Message.js +1 -2
  12. package/esm5/lib/Fdc3Serializer_combined.js +10 -20
  13. package/esm5/lib/Fdc3Util.js +1 -2
  14. package/esm5/lib/Randomizer.js +1 -2
  15. package/fesm2015/igniteui-webcomponents-fdc3.js +0 -48
  16. package/igniteui-webcomponents-fdc3.d.ts +1 -1
  17. package/lib/Fdc3Contact.d.ts +1 -1
  18. package/lib/Fdc3ContactList.d.ts +1 -1
  19. package/lib/Fdc3Context.d.ts +1 -1
  20. package/lib/Fdc3ContextType.d.ts +48 -48
  21. package/lib/Fdc3Converter.d.ts +20 -20
  22. package/lib/Fdc3DataAdapter.d.ts +31 -31
  23. package/lib/Fdc3Dictionary.d.ts +19 -19
  24. package/lib/Fdc3Instrument.d.ts +1 -1
  25. package/lib/Fdc3InstrumentList.d.ts +1 -1
  26. package/lib/Fdc3IntentType.d.ts +56 -56
  27. package/lib/Fdc3Message.d.ts +27 -27
  28. package/lib/Fdc3Organization.d.ts +1 -1
  29. package/lib/Fdc3OrganizationList.d.ts +1 -1
  30. package/lib/Fdc3Portfolio.d.ts +1 -1
  31. package/lib/Fdc3Position.d.ts +1 -1
  32. package/lib/Fdc3Serializer.d.ts +1 -1
  33. package/lib/Fdc3Serializer_combined.d.ts +146 -146
  34. package/lib/Fdc3Util.d.ts +17 -17
  35. package/lib/Randomizer.d.ts +11 -11
  36. package/package.json +2 -2
  37. package/public_api.d.ts +18 -18
@@ -1,48 +1,48 @@
1
- import { Type } from "igniteui-webcomponents-core";
2
- /**
3
- * Specifies type of FDC3 context
4
- * https://fdc3.finos.org/docs/1.0/context-spec
5
- *
6
- */
7
- export declare enum Fdc3ContextType {
8
- /**
9
- * Specifies a context that is unknown by FDC3 data adapter
10
- */
11
- Unknown = 0,
12
- /**
13
- * Specifies FDC3 context for single instrument with stock name, stock ticker/symbol
14
- */
15
- Instrument = 1,
16
- /**
17
- * Specifies FDC3 context for multiple instrument
18
- */
19
- InstrumentList = 2,
20
- /**
21
- * Specifies FDC3 context for single position
22
- */
23
- Position = 3,
24
- /**
25
- * Specifies FDC3 context for multiple positions
26
- */
27
- Portfolio = 4,
28
- /**
29
- * Currently not supported - Specifies FDC3 context for single contact with person name, email, phone, etc.
30
- */
31
- Contact = 5,
32
- /**
33
- * Currently not supported - Specifies FDC3 context for multiple contacts
34
- */
35
- ContactList = 6,
36
- /**
37
- * Currently not supported - Specifies FDC3 context for single organization with company name
38
- */
39
- Organization = 7,
40
- /**
41
- * Currently not supported - Specifies FDC3 context for multiple organizations
42
- */
43
- OrganizationList = 8
44
- }
45
- /**
46
- * @hidden
47
- */
48
- export declare let Fdc3ContextType_$type: Type;
1
+ import { Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * Specifies type of FDC3 context
4
+ * https://fdc3.finos.org/docs/1.0/context-spec
5
+ *
6
+ */
7
+ export declare enum Fdc3ContextType {
8
+ /**
9
+ * Specifies a context that is unknown by FDC3 data adapter
10
+ */
11
+ Unknown = 0,
12
+ /**
13
+ * Specifies FDC3 context for single instrument with stock name, stock ticker/symbol
14
+ */
15
+ Instrument = 1,
16
+ /**
17
+ * Specifies FDC3 context for multiple instrument
18
+ */
19
+ InstrumentList = 2,
20
+ /**
21
+ * Specifies FDC3 context for single position
22
+ */
23
+ Position = 3,
24
+ /**
25
+ * Specifies FDC3 context for multiple positions
26
+ */
27
+ Portfolio = 4,
28
+ /**
29
+ * Currently not supported - Specifies FDC3 context for single contact with person name, email, phone, etc.
30
+ */
31
+ Contact = 5,
32
+ /**
33
+ * Currently not supported - Specifies FDC3 context for multiple contacts
34
+ */
35
+ ContactList = 6,
36
+ /**
37
+ * Currently not supported - Specifies FDC3 context for single organization with company name
38
+ */
39
+ Organization = 7,
40
+ /**
41
+ * Currently not supported - Specifies FDC3 context for multiple organizations
42
+ */
43
+ OrganizationList = 8
44
+ }
45
+ /**
46
+ * @hidden
47
+ */
48
+ export declare let Fdc3ContextType_$type: Type;
@@ -1,20 +1,20 @@
1
- import { Base, Type } from "igniteui-webcomponents-core";
2
- import { Fdc3Instrument } from "./Fdc3Instrument";
3
- import { Fdc3InstrumentList } from "./Fdc3InstrumentList";
4
- import { Fdc3Position } from "./Fdc3Position";
5
- import { Fdc3Portfolio } from "./Fdc3Portfolio";
6
- /**
7
- * @hidden
8
- */
9
- export declare class Fdc3Converter extends Base {
10
- static $t: Type;
11
- static log(message_: string): void;
12
- static toInstrument(context_: any): Fdc3Instrument;
13
- static toInstrumentList(context_: any): Fdc3InstrumentList;
14
- static toPosition(context_: any): Fdc3Position;
15
- static toPortfolio(context_: any): Fdc3Portfolio;
16
- static fromPortfolio(portfolio_: Fdc3Portfolio): any;
17
- static fromPosition(position_: Fdc3Position): any;
18
- static fromInstrumentList(list_: Fdc3InstrumentList): any;
19
- static fromInstrument(instrument_: Fdc3Instrument): any;
20
- }
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { Fdc3Instrument } from "./Fdc3Instrument";
3
+ import { Fdc3InstrumentList } from "./Fdc3InstrumentList";
4
+ import { Fdc3Position } from "./Fdc3Position";
5
+ import { Fdc3Portfolio } from "./Fdc3Portfolio";
6
+ /**
7
+ * @hidden
8
+ */
9
+ export declare class Fdc3Converter extends Base {
10
+ static $t: Type;
11
+ static log(message_: string): void;
12
+ static toInstrument(context_: any): Fdc3Instrument;
13
+ static toInstrumentList(context_: any): Fdc3InstrumentList;
14
+ static toPosition(context_: any): Fdc3Position;
15
+ static toPortfolio(context_: any): Fdc3Portfolio;
16
+ static fromPortfolio(portfolio_: Fdc3Portfolio): any;
17
+ static fromPosition(position_: Fdc3Position): any;
18
+ static fromInstrumentList(list_: Fdc3InstrumentList): any;
19
+ static fromInstrument(instrument_: Fdc3Instrument): any;
20
+ }
@@ -1,31 +1,31 @@
1
- import { FinancialDataAdapter } from "igniteui-webcomponents-core";
2
- import { IDisposable, Type } from "igniteui-webcomponents-core";
3
- import { Fdc3Message } from "./Fdc3Message";
4
- import { Fdc3Position } from "./Fdc3Position";
5
- import { Fdc3Instrument } from "./Fdc3Instrument";
6
- import { Fdc3InstrumentList } from "./Fdc3InstrumentList";
7
- import { Fdc3Portfolio } from "./Fdc3Portfolio";
8
- /**
9
- * @hidden
10
- */
11
- export declare class Fdc3DataAdapter extends FinancialDataAdapter implements IDisposable {
12
- static $t: Type;
13
- protected aq(a: string, b: any, c: any): void;
14
- messageReceived: (message: Fdc3Message) => void;
15
- ba(a: Fdc3Message): void;
16
- a5(): boolean;
17
- subscribe(intentType_: string, contextType_?: string): void;
18
- private handleIntent;
19
- sendInstrument(a: string, b: Fdc3Instrument, c?: string): void;
20
- sendInstrumentList(a: string, b: Fdc3InstrumentList, c?: string): void;
21
- sendPosition(a: string, b: Fdc3Position, c?: string): void;
22
- sendPortfolio(a: string, b: Fdc3Portfolio, c?: string): void;
23
- private bb;
24
- private _openFin;
25
- constructor(a: any);
26
- private a3;
27
- private get a4();
28
- private set a4(value);
29
- protected a7(a: boolean): void;
30
- dispose(): void;
31
- }
1
+ import { FinancialDataAdapter } from "igniteui-webcomponents-core";
2
+ import { IDisposable, Type } from "igniteui-webcomponents-core";
3
+ import { Fdc3Message } from "./Fdc3Message";
4
+ import { Fdc3Position } from "./Fdc3Position";
5
+ import { Fdc3Instrument } from "./Fdc3Instrument";
6
+ import { Fdc3InstrumentList } from "./Fdc3InstrumentList";
7
+ import { Fdc3Portfolio } from "./Fdc3Portfolio";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class Fdc3DataAdapter extends FinancialDataAdapter implements IDisposable {
12
+ static $t: Type;
13
+ protected aq(a: string, b: any, c: any): void;
14
+ messageReceived: (message: Fdc3Message) => void;
15
+ ba(a: Fdc3Message): void;
16
+ a5(): boolean;
17
+ subscribe(intentType_: string, contextType_?: string): void;
18
+ private handleIntent;
19
+ sendInstrument(a: string, b: Fdc3Instrument, c?: string): void;
20
+ sendInstrumentList(a: string, b: Fdc3InstrumentList, c?: string): void;
21
+ sendPosition(a: string, b: Fdc3Position, c?: string): void;
22
+ sendPortfolio(a: string, b: Fdc3Portfolio, c?: string): void;
23
+ private bb;
24
+ private _openFin;
25
+ constructor(a: any);
26
+ private a3;
27
+ private get a4();
28
+ private set a4(value);
29
+ protected a7(a: boolean): void;
30
+ dispose(): void;
31
+ }
@@ -1,19 +1,19 @@
1
- import { Base, Type } from "igniteui-webcomponents-core";
2
- import { Dictionary$2 } from "igniteui-webcomponents-core";
3
- /**
4
- * @hidden
5
- */
6
- export declare class Fdc3Dictionary extends Base {
7
- static $t: Type;
8
- constructor();
9
- d: Dictionary$2<string, any>;
10
- getKeys(): string[];
11
- getValues(): any[];
12
- item(a: string, b?: any): any;
13
- get(a: string): any;
14
- h(a: string): string;
15
- e(a: string): number;
16
- set(a: string, b: any): void;
17
- remove(a: string): void;
18
- contains(a: string): boolean;
19
- }
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { Dictionary$2 } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class Fdc3Dictionary extends Base {
7
+ static $t: Type;
8
+ constructor();
9
+ d: Dictionary$2<string, any>;
10
+ getKeys(): string[];
11
+ getValues(): any[];
12
+ item(a: string, b?: any): any;
13
+ get(a: string): any;
14
+ h(a: string): string;
15
+ e(a: string): number;
16
+ set(a: string, b: any): void;
17
+ remove(a: string): void;
18
+ contains(a: string): boolean;
19
+ }
@@ -1 +1 @@
1
- export { Fdc3Instrument } from "./Fdc3Serializer_combined";
1
+ export { Fdc3Instrument } from "./Fdc3Serializer_combined";
@@ -1 +1 @@
1
- export { Fdc3InstrumentList } from "./Fdc3Serializer_combined";
1
+ export { Fdc3InstrumentList } from "./Fdc3Serializer_combined";
@@ -1,56 +1,56 @@
1
- import { Type } from "igniteui-webcomponents-core";
2
- /**
3
- * Specifies type of FDC3 intent
4
- * https://fdc3.finos.org/docs/1.0/intents-spec
5
- *
6
- */
7
- export declare enum Fdc3IntentType {
8
- /**
9
- * Specifies no intent for FDC3 data adapter to listen to
10
- */
11
- None = 0,
12
- /**
13
- * Specifies all intents for FDC3 data adapter to listen to
14
- */
15
- All = 1,
16
- /**
17
- * Specifies an intent that is unknown by FDC3 data adapter
18
- */
19
- Unknown = 2,
20
- /**
21
- * Specifies an intent to view a chart for stock tickers in the Instrument context
22
- */
23
- ViewChart = 3,
24
- /**
25
- * Specifies an intent to view information about stock tickers in the Instrument context
26
- */
27
- ViewInstrument = 4,
28
- /**
29
- * Currently not supported - Starts a call with Contact(s) context
30
- */
31
- StartCall = 5,
32
- /**
33
- * Currently not supported - Starts a chat with Contact(s) context
34
- */
35
- StartChat = 6,
36
- /**
37
- * Currently not supported - Display analysis about Instrument, Contact, or Organization
38
- */
39
- ViewAnalysis = 7,
40
- /**
41
- * Currently not supported - Display details of the Contact context
42
- */
43
- ViewContact = 8,
44
- /**
45
- * Currently not supported - Display news for Instrument, Contact, or Organization
46
- */
47
- ViewNews = 9,
48
- /**
49
- * Currently not supported - Display pricing for the Instrument context
50
- */
51
- ViewQuote = 10
52
- }
53
- /**
54
- * @hidden
55
- */
56
- export declare let Fdc3IntentType_$type: Type;
1
+ import { Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * Specifies type of FDC3 intent
4
+ * https://fdc3.finos.org/docs/1.0/intents-spec
5
+ *
6
+ */
7
+ export declare enum Fdc3IntentType {
8
+ /**
9
+ * Specifies no intent for FDC3 data adapter to listen to
10
+ */
11
+ None = 0,
12
+ /**
13
+ * Specifies all intents for FDC3 data adapter to listen to
14
+ */
15
+ All = 1,
16
+ /**
17
+ * Specifies an intent that is unknown by FDC3 data adapter
18
+ */
19
+ Unknown = 2,
20
+ /**
21
+ * Specifies an intent to view a chart for stock tickers in the Instrument context
22
+ */
23
+ ViewChart = 3,
24
+ /**
25
+ * Specifies an intent to view information about stock tickers in the Instrument context
26
+ */
27
+ ViewInstrument = 4,
28
+ /**
29
+ * Currently not supported - Starts a call with Contact(s) context
30
+ */
31
+ StartCall = 5,
32
+ /**
33
+ * Currently not supported - Starts a chat with Contact(s) context
34
+ */
35
+ StartChat = 6,
36
+ /**
37
+ * Currently not supported - Display analysis about Instrument, Contact, or Organization
38
+ */
39
+ ViewAnalysis = 7,
40
+ /**
41
+ * Currently not supported - Display details of the Contact context
42
+ */
43
+ ViewContact = 8,
44
+ /**
45
+ * Currently not supported - Display news for Instrument, Contact, or Organization
46
+ */
47
+ ViewNews = 9,
48
+ /**
49
+ * Currently not supported - Display pricing for the Instrument context
50
+ */
51
+ ViewQuote = 10
52
+ }
53
+ /**
54
+ * @hidden
55
+ */
56
+ export declare let Fdc3IntentType_$type: Type;
@@ -1,27 +1,27 @@
1
- import { Base, Type } from "igniteui-webcomponents-core";
2
- import { Fdc3Context } from "./Fdc3Context";
3
- /**
4
- * @hidden
5
- */
6
- export declare class Fdc3Message extends Base {
7
- static $t: Type;
8
- constructor();
9
- private _tickerSymbols;
10
- get tickerSymbols(): string[];
11
- set tickerSymbols(a: string[]);
12
- private _tickerNames;
13
- get tickerNames(): string[];
14
- set tickerNames(a: string[]);
15
- private _json;
16
- get json(): string;
17
- set json(a: string);
18
- private _context;
19
- get context(): Fdc3Context;
20
- set context(a: Fdc3Context);
21
- private _intentType;
22
- get intentType(): string;
23
- set intentType(a: string);
24
- private _contextType;
25
- get contextType(): string;
26
- set contextType(a: string);
27
- }
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { Fdc3Context } from "./Fdc3Context";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class Fdc3Message extends Base {
7
+ static $t: Type;
8
+ constructor();
9
+ private _tickerSymbols;
10
+ get tickerSymbols(): string[];
11
+ set tickerSymbols(a: string[]);
12
+ private _tickerNames;
13
+ get tickerNames(): string[];
14
+ set tickerNames(a: string[]);
15
+ private _json;
16
+ get json(): string;
17
+ set json(a: string);
18
+ private _context;
19
+ get context(): Fdc3Context;
20
+ set context(a: Fdc3Context);
21
+ private _intentType;
22
+ get intentType(): string;
23
+ set intentType(a: string);
24
+ private _contextType;
25
+ get contextType(): string;
26
+ set contextType(a: string);
27
+ }
@@ -1 +1 @@
1
- export { Fdc3Organization } from "./Fdc3Serializer_combined";
1
+ export { Fdc3Organization } from "./Fdc3Serializer_combined";
@@ -1 +1 @@
1
- export { Fdc3OrganizationList } from "./Fdc3Serializer_combined";
1
+ export { Fdc3OrganizationList } from "./Fdc3Serializer_combined";
@@ -1 +1 @@
1
- export { Fdc3Portfolio } from "./Fdc3Serializer_combined";
1
+ export { Fdc3Portfolio } from "./Fdc3Serializer_combined";
@@ -1 +1 @@
1
- export { Fdc3Position } from "./Fdc3Serializer_combined";
1
+ export { Fdc3Position } from "./Fdc3Serializer_combined";
@@ -1 +1 @@
1
- export { Fdc3Serializer } from "./Fdc3Serializer_combined";
1
+ export { Fdc3Serializer } from "./Fdc3Serializer_combined";