@fincity/kirun-js 2.3.2 → 2.4.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.
@@ -0,0 +1,1146 @@
1
+ System.Array.AddFirst
2
+ Parameter,Type,Schema
3
+ source,EXPRESSION,array
4
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
5
+ Events
6
+ output,output
7
+ Event Parameter,,Schema
8
+ result,,array
9
+
10
+ System.Array.ArrayToArrayOfObjects
11
+ Parameter,Type,Schema
12
+ source,EXPRESSION,array
13
+ keyName,EXPRESSION,string
14
+ Events
15
+ output,output
16
+ Event Parameter,,Schema
17
+ result,,array
18
+
19
+ System.Array.ArrayToObjects
20
+ Parameter,Type,Schema
21
+ source,EXPRESSION,array
22
+ keyPath,EXPRESSION,string
23
+ valuePath,EXPRESSION,null;string
24
+ ignoreNullValues,EXPRESSION,boolean
25
+ ignoreNullKeys,EXPRESSION,boolean
26
+ ignoreDuplicateKeys,EXPRESSION,boolean
27
+ Events
28
+ output,output
29
+ Event Parameter,,Schema
30
+ result,,integer;long;float;double;string;boolean;array;null;object
31
+
32
+ System.Array.BinarySearch
33
+ Parameter,Type,Schema
34
+ source,EXPRESSION,array
35
+ srcFrom,EXPRESSION,integer
36
+ findPrimitive,EXPRESSION,double;float;integer;long;string
37
+ length,EXPRESSION,integer
38
+ Events
39
+ output,output
40
+ Event Parameter,,Schema
41
+ index,,integer
42
+
43
+ System.Array.Compare
44
+ Parameter,Type,Schema
45
+ source,EXPRESSION,array
46
+ srcFrom,EXPRESSION,integer
47
+ find,EXPRESSION,array
48
+ findFrom,EXPRESSION,integer
49
+ length,EXPRESSION,integer
50
+ Events
51
+ output,output
52
+ Event Parameter,,Schema
53
+ result,,integer
54
+
55
+ System.Array.Concatenate
56
+ Parameter,Type,Schema
57
+ source,EXPRESSION,array
58
+ secondSource,EXPRESSION,array
59
+ Events
60
+ output,output
61
+ Event Parameter,,Schema
62
+ result,,array
63
+
64
+ System.Array.Copy
65
+ Parameter,Type,Schema
66
+ source,EXPRESSION,array
67
+ srcFrom,EXPRESSION,integer
68
+ length,EXPRESSION,integer
69
+ deepCopy,EXPRESSION,boolean
70
+ Events
71
+ output,output
72
+ Event Parameter,,Schema
73
+ result,,array
74
+
75
+ System.Array.Delete
76
+ Parameter,Type,Schema
77
+ source,EXPRESSION,array
78
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
79
+ Events
80
+ output,output
81
+ Event Parameter,,Schema
82
+ result,,array
83
+
84
+ System.Array.DeleteFirst
85
+ Parameter,Type,Schema
86
+ source,EXPRESSION,array
87
+ Events
88
+ output,output
89
+ Event Parameter,,Schema
90
+ result,,array
91
+
92
+ System.Array.DeleteFrom
93
+ Parameter,Type,Schema
94
+ source,EXPRESSION,array
95
+ srcFrom,EXPRESSION,integer
96
+ length,EXPRESSION,integer
97
+ Events
98
+ output,output
99
+ Event Parameter,,Schema
100
+ result,,array
101
+
102
+ System.Array.DeleteLast
103
+ Parameter,Type,Schema
104
+ source,EXPRESSION,array
105
+ Events
106
+ output,output
107
+ Event Parameter,,Schema
108
+ result,,array
109
+
110
+ System.Array.Disjoint
111
+ Parameter,Type,Schema
112
+ source,EXPRESSION,array
113
+ srcFrom,EXPRESSION,integer
114
+ secondSource,EXPRESSION,array
115
+ secondSrcFrom,EXPRESSION,integer
116
+ length,EXPRESSION,integer
117
+ Events
118
+ output,output
119
+ Event Parameter,,Schema
120
+ result,,array
121
+
122
+ System.Array.Equals
123
+ Parameter,Type,Schema
124
+ source,EXPRESSION,array
125
+ srcFrom,EXPRESSION,integer
126
+ find,EXPRESSION,array
127
+ findFrom,EXPRESSION,integer
128
+ length,EXPRESSION,integer
129
+ Events
130
+ output,output
131
+ Event Parameter,,Schema
132
+ result,,boolean
133
+
134
+ System.Array.Fill
135
+ Parameter,Type,Schema
136
+ source,EXPRESSION,array
137
+ srcFrom,EXPRESSION,integer
138
+ length,EXPRESSION,integer
139
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
140
+ Events
141
+ output,output
142
+ Event Parameter,,Schema
143
+
144
+
145
+ System.Array.Frequency
146
+ Parameter,Type,Schema
147
+ source,EXPRESSION,array
148
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
149
+ srcFrom,EXPRESSION,integer
150
+ length,EXPRESSION,integer
151
+ Events
152
+ output,output
153
+ Event Parameter,,Schema
154
+ result,,integer
155
+
156
+ System.Array.IndexOf
157
+ Parameter,Type,Schema
158
+ source,EXPRESSION,array
159
+ elementObject,EXPRESSION,array;boolean;double;float;integer;long;object;string
160
+ findFrom,EXPRESSION,integer
161
+ Events
162
+ output,output
163
+ Event Parameter,,Schema
164
+ result,,integer
165
+
166
+ System.Array.IndexOfArray
167
+ Parameter,Type,Schema
168
+ source,EXPRESSION,array
169
+ secondSource,EXPRESSION,array
170
+ findFrom,EXPRESSION,integer
171
+ Events
172
+ output,output
173
+ Event Parameter,,Schema
174
+ result,,integer
175
+
176
+ System.Array.Insert
177
+ Parameter,Type,Schema
178
+ source,EXPRESSION,array
179
+ offset,EXPRESSION,integer
180
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
181
+ Events
182
+ output,output
183
+ Event Parameter,,Schema
184
+ result,,array
185
+
186
+ System.Array.InsertLast
187
+ Parameter,Type,Schema
188
+ source,EXPRESSION,array
189
+ element,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
190
+ Events
191
+ output,output
192
+ Event Parameter,,Schema
193
+ result,,array
194
+
195
+ System.Array.Join
196
+ Parameter,Type,Schema
197
+ source,EXPRESSION,array
198
+ delimiter,EXPRESSION,string
199
+ Events
200
+ output,output
201
+ Event Parameter,,Schema
202
+ result,,string
203
+
204
+ System.Array.LastIndexOf
205
+ Parameter,Type,Schema
206
+ source,EXPRESSION,array
207
+ elementObject,EXPRESSION,array;boolean;double;float;integer;long;object;string
208
+ findFrom,EXPRESSION,integer
209
+ Events
210
+ output,output
211
+ Event Parameter,,Schema
212
+ result,,integer
213
+
214
+ System.Array.LastIndexOfArray
215
+ Parameter,Type,Schema
216
+ source,EXPRESSION,array
217
+ secondSource,EXPRESSION,array
218
+ findFrom,EXPRESSION,integer
219
+ Events
220
+ output,output
221
+ Event Parameter,,Schema
222
+ result,,integer
223
+
224
+ System.Array.Max
225
+ Parameter,Type,Schema
226
+ source,EXPRESSION,array
227
+ Events
228
+ output,output
229
+ Event Parameter,,Schema
230
+ result,,integer;long;float;double;string;boolean;array;null;object
231
+
232
+ System.Array.Min
233
+ Parameter,Type,Schema
234
+ source,EXPRESSION,array
235
+ Events
236
+ output,output
237
+ Event Parameter,,Schema
238
+ result,,integer;long;float;double;string;boolean;array;null;object
239
+
240
+ System.Array.MisMatch
241
+ Parameter,Type,Schema
242
+ source,EXPRESSION,array
243
+ findFrom,EXPRESSION,integer
244
+ secondSource,EXPRESSION,array
245
+ secondSrcFrom,EXPRESSION,integer
246
+ length,EXPRESSION,integer
247
+ Events
248
+ output,output
249
+ Event Parameter,,Schema
250
+ result,,integer
251
+
252
+ System.Array.RemoveDuplicates
253
+ Parameter,Type,Schema
254
+ source,EXPRESSION,array
255
+ srcFrom,EXPRESSION,integer
256
+ length,EXPRESSION,integer
257
+ Events
258
+ output,output
259
+ Event Parameter,,Schema
260
+ result,,array
261
+
262
+ System.Array.Reverse
263
+ Parameter,Type,Schema
264
+ source,EXPRESSION,array
265
+ srcFrom,EXPRESSION,integer
266
+ length,EXPRESSION,integer
267
+ Events
268
+ output,output
269
+ Event Parameter,,Schema
270
+ result,,array
271
+
272
+ System.Array.Rotate
273
+ Parameter,Type,Schema
274
+ source,EXPRESSION,array
275
+ rotateLength,EXPRESSION,integer
276
+ Events
277
+ output,output
278
+ Event Parameter,,Schema
279
+ result,,integer;long;float;double;string;boolean;array;null;object
280
+
281
+ System.Array.Shuffle
282
+ Parameter,Type,Schema
283
+ source,EXPRESSION,array
284
+ Events
285
+ output,output
286
+ Event Parameter,,Schema
287
+ result,,integer;long;float;double;string;boolean;array;null;object
288
+
289
+ System.Array.Sort
290
+ Parameter,Type,Schema
291
+ source,EXPRESSION,array
292
+ findFrom,EXPRESSION,integer
293
+ length,EXPRESSION,integer
294
+ ascending,EXPRESSION,boolean
295
+ keyPath,EXPRESSION,string
296
+ Events
297
+ output,output
298
+ Event Parameter,,Schema
299
+ result,,integer;long;float;double;string;boolean;array;null;object
300
+
301
+ System.Array.SubArray
302
+ Parameter,Type,Schema
303
+ source,EXPRESSION,array
304
+ findFrom,EXPRESSION,integer
305
+ length,EXPRESSION,integer
306
+ Events
307
+ output,output
308
+ Event Parameter,,Schema
309
+ result,,array
310
+
311
+ System.Context.Create
312
+ Parameter,Type,Schema
313
+ name,CONSTANT,string
314
+ schema,CONSTANT,object
315
+ Events
316
+ output,output
317
+ Event Parameter,,Schema
318
+
319
+
320
+ System.Context.Get
321
+ Parameter,Type,Schema
322
+ name,CONSTANT,string
323
+ Events
324
+ output,output
325
+ Event Parameter,,Schema
326
+ value,,integer;long;float;double;string;boolean;array;null;object
327
+
328
+ System.Context.Set
329
+ Parameter,Type,Schema
330
+ name,EXPRESSION,string
331
+ value,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
332
+ Events
333
+ output,output
334
+ Event Parameter,,Schema
335
+
336
+
337
+ System.Date.AddTime
338
+ Parameter,Type,Schema
339
+ isoDate,EXPRESSION,string
340
+ intValue,EXPRESSION,integer
341
+ unit,EXPRESSION,string
342
+ Events
343
+ output,output
344
+ Event Parameter,,Schema
345
+ result,,string
346
+
347
+ System.Date.DateToEpoch
348
+ Parameter,Type,Schema
349
+ isoDate,EXPRESSION,
350
+ Events
351
+ output,output
352
+ Event Parameter,,Schema
353
+ result,,long
354
+
355
+ System.Date.DifferenceOfTimestamps
356
+ Parameter,Type,Schema
357
+ isoDateOne,EXPRESSION,string
358
+ isoDateTwo,EXPRESSION,string
359
+ Events
360
+
361
+
362
+ System.Date.EpochToDate
363
+ Parameter,Type,Schema
364
+ epoch,EXPRESSION,
365
+ Events
366
+ output,output
367
+ Event Parameter,,Schema
368
+ date,,
369
+
370
+ System.Date.GetCurrentTimeStamp
371
+ Parameter,Type,Schema
372
+
373
+ Events
374
+ output,output
375
+ Event Parameter,,Schema
376
+ date,,
377
+
378
+ System.Date.GetDate
379
+ Parameter,Type,Schema
380
+ isoDate,EXPRESSION,string
381
+ Events
382
+ output,output
383
+ Event Parameter,,Schema
384
+ result,,integer
385
+
386
+ System.Date.GetDay
387
+ Parameter,Type,Schema
388
+ isoDate,EXPRESSION,string
389
+ Events
390
+ output,output
391
+ Event Parameter,,Schema
392
+ result,,integer
393
+
394
+ System.Date.GetFullYear
395
+ Parameter,Type,Schema
396
+ isoDate,EXPRESSION,string
397
+ Events
398
+ output,output
399
+ Event Parameter,,Schema
400
+ result,,integer
401
+
402
+ System.Date.GetHours
403
+ Parameter,Type,Schema
404
+ isoDate,EXPRESSION,string
405
+ Events
406
+ output,output
407
+ Event Parameter,,Schema
408
+ result,,integer
409
+
410
+ System.Date.GetMilliSeconds
411
+ Parameter,Type,Schema
412
+ isoDate,EXPRESSION,string
413
+ Events
414
+ output,output
415
+ Event Parameter,,Schema
416
+ result,,integer
417
+
418
+ System.Date.GetMinutes
419
+ Parameter,Type,Schema
420
+ isoDate,EXPRESSION,string
421
+ Events
422
+ output,output
423
+ Event Parameter,,Schema
424
+ result,,integer
425
+
426
+ System.Date.GetMonth
427
+ Parameter,Type,Schema
428
+ isoDate,EXPRESSION,string
429
+ Events
430
+ output,output
431
+ Event Parameter,,Schema
432
+ result,,integer
433
+
434
+ System.Date.GetSeconds
435
+ Parameter,Type,Schema
436
+ isoDate,EXPRESSION,string
437
+ Events
438
+ output,output
439
+ Event Parameter,,Schema
440
+ result,,integer
441
+
442
+ System.Date.GetTime
443
+ Parameter,Type,Schema
444
+ isoDate,EXPRESSION,string
445
+ Events
446
+ output,output
447
+ Event Parameter,,Schema
448
+ result,,integer
449
+
450
+ System.Date.GetTimeAsArray
451
+ Parameter,Type,Schema
452
+ isoDate,EXPRESSION,
453
+ Events
454
+ output,output
455
+ Event Parameter,,Schema
456
+ result,,array
457
+
458
+ System.Date.GetTimeAsObject
459
+ Parameter,Type,Schema
460
+ isoDate,EXPRESSION,
461
+ Events
462
+ output,output
463
+ Event Parameter,,Schema
464
+ result,,object
465
+
466
+ System.Date.IsLeapYear
467
+ Parameter,Type,Schema
468
+ isoDate,EXPRESSION,string
469
+ Events
470
+ output,output
471
+ Event Parameter,,Schema
472
+ result,,boolean
473
+
474
+ System.Date.IsValidISODate
475
+ Parameter,Type,Schema
476
+ isoDate,EXPRESSION,
477
+ Events
478
+ output,output
479
+ Event Parameter,,Schema
480
+ output,,boolean
481
+
482
+ System.Date.MaximumTimestamp
483
+ Parameter,Type,Schema
484
+ isoDates,EXPRESSION,string
485
+ Events
486
+ result,result
487
+ Event Parameter,,Schema
488
+ result,,string
489
+
490
+ System.Date.MinimumTimestamp
491
+ Parameter,Type,Schema
492
+ isoDates,EXPRESSION,string
493
+ Events
494
+ result,result
495
+ Event Parameter,,Schema
496
+ result,,string
497
+
498
+ System.Date.SubtractTime
499
+ Parameter,Type,Schema
500
+ isoDate,EXPRESSION,string
501
+ intValue,EXPRESSION,integer
502
+ unit,EXPRESSION,string
503
+ Events
504
+ output,output
505
+ Event Parameter,,Schema
506
+ result,,string
507
+
508
+ System.GenerateEvent
509
+ Parameter,Type,Schema
510
+ eventName,EXPRESSION,string
511
+ results,EXPRESSION,object
512
+ Events
513
+ output,output
514
+ Event Parameter,,Schema
515
+
516
+
517
+ System.If
518
+ Parameter,Type,Schema
519
+ condition,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
520
+ Events
521
+ true,true
522
+ Event Parameter,,Schema
523
+
524
+ false,false
525
+ Event Parameter,,Schema
526
+
527
+ output,output
528
+ Event Parameter,,Schema
529
+
530
+
531
+ System.Loop.Break
532
+ Parameter,Type,Schema
533
+ stepName,EXPRESSION,string
534
+ Events
535
+ output,output
536
+ Event Parameter,,Schema
537
+
538
+
539
+ System.Loop.CountLoop
540
+ Parameter,Type,Schema
541
+ count,EXPRESSION,integer
542
+ Events
543
+ iteration,iteration
544
+ Event Parameter,,Schema
545
+ index,,integer
546
+ output,output
547
+ Event Parameter,,Schema
548
+ value,,integer
549
+
550
+ System.Loop.ForEachLoop
551
+ Parameter,Type,Schema
552
+ source,EXPRESSION,array
553
+ Events
554
+ iteration,iteration
555
+ Event Parameter,,Schema
556
+ each,,integer;long;float;double;string;boolean;array;null;object
557
+ index,,integer
558
+ output,output
559
+ Event Parameter,,Schema
560
+ value,,integer
561
+
562
+ System.Loop.RangeLoop
563
+ Parameter,Type,Schema
564
+ from,EXPRESSION,double;float;integer;long
565
+ to,EXPRESSION,double;float;integer;long
566
+ step,EXPRESSION,double;float;integer;long
567
+ Events
568
+ iteration,iteration
569
+ Event Parameter,,Schema
570
+ index,,integer;long;float;double
571
+ output,output
572
+ Event Parameter,,Schema
573
+ value,,integer;long;float;double
574
+
575
+ System.Math.Absolute
576
+ Parameter,Type,Schema
577
+ value,EXPRESSION,double;float;integer;long
578
+ Events
579
+ output,output
580
+ Event Parameter,,Schema
581
+ value,,integer;long;float;double
582
+
583
+ System.Math.Add
584
+ Parameter,Type,Schema
585
+ value,EXPRESSION,double;float;integer;long
586
+ Events
587
+ output,output
588
+ Event Parameter,,Schema
589
+ value,,integer;long;float;double
590
+
591
+ System.Math.ArcCosine
592
+ Parameter,Type,Schema
593
+ value,EXPRESSION,double;float;integer;long
594
+ Events
595
+ output,output
596
+ Event Parameter,,Schema
597
+ value,,double
598
+
599
+ System.Math.ArcSine
600
+ Parameter,Type,Schema
601
+ value,EXPRESSION,double;float;integer;long
602
+ Events
603
+ output,output
604
+ Event Parameter,,Schema
605
+ value,,double
606
+
607
+ System.Math.ArcTangent
608
+ Parameter,Type,Schema
609
+ value,EXPRESSION,double;float;integer;long
610
+ Events
611
+ output,output
612
+ Event Parameter,,Schema
613
+ value,,double
614
+
615
+ System.Math.ArcTangent2
616
+ Parameter,Type,Schema
617
+ value1,EXPRESSION,double;float;integer;long
618
+ value2,EXPRESSION,double;float;integer;long
619
+ Events
620
+ output,output
621
+ Event Parameter,,Schema
622
+ value,,double
623
+
624
+ System.Math.Ceiling
625
+ Parameter,Type,Schema
626
+ value,EXPRESSION,double;float;integer;long
627
+ Events
628
+ output,output
629
+ Event Parameter,,Schema
630
+ value,,double
631
+
632
+ System.Math.Cosine
633
+ Parameter,Type,Schema
634
+ value,EXPRESSION,double;float;integer;long
635
+ Events
636
+ output,output
637
+ Event Parameter,,Schema
638
+ value,,double
639
+
640
+ System.Math.CubeRoot
641
+ Parameter,Type,Schema
642
+ value,EXPRESSION,double;float;integer;long
643
+ Events
644
+ output,output
645
+ Event Parameter,,Schema
646
+ value,,double
647
+
648
+ System.Math.Exponential
649
+ Parameter,Type,Schema
650
+ value,EXPRESSION,double;float;integer;long
651
+ Events
652
+ output,output
653
+ Event Parameter,,Schema
654
+ value,,double
655
+
656
+ System.Math.ExponentialMinus1
657
+ Parameter,Type,Schema
658
+ value,EXPRESSION,double;float;integer;long
659
+ Events
660
+ output,output
661
+ Event Parameter,,Schema
662
+ value,,double
663
+
664
+ System.Math.Floor
665
+ Parameter,Type,Schema
666
+ value,EXPRESSION,double;float;integer;long
667
+ Events
668
+ output,output
669
+ Event Parameter,,Schema
670
+ value,,double
671
+
672
+ System.Math.HyperbolicCosine
673
+ Parameter,Type,Schema
674
+ value,EXPRESSION,double;float;integer;long
675
+ Events
676
+ output,output
677
+ Event Parameter,,Schema
678
+ value,,double
679
+
680
+ System.Math.HyperbolicSine
681
+ Parameter,Type,Schema
682
+ value,EXPRESSION,double;float;integer;long
683
+ Events
684
+ output,output
685
+ Event Parameter,,Schema
686
+ value,,double
687
+
688
+ System.Math.HyperbolicTangent
689
+ Parameter,Type,Schema
690
+ value,EXPRESSION,double;float;integer;long
691
+ Events
692
+ output,output
693
+ Event Parameter,,Schema
694
+ value,,double
695
+
696
+ System.Math.Hypotenuse
697
+ Parameter,Type,Schema
698
+ value,EXPRESSION,double;float;integer;long
699
+ Events
700
+ output,output
701
+ Event Parameter,,Schema
702
+ value,,double
703
+
704
+ System.Math.Log10
705
+ Parameter,Type,Schema
706
+ value,EXPRESSION,double;float;integer;long
707
+ Events
708
+ output,output
709
+ Event Parameter,,Schema
710
+ value,,double
711
+
712
+ System.Math.LogNatural
713
+ Parameter,Type,Schema
714
+ value,EXPRESSION,double;float;integer;long
715
+ Events
716
+ output,output
717
+ Event Parameter,,Schema
718
+ value,,double
719
+
720
+ System.Math.Maximum
721
+ Parameter,Type,Schema
722
+ value,EXPRESSION,double;float;integer;long
723
+ Events
724
+ output,output
725
+ Event Parameter,,Schema
726
+ value,,integer;long;float;double
727
+
728
+ System.Math.Minimum
729
+ Parameter,Type,Schema
730
+ value,EXPRESSION,double;float;integer;long
731
+ Events
732
+ output,output
733
+ Event Parameter,,Schema
734
+ value,,integer;long;float;double
735
+
736
+ System.Math.Power
737
+ Parameter,Type,Schema
738
+ value1,EXPRESSION,double;float;integer;long
739
+ value2,EXPRESSION,double;float;integer;long
740
+ Events
741
+ output,output
742
+ Event Parameter,,Schema
743
+ value,,double
744
+
745
+ System.Math.Random
746
+ Parameter,Type,Schema
747
+
748
+ Events
749
+ output,output
750
+ Event Parameter,,Schema
751
+ value,,double
752
+
753
+ System.Math.RandomFloat
754
+ Parameter,Type,Schema
755
+ minValue,EXPRESSION,float
756
+ maxValue,EXPRESSION,float
757
+ Events
758
+ output,output
759
+ Event Parameter,,Schema
760
+ value,,float
761
+
762
+ System.Math.RandomInt
763
+ Parameter,Type,Schema
764
+ minValue,EXPRESSION,integer
765
+ maxValue,EXPRESSION,integer
766
+ Events
767
+ output,output
768
+ Event Parameter,,Schema
769
+ value,,integer
770
+
771
+ System.Math.Round
772
+ Parameter,Type,Schema
773
+ value,EXPRESSION,double;float;integer;long
774
+ Events
775
+ output,output
776
+ Event Parameter,,Schema
777
+ value,,integer;long
778
+
779
+ System.Math.Sine
780
+ Parameter,Type,Schema
781
+ value,EXPRESSION,double;float;integer;long
782
+ Events
783
+ output,output
784
+ Event Parameter,,Schema
785
+ value,,double
786
+
787
+ System.Math.SquareRoot
788
+ Parameter,Type,Schema
789
+ value,EXPRESSION,double;float;integer;long
790
+ Events
791
+ output,output
792
+ Event Parameter,,Schema
793
+ value,,double
794
+
795
+ System.Math.Tangent
796
+ Parameter,Type,Schema
797
+ value,EXPRESSION,double;float;integer;long
798
+ Events
799
+ output,output
800
+ Event Parameter,,Schema
801
+ value,,double
802
+
803
+ System.Math.ToDegrees
804
+ Parameter,Type,Schema
805
+ value,EXPRESSION,double;float;integer;long
806
+ Events
807
+ output,output
808
+ Event Parameter,,Schema
809
+ value,,double
810
+
811
+ System.Math.ToRadians
812
+ Parameter,Type,Schema
813
+ value,EXPRESSION,double;float;integer;long
814
+ Events
815
+ output,output
816
+ Event Parameter,,Schema
817
+ value,,double
818
+
819
+ System.Object.ObjectDeleteKey
820
+ Parameter,Type,Schema
821
+ source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
822
+ key,EXPRESSION,string
823
+ Events
824
+ output,output
825
+ Event Parameter,,Schema
826
+ value,,integer;long;float;double;string;boolean;array;null;object
827
+
828
+ System.Object.ObjectEntries
829
+ Parameter,Type,Schema
830
+ source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
831
+ Events
832
+ output,output
833
+ Event Parameter,,Schema
834
+ value,,array
835
+
836
+ System.Object.ObjectKeys
837
+ Parameter,Type,Schema
838
+ source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
839
+ Events
840
+ output,output
841
+ Event Parameter,,Schema
842
+ value,,array
843
+
844
+ System.Object.ObjectPutValue
845
+ Parameter,Type,Schema
846
+ source,EXPRESSION,object
847
+ key,EXPRESSION,string
848
+ value,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
849
+ overwrite,EXPRESSION,boolean
850
+ deleteKeyOnNull,EXPRESSION,boolean
851
+ Events
852
+ output,output
853
+ Event Parameter,,Schema
854
+ value,,object
855
+
856
+ System.Object.ObjectValues
857
+ Parameter,Type,Schema
858
+ source,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
859
+ Events
860
+ output,output
861
+ Event Parameter,,Schema
862
+ value,,array
863
+
864
+ System.Print
865
+ Parameter,Type,Schema
866
+ values,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
867
+ Events
868
+
869
+
870
+ System.String.Concatenate
871
+ Parameter,Type,Schema
872
+ value,EXPRESSION,string
873
+ Events
874
+ output,output
875
+ Event Parameter,,Schema
876
+ value,,string
877
+
878
+ System.String.Contains
879
+ Parameter,Type,Schema
880
+ string,EXPRESSION,string
881
+ searchString,EXPRESSION,string
882
+ Events
883
+ output,output
884
+ Event Parameter,,Schema
885
+ result,,boolean
886
+
887
+ System.String.DeleteForGivenLength
888
+ Parameter,Type,Schema
889
+ string,EXPRESSION,string
890
+ startPosition,EXPRESSION,integer
891
+ endPosition,EXPRESSION,integer
892
+ Events
893
+ output,output
894
+ Event Parameter,,Schema
895
+ result,,string
896
+
897
+ System.String.EndsWith
898
+ Parameter,Type,Schema
899
+ string,EXPRESSION,string
900
+ searchString,EXPRESSION,string
901
+ Events
902
+ output,output
903
+ Event Parameter,,Schema
904
+ result,,boolean
905
+
906
+ System.String.EqualsIgnoreCase
907
+ Parameter,Type,Schema
908
+ string,EXPRESSION,string
909
+ searchString,EXPRESSION,string
910
+ Events
911
+ output,output
912
+ Event Parameter,,Schema
913
+ result,,boolean
914
+
915
+ System.String.IndexOf
916
+ Parameter,Type,Schema
917
+ string,EXPRESSION,string
918
+ searchString,EXPRESSION,string
919
+ Events
920
+ output,output
921
+ Event Parameter,,Schema
922
+ result,,integer
923
+
924
+ System.String.IndexOfWithStartPoint
925
+ Parameter,Type,Schema
926
+ string,EXPRESSION,string
927
+ searchString,EXPRESSION,string
928
+ index,EXPRESSION,integer
929
+ Events
930
+ output,output
931
+ Event Parameter,,Schema
932
+ result,,integer
933
+
934
+ System.String.InsertAtGivenPosition
935
+ Parameter,Type,Schema
936
+ string,EXPRESSION,string
937
+ position,EXPRESSION,integer
938
+ insertString,EXPRESSION,string
939
+ Events
940
+ output,output
941
+ Event Parameter,,Schema
942
+ result,,string
943
+
944
+ System.String.IsBlank
945
+ Parameter,Type,Schema
946
+ string,EXPRESSION,string
947
+ Events
948
+ output,output
949
+ Event Parameter,,Schema
950
+ result,,boolean
951
+
952
+ System.String.IsEmpty
953
+ Parameter,Type,Schema
954
+ string,EXPRESSION,string
955
+ Events
956
+ output,output
957
+ Event Parameter,,Schema
958
+ result,,boolean
959
+
960
+ System.String.LastIndexOf
961
+ Parameter,Type,Schema
962
+ string,EXPRESSION,string
963
+ searchString,EXPRESSION,string
964
+ Events
965
+ output,output
966
+ Event Parameter,,Schema
967
+ result,,integer
968
+
969
+ System.String.LastIndexOfWithStartPoint
970
+ Parameter,Type,Schema
971
+ string,EXPRESSION,string
972
+ searchString,EXPRESSION,string
973
+ index,EXPRESSION,integer
974
+ Events
975
+ output,output
976
+ Event Parameter,,Schema
977
+ result,,integer
978
+
979
+ System.String.LowerCase
980
+ Parameter,Type,Schema
981
+ string,EXPRESSION,string
982
+ Events
983
+ output,output
984
+ Event Parameter,,Schema
985
+ result,,string
986
+
987
+ System.String.Matches
988
+ Parameter,Type,Schema
989
+ regex,EXPRESSION,string
990
+ string,EXPRESSION,string
991
+ Events
992
+ output,output
993
+ Event Parameter,,Schema
994
+ result,,boolean
995
+
996
+ System.String.PostPad
997
+ Parameter,Type,Schema
998
+ string,EXPRESSION,string
999
+ postpadString,EXPRESSION,string
1000
+ length,EXPRESSION,integer
1001
+ Events
1002
+ output,output
1003
+ Event Parameter,,Schema
1004
+ result,,string
1005
+
1006
+ System.String.PrePad
1007
+ Parameter,Type,Schema
1008
+ string,EXPRESSION,string
1009
+ prepadString,EXPRESSION,string
1010
+ length,EXPRESSION,integer
1011
+ Events
1012
+ output,output
1013
+ Event Parameter,,Schema
1014
+ result,,string
1015
+
1016
+ System.String.RegionMatches
1017
+ Parameter,Type,Schema
1018
+ string,EXPRESSION,string
1019
+ boolean,EXPRESSION,boolean
1020
+ firstOffset,EXPRESSION,integer
1021
+ otherString,EXPRESSION,string
1022
+ secondOffset,EXPRESSION,integer
1023
+ length,EXPRESSION,integer
1024
+ Events
1025
+ output,output
1026
+ Event Parameter,,Schema
1027
+ result,,boolean
1028
+
1029
+ System.String.Repeat
1030
+ Parameter,Type,Schema
1031
+ string,EXPRESSION,string
1032
+ index,EXPRESSION,integer
1033
+ Events
1034
+ output,output
1035
+ Event Parameter,,Schema
1036
+ result,,string
1037
+
1038
+ System.String.Replace
1039
+ Parameter,Type,Schema
1040
+ string,EXPRESSION,string
1041
+ secondString,EXPRESSION,string
1042
+ thirdString,EXPRESSION,string
1043
+ Events
1044
+ output,output
1045
+ Event Parameter,,Schema
1046
+ result,,string
1047
+
1048
+ System.String.ReplaceAtGivenPosition
1049
+ Parameter,Type,Schema
1050
+ string,EXPRESSION,string
1051
+ startPosition,EXPRESSION,integer
1052
+ lengthPosition,EXPRESSION,integer
1053
+ replaceString,EXPRESSION,string
1054
+ Events
1055
+ output,output
1056
+ Event Parameter,,Schema
1057
+ result,,string
1058
+
1059
+ System.String.ReplaceFirst
1060
+ Parameter,Type,Schema
1061
+ string,EXPRESSION,string
1062
+ secondString,EXPRESSION,string
1063
+ thirdString,EXPRESSION,string
1064
+ Events
1065
+ output,output
1066
+ Event Parameter,,Schema
1067
+ result,,string
1068
+
1069
+ System.String.Reverse
1070
+ Parameter,Type,Schema
1071
+ value,EXPRESSION,string
1072
+ Events
1073
+ output,output
1074
+ Event Parameter,,Schema
1075
+ value,,string
1076
+
1077
+ System.String.Split
1078
+ Parameter,Type,Schema
1079
+ string,EXPRESSION,string
1080
+ searchString,EXPRESSION,string
1081
+ Events
1082
+ output,output
1083
+ Event Parameter,,Schema
1084
+ result,,array
1085
+
1086
+ System.String.StartsWith
1087
+ Parameter,Type,Schema
1088
+ string,EXPRESSION,string
1089
+ searchString,EXPRESSION,string
1090
+ Events
1091
+ output,output
1092
+ Event Parameter,,Schema
1093
+ result,,boolean
1094
+
1095
+ System.String.SubString
1096
+ Parameter,Type,Schema
1097
+ string,EXPRESSION,string
1098
+ index,EXPRESSION,integer
1099
+ secondIndex,EXPRESSION,integer
1100
+ Events
1101
+ output,output
1102
+ Event Parameter,,Schema
1103
+ result,,integer
1104
+
1105
+ System.String.ToString
1106
+ Parameter,Type,Schema
1107
+ anytype,EXPRESSION,array;boolean;double;float;integer;long;null;object;string
1108
+ Events
1109
+ output,output
1110
+ Event Parameter,,Schema
1111
+ result,,string
1112
+
1113
+ System.String.Trim
1114
+ Parameter,Type,Schema
1115
+ string,EXPRESSION,string
1116
+ Events
1117
+ output,output
1118
+ Event Parameter,,Schema
1119
+ result,,string
1120
+
1121
+ System.String.TrimTo
1122
+ Parameter,Type,Schema
1123
+ string,EXPRESSION,string
1124
+ length,EXPRESSION,integer
1125
+ Events
1126
+ output,output
1127
+ Event Parameter,,Schema
1128
+ result,,string
1129
+
1130
+ System.String.UpperCase
1131
+ Parameter,Type,Schema
1132
+ string,EXPRESSION,string
1133
+ Events
1134
+ output,output
1135
+ Event Parameter,,Schema
1136
+ result,,string
1137
+
1138
+ System.Wait
1139
+ Parameter,Type,Schema
1140
+ millis,EXPRESSION,double;float;integer;long
1141
+ Events
1142
+ output,output
1143
+ Event Parameter,,Schema
1144
+
1145
+
1146
+