-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
formulon.d.ts
146 lines (138 loc) · 3.1 KB
/
formulon.d.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
declare module 'formulon' {
export type DataType = 'number' | 'text' | 'picklist' | 'multipicklist' | DataTypeNoOption;
export type DataTypeNoOption = 'checkbox' | 'date' | 'time' | 'datetime' | 'geolocation' | 'null';
export type DataType = 'number' | 'text' | 'checkbox' | 'date' | 'time' | 'datetime' | 'geolocation' | 'null';
export type FormulaData = Record<string, FormulaDataValue>;
export type FormulaDataValue = AstLiteral | AstLiteralText | AstLiteralNumber | AstLiteralPicklist;
export type FormulaResult = AstError | AstNotImplementedError | FormulaDataValue;
export type AstResult = AstCallExpression;
export type FunctionType =
| 'abs'
| 'add'
| 'addmonths'
| 'and'
| 'begins'
| 'blankvalue'
| 'br'
| 'case'
| 'casesafeid'
| 'ceiling'
| 'contains'
| 'currencyrate'
| 'date'
| 'datetimevalue'
| 'datevalue'
| 'day'
| 'distance'
| 'divide'
| 'equal'
| 'exp'
| 'exponentiate'
| 'find'
| 'floor'
| 'geolocation'
| 'getsessionid'
| 'greaterthan'
| 'greaterthanorequal'
| 'hour'
| 'hyperlink'
| 'if'
| 'image'
| 'includes'
| 'isblank'
| 'isnull'
| 'isnumber'
| 'ispickval'
| 'left'
| 'len'
| 'lessthan'
| 'lessthanorequal'
| 'ln'
| 'log'
| 'lower'
| 'lpad'
| 'max'
| 'mceiling'
| 'mfloor'
| 'mid'
| 'millisecond'
| 'min'
| 'minute'
| 'mod'
| 'month'
| 'multiply'
| 'not'
| 'now'
| 'nullvalue'
| 'or'
| 'regex'
| 'right'
| 'round'
| 'rpad'
| 'second'
| 'sqrt'
| 'substitute'
| 'subtract'
| 'text'
| 'timenow'
| 'timevalue'
| 'today'
| 'trim'
| 'unequal'
| 'upper'
| 'value'
| 'weekday'
| 'year';
export interface AstError {
type: 'error';
errorType: 'ArgumentError';
message: string;
name?: string;
FunctionType: string;
expected: number;
received: number;
}
export interface AstNotImplementedError {
type: 'error';
errorType: 'NotImplementedError';
message: string;
name: string;
}
export interface AstLiteral {
type: 'literal';
value: string | number | boolean | null | Date;
dataType: DataTypeNoOption;
options?: Record<string, any> | null;
}
export interface AstLiteralText {
type: 'literal';
value: string;
dataType: 'text';
options: {
length: number;
};
}
export interface AstLiteralNumber {
type: 'literal';
value: number;
dataType: 'number';
options: {
length: number;
scale: number;
};
}
export interface AstLiteralPicklist {
type: 'literal';
value: number;
dataType: 'picklist' | 'multipicklist';
options: { values: string[] };
}
export interface AstCallExpression {
type: 'callExpression';
id: string;
arguments: (FormulaResult | AstCallExpression)[];
}
export const parse: (formula: string, substitutions: FormulaData) => FormulaResult;
export const extract: (formula: string) => string[];
export const ast: (formula: string) => AstCallExpression;
}