-
Notifications
You must be signed in to change notification settings - Fork 132
/
Intents.ts
58 lines (55 loc) · 1.35 KB
/
Intents.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* SPDX-License-Identifier: Apache-2.0
* Copyright FINOS FDC3 contributors - see NOTICE file
*/
/**
* @see https://fdc3.finos.org/docs/intents/spec#standard-intents
*/
export type StandardIntent =
| 'CreateInteraction'
| 'CreateOrUpdateProfile'
| 'SendChatMessage'
| 'StartCall'
| 'StartChat'
| 'StartEmail'
| 'ViewAnalysis'
| 'ViewChat'
| 'ViewChart'
| 'ViewContact'
| 'ViewHoldings'
| 'ViewInstrument'
| 'ViewInteractions'
| 'ViewMessages'
| 'ViewNews'
| 'ViewOrders'
| 'ViewProfile'
| 'ViewQuote'
| 'ViewResearch';
/**
* @see https://fdc3.finos.org/docs/intents/spec
*/
export type Intent = StandardIntent | (string & {});
/**
* @deprecated Use {@link StandardIntent} instead
*/
export enum Intents {
CreateInteraction = 'CreateInteraction',
CreateOrUpdateProfile = 'CreateOrUpdateProfile',
SendChatMessage = 'SendChatMessage',
StartCall = 'StartCall',
StartChat = 'StartChat',
StartEmail = 'StartEmail',
ViewAnalysis = 'ViewAnalysis',
ViewChat = 'ViewChat',
ViewChart = 'ViewChart',
ViewContact = 'ViewContact',
ViewHoldings = 'ViewHoldings',
ViewInstrument = 'ViewInstrument',
ViewInteractions = 'ViewInteractions',
ViewMessages = 'ViewMessages',
ViewNews = 'ViewNews',
ViewOrders = 'ViewOrders',
ViewProfile = 'ViewProfile',
ViewQuote = 'ViewQuote',
ViewResearch = 'ViewResearch',
}