@qrvey/utils 1.16.0-0 → 1.16.0-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.
Files changed (23) hide show
  1. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderCreateModal.d.ts +2 -0
  2. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderFunctionsType.d.ts +1 -0
  3. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderListModal.d.ts +5 -0
  4. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionAggregate.d.ts +5 -0
  5. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionAggregate.js +2 -0
  6. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionNow.d.ts +3 -0
  7. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionNow.js +2 -0
  8. package/dist/cjs/globalization/interfaces/formula_builder/II18nFormulaBuilderV2Functions.d.ts +10 -0
  9. package/dist/cjs/globalization/interfaces/formula_builder/index.d.ts +3 -0
  10. package/dist/cjs/globalization/interfaces/formula_builder/index.js +3 -0
  11. package/dist/cjs/globalization/labels/formula_builder/I18N_FORMULA_BUILDER.js +55 -1
  12. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderCreateModal.d.ts +2 -0
  13. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderFunctionsType.d.ts +1 -0
  14. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderListModal.d.ts +5 -0
  15. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionAggregate.d.ts +5 -0
  16. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionAggregate.js +1 -0
  17. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionNow.d.ts +3 -0
  18. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderV2FunctionNow.js +1 -0
  19. package/dist/globalization/interfaces/formula_builder/II18nFormulaBuilderV2Functions.d.ts +10 -0
  20. package/dist/globalization/interfaces/formula_builder/index.d.ts +3 -0
  21. package/dist/globalization/interfaces/formula_builder/index.js +3 -0
  22. package/dist/globalization/labels/formula_builder/I18N_FORMULA_BUILDER.js +55 -1
  23. package/package.json +1 -1
