@fincity/kirun-js 2.5.0 → 2.8.2
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/__tests__/engine/function/system/WaitTest.ts +1 -1
- package/__tests__/engine/function/system/array/AddFirstTest.ts +2 -6
- package/__tests__/engine/function/system/array/IndexOfTest.ts +8 -13
- package/__tests__/engine/function/system/array/LastIndexOfTest.ts +9 -28
- package/__tests__/engine/function/system/date/AddSubtractTimeTest.ts +93 -0
- package/__tests__/engine/function/system/date/DateFunctionRepositoryTest.ts +96 -0
- package/__tests__/engine/function/system/date/DifferenceTest.ts +93 -0
- package/__tests__/engine/function/system/date/EpochToTimestampTest.ts +133 -0
- package/__tests__/engine/function/system/date/FromDateStringTest.ts +51 -0
- package/__tests__/engine/function/system/date/FromNowTest.ts +71 -0
- package/__tests__/engine/function/system/date/GetCurrentTimeStampTest.ts +19 -27
- package/__tests__/engine/function/system/date/GetNamesTest.ts +105 -0
- package/__tests__/engine/function/system/date/IsBetweenTest.ts +53 -0
- package/__tests__/engine/function/system/date/IsValidISODateTest.ts +42 -54
- package/__tests__/engine/function/system/date/LastFirstOfTest.ts +64 -0
- package/__tests__/engine/function/system/date/SetTimeZoneTest.ts +48 -0
- package/__tests__/engine/function/system/date/StartEndOfTest.ts +53 -0
- package/__tests__/engine/function/system/date/TimeAsTest.ts +24 -0
- package/__tests__/engine/function/system/date/TimestampToEpochTest.ts +45 -0
- package/__tests__/engine/function/system/date/ToDateStringTest.ts +48 -0
- package/__tests__/engine/function/system/math/MathFunctionRepositoryTest.ts +2 -2
- package/__tests__/engine/function/system/math/MaximumTest.ts +3 -2
- package/__tests__/engine/function/system/math/MinimumTest.ts +18 -20
- package/__tests__/engine/function/system/math/RandomFloatTest.ts +21 -22
- package/__tests__/engine/function/system/math/RandomIntTest.ts +5 -4
- package/__tests__/engine/json/schema/covnertor/BooleanConvertorTest.ts +55 -0
- package/__tests__/engine/json/schema/covnertor/NullConvertorTest.ts +47 -0
- package/__tests__/engine/json/schema/covnertor/NumberConvertorTest.ts +154 -0
- package/__tests__/engine/json/schema/covnertor/StringConvertorTest.ts +56 -0
- package/__tests__/engine/json/schema/validator/AnyOfAllOfOneOfValidatorTest.ts +9 -7
- package/__tests__/engine/json/schema/validator/NotValidatorTest.ts +3 -3
- package/__tests__/engine/json/schema/validator/StringValidatorTest.ts +1 -9
- package/__tests__/engine/json/schema/validator/TypeValidatorTest.ts +290 -0
- package/__tests__/engine/repository/RepositoryFilterTest.ts +4 -1
- package/__tests__/engine/runtime/expression/ExpressionEqualityTest.ts +76 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +27 -20
- package/dist/types.d.ts.map +1 -1
- package/generator/generateValidationCSV.ts +52 -38
- package/generator/validation-js.csv +470 -166
- package/package.json +11 -6
- package/src/engine/function/AbstractFunction.ts +1 -1
- package/src/engine/function/system/Print.ts +19 -5
- package/src/engine/function/system/Wait.ts +1 -1
- package/src/engine/function/system/array/AbstractArrayFunction.ts +3 -3
- package/src/engine/function/system/array/Fill.ts +1 -1
- package/src/engine/function/system/array/Frequency.ts +0 -1
- package/src/engine/function/system/array/IndexOf.ts +4 -4
- package/src/engine/function/system/array/LastIndexOf.ts +3 -3
- package/src/engine/function/system/array/Rotate.ts +1 -1
- package/src/engine/function/system/array/Shuffle.ts +1 -1
- package/src/engine/function/system/array/Sort.ts +1 -1
- package/src/engine/function/system/date/AbstractDateFunction.ts +229 -111
- package/src/engine/function/system/date/AddSubtractTime.ts +99 -0
- package/src/engine/function/system/date/DateFunctionRepository.ts +228 -122
- package/src/engine/function/system/date/EpochToTimestamp.ts +75 -0
- package/src/engine/function/system/date/FromDateString.ts +44 -0
- package/src/engine/function/system/date/FromNow.ts +77 -0
- package/src/engine/function/system/date/GetCurrent.ts +20 -0
- package/src/engine/function/system/date/GetNames.ts +74 -0
- package/src/engine/function/system/date/IsBetween.ts +62 -0
- package/src/engine/function/system/date/IsValidISODate.ts +54 -40
- package/src/engine/function/system/date/LastFirstOf.ts +72 -0
- package/src/engine/function/system/date/SetTimeZone.ts +43 -0
- package/src/engine/function/system/date/StartEndOf.ts +44 -0
- package/src/engine/function/system/date/TimeAs.ts +64 -0
- package/src/engine/function/system/date/TimestampToEpoch.ts +54 -0
- package/src/engine/function/system/date/ToDateString.ts +49 -0
- package/src/engine/function/system/date/common.ts +9 -0
- package/src/engine/function/system/math/MathFunctionRepository.ts +43 -4
- package/src/engine/function/system/math/RandomAny.ts +57 -0
- package/src/engine/function/system/object/ObjectConvert.ts +99 -0
- package/src/engine/function/system/object/ObjectFunctionRepository.ts +2 -1
- package/src/engine/function/system/object/ObjectPutValue.ts +0 -2
- package/src/engine/function/system/string/AbstractStringFunction.ts +42 -82
- package/src/engine/function/system/string/StringFunctionRepository.ts +39 -20
- package/src/engine/json/schema/SchemaUtil.ts +1 -1
- package/src/engine/json/schema/convertor/BooleanConvertor.ts +76 -0
- package/src/engine/json/schema/convertor/NullConvertor.ts +31 -0
- package/src/engine/json/schema/convertor/NumberConvertor.ts +117 -0
- package/src/engine/json/schema/convertor/StringConvertor.ts +41 -0
- package/src/engine/json/schema/convertor/enums/ConversionMode.ts +11 -0
- package/src/engine/json/schema/convertor/exception/SchemaConversionException.ts +39 -0
- package/src/engine/json/schema/validator/AnyOfAllOfOneOfValidator.ts +96 -36
- package/src/engine/json/schema/validator/ArrayValidator.ts +15 -7
- package/src/engine/json/schema/validator/ObjectValidator.ts +24 -13
- package/src/engine/json/schema/validator/SchemaValidator.ts +74 -22
- package/src/engine/json/schema/validator/TypeValidator.ts +136 -23
- package/src/engine/repository/KIRunSchemaRepository.ts +57 -3
- package/src/engine/util/json/ConvertorUtil.ts +51 -0
- package/src/engine/util/json/ValidatorUtil.ts +29 -0
- package/src/engine/util/string/StringUtil.ts +12 -0
- package/__tests__/engine/function/system/date/AddTimeTest.ts +0 -115
- package/__tests__/engine/function/system/date/DateToEpochTest.ts +0 -74
- package/__tests__/engine/function/system/date/DifferenceOfTimestampsTest.ts +0 -53
- package/__tests__/engine/function/system/date/EpochToDateTest.ts +0 -105
- package/__tests__/engine/function/system/date/GetDateTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetDayTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetFullYearTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetHoursTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetMilliSecondsTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetMinutesTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetMonthTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetSecondsTest.ts +0 -85
- package/__tests__/engine/function/system/date/GetTimeAsArrayTest.ts +0 -59
- package/__tests__/engine/function/system/date/GetTimeAsObjectTest.ts +0 -83
- package/__tests__/engine/function/system/date/GetTimeTest.ts +0 -86
- package/__tests__/engine/function/system/date/IsLeapYearTest.ts +0 -85
- package/__tests__/engine/function/system/date/MaximumTimestampTest.ts +0 -55
- package/__tests__/engine/function/system/date/MinimumTimestampTest.ts +0 -54
- package/__tests__/engine/function/system/date/SubtractTimeTest.ts +0 -95
- package/src/engine/function/system/date/DateToEpoch.ts +0 -39
- package/src/engine/function/system/date/DifferenceOfTimestamps.ts +0 -45
- package/src/engine/function/system/date/EpochToDate.ts +0 -76
- package/src/engine/function/system/date/GetCurrentTimeStamp.ts +0 -36
- package/src/engine/function/system/date/GetTimeAsArray.ts +0 -48
- package/src/engine/function/system/date/GetTimeAsObject.ts +0 -66
- package/src/engine/function/system/date/MaximumTimestamp.ts +0 -73
- package/src/engine/function/system/date/MinimumTimestamp.ts +0 -74
- package/src/engine/function/system/math/RandomFloat.ts +0 -56
- package/src/engine/function/system/math/RandomInt.ts +0 -56
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
System.Array.AddFirst
|
|
2
2
|
Parameter,Type,Schema
|
|
3
|
-
source,EXPRESSION,array
|
|
4
3
|
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
4
|
+
source,EXPRESSION,array
|
|
5
5
|
Events
|
|
6
6
|
output,output
|
|
7
7
|
Event Parameter,,Schema
|
|
@@ -9,8 +9,8 @@ result,,array
|
|
|
9
9
|
|
|
10
10
|
System.Array.ArrayToArrayOfObjects
|
|
11
11
|
Parameter,Type,Schema
|
|
12
|
-
source,EXPRESSION,array
|
|
13
12
|
keyName,EXPRESSION,string
|
|
13
|
+
source,EXPRESSION,array
|
|
14
14
|
Events
|
|
15
15
|
output,output
|
|
16
16
|
Event Parameter,,Schema
|
|
@@ -18,23 +18,23 @@ result,,array
|
|
|
18
18
|
|
|
19
19
|
System.Array.ArrayToObjects
|
|
20
20
|
Parameter,Type,Schema
|
|
21
|
-
|
|
21
|
+
ignoreDuplicateKeys,EXPRESSION,boolean
|
|
22
|
+
ignoreNullKeys,EXPRESSION,boolean
|
|
23
|
+
ignoreNullValues,EXPRESSION,boolean
|
|
22
24
|
keyPath,EXPRESSION,string
|
|
25
|
+
source,EXPRESSION,array
|
|
23
26
|
valuePath,EXPRESSION,null;string
|
|
24
|
-
ignoreNullValues,EXPRESSION,boolean
|
|
25
|
-
ignoreNullKeys,EXPRESSION,boolean
|
|
26
|
-
ignoreDuplicateKeys,EXPRESSION,boolean
|
|
27
27
|
Events
|
|
28
28
|
output,output
|
|
29
29
|
Event Parameter,,Schema
|
|
30
|
-
result,,
|
|
30
|
+
result,,array;boolean;double;float;integer;long;null;object;string
|
|
31
31
|
|
|
32
32
|
System.Array.BinarySearch
|
|
33
33
|
Parameter,Type,Schema
|
|
34
|
-
source,EXPRESSION,array
|
|
35
|
-
srcFrom,EXPRESSION,integer
|
|
36
34
|
findPrimitive,EXPRESSION,double;float;integer;long;string
|
|
37
35
|
length,EXPRESSION,integer
|
|
36
|
+
source,EXPRESSION,array
|
|
37
|
+
srcFrom,EXPRESSION,integer
|
|
38
38
|
Events
|
|
39
39
|
output,output
|
|
40
40
|
Event Parameter,,Schema
|
|
@@ -42,11 +42,11 @@ index,,integer
|
|
|
42
42
|
|
|
43
43
|
System.Array.Compare
|
|
44
44
|
Parameter,Type,Schema
|
|
45
|
-
source,EXPRESSION,array
|
|
46
|
-
srcFrom,EXPRESSION,integer
|
|
47
45
|
find,EXPRESSION,array
|
|
48
46
|
findFrom,EXPRESSION,integer
|
|
49
47
|
length,EXPRESSION,integer
|
|
48
|
+
source,EXPRESSION,array
|
|
49
|
+
srcFrom,EXPRESSION,integer
|
|
50
50
|
Events
|
|
51
51
|
output,output
|
|
52
52
|
Event Parameter,,Schema
|
|
@@ -54,8 +54,8 @@ result,,integer
|
|
|
54
54
|
|
|
55
55
|
System.Array.Concatenate
|
|
56
56
|
Parameter,Type,Schema
|
|
57
|
-
source,EXPRESSION,array
|
|
58
57
|
secondSource,EXPRESSION,array
|
|
58
|
+
source,EXPRESSION,array
|
|
59
59
|
Events
|
|
60
60
|
output,output
|
|
61
61
|
Event Parameter,,Schema
|
|
@@ -63,10 +63,10 @@ result,,array
|
|
|
63
63
|
|
|
64
64
|
System.Array.Copy
|
|
65
65
|
Parameter,Type,Schema
|
|
66
|
+
deepCopy,EXPRESSION,boolean
|
|
67
|
+
length,EXPRESSION,integer
|
|
66
68
|
source,EXPRESSION,array
|
|
67
69
|
srcFrom,EXPRESSION,integer
|
|
68
|
-
length,EXPRESSION,integer
|
|
69
|
-
deepCopy,EXPRESSION,boolean
|
|
70
70
|
Events
|
|
71
71
|
output,output
|
|
72
72
|
Event Parameter,,Schema
|
|
@@ -74,8 +74,8 @@ result,,array
|
|
|
74
74
|
|
|
75
75
|
System.Array.Delete
|
|
76
76
|
Parameter,Type,Schema
|
|
77
|
-
source,EXPRESSION,array
|
|
78
77
|
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
78
|
+
source,EXPRESSION,array
|
|
79
79
|
Events
|
|
80
80
|
output,output
|
|
81
81
|
Event Parameter,,Schema
|
|
@@ -91,9 +91,9 @@ result,,array
|
|
|
91
91
|
|
|
92
92
|
System.Array.DeleteFrom
|
|
93
93
|
Parameter,Type,Schema
|
|
94
|
+
length,EXPRESSION,integer
|
|
94
95
|
source,EXPRESSION,array
|
|
95
96
|
srcFrom,EXPRESSION,integer
|
|
96
|
-
length,EXPRESSION,integer
|
|
97
97
|
Events
|
|
98
98
|
output,output
|
|
99
99
|
Event Parameter,,Schema
|
|
@@ -109,11 +109,11 @@ result,,array
|
|
|
109
109
|
|
|
110
110
|
System.Array.Disjoint
|
|
111
111
|
Parameter,Type,Schema
|
|
112
|
-
|
|
113
|
-
srcFrom,EXPRESSION,integer
|
|
112
|
+
length,EXPRESSION,integer
|
|
114
113
|
secondSource,EXPRESSION,array
|
|
115
114
|
secondSrcFrom,EXPRESSION,integer
|
|
116
|
-
|
|
115
|
+
source,EXPRESSION,array
|
|
116
|
+
srcFrom,EXPRESSION,integer
|
|
117
117
|
Events
|
|
118
118
|
output,output
|
|
119
119
|
Event Parameter,,Schema
|
|
@@ -121,11 +121,11 @@ result,,array
|
|
|
121
121
|
|
|
122
122
|
System.Array.Equals
|
|
123
123
|
Parameter,Type,Schema
|
|
124
|
-
source,EXPRESSION,array
|
|
125
|
-
srcFrom,EXPRESSION,integer
|
|
126
124
|
find,EXPRESSION,array
|
|
127
125
|
findFrom,EXPRESSION,integer
|
|
128
126
|
length,EXPRESSION,integer
|
|
127
|
+
source,EXPRESSION,array
|
|
128
|
+
srcFrom,EXPRESSION,integer
|
|
129
129
|
Events
|
|
130
130
|
output,output
|
|
131
131
|
Event Parameter,,Schema
|
|
@@ -133,21 +133,21 @@ result,,boolean
|
|
|
133
133
|
|
|
134
134
|
System.Array.Fill
|
|
135
135
|
Parameter,Type,Schema
|
|
136
|
+
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
137
|
+
length,EXPRESSION,integer
|
|
136
138
|
source,EXPRESSION,array
|
|
137
139
|
srcFrom,EXPRESSION,integer
|
|
138
|
-
length,EXPRESSION,integer
|
|
139
|
-
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
140
140
|
Events
|
|
141
141
|
output,output
|
|
142
142
|
Event Parameter,,Schema
|
|
143
|
-
|
|
143
|
+
result,,array
|
|
144
144
|
|
|
145
145
|
System.Array.Frequency
|
|
146
146
|
Parameter,Type,Schema
|
|
147
|
-
source,EXPRESSION,array
|
|
148
147
|
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
149
|
-
srcFrom,EXPRESSION,integer
|
|
150
148
|
length,EXPRESSION,integer
|
|
149
|
+
source,EXPRESSION,array
|
|
150
|
+
srcFrom,EXPRESSION,integer
|
|
151
151
|
Events
|
|
152
152
|
output,output
|
|
153
153
|
Event Parameter,,Schema
|
|
@@ -155,9 +155,9 @@ result,,integer
|
|
|
155
155
|
|
|
156
156
|
System.Array.IndexOf
|
|
157
157
|
Parameter,Type,Schema
|
|
158
|
-
|
|
159
|
-
elementObject,EXPRESSION,array;boolean;double;float;integer;long;object;string
|
|
158
|
+
elementObject,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
160
159
|
findFrom,EXPRESSION,integer
|
|
160
|
+
source,EXPRESSION,array
|
|
161
161
|
Events
|
|
162
162
|
output,output
|
|
163
163
|
Event Parameter,,Schema
|
|
@@ -165,9 +165,9 @@ result,,integer
|
|
|
165
165
|
|
|
166
166
|
System.Array.IndexOfArray
|
|
167
167
|
Parameter,Type,Schema
|
|
168
|
-
source,EXPRESSION,array
|
|
169
|
-
secondSource,EXPRESSION,array
|
|
170
168
|
findFrom,EXPRESSION,integer
|
|
169
|
+
secondSource,EXPRESSION,array
|
|
170
|
+
source,EXPRESSION,array
|
|
171
171
|
Events
|
|
172
172
|
output,output
|
|
173
173
|
Event Parameter,,Schema
|
|
@@ -175,9 +175,9 @@ result,,integer
|
|
|
175
175
|
|
|
176
176
|
System.Array.Insert
|
|
177
177
|
Parameter,Type,Schema
|
|
178
|
-
source,EXPRESSION,array
|
|
179
|
-
offset,EXPRESSION,integer
|
|
180
178
|
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
179
|
+
offset,EXPRESSION,integer
|
|
180
|
+
source,EXPRESSION,array
|
|
181
181
|
Events
|
|
182
182
|
output,output
|
|
183
183
|
Event Parameter,,Schema
|
|
@@ -185,8 +185,8 @@ result,,array
|
|
|
185
185
|
|
|
186
186
|
System.Array.InsertLast
|
|
187
187
|
Parameter,Type,Schema
|
|
188
|
-
source,EXPRESSION,array
|
|
189
188
|
element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
189
|
+
source,EXPRESSION,array
|
|
190
190
|
Events
|
|
191
191
|
output,output
|
|
192
192
|
Event Parameter,,Schema
|
|
@@ -194,8 +194,8 @@ result,,array
|
|
|
194
194
|
|
|
195
195
|
System.Array.Join
|
|
196
196
|
Parameter,Type,Schema
|
|
197
|
-
source,EXPRESSION,array
|
|
198
197
|
delimiter,EXPRESSION,string
|
|
198
|
+
source,EXPRESSION,array
|
|
199
199
|
Events
|
|
200
200
|
output,output
|
|
201
201
|
Event Parameter,,Schema
|
|
@@ -203,9 +203,9 @@ result,,string
|
|
|
203
203
|
|
|
204
204
|
System.Array.LastIndexOf
|
|
205
205
|
Parameter,Type,Schema
|
|
206
|
-
|
|
207
|
-
elementObject,EXPRESSION,array;boolean;double;float;integer;long;object;string
|
|
206
|
+
elementObject,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
208
207
|
findFrom,EXPRESSION,integer
|
|
208
|
+
source,EXPRESSION,array
|
|
209
209
|
Events
|
|
210
210
|
output,output
|
|
211
211
|
Event Parameter,,Schema
|
|
@@ -213,9 +213,9 @@ result,,integer
|
|
|
213
213
|
|
|
214
214
|
System.Array.LastIndexOfArray
|
|
215
215
|
Parameter,Type,Schema
|
|
216
|
-
source,EXPRESSION,array
|
|
217
|
-
secondSource,EXPRESSION,array
|
|
218
216
|
findFrom,EXPRESSION,integer
|
|
217
|
+
secondSource,EXPRESSION,array
|
|
218
|
+
source,EXPRESSION,array
|
|
219
219
|
Events
|
|
220
220
|
output,output
|
|
221
221
|
Event Parameter,,Schema
|
|
@@ -227,7 +227,7 @@ source,EXPRESSION,array
|
|
|
227
227
|
Events
|
|
228
228
|
output,output
|
|
229
229
|
Event Parameter,,Schema
|
|
230
|
-
result,,
|
|
230
|
+
result,,array;boolean;double;float;integer;long;null;object;string
|
|
231
231
|
|
|
232
232
|
System.Array.Min
|
|
233
233
|
Parameter,Type,Schema
|
|
@@ -235,15 +235,15 @@ source,EXPRESSION,array
|
|
|
235
235
|
Events
|
|
236
236
|
output,output
|
|
237
237
|
Event Parameter,,Schema
|
|
238
|
-
result,,
|
|
238
|
+
result,,array;boolean;double;float;integer;long;null;object;string
|
|
239
239
|
|
|
240
240
|
System.Array.MisMatch
|
|
241
241
|
Parameter,Type,Schema
|
|
242
|
-
source,EXPRESSION,array
|
|
243
242
|
findFrom,EXPRESSION,integer
|
|
243
|
+
length,EXPRESSION,integer
|
|
244
244
|
secondSource,EXPRESSION,array
|
|
245
245
|
secondSrcFrom,EXPRESSION,integer
|
|
246
|
-
|
|
246
|
+
source,EXPRESSION,array
|
|
247
247
|
Events
|
|
248
248
|
output,output
|
|
249
249
|
Event Parameter,,Schema
|
|
@@ -251,9 +251,9 @@ result,,integer
|
|
|
251
251
|
|
|
252
252
|
System.Array.RemoveDuplicates
|
|
253
253
|
Parameter,Type,Schema
|
|
254
|
+
length,EXPRESSION,integer
|
|
254
255
|
source,EXPRESSION,array
|
|
255
256
|
srcFrom,EXPRESSION,integer
|
|
256
|
-
length,EXPRESSION,integer
|
|
257
257
|
Events
|
|
258
258
|
output,output
|
|
259
259
|
Event Parameter,,Schema
|
|
@@ -261,9 +261,9 @@ result,,array
|
|
|
261
261
|
|
|
262
262
|
System.Array.Reverse
|
|
263
263
|
Parameter,Type,Schema
|
|
264
|
+
length,EXPRESSION,integer
|
|
264
265
|
source,EXPRESSION,array
|
|
265
266
|
srcFrom,EXPRESSION,integer
|
|
266
|
-
length,EXPRESSION,integer
|
|
267
267
|
Events
|
|
268
268
|
output,output
|
|
269
269
|
Event Parameter,,Schema
|
|
@@ -271,12 +271,12 @@ result,,array
|
|
|
271
271
|
|
|
272
272
|
System.Array.Rotate
|
|
273
273
|
Parameter,Type,Schema
|
|
274
|
-
source,EXPRESSION,array
|
|
275
274
|
rotateLength,EXPRESSION,integer
|
|
275
|
+
source,EXPRESSION,array
|
|
276
276
|
Events
|
|
277
277
|
output,output
|
|
278
278
|
Event Parameter,,Schema
|
|
279
|
-
result,,
|
|
279
|
+
result,,array
|
|
280
280
|
|
|
281
281
|
System.Array.Shuffle
|
|
282
282
|
Parameter,Type,Schema
|
|
@@ -284,25 +284,25 @@ source,EXPRESSION,array
|
|
|
284
284
|
Events
|
|
285
285
|
output,output
|
|
286
286
|
Event Parameter,,Schema
|
|
287
|
-
result,,
|
|
287
|
+
result,,array
|
|
288
288
|
|
|
289
289
|
System.Array.Sort
|
|
290
290
|
Parameter,Type,Schema
|
|
291
|
-
source,EXPRESSION,array
|
|
292
|
-
findFrom,EXPRESSION,integer
|
|
293
|
-
length,EXPRESSION,integer
|
|
294
291
|
ascending,EXPRESSION,boolean
|
|
292
|
+
findFrom,EXPRESSION,integer
|
|
295
293
|
keyPath,EXPRESSION,string
|
|
294
|
+
length,EXPRESSION,integer
|
|
295
|
+
source,EXPRESSION,array
|
|
296
296
|
Events
|
|
297
297
|
output,output
|
|
298
298
|
Event Parameter,,Schema
|
|
299
|
-
result,,
|
|
299
|
+
result,,array
|
|
300
300
|
|
|
301
301
|
System.Array.SubArray
|
|
302
302
|
Parameter,Type,Schema
|
|
303
|
-
source,EXPRESSION,array
|
|
304
303
|
findFrom,EXPRESSION,integer
|
|
305
304
|
length,EXPRESSION,integer
|
|
305
|
+
source,EXPRESSION,array
|
|
306
306
|
Events
|
|
307
307
|
output,output
|
|
308
308
|
Event Parameter,,Schema
|
|
@@ -314,8 +314,6 @@ name,CONSTANT,string
|
|
|
314
314
|
schema,CONSTANT,object
|
|
315
315
|
Events
|
|
316
316
|
output,output
|
|
317
|
-
Event Parameter,,Schema
|
|
318
|
-
|
|
319
317
|
|
|
320
318
|
System.Context.Get
|
|
321
319
|
Parameter,Type,Schema
|
|
@@ -323,7 +321,7 @@ name,CONSTANT,string
|
|
|
323
321
|
Events
|
|
324
322
|
output,output
|
|
325
323
|
Event Parameter,,Schema
|
|
326
|
-
value,,
|
|
324
|
+
value,,array;boolean;double;float;integer;long;null;object;string
|
|
327
325
|
|
|
328
326
|
System.Context.Set
|
|
329
327
|
Parameter,Type,Schema
|
|
@@ -331,69 +329,120 @@ name,EXPRESSION,string
|
|
|
331
329
|
value,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
332
330
|
Events
|
|
333
331
|
output,output
|
|
334
|
-
Event Parameter,,Schema
|
|
335
|
-
|
|
336
332
|
|
|
337
333
|
System.Date.AddTime
|
|
338
334
|
Parameter,Type,Schema
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
335
|
+
days,EXPRESSION,double;float;integer;long
|
|
336
|
+
hours,EXPRESSION,double;float;integer;long
|
|
337
|
+
isoTimeStamp,EXPRESSION,
|
|
338
|
+
milliseconds,EXPRESSION,double;float;integer;long
|
|
339
|
+
minutes,EXPRESSION,double;float;integer;long
|
|
340
|
+
months,EXPRESSION,double;float;integer;long
|
|
341
|
+
seconds,EXPRESSION,double;float;integer;long
|
|
342
|
+
years,EXPRESSION,double;float;integer;long
|
|
342
343
|
Events
|
|
343
344
|
output,output
|
|
344
345
|
Event Parameter,,Schema
|
|
345
|
-
|
|
346
|
+
isotimestamp,,
|
|
346
347
|
|
|
347
|
-
System.Date.
|
|
348
|
+
System.Date.Difference
|
|
348
349
|
Parameter,Type,Schema
|
|
349
|
-
|
|
350
|
+
isoTimeStamp1,EXPRESSION,
|
|
351
|
+
isoTimeStamp2,EXPRESSION,
|
|
352
|
+
unit,EXPRESSION,
|
|
350
353
|
Events
|
|
351
354
|
output,output
|
|
352
355
|
Event Parameter,,Schema
|
|
353
|
-
result,,
|
|
356
|
+
result,,
|
|
357
|
+
|
|
358
|
+
System.Date.EndOf
|
|
359
|
+
Parameter,Type,Schema
|
|
360
|
+
isoTimeStamp,EXPRESSION,
|
|
361
|
+
unit,EXPRESSION,
|
|
362
|
+
Events
|
|
363
|
+
output,output
|
|
364
|
+
Event Parameter,,Schema
|
|
365
|
+
isotimestamp,,
|
|
354
366
|
|
|
355
|
-
System.Date.
|
|
367
|
+
System.Date.EpochMillisecondsToTimestamp
|
|
356
368
|
Parameter,Type,Schema
|
|
357
|
-
|
|
358
|
-
isoDateTwo,EXPRESSION,string
|
|
369
|
+
epochMilliseconds,EXPRESSION,integer;long;string
|
|
359
370
|
Events
|
|
371
|
+
isoTimeStamp,output
|
|
372
|
+
Event Parameter,,Schema
|
|
373
|
+
isotimestamp,,
|
|
360
374
|
|
|
375
|
+
System.Date.EpochSecondsToTimestamp
|
|
376
|
+
Parameter,Type,Schema
|
|
377
|
+
epochSeconds,EXPRESSION,integer;long;string
|
|
378
|
+
Events
|
|
379
|
+
isoTimeStamp,output
|
|
380
|
+
Event Parameter,,Schema
|
|
381
|
+
isotimestamp,,
|
|
382
|
+
|
|
383
|
+
System.Date.FirstOf
|
|
384
|
+
Parameter,Type,Schema
|
|
385
|
+
isoTimeStamp,EXPRESSION,
|
|
386
|
+
Events
|
|
387
|
+
isoTimeStamp,output
|
|
388
|
+
Event Parameter,,Schema
|
|
389
|
+
isotimestamp,,
|
|
361
390
|
|
|
362
|
-
System.Date.
|
|
391
|
+
System.Date.FromDateString
|
|
363
392
|
Parameter,Type,Schema
|
|
364
|
-
|
|
393
|
+
format,EXPRESSION,string
|
|
394
|
+
timestampString,EXPRESSION,string
|
|
365
395
|
Events
|
|
366
396
|
output,output
|
|
367
397
|
Event Parameter,,Schema
|
|
368
|
-
|
|
398
|
+
isotimestamp,,
|
|
369
399
|
|
|
370
|
-
System.Date.
|
|
400
|
+
System.Date.FromNow
|
|
371
401
|
Parameter,Type,Schema
|
|
402
|
+
format,EXPRESSION,string
|
|
403
|
+
from,EXPRESSION,
|
|
404
|
+
isoTimeStamp,EXPRESSION,
|
|
405
|
+
locale,EXPRESSION,string
|
|
406
|
+
round,EXPRESSION,boolean
|
|
407
|
+
unit,EXPRESSION,
|
|
408
|
+
Events
|
|
409
|
+
output,output
|
|
410
|
+
Event Parameter,,Schema
|
|
411
|
+
result,,string
|
|
372
412
|
|
|
413
|
+
System.Date.GetCurrentTimestamp
|
|
373
414
|
Events
|
|
374
415
|
output,output
|
|
375
416
|
Event Parameter,,Schema
|
|
376
|
-
|
|
417
|
+
isotimestamp,,
|
|
377
418
|
|
|
378
|
-
System.Date.
|
|
419
|
+
System.Date.GetDay
|
|
379
420
|
Parameter,Type,Schema
|
|
380
|
-
|
|
421
|
+
isoTimeStamp,EXPRESSION,
|
|
381
422
|
Events
|
|
382
423
|
output,output
|
|
383
424
|
Event Parameter,,Schema
|
|
384
425
|
result,,integer
|
|
385
426
|
|
|
386
|
-
System.Date.
|
|
427
|
+
System.Date.GetDayOfWeek
|
|
428
|
+
Parameter,Type,Schema
|
|
429
|
+
isoTimeStamp,EXPRESSION,
|
|
430
|
+
Events
|
|
431
|
+
output,output
|
|
432
|
+
Event Parameter,,Schema
|
|
433
|
+
result,,integer
|
|
434
|
+
|
|
435
|
+
System.Date.GetDaysInMonth
|
|
387
436
|
Parameter,Type,Schema
|
|
388
|
-
|
|
437
|
+
isoTimeStamp,EXPRESSION,
|
|
389
438
|
Events
|
|
390
439
|
output,output
|
|
391
440
|
Event Parameter,,Schema
|
|
392
441
|
result,,integer
|
|
393
442
|
|
|
394
|
-
System.Date.
|
|
443
|
+
System.Date.GetDaysInYear
|
|
395
444
|
Parameter,Type,Schema
|
|
396
|
-
|
|
445
|
+
isoTimeStamp,EXPRESSION,
|
|
397
446
|
Events
|
|
398
447
|
output,output
|
|
399
448
|
Event Parameter,,Schema
|
|
@@ -401,15 +450,15 @@ result,,integer
|
|
|
401
450
|
|
|
402
451
|
System.Date.GetHours
|
|
403
452
|
Parameter,Type,Schema
|
|
404
|
-
|
|
453
|
+
isoTimeStamp,EXPRESSION,
|
|
405
454
|
Events
|
|
406
455
|
output,output
|
|
407
456
|
Event Parameter,,Schema
|
|
408
457
|
result,,integer
|
|
409
458
|
|
|
410
|
-
System.Date.
|
|
459
|
+
System.Date.GetMilliseconds
|
|
411
460
|
Parameter,Type,Schema
|
|
412
|
-
|
|
461
|
+
isoTimeStamp,EXPRESSION,
|
|
413
462
|
Events
|
|
414
463
|
output,output
|
|
415
464
|
Event Parameter,,Schema
|
|
@@ -417,7 +466,7 @@ result,,integer
|
|
|
417
466
|
|
|
418
467
|
System.Date.GetMinutes
|
|
419
468
|
Parameter,Type,Schema
|
|
420
|
-
|
|
469
|
+
isoTimeStamp,EXPRESSION,
|
|
421
470
|
Events
|
|
422
471
|
output,output
|
|
423
472
|
Event Parameter,,Schema
|
|
@@ -425,47 +474,135 @@ result,,integer
|
|
|
425
474
|
|
|
426
475
|
System.Date.GetMonth
|
|
427
476
|
Parameter,Type,Schema
|
|
428
|
-
|
|
477
|
+
isoTimeStamp,EXPRESSION,
|
|
429
478
|
Events
|
|
430
479
|
output,output
|
|
431
480
|
Event Parameter,,Schema
|
|
432
481
|
result,,integer
|
|
433
482
|
|
|
483
|
+
System.Date.GetNames
|
|
484
|
+
Parameter,Type,Schema
|
|
485
|
+
locale,EXPRESSION,string
|
|
486
|
+
unit,EXPRESSION,string
|
|
487
|
+
Events
|
|
488
|
+
names,names
|
|
489
|
+
Event Parameter,,Schema
|
|
490
|
+
names,,array
|
|
491
|
+
|
|
434
492
|
System.Date.GetSeconds
|
|
435
493
|
Parameter,Type,Schema
|
|
436
|
-
|
|
494
|
+
isoTimeStamp,EXPRESSION,
|
|
437
495
|
Events
|
|
438
496
|
output,output
|
|
439
497
|
Event Parameter,,Schema
|
|
440
498
|
result,,integer
|
|
441
499
|
|
|
442
|
-
System.Date.
|
|
500
|
+
System.Date.GetTimeZoneName
|
|
443
501
|
Parameter,Type,Schema
|
|
444
|
-
|
|
502
|
+
isoTimeStamp,EXPRESSION,
|
|
503
|
+
Events
|
|
504
|
+
output,output
|
|
505
|
+
Event Parameter,,Schema
|
|
506
|
+
result,,string
|
|
507
|
+
|
|
508
|
+
System.Date.GetTimeZoneOffset
|
|
509
|
+
Parameter,Type,Schema
|
|
510
|
+
isoTimeStamp,EXPRESSION,
|
|
445
511
|
Events
|
|
446
512
|
output,output
|
|
447
513
|
Event Parameter,,Schema
|
|
448
514
|
result,,integer
|
|
449
515
|
|
|
450
|
-
System.Date.
|
|
516
|
+
System.Date.GetTimeZoneOffsetLong
|
|
451
517
|
Parameter,Type,Schema
|
|
452
|
-
|
|
518
|
+
isoTimeStamp,EXPRESSION,
|
|
453
519
|
Events
|
|
454
520
|
output,output
|
|
455
521
|
Event Parameter,,Schema
|
|
456
|
-
result,,
|
|
522
|
+
result,,string
|
|
457
523
|
|
|
458
|
-
System.Date.
|
|
524
|
+
System.Date.GetTimeZoneOffsetShort
|
|
459
525
|
Parameter,Type,Schema
|
|
460
|
-
|
|
526
|
+
isoTimeStamp,EXPRESSION,
|
|
461
527
|
Events
|
|
462
528
|
output,output
|
|
463
529
|
Event Parameter,,Schema
|
|
464
|
-
result,,
|
|
530
|
+
result,,string
|
|
531
|
+
|
|
532
|
+
System.Date.GetYear
|
|
533
|
+
Parameter,Type,Schema
|
|
534
|
+
isoTimeStamp,EXPRESSION,
|
|
535
|
+
Events
|
|
536
|
+
output,output
|
|
537
|
+
Event Parameter,,Schema
|
|
538
|
+
result,,integer
|
|
539
|
+
|
|
540
|
+
System.Date.IsAfter
|
|
541
|
+
Parameter,Type,Schema
|
|
542
|
+
isoTimeStamp1,EXPRESSION,
|
|
543
|
+
isoTimeStamp2,EXPRESSION,
|
|
544
|
+
Events
|
|
545
|
+
output,output
|
|
546
|
+
Event Parameter,,Schema
|
|
547
|
+
result,,boolean
|
|
465
548
|
|
|
466
|
-
System.Date.
|
|
549
|
+
System.Date.IsBefore
|
|
467
550
|
Parameter,Type,Schema
|
|
468
|
-
|
|
551
|
+
isoTimeStamp1,EXPRESSION,
|
|
552
|
+
isoTimeStamp2,EXPRESSION,
|
|
553
|
+
Events
|
|
554
|
+
output,output
|
|
555
|
+
Event Parameter,,Schema
|
|
556
|
+
result,,boolean
|
|
557
|
+
|
|
558
|
+
System.Date.IsBetween
|
|
559
|
+
Parameter,Type,Schema
|
|
560
|
+
checkTimestamp,EXPRESSION,
|
|
561
|
+
endTimestamp,EXPRESSION,
|
|
562
|
+
startTimestamp,EXPRESSION,
|
|
563
|
+
Events
|
|
564
|
+
output,output
|
|
565
|
+
Event Parameter,,Schema
|
|
566
|
+
result,,boolean
|
|
567
|
+
|
|
568
|
+
System.Date.IsInDST
|
|
569
|
+
Parameter,Type,Schema
|
|
570
|
+
isoTimeStamp,EXPRESSION,
|
|
571
|
+
Events
|
|
572
|
+
output,output
|
|
573
|
+
Event Parameter,,Schema
|
|
574
|
+
result,,boolean
|
|
575
|
+
|
|
576
|
+
System.Date.IsInLeapYear
|
|
577
|
+
Parameter,Type,Schema
|
|
578
|
+
isoTimeStamp,EXPRESSION,
|
|
579
|
+
Events
|
|
580
|
+
output,output
|
|
581
|
+
Event Parameter,,Schema
|
|
582
|
+
result,,boolean
|
|
583
|
+
|
|
584
|
+
System.Date.IsSame
|
|
585
|
+
Parameter,Type,Schema
|
|
586
|
+
isoTimeStamp1,EXPRESSION,
|
|
587
|
+
isoTimeStamp2,EXPRESSION,
|
|
588
|
+
Events
|
|
589
|
+
output,output
|
|
590
|
+
Event Parameter,,Schema
|
|
591
|
+
result,,boolean
|
|
592
|
+
|
|
593
|
+
System.Date.IsSameOrAfter
|
|
594
|
+
Parameter,Type,Schema
|
|
595
|
+
isoTimeStamp1,EXPRESSION,
|
|
596
|
+
isoTimeStamp2,EXPRESSION,
|
|
597
|
+
Events
|
|
598
|
+
output,output
|
|
599
|
+
Event Parameter,,Schema
|
|
600
|
+
result,,boolean
|
|
601
|
+
|
|
602
|
+
System.Date.IsSameOrBefore
|
|
603
|
+
Parameter,Type,Schema
|
|
604
|
+
isoTimeStamp1,EXPRESSION,
|
|
605
|
+
isoTimeStamp2,EXPRESSION,
|
|
469
606
|
Events
|
|
470
607
|
output,output
|
|
471
608
|
Event Parameter,,Schema
|
|
@@ -473,68 +610,178 @@ result,,boolean
|
|
|
473
610
|
|
|
474
611
|
System.Date.IsValidISODate
|
|
475
612
|
Parameter,Type,Schema
|
|
476
|
-
|
|
613
|
+
isoTimeStamp,EXPRESSION,string
|
|
477
614
|
Events
|
|
478
615
|
output,output
|
|
479
616
|
Event Parameter,,Schema
|
|
480
|
-
|
|
617
|
+
result,,boolean
|
|
618
|
+
|
|
619
|
+
System.Date.LastOf
|
|
620
|
+
Parameter,Type,Schema
|
|
621
|
+
isoTimeStamp,EXPRESSION,
|
|
622
|
+
Events
|
|
623
|
+
isoTimeStamp,output
|
|
624
|
+
Event Parameter,,Schema
|
|
625
|
+
isotimestamp,,
|
|
481
626
|
|
|
482
|
-
System.Date.
|
|
627
|
+
System.Date.SetDay
|
|
483
628
|
Parameter,Type,Schema
|
|
484
|
-
|
|
629
|
+
isoTimeStamp,EXPRESSION,
|
|
630
|
+
number,EXPRESSION,integer
|
|
485
631
|
Events
|
|
486
|
-
|
|
632
|
+
output,output
|
|
487
633
|
Event Parameter,,Schema
|
|
488
|
-
result,,
|
|
634
|
+
result,,integer
|
|
489
635
|
|
|
490
|
-
System.Date.
|
|
636
|
+
System.Date.SetHours
|
|
491
637
|
Parameter,Type,Schema
|
|
492
|
-
|
|
638
|
+
isoTimeStamp,EXPRESSION,
|
|
639
|
+
number,EXPRESSION,integer
|
|
493
640
|
Events
|
|
494
|
-
|
|
641
|
+
output,output
|
|
495
642
|
Event Parameter,,Schema
|
|
496
|
-
result,,
|
|
643
|
+
result,,integer
|
|
644
|
+
|
|
645
|
+
System.Date.SetMilliseconds
|
|
646
|
+
Parameter,Type,Schema
|
|
647
|
+
isoTimeStamp,EXPRESSION,
|
|
648
|
+
number,EXPRESSION,integer
|
|
649
|
+
Events
|
|
650
|
+
output,output
|
|
651
|
+
Event Parameter,,Schema
|
|
652
|
+
result,,integer
|
|
653
|
+
|
|
654
|
+
System.Date.SetMinutes
|
|
655
|
+
Parameter,Type,Schema
|
|
656
|
+
isoTimeStamp,EXPRESSION,
|
|
657
|
+
number,EXPRESSION,integer
|
|
658
|
+
Events
|
|
659
|
+
output,output
|
|
660
|
+
Event Parameter,,Schema
|
|
661
|
+
result,,integer
|
|
662
|
+
|
|
663
|
+
System.Date.SetMonth
|
|
664
|
+
Parameter,Type,Schema
|
|
665
|
+
isoTimeStamp,EXPRESSION,
|
|
666
|
+
number,EXPRESSION,integer
|
|
667
|
+
Events
|
|
668
|
+
output,output
|
|
669
|
+
Event Parameter,,Schema
|
|
670
|
+
result,,integer
|
|
671
|
+
|
|
672
|
+
System.Date.SetSeconds
|
|
673
|
+
Parameter,Type,Schema
|
|
674
|
+
isoTimeStamp,EXPRESSION,
|
|
675
|
+
number,EXPRESSION,integer
|
|
676
|
+
Events
|
|
677
|
+
output,output
|
|
678
|
+
Event Parameter,,Schema
|
|
679
|
+
result,,integer
|
|
680
|
+
|
|
681
|
+
System.Date.SetTimeZone
|
|
682
|
+
Parameter,Type,Schema
|
|
683
|
+
isoTimeStamp,EXPRESSION,
|
|
684
|
+
timezone,EXPRESSION,string
|
|
685
|
+
Events
|
|
686
|
+
output,output
|
|
687
|
+
Event Parameter,,Schema
|
|
688
|
+
isotimestamp,,
|
|
689
|
+
|
|
690
|
+
System.Date.SetYear
|
|
691
|
+
Parameter,Type,Schema
|
|
692
|
+
isoTimeStamp,EXPRESSION,
|
|
693
|
+
number,EXPRESSION,integer
|
|
694
|
+
Events
|
|
695
|
+
output,output
|
|
696
|
+
Event Parameter,,Schema
|
|
697
|
+
result,,integer
|
|
698
|
+
|
|
699
|
+
System.Date.StartOf
|
|
700
|
+
Parameter,Type,Schema
|
|
701
|
+
isoTimeStamp,EXPRESSION,
|
|
702
|
+
unit,EXPRESSION,
|
|
703
|
+
Events
|
|
704
|
+
output,output
|
|
705
|
+
Event Parameter,,Schema
|
|
706
|
+
isotimestamp,,
|
|
497
707
|
|
|
498
708
|
System.Date.SubtractTime
|
|
499
709
|
Parameter,Type,Schema
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
710
|
+
days,EXPRESSION,double;float;integer;long
|
|
711
|
+
hours,EXPRESSION,double;float;integer;long
|
|
712
|
+
isoTimeStamp,EXPRESSION,
|
|
713
|
+
milliseconds,EXPRESSION,double;float;integer;long
|
|
714
|
+
minutes,EXPRESSION,double;float;integer;long
|
|
715
|
+
months,EXPRESSION,double;float;integer;long
|
|
716
|
+
seconds,EXPRESSION,double;float;integer;long
|
|
717
|
+
years,EXPRESSION,double;float;integer;long
|
|
503
718
|
Events
|
|
504
719
|
output,output
|
|
505
720
|
Event Parameter,,Schema
|
|
506
|
-
|
|
721
|
+
isotimestamp,,
|
|
507
722
|
|
|
508
|
-
System.
|
|
723
|
+
System.Date.TimeAsArray
|
|
509
724
|
Parameter,Type,Schema
|
|
510
|
-
|
|
511
|
-
results,EXPRESSION,object
|
|
725
|
+
isoTimeStamp,EXPRESSION,
|
|
512
726
|
Events
|
|
513
727
|
output,output
|
|
514
728
|
Event Parameter,,Schema
|
|
729
|
+
array,,array
|
|
515
730
|
|
|
731
|
+
System.Date.TimeAsObject
|
|
732
|
+
Parameter,Type,Schema
|
|
733
|
+
isoTimeStamp,EXPRESSION,
|
|
734
|
+
Events
|
|
735
|
+
output,output
|
|
736
|
+
Event Parameter,,Schema
|
|
737
|
+
object,,
|
|
516
738
|
|
|
517
|
-
System.
|
|
739
|
+
System.Date.TimestampToEpochMilliseconds
|
|
518
740
|
Parameter,Type,Schema
|
|
519
|
-
|
|
741
|
+
isoTimeStamp,EXPRESSION,
|
|
520
742
|
Events
|
|
521
|
-
|
|
743
|
+
result,output
|
|
522
744
|
Event Parameter,,Schema
|
|
745
|
+
result,,long
|
|
523
746
|
|
|
524
|
-
|
|
747
|
+
System.Date.TimestampToEpochSeconds
|
|
748
|
+
Parameter,Type,Schema
|
|
749
|
+
isoTimeStamp,EXPRESSION,
|
|
750
|
+
Events
|
|
751
|
+
result,output
|
|
525
752
|
Event Parameter,,Schema
|
|
753
|
+
result,,long
|
|
526
754
|
|
|
755
|
+
System.Date.ToDateString
|
|
756
|
+
Parameter,Type,Schema
|
|
757
|
+
format,EXPRESSION,string
|
|
758
|
+
isoTimeStamp,EXPRESSION,
|
|
759
|
+
locale,EXPRESSION,string
|
|
760
|
+
Events
|
|
527
761
|
output,output
|
|
528
762
|
Event Parameter,,Schema
|
|
763
|
+
result,,string
|
|
529
764
|
|
|
765
|
+
System.GenerateEvent
|
|
766
|
+
Parameter,Type,Schema
|
|
767
|
+
eventName,EXPRESSION,string
|
|
768
|
+
results,EXPRESSION,object
|
|
769
|
+
Events
|
|
770
|
+
output,output
|
|
771
|
+
|
|
772
|
+
System.If
|
|
773
|
+
Parameter,Type,Schema
|
|
774
|
+
condition,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
775
|
+
Events
|
|
776
|
+
false,false
|
|
777
|
+
output,output
|
|
778
|
+
true,true
|
|
530
779
|
|
|
531
780
|
System.Loop.Break
|
|
532
781
|
Parameter,Type,Schema
|
|
533
782
|
stepName,EXPRESSION,string
|
|
534
783
|
Events
|
|
535
784
|
output,output
|
|
536
|
-
Event Parameter,,Schema
|
|
537
|
-
|
|
538
785
|
|
|
539
786
|
System.Loop.CountLoop
|
|
540
787
|
Parameter,Type,Schema
|
|
@@ -553,7 +800,7 @@ source,EXPRESSION,array
|
|
|
553
800
|
Events
|
|
554
801
|
iteration,iteration
|
|
555
802
|
Event Parameter,,Schema
|
|
556
|
-
each,,
|
|
803
|
+
each,,array;boolean;double;float;integer;long;null;object;string
|
|
557
804
|
index,,integer
|
|
558
805
|
output,output
|
|
559
806
|
Event Parameter,,Schema
|
|
@@ -562,15 +809,15 @@ value,,integer
|
|
|
562
809
|
System.Loop.RangeLoop
|
|
563
810
|
Parameter,Type,Schema
|
|
564
811
|
from,EXPRESSION,double;float;integer;long
|
|
565
|
-
to,EXPRESSION,double;float;integer;long
|
|
566
812
|
step,EXPRESSION,double;float;integer;long
|
|
813
|
+
to,EXPRESSION,double;float;integer;long
|
|
567
814
|
Events
|
|
568
815
|
iteration,iteration
|
|
569
816
|
Event Parameter,,Schema
|
|
570
|
-
index,,integer;long
|
|
817
|
+
index,,double;float;integer;long
|
|
571
818
|
output,output
|
|
572
819
|
Event Parameter,,Schema
|
|
573
|
-
value,,integer;long
|
|
820
|
+
value,,double;float;integer;long
|
|
574
821
|
|
|
575
822
|
System.Math.Absolute
|
|
576
823
|
Parameter,Type,Schema
|
|
@@ -578,7 +825,7 @@ value,EXPRESSION,double;float;integer;long
|
|
|
578
825
|
Events
|
|
579
826
|
output,output
|
|
580
827
|
Event Parameter,,Schema
|
|
581
|
-
value,,integer;long
|
|
828
|
+
value,,double;float;integer;long
|
|
582
829
|
|
|
583
830
|
System.Math.Add
|
|
584
831
|
Parameter,Type,Schema
|
|
@@ -586,7 +833,7 @@ value,EXPRESSION,double;float;integer;long
|
|
|
586
833
|
Events
|
|
587
834
|
output,output
|
|
588
835
|
Event Parameter,,Schema
|
|
589
|
-
value,,integer;long
|
|
836
|
+
value,,double;float;integer;long
|
|
590
837
|
|
|
591
838
|
System.Math.ArcCosine
|
|
592
839
|
Parameter,Type,Schema
|
|
@@ -723,7 +970,7 @@ value,EXPRESSION,double;float;integer;long
|
|
|
723
970
|
Events
|
|
724
971
|
output,output
|
|
725
972
|
Event Parameter,,Schema
|
|
726
|
-
value,,integer;long
|
|
973
|
+
value,,double;float;integer;long
|
|
727
974
|
|
|
728
975
|
System.Math.Minimum
|
|
729
976
|
Parameter,Type,Schema
|
|
@@ -731,7 +978,7 @@ value,EXPRESSION,double;float;integer;long
|
|
|
731
978
|
Events
|
|
732
979
|
output,output
|
|
733
980
|
Event Parameter,,Schema
|
|
734
|
-
value,,integer;long
|
|
981
|
+
value,,double;float;integer;long
|
|
735
982
|
|
|
736
983
|
System.Math.Power
|
|
737
984
|
Parameter,Type,Schema
|
|
@@ -743,8 +990,15 @@ Event Parameter,,Schema
|
|
|
743
990
|
value,,double
|
|
744
991
|
|
|
745
992
|
System.Math.Random
|
|
746
|
-
|
|
993
|
+
Events
|
|
994
|
+
output,output
|
|
995
|
+
Event Parameter,,Schema
|
|
996
|
+
value,,double
|
|
747
997
|
|
|
998
|
+
System.Math.RandomDouble
|
|
999
|
+
Parameter,Type,Schema
|
|
1000
|
+
maxValue,EXPRESSION,double
|
|
1001
|
+
minValue,EXPRESSION,double
|
|
748
1002
|
Events
|
|
749
1003
|
output,output
|
|
750
1004
|
Event Parameter,,Schema
|
|
@@ -752,8 +1006,8 @@ value,,double
|
|
|
752
1006
|
|
|
753
1007
|
System.Math.RandomFloat
|
|
754
1008
|
Parameter,Type,Schema
|
|
755
|
-
minValue,EXPRESSION,float
|
|
756
1009
|
maxValue,EXPRESSION,float
|
|
1010
|
+
minValue,EXPRESSION,float
|
|
757
1011
|
Events
|
|
758
1012
|
output,output
|
|
759
1013
|
Event Parameter,,Schema
|
|
@@ -761,13 +1015,22 @@ value,,float
|
|
|
761
1015
|
|
|
762
1016
|
System.Math.RandomInt
|
|
763
1017
|
Parameter,Type,Schema
|
|
764
|
-
minValue,EXPRESSION,integer
|
|
765
1018
|
maxValue,EXPRESSION,integer
|
|
1019
|
+
minValue,EXPRESSION,integer
|
|
766
1020
|
Events
|
|
767
1021
|
output,output
|
|
768
1022
|
Event Parameter,,Schema
|
|
769
1023
|
value,,integer
|
|
770
1024
|
|
|
1025
|
+
System.Math.RandomLong
|
|
1026
|
+
Parameter,Type,Schema
|
|
1027
|
+
maxValue,EXPRESSION,long
|
|
1028
|
+
minValue,EXPRESSION,long
|
|
1029
|
+
Events
|
|
1030
|
+
output,output
|
|
1031
|
+
Event Parameter,,Schema
|
|
1032
|
+
value,,long
|
|
1033
|
+
|
|
771
1034
|
System.Math.Round
|
|
772
1035
|
Parameter,Type,Schema
|
|
773
1036
|
value,EXPRESSION,double;float;integer;long
|
|
@@ -816,14 +1079,24 @@ output,output
|
|
|
816
1079
|
Event Parameter,,Schema
|
|
817
1080
|
value,,double
|
|
818
1081
|
|
|
819
|
-
System.Object.
|
|
1082
|
+
System.Object.ObjectConvert
|
|
820
1083
|
Parameter,Type,Schema
|
|
1084
|
+
conversionMode,EXPRESSION,string
|
|
1085
|
+
schema,CONSTANT,object
|
|
821
1086
|
source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
1087
|
+
Events
|
|
1088
|
+
output,output
|
|
1089
|
+
Event Parameter,,Schema
|
|
1090
|
+
value,,array;boolean;double;float;integer;long;null;object;string
|
|
1091
|
+
|
|
1092
|
+
System.Object.ObjectDeleteKey
|
|
1093
|
+
Parameter,Type,Schema
|
|
822
1094
|
key,EXPRESSION,string
|
|
1095
|
+
source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
823
1096
|
Events
|
|
824
1097
|
output,output
|
|
825
1098
|
Event Parameter,,Schema
|
|
826
|
-
value,,
|
|
1099
|
+
value,,array;boolean;double;float;integer;long;null;object;string
|
|
827
1100
|
|
|
828
1101
|
System.Object.ObjectEntries
|
|
829
1102
|
Parameter,Type,Schema
|
|
@@ -843,11 +1116,11 @@ value,,array
|
|
|
843
1116
|
|
|
844
1117
|
System.Object.ObjectPutValue
|
|
845
1118
|
Parameter,Type,Schema
|
|
846
|
-
|
|
1119
|
+
deleteKeyOnNull,EXPRESSION,boolean
|
|
847
1120
|
key,EXPRESSION,string
|
|
848
|
-
value,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
849
1121
|
overwrite,EXPRESSION,boolean
|
|
850
|
-
|
|
1122
|
+
source,EXPRESSION,object
|
|
1123
|
+
value,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
851
1124
|
Events
|
|
852
1125
|
output,output
|
|
853
1126
|
Event Parameter,,Schema
|
|
@@ -863,9 +1136,10 @@ value,,array
|
|
|
863
1136
|
|
|
864
1137
|
System.Print
|
|
865
1138
|
Parameter,Type,Schema
|
|
1139
|
+
stream,EXPRESSION,string
|
|
866
1140
|
values,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
|
|
867
1141
|
Events
|
|
868
|
-
|
|
1142
|
+
output,output
|
|
869
1143
|
|
|
870
1144
|
System.String.Concatenate
|
|
871
1145
|
Parameter,Type,Schema
|
|
@@ -877,8 +1151,8 @@ value,,string
|
|
|
877
1151
|
|
|
878
1152
|
System.String.Contains
|
|
879
1153
|
Parameter,Type,Schema
|
|
880
|
-
string,EXPRESSION,string
|
|
881
1154
|
searchString,EXPRESSION,string
|
|
1155
|
+
string,EXPRESSION,string
|
|
882
1156
|
Events
|
|
883
1157
|
output,output
|
|
884
1158
|
Event Parameter,,Schema
|
|
@@ -886,9 +1160,9 @@ result,,boolean
|
|
|
886
1160
|
|
|
887
1161
|
System.String.DeleteForGivenLength
|
|
888
1162
|
Parameter,Type,Schema
|
|
889
|
-
string,EXPRESSION,string
|
|
890
|
-
startPosition,EXPRESSION,integer
|
|
891
1163
|
endPosition,EXPRESSION,integer
|
|
1164
|
+
startPosition,EXPRESSION,integer
|
|
1165
|
+
string,EXPRESSION,string
|
|
892
1166
|
Events
|
|
893
1167
|
output,output
|
|
894
1168
|
Event Parameter,,Schema
|
|
@@ -896,8 +1170,8 @@ result,,string
|
|
|
896
1170
|
|
|
897
1171
|
System.String.EndsWith
|
|
898
1172
|
Parameter,Type,Schema
|
|
899
|
-
string,EXPRESSION,string
|
|
900
1173
|
searchString,EXPRESSION,string
|
|
1174
|
+
string,EXPRESSION,string
|
|
901
1175
|
Events
|
|
902
1176
|
output,output
|
|
903
1177
|
Event Parameter,,Schema
|
|
@@ -905,17 +1179,26 @@ result,,boolean
|
|
|
905
1179
|
|
|
906
1180
|
System.String.EqualsIgnoreCase
|
|
907
1181
|
Parameter,Type,Schema
|
|
908
|
-
string,EXPRESSION,string
|
|
909
1182
|
searchString,EXPRESSION,string
|
|
1183
|
+
string,EXPRESSION,string
|
|
910
1184
|
Events
|
|
911
1185
|
output,output
|
|
912
1186
|
Event Parameter,,Schema
|
|
913
1187
|
result,,boolean
|
|
914
1188
|
|
|
915
|
-
System.String.
|
|
1189
|
+
System.String.Frequency
|
|
916
1190
|
Parameter,Type,Schema
|
|
1191
|
+
searchString,EXPRESSION,string
|
|
917
1192
|
string,EXPRESSION,string
|
|
1193
|
+
Events
|
|
1194
|
+
output,output
|
|
1195
|
+
Event Parameter,,Schema
|
|
1196
|
+
result,,integer
|
|
1197
|
+
|
|
1198
|
+
System.String.IndexOf
|
|
1199
|
+
Parameter,Type,Schema
|
|
918
1200
|
searchString,EXPRESSION,string
|
|
1201
|
+
string,EXPRESSION,string
|
|
919
1202
|
Events
|
|
920
1203
|
output,output
|
|
921
1204
|
Event Parameter,,Schema
|
|
@@ -923,9 +1206,9 @@ result,,integer
|
|
|
923
1206
|
|
|
924
1207
|
System.String.IndexOfWithStartPoint
|
|
925
1208
|
Parameter,Type,Schema
|
|
926
|
-
string,EXPRESSION,string
|
|
927
|
-
searchString,EXPRESSION,string
|
|
928
1209
|
index,EXPRESSION,integer
|
|
1210
|
+
searchString,EXPRESSION,string
|
|
1211
|
+
string,EXPRESSION,string
|
|
929
1212
|
Events
|
|
930
1213
|
output,output
|
|
931
1214
|
Event Parameter,,Schema
|
|
@@ -933,9 +1216,9 @@ result,,integer
|
|
|
933
1216
|
|
|
934
1217
|
System.String.InsertAtGivenPosition
|
|
935
1218
|
Parameter,Type,Schema
|
|
936
|
-
string,EXPRESSION,string
|
|
937
|
-
position,EXPRESSION,integer
|
|
938
1219
|
insertString,EXPRESSION,string
|
|
1220
|
+
position,EXPRESSION,integer
|
|
1221
|
+
string,EXPRESSION,string
|
|
939
1222
|
Events
|
|
940
1223
|
output,output
|
|
941
1224
|
Event Parameter,,Schema
|
|
@@ -959,8 +1242,8 @@ result,,boolean
|
|
|
959
1242
|
|
|
960
1243
|
System.String.LastIndexOf
|
|
961
1244
|
Parameter,Type,Schema
|
|
962
|
-
string,EXPRESSION,string
|
|
963
1245
|
searchString,EXPRESSION,string
|
|
1246
|
+
string,EXPRESSION,string
|
|
964
1247
|
Events
|
|
965
1248
|
output,output
|
|
966
1249
|
Event Parameter,,Schema
|
|
@@ -968,9 +1251,17 @@ result,,integer
|
|
|
968
1251
|
|
|
969
1252
|
System.String.LastIndexOfWithStartPoint
|
|
970
1253
|
Parameter,Type,Schema
|
|
971
|
-
string,EXPRESSION,string
|
|
972
|
-
searchString,EXPRESSION,string
|
|
973
1254
|
index,EXPRESSION,integer
|
|
1255
|
+
searchString,EXPRESSION,string
|
|
1256
|
+
string,EXPRESSION,string
|
|
1257
|
+
Events
|
|
1258
|
+
output,output
|
|
1259
|
+
Event Parameter,,Schema
|
|
1260
|
+
result,,integer
|
|
1261
|
+
|
|
1262
|
+
System.String.Length
|
|
1263
|
+
Parameter,Type,Schema
|
|
1264
|
+
string,EXPRESSION,string
|
|
974
1265
|
Events
|
|
975
1266
|
output,output
|
|
976
1267
|
Event Parameter,,Schema
|
|
@@ -995,9 +1286,9 @@ result,,boolean
|
|
|
995
1286
|
|
|
996
1287
|
System.String.PostPad
|
|
997
1288
|
Parameter,Type,Schema
|
|
998
|
-
string,EXPRESSION,string
|
|
999
|
-
postpadString,EXPRESSION,string
|
|
1000
1289
|
length,EXPRESSION,integer
|
|
1290
|
+
postpadString,EXPRESSION,string
|
|
1291
|
+
string,EXPRESSION,string
|
|
1001
1292
|
Events
|
|
1002
1293
|
output,output
|
|
1003
1294
|
Event Parameter,,Schema
|
|
@@ -1005,9 +1296,9 @@ result,,string
|
|
|
1005
1296
|
|
|
1006
1297
|
System.String.PrePad
|
|
1007
1298
|
Parameter,Type,Schema
|
|
1008
|
-
string,EXPRESSION,string
|
|
1009
|
-
prepadString,EXPRESSION,string
|
|
1010
1299
|
length,EXPRESSION,integer
|
|
1300
|
+
prepadString,EXPRESSION,string
|
|
1301
|
+
string,EXPRESSION,string
|
|
1011
1302
|
Events
|
|
1012
1303
|
output,output
|
|
1013
1304
|
Event Parameter,,Schema
|
|
@@ -1015,12 +1306,12 @@ result,,string
|
|
|
1015
1306
|
|
|
1016
1307
|
System.String.RegionMatches
|
|
1017
1308
|
Parameter,Type,Schema
|
|
1018
|
-
string,EXPRESSION,string
|
|
1019
1309
|
boolean,EXPRESSION,boolean
|
|
1020
1310
|
firstOffset,EXPRESSION,integer
|
|
1311
|
+
length,EXPRESSION,integer
|
|
1021
1312
|
otherString,EXPRESSION,string
|
|
1022
1313
|
secondOffset,EXPRESSION,integer
|
|
1023
|
-
|
|
1314
|
+
string,EXPRESSION,string
|
|
1024
1315
|
Events
|
|
1025
1316
|
output,output
|
|
1026
1317
|
Event Parameter,,Schema
|
|
@@ -1028,8 +1319,8 @@ result,,boolean
|
|
|
1028
1319
|
|
|
1029
1320
|
System.String.Repeat
|
|
1030
1321
|
Parameter,Type,Schema
|
|
1031
|
-
string,EXPRESSION,string
|
|
1032
1322
|
index,EXPRESSION,integer
|
|
1323
|
+
string,EXPRESSION,string
|
|
1033
1324
|
Events
|
|
1034
1325
|
output,output
|
|
1035
1326
|
Event Parameter,,Schema
|
|
@@ -1037,8 +1328,8 @@ result,,string
|
|
|
1037
1328
|
|
|
1038
1329
|
System.String.Replace
|
|
1039
1330
|
Parameter,Type,Schema
|
|
1040
|
-
string,EXPRESSION,string
|
|
1041
1331
|
secondString,EXPRESSION,string
|
|
1332
|
+
string,EXPRESSION,string
|
|
1042
1333
|
thirdString,EXPRESSION,string
|
|
1043
1334
|
Events
|
|
1044
1335
|
output,output
|
|
@@ -1047,10 +1338,10 @@ result,,string
|
|
|
1047
1338
|
|
|
1048
1339
|
System.String.ReplaceAtGivenPosition
|
|
1049
1340
|
Parameter,Type,Schema
|
|
1050
|
-
string,EXPRESSION,string
|
|
1051
|
-
startPosition,EXPRESSION,integer
|
|
1052
1341
|
lengthPosition,EXPRESSION,integer
|
|
1053
1342
|
replaceString,EXPRESSION,string
|
|
1343
|
+
startPosition,EXPRESSION,integer
|
|
1344
|
+
string,EXPRESSION,string
|
|
1054
1345
|
Events
|
|
1055
1346
|
output,output
|
|
1056
1347
|
Event Parameter,,Schema
|
|
@@ -1058,8 +1349,8 @@ result,,string
|
|
|
1058
1349
|
|
|
1059
1350
|
System.String.ReplaceFirst
|
|
1060
1351
|
Parameter,Type,Schema
|
|
1061
|
-
string,EXPRESSION,string
|
|
1062
1352
|
secondString,EXPRESSION,string
|
|
1353
|
+
string,EXPRESSION,string
|
|
1063
1354
|
thirdString,EXPRESSION,string
|
|
1064
1355
|
Events
|
|
1065
1356
|
output,output
|
|
@@ -1076,8 +1367,8 @@ value,,string
|
|
|
1076
1367
|
|
|
1077
1368
|
System.String.Split
|
|
1078
1369
|
Parameter,Type,Schema
|
|
1079
|
-
string,EXPRESSION,string
|
|
1080
1370
|
searchString,EXPRESSION,string
|
|
1371
|
+
string,EXPRESSION,string
|
|
1081
1372
|
Events
|
|
1082
1373
|
output,output
|
|
1083
1374
|
Event Parameter,,Schema
|
|
@@ -1085,8 +1376,8 @@ result,,array
|
|
|
1085
1376
|
|
|
1086
1377
|
System.String.StartsWith
|
|
1087
1378
|
Parameter,Type,Schema
|
|
1088
|
-
string,EXPRESSION,string
|
|
1089
1379
|
searchString,EXPRESSION,string
|
|
1380
|
+
string,EXPRESSION,string
|
|
1090
1381
|
Events
|
|
1091
1382
|
output,output
|
|
1092
1383
|
Event Parameter,,Schema
|
|
@@ -1094,13 +1385,13 @@ result,,boolean
|
|
|
1094
1385
|
|
|
1095
1386
|
System.String.SubString
|
|
1096
1387
|
Parameter,Type,Schema
|
|
1097
|
-
string,EXPRESSION,string
|
|
1098
1388
|
index,EXPRESSION,integer
|
|
1099
1389
|
secondIndex,EXPRESSION,integer
|
|
1390
|
+
string,EXPRESSION,string
|
|
1100
1391
|
Events
|
|
1101
1392
|
output,output
|
|
1102
1393
|
Event Parameter,,Schema
|
|
1103
|
-
result,,
|
|
1394
|
+
result,,string
|
|
1104
1395
|
|
|
1105
1396
|
System.String.ToString
|
|
1106
1397
|
Parameter,Type,Schema
|
|
@@ -1118,10 +1409,26 @@ output,output
|
|
|
1118
1409
|
Event Parameter,,Schema
|
|
1119
1410
|
result,,string
|
|
1120
1411
|
|
|
1121
|
-
System.String.
|
|
1412
|
+
System.String.TrimEnd
|
|
1413
|
+
Parameter,Type,Schema
|
|
1414
|
+
string,EXPRESSION,string
|
|
1415
|
+
Events
|
|
1416
|
+
output,output
|
|
1417
|
+
Event Parameter,,Schema
|
|
1418
|
+
result,,string
|
|
1419
|
+
|
|
1420
|
+
System.String.TrimStart
|
|
1122
1421
|
Parameter,Type,Schema
|
|
1123
1422
|
string,EXPRESSION,string
|
|
1423
|
+
Events
|
|
1424
|
+
output,output
|
|
1425
|
+
Event Parameter,,Schema
|
|
1426
|
+
result,,string
|
|
1427
|
+
|
|
1428
|
+
System.String.TrimTo
|
|
1429
|
+
Parameter,Type,Schema
|
|
1124
1430
|
length,EXPRESSION,integer
|
|
1431
|
+
string,EXPRESSION,string
|
|
1125
1432
|
Events
|
|
1126
1433
|
output,output
|
|
1127
1434
|
Event Parameter,,Schema
|
|
@@ -1140,7 +1447,4 @@ Parameter,Type,Schema
|
|
|
1140
1447
|
millis,EXPRESSION,double;float;integer;long
|
|
1141
1448
|
Events
|
|
1142
1449
|
output,output
|
|
1143
|
-
Event Parameter,,Schema
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
1450
|
|