@@ -36,12 +36,14 @@ export interface II18nFormulaBuilderCreateModal {
36
36
  formula_name_error_reserved_word: string;
37
37
  formula_type: string;
38
38
  formula_custom_script_mode: string;
39
+ formula_custom_script_mode_soon: string;
39
40
  formula_mode: {
40
41
  title: string;
41
42
  info: string;
42
43
  tab_formula: string;
43
44
  tab_testing: string;
44
45
  tab_testing_tooltip: string;
46
+ tab_testing_tooltip_not_available: string;
45
47
  tab_testing_tooltip_empty: string;
46
48
  show_columns: string;
47
49
  hide_columns: string;
@@ -5,4 +5,5 @@ export interface II18nFormulaBuilderFunctionsType {
5
5
  date: string;
6
6
  aggregate: string;
7
7
  logical: string;
8
+ aggregated: string;
8
9
  }
@@ -6,4 +6,9 @@ export interface II18nFormulaBuilderListModal {
6
6
  information_text_text: string;
7
7
  title_header: string;
8
8
  column_editor_type: string;
9
+ loading: string;
10
+ formulas: string;
11
+ aggregate_formulas: string;
12
+ new_formula: string;
13
+ new_aggregate_formula: string;
9
14
  }
@@ -0,0 +1,5 @@
1
+ import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
+ export interface II18nFormulaBuilderV2FunctionAggregate extends II18nFormulaBuilderFunction {
3
+ param_column_name: string;
4
+ param_column_description: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
+ export interface II18nFormulaBuilderV2FunctionNow extends II18nFormulaBuilderFunction {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,6 @@
1
1
  import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
2
  import { II18nFormulaBuilderV2FunctionAbs } from "./II18nFormulaBuilderV2FunctionAbs";
3
+ import { II18nFormulaBuilderV2FunctionAggregate } from "./II18nFormulaBuilderV2FunctionAggregate";
3
4
  import { II18nFormulaBuilderV2FunctionAnd } from "./II18nFormulaBuilderV2FunctionAnd";
4
5
  import { II18nFormulaBuilderV2FunctionConcantenate } from "./II18nFormulaBuilderV2FunctionConcatenate";
5
6
  import { II18nFormulaBuilderV2FunctionDateadd } from "./II18nFormulaBuilderV2FunctionDateadd";
@@ -21,6 +22,7 @@ import { II18nFormulaBuilderV2FunctionMid } from "./II18nFormulaBuilderV2Functio
21
22
  import { II18nFormulaBuilderV2FunctionMillisecond } from "./II18nFormulaBuilderV2FunctionMillisecond";
22
23
  import { II18nFormulaBuilderV2FunctionMinute } from "./II18nFormulaBuilderV2FunctionMinute";
23
24
  import { II18nFormulaBuilderV2FunctionMonth } from "./II18nFormulaBuilderV2FunctionMonth";
25
+ import { II18nFormulaBuilderV2FunctionNow } from "./II18nFormulaBuilderV2FunctionNow";
24
26
  import { II18nFormulaBuilderV2FunctionOdd } from "./II18nFormulaBuilderV2FunctionOdd";
25
27
  import { II18nFormulaBuilderV2FunctionPower } from "./II18nFormulaBuilderV2FunctionPower";
26
28
  import { II18nFormulaBuilderV2FunctionReplace } from "./II18nFormulaBuilderV2FunctionReplace";
@@ -34,6 +36,7 @@ import { II18nFormulaBuilderV2FunctionYear } from "./II18nFormulaBuilderV2Functi
34
36
  export interface II18nFormulaBuilderV2Functions {
35
37
  abs: II18nFormulaBuilderV2FunctionAbs;
36
38
  datedif: II18nFormulaBuilderV2FunctionDatedif;
39
+ now: II18nFormulaBuilderV2FunctionNow;
37
40
  day: II18nFormulaBuilderV2FunctionDay;
38
41
  hour: II18nFormulaBuilderV2FunctionHour;
39
42
  minute: II18nFormulaBuilderV2FunctionMinute;
@@ -73,4 +76,11 @@ export interface II18nFormulaBuilderV2Functions {
73
76
  roundup: II18nFormulaBuilderV2FunctionRound;
74
77
  millisecond: II18nFormulaBuilderV2FunctionMillisecond;
75
78
  text: II18nFormulaBuilderV2FunctionText;
79
+ agg_sum: II18nFormulaBuilderV2FunctionAggregate;
80
+ agg_avg: II18nFormulaBuilderV2FunctionAggregate;
81
+ agg_med: II18nFormulaBuilderV2FunctionAggregate;
82
+ agg_min: II18nFormulaBuilderV2FunctionAggregate;
83
+ agg_max: II18nFormulaBuilderV2FunctionAggregate;
84
+ agg_count: II18nFormulaBuilderV2FunctionAggregate;
85
+ agg_distcount: II18nFormulaBuilderV2FunctionAggregate;
76
86
  }
@@ -88,3 +88,6 @@ export * from "./II18nFormulaBuilderV2FunctionLog";
88
88
  export * from "./II18nFormulaBuilderV2FunctionOdd";
89
89
  export * from "./II18nFormulaBuilderV2FunctionPower";
90
90
  export * from "./II18nFormulaBuilderV2FunctionRound";
91
+ export * from "./II18nFormulaBuilderV2FunctionMillisecond";
92
+ export * from "./II18nFormulaBuilderV2FunctionText";
93
+ export * from "./II18nFormulaBuilderV2FunctionAggregate";
@@ -104,3 +104,6 @@ __exportStar(require("./II18nFormulaBuilderV2FunctionLog"), exports);
104
104
  __exportStar(require("./II18nFormulaBuilderV2FunctionOdd"), exports);
105
105
  __exportStar(require("./II18nFormulaBuilderV2FunctionPower"), exports);
106
106
  __exportStar(require("./II18nFormulaBuilderV2FunctionRound"), exports);
107
+ __exportStar(require("./II18nFormulaBuilderV2FunctionMillisecond"), exports);
108
+ __exportStar(require("./II18nFormulaBuilderV2FunctionText"), exports);
109
+ __exportStar(require("./II18nFormulaBuilderV2FunctionAggregate"), exports);
@@ -15,6 +15,11 @@ exports.I18N_FORMULA_BUILDER = {
15
15
  information_text_text: "create and work with formulas",
16
16
  title_header: "Formulas",
17
17
  column_editor_type: "Editor Type",
18
+ loading: "Loading dependencies...",
19
+ formulas: "Formulas",
20
+ aggregate_formulas: "Aggregate Formulas",
21
+ new_formula: "New Formula",
22
+ new_aggregate_formula: "New Aggregate Formula",
18
23
  },
19
24
  list_table: {
20
25
  duplicate_copy: "Copy",
@@ -68,12 +73,14 @@ exports.I18N_FORMULA_BUILDER = {
68
73
  formula_name_error_reserved_word: "The formula name cannot be a reserved word: null, true or false.",
69
74
  formula_type: "Formula Mode",
70
75
  formula_custom_script_mode: "Data Engine Syntax (legacy)",
76
+ formula_custom_script_mode_soon: "Data Engine Syntax (legacy) - Coming Soon",
71
77
  formula_mode: {
72
78
  title: "Standardized Syntax",
73
79
  info: 'Allows mathematical and logical operators including +, -, *, /, (), =, >, <, >=, <=, <>. Numbers must be entered in en-US format. Date time values should be entered with format: "MM/DD/YYYY" or "MM/DD/YYYY HH:MM:SS"',
74
80
  tab_formula: "Formula",
75
81
  tab_testing: "Testing",
76
82
  tab_testing_tooltip: "This formula contains errors or is not finished.",
83
+ tab_testing_tooltip_not_available: "Testing not available for this formula type.",
77
84
  tab_testing_tooltip_empty: "No formula to test.",
78
85
  show_columns: "Show Columns and Functions",
79
86
  hide_columns: "Hide Columns and Functions",
@@ -108,7 +115,11 @@ exports.I18N_FORMULA_BUILDER = {
108
115
  param_date_value2_name: "date_value2",
109
116
  param_date_value2_description: 'The second date value. It can be a column or a datetime value entered with a format of either "MM/DD/YYYY" or "MM/DD/YYYY HH:MM:SS". This date should always be equal or greater than date_value1.',
110
117
  param_date_part_name: "date_part",
111
- param_date_part_description: 'Date part allows: "Y" the number of complete years in the period, "M" the number of complete months in the period, "D" the number of days in the period.',
118
+ param_date_part_description: 'Date part allows: "Y" the number of complete years in the period, "M" the number of complete months in the period, "D" the number of days in the period., “H“ the number of hours in the period, “MI“ the number of minutes in the period, “S“ the number of seconds in the period.',
119
+ },
120
+ now: {
121
+ description: "Returns a date with the current time in the current timezone with the following format: yyyy-MM-ddTHH:mm:ss.",
122
+ function_placeholder: "NOW()",
112
123
  },
113
124
  day: {
114
125
  description: "Returns the day of a date. The day is given as an integer ranging from 1 to 31.",
@@ -374,6 +385,48 @@ exports.I18N_FORMULA_BUILDER = {
374
385
  param_num1_name: "num1",
375
386
  param_num1_description: "The number that you want to convert to text.",
376
387
  },
388
+ agg_sum: {
389
+ description: "Returns the aggregated sum of the numeric values of a column.",
390
+ function_placeholder: "AGG_SUM(column)",
391
+ param_column_name: "column",
392
+ param_column_description: "The numeric column that will be aggregated.",
393
+ },
394
+ agg_avg: {
395
+ description: "Returns the average value for all the numeric values of a column.",
396
+ function_placeholder: "AGG_AVG(column)",
397
+ param_column_name: "column",
398
+ param_column_description: "The numeric column that will be aggregated.",
399
+ },
400
+ agg_med: {
401
+ description: "Returns the median value for all the numeric values of a column.",
402
+ function_placeholder: "AGG_MED(column)",
403
+ param_column_name: "column",
404
+ param_column_description: "The numeric column that will be aggregated.",
405
+ },
406
+ agg_min: {
407
+ description: "Returns the minimum value among all the numeric values of a column.",
408
+ function_placeholder: "AGG_MIN(column)",
409
+ param_column_name: "column",
410
+ param_column_description: "The numeric column that will be aggregated.",
411
+ },
412
+ agg_max: {
413
+ description: "Returns the maximum value among all the numeric values of a column.",
414
+ function_placeholder: "AGG_MAX(column)",
415
+ param_column_name: "column",
416
+ param_column_description: "The numeric column that will be aggregated.",
417
+ },
418
+ agg_count: {
419
+ description: "Returns the count of all the values of a column.",
420
+ function_placeholder: "AGG_COUNT(column)",
421
+ param_column_name: "column",
422
+ param_column_description: "The column that will be aggregated.",
423
+ },
424
+ agg_distcount: {
425
+ description: "Returns the count of all the distinct values of a column.",
426
+ function_placeholder: "AGG_DISTCOUNT(column)",
427
+ param_column_name: "column",
428
+ param_column_description: "The column that will be aggregated.",
429
+ },
377
430
  },
378
431
  editor: {
379
432
  error_messages: {
@@ -427,6 +480,7 @@ exports.I18N_FORMULA_BUILDER = {
427
480
  date: "Date/Time",
428
481
  aggregate: "Aggregates",
429
482
  logical: "Logical",
483
+ aggregated: "Aggregate",
430
484
  },
431
485
  function_is_null: {
432
486
  description: "Replaces NULL with the specified replacement value.",
@@ -36,12 +36,14 @@ export interface II18nFormulaBuilderCreateModal {
36
36
  formula_name_error_reserved_word: string;
37
37
  formula_type: string;
38
38
  formula_custom_script_mode: string;
39
+ formula_custom_script_mode_soon: string;
39
40
  formula_mode: {
40
41
  title: string;
41
42
  info: string;
42
43
  tab_formula: string;
43
44
  tab_testing: string;
44
45
  tab_testing_tooltip: string;
46
+ tab_testing_tooltip_not_available: string;
45
47
  tab_testing_tooltip_empty: string;
46
48
  show_columns: string;
47
49
  hide_columns: string;
@@ -5,4 +5,5 @@ export interface II18nFormulaBuilderFunctionsType {
5
5
  date: string;
6
6
  aggregate: string;
7
7
  logical: string;
8
+ aggregated: string;
8
9
  }
@@ -6,4 +6,9 @@ export interface II18nFormulaBuilderListModal {
6
6
  information_text_text: string;
7
7
  title_header: string;
8
8
  column_editor_type: string;
9
+ loading: string;
10
+ formulas: string;
11
+ aggregate_formulas: string;
12
+ new_formula: string;
13
+ new_aggregate_formula: string;
9
14
  }
@@ -0,0 +1,5 @@
1
+ import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
+ export interface II18nFormulaBuilderV2FunctionAggregate extends II18nFormulaBuilderFunction {
3
+ param_column_name: string;
4
+ param_column_description: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
+ export interface II18nFormulaBuilderV2FunctionNow extends II18nFormulaBuilderFunction {
3
+ }
@@ -1,5 +1,6 @@
1
1
  import { II18nFormulaBuilderFunction } from "./II18nFormulaBuilderFunction";
2
2
  import { II18nFormulaBuilderV2FunctionAbs } from "./II18nFormulaBuilderV2FunctionAbs";
3
+ import { II18nFormulaBuilderV2FunctionAggregate } from "./II18nFormulaBuilderV2FunctionAggregate";
3
4
  import { II18nFormulaBuilderV2FunctionAnd } from "./II18nFormulaBuilderV2FunctionAnd";
4
5
  import { II18nFormulaBuilderV2FunctionConcantenate } from "./II18nFormulaBuilderV2FunctionConcatenate";
5
6
  import { II18nFormulaBuilderV2FunctionDateadd } from "./II18nFormulaBuilderV2FunctionDateadd";
@@ -21,6 +22,7 @@ import { II18nFormulaBuilderV2FunctionMid } from "./II18nFormulaBuilderV2Functio
21
22
  import { II18nFormulaBuilderV2FunctionMillisecond } from "./II18nFormulaBuilderV2FunctionMillisecond";
22
23
  import { II18nFormulaBuilderV2FunctionMinute } from "./II18nFormulaBuilderV2FunctionMinute";
23
24
  import { II18nFormulaBuilderV2FunctionMonth } from "./II18nFormulaBuilderV2FunctionMonth";
25
+ import { II18nFormulaBuilderV2FunctionNow } from "./II18nFormulaBuilderV2FunctionNow";
24
26
  import { II18nFormulaBuilderV2FunctionOdd } from "./II18nFormulaBuilderV2FunctionOdd";
25
27
  import { II18nFormulaBuilderV2FunctionPower } from "./II18nFormulaBuilderV2FunctionPower";
26
28
  import { II18nFormulaBuilderV2FunctionReplace } from "./II18nFormulaBuilderV2FunctionReplace";
@@ -34,6 +36,7 @@ import { II18nFormulaBuilderV2FunctionYear } from "./II18nFormulaBuilderV2Functi
34
36
  export interface II18nFormulaBuilderV2Functions {
35
37
  abs: II18nFormulaBuilderV2FunctionAbs;
36
38
  datedif: II18nFormulaBuilderV2FunctionDatedif;
39
+ now: II18nFormulaBuilderV2FunctionNow;
37
40
  day: II18nFormulaBuilderV2FunctionDay;
38
41
  hour: II18nFormulaBuilderV2FunctionHour;
39
42
  minute: II18nFormulaBuilderV2FunctionMinute;
@@ -73,4 +76,11 @@ export interface II18nFormulaBuilderV2Functions {
73
76
  roundup: II18nFormulaBuilderV2FunctionRound;
74
77
  millisecond: II18nFormulaBuilderV2FunctionMillisecond;
75
78
  text: II18nFormulaBuilderV2FunctionText;
79
+ agg_sum: II18nFormulaBuilderV2FunctionAggregate;
80
+ agg_avg: II18nFormulaBuilderV2FunctionAggregate;
81
+ agg_med: II18nFormulaBuilderV2FunctionAggregate;
82
+ agg_min: II18nFormulaBuilderV2FunctionAggregate;
83
+ agg_max: II18nFormulaBuilderV2FunctionAggregate;
84
+ agg_count: II18nFormulaBuilderV2FunctionAggregate;
85
+ agg_distcount: II18nFormulaBuilderV2FunctionAggregate;
76
86
  }
@@ -88,3 +88,6 @@ export * from "./II18nFormulaBuilderV2FunctionLog";
88
88
  export * from "./II18nFormulaBuilderV2FunctionOdd";
89
89
  export * from "./II18nFormulaBuilderV2FunctionPower";
90
90
  export * from "./II18nFormulaBuilderV2FunctionRound";
91
+ export * from "./II18nFormulaBuilderV2FunctionMillisecond";
92
+ export * from "./II18nFormulaBuilderV2FunctionText";
93
+ export * from "./II18nFormulaBuilderV2FunctionAggregate";
@@ -88,3 +88,6 @@ export * from "./II18nFormulaBuilderV2FunctionLog";
88
88
  export * from "./II18nFormulaBuilderV2FunctionOdd";
89
89
  export * from "./II18nFormulaBuilderV2FunctionPower";
90
90
  export * from "./II18nFormulaBuilderV2FunctionRound";
91
+ export * from "./II18nFormulaBuilderV2FunctionMillisecond";
92
+ export * from "./II18nFormulaBuilderV2FunctionText";
93
+ export * from "./II18nFormulaBuilderV2FunctionAggregate";
@@ -12,6 +12,11 @@ export const I18N_FORMULA_BUILDER = {
12
12
  information_text_text: "create and work with formulas",
13
13
  title_header: "Formulas",
14
14
  column_editor_type: "Editor Type",
15
+ loading: "Loading dependencies...",
16
+ formulas: "Formulas",
17
+ aggregate_formulas: "Aggregate Formulas",
18
+ new_formula: "New Formula",
19
+ new_aggregate_formula: "New Aggregate Formula",
15
20
  },
16
21
  list_table: {
17
22
  duplicate_copy: "Copy",
@@ -65,12 +70,14 @@ export const I18N_FORMULA_BUILDER = {
65
70
  formula_name_error_reserved_word: "The formula name cannot be a reserved word: null, true or false.",
66
71
  formula_type: "Formula Mode",
67
72
  formula_custom_script_mode: "Data Engine Syntax (legacy)",
73
+ formula_custom_script_mode_soon: "Data Engine Syntax (legacy) - Coming Soon",
68
74
  formula_mode: {
69
75
  title: "Standardized Syntax",
70
76
  info: 'Allows mathematical and logical operators including +, -, *, /, (), =, >, <, >=, <=, <>. Numbers must be entered in en-US format. Date time values should be entered with format: "MM/DD/YYYY" or "MM/DD/YYYY HH:MM:SS"',
71
77
  tab_formula: "Formula",
72
78
  tab_testing: "Testing",
73
79
  tab_testing_tooltip: "This formula contains errors or is not finished.",
80
+ tab_testing_tooltip_not_available: "Testing not available for this formula type.",
74
81
  tab_testing_tooltip_empty: "No formula to test.",
75
82
  show_columns: "Show Columns and Functions",
76
83
  hide_columns: "Hide Columns and Functions",
@@ -105,7 +112,11 @@ export const I18N_FORMULA_BUILDER = {
105
112
  param_date_value2_name: "date_value2",
106
113
  param_date_value2_description: 'The second date value. It can be a column or a datetime value entered with a format of either "MM/DD/YYYY" or "MM/DD/YYYY HH:MM:SS". This date should always be equal or greater than date_value1.',
107
114
  param_date_part_name: "date_part",
108
- param_date_part_description: 'Date part allows: "Y" the number of complete years in the period, "M" the number of complete months in the period, "D" the number of days in the period.',
115
+ param_date_part_description: 'Date part allows: "Y" the number of complete years in the period, "M" the number of complete months in the period, "D" the number of days in the period., “H“ the number of hours in the period, “MI“ the number of minutes in the period, “S“ the number of seconds in the period.',
116
+ },
117
+ now: {
118
+ description: "Returns a date with the current time in the current timezone with the following format: yyyy-MM-ddTHH:mm:ss.",
119
+ function_placeholder: "NOW()",
109
120
  },
110
121
  day: {
111
122
  description: "Returns the day of a date. The day is given as an integer ranging from 1 to 31.",
@@ -371,6 +382,48 @@ export const I18N_FORMULA_BUILDER = {
371
382
  param_num1_name: "num1",
372
383
  param_num1_description: "The number that you want to convert to text.",
373
384
  },
385
+ agg_sum: {
386
+ description: "Returns the aggregated sum of the numeric values of a column.",
387
+ function_placeholder: "AGG_SUM(column)",
388
+ param_column_name: "column",
389
+ param_column_description: "The numeric column that will be aggregated.",
390
+ },
391
+ agg_avg: {
392
+ description: "Returns the average value for all the numeric values of a column.",
393
+ function_placeholder: "AGG_AVG(column)",
394
+ param_column_name: "column",
395
+ param_column_description: "The numeric column that will be aggregated.",
396
+ },
397
+ agg_med: {
398
+ description: "Returns the median value for all the numeric values of a column.",
399
+ function_placeholder: "AGG_MED(column)",
400
+ param_column_name: "column",
401
+ param_column_description: "The numeric column that will be aggregated.",
402
+ },
403
+ agg_min: {
404
+ description: "Returns the minimum value among all the numeric values of a column.",
405
+ function_placeholder: "AGG_MIN(column)",
406
+ param_column_name: "column",
407
+ param_column_description: "The numeric column that will be aggregated.",
408
+ },
409
+ agg_max: {
410
+ description: "Returns the maximum value among all the numeric values of a column.",
411
+ function_placeholder: "AGG_MAX(column)",
412
+ param_column_name: "column",
413
+ param_column_description: "The numeric column that will be aggregated.",
414
+ },
415
+ agg_count: {
416
+ description: "Returns the count of all the values of a column.",
417
+ function_placeholder: "AGG_COUNT(column)",
418
+ param_column_name: "column",
419
+ param_column_description: "The column that will be aggregated.",
420
+ },
421
+ agg_distcount: {
422
+ description: "Returns the count of all the distinct values of a column.",
423
+ function_placeholder: "AGG_DISTCOUNT(column)",
424
+ param_column_name: "column",
425
+ param_column_description: "The column that will be aggregated.",
426
+ },
374
427
  },
375
428
  editor: {
376
429
  error_messages: {
@@ -424,6 +477,7 @@ export const I18N_FORMULA_BUILDER = {
424
477
  date: "Date/Time",
425
478
  aggregate: "Aggregates",
426
479
  logical: "Logical",
480
+ aggregated: "Aggregate",
427
481
  },
428
482
  function_is_null: {
429
483
  description: "Replaces NULL with the specified replacement value.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.16.0-0",
3
+ "version": "1.16.0-2",
4
4
  "description": "Helper, Utils for all Qrvey Projects",
5
5
  "homepage": "https://bitbucket.org/qrvey/qrvey_utils/wiki/Home",
6
6
  "main": "dist/index.js",