@infomaximum/widget-sdk 6.0.0-2508.3 → 6.0.0-2508.4
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/CHANGELOG.md +7 -0
- package/dist/index.esm.js +7 -7
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [6.0.0-2508.4](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2508.3...v6.0.0-2508.4) (2025-10-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* исправлено отсутствие экранирования спец символов в процессных метриках ([79a3535](https://github.com/Infomaximum/widget-sdk/commit/79a35354d16224590af4d9bb1d7aad762c719929))
|
|
11
|
+
|
|
5
12
|
## [6.0.0-2508.3](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2508.2...v6.0.0-2508.3) (2025-09-30)
|
|
6
13
|
|
|
7
14
|
## [6.0.0-2508.2](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2508.1...v6.0.0-2508.2) (2025-09-23)
|
package/dist/index.esm.js
CHANGED
|
@@ -973,7 +973,7 @@ var prepareDimensionAggregationParams = function (value) {
|
|
|
973
973
|
var commonParams = {
|
|
974
974
|
eventNameFormula: value.eventNameFormula,
|
|
975
975
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
976
|
-
eventName: value.eventName,
|
|
976
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
977
977
|
filters: convertFiltersToFormula(value.filters),
|
|
978
978
|
eventTimeFormula: "",
|
|
979
979
|
columnFormula: "",
|
|
@@ -1026,7 +1026,7 @@ var prepareTimeParams = function (value) {
|
|
|
1026
1026
|
eventNameFormula: value.eventNameFormula,
|
|
1027
1027
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1028
1028
|
filters: convertFiltersToFormula(value.filters),
|
|
1029
|
-
eventName: value.eventName,
|
|
1029
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
1030
1030
|
};
|
|
1031
1031
|
};
|
|
1032
1032
|
|
|
@@ -1106,7 +1106,7 @@ var prepareMeasureAggregationParams = function (value) {
|
|
|
1106
1106
|
outerAggregation: value.outerAggregation,
|
|
1107
1107
|
eventNameFormula: value.eventNameFormula,
|
|
1108
1108
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1109
|
-
eventName: value.eventName,
|
|
1109
|
+
eventName: value.eventName ? escapeSingularQuotes(value.eventName) : value.eventName,
|
|
1110
1110
|
filters: convertFiltersToFormula(value.filters),
|
|
1111
1111
|
eventTimeFormula: "",
|
|
1112
1112
|
columnFormula: "",
|
|
@@ -1168,11 +1168,11 @@ var prepareConversionParams = function (value) {
|
|
|
1168
1168
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1169
1169
|
startEventNameFormula: value.startEventNameFormula,
|
|
1170
1170
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1171
|
-
startEventName: value.startEventName,
|
|
1171
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1172
1172
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1173
1173
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1174
1174
|
endEventNameFormula: value.endEventNameFormula,
|
|
1175
|
-
endEventName: value.endEventName,
|
|
1175
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1176
1176
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1177
1177
|
};
|
|
1178
1178
|
};
|
|
@@ -1206,12 +1206,12 @@ var prepareDurationParams = function (value) {
|
|
|
1206
1206
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1207
1207
|
startEventNameFormula: value.startEventNameFormula,
|
|
1208
1208
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1209
|
-
startEventName: value.startEventName,
|
|
1209
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1210
1210
|
startEventAggregationName: getAggregationNameByAppearances(value.startEventAppearances),
|
|
1211
1211
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1212
1212
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1213
1213
|
endEventNameFormula: value.endEventNameFormula,
|
|
1214
|
-
endEventName: value.endEventName,
|
|
1214
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1215
1215
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1216
1216
|
endEventAggregationName: getAggregationNameByAppearances(value.endEventAppearances),
|
|
1217
1217
|
};
|
package/dist/index.js
CHANGED
|
@@ -974,7 +974,7 @@ var prepareDimensionAggregationParams = function (value) {
|
|
|
974
974
|
var commonParams = {
|
|
975
975
|
eventNameFormula: value.eventNameFormula,
|
|
976
976
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
977
|
-
eventName: value.eventName,
|
|
977
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
978
978
|
filters: convertFiltersToFormula(value.filters),
|
|
979
979
|
eventTimeFormula: "",
|
|
980
980
|
columnFormula: "",
|
|
@@ -1027,7 +1027,7 @@ var prepareTimeParams = function (value) {
|
|
|
1027
1027
|
eventNameFormula: value.eventNameFormula,
|
|
1028
1028
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1029
1029
|
filters: convertFiltersToFormula(value.filters),
|
|
1030
|
-
eventName: value.eventName,
|
|
1030
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
1031
1031
|
};
|
|
1032
1032
|
};
|
|
1033
1033
|
|
|
@@ -1107,7 +1107,7 @@ var prepareMeasureAggregationParams = function (value) {
|
|
|
1107
1107
|
outerAggregation: value.outerAggregation,
|
|
1108
1108
|
eventNameFormula: value.eventNameFormula,
|
|
1109
1109
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1110
|
-
eventName: value.eventName,
|
|
1110
|
+
eventName: value.eventName ? escapeSingularQuotes(value.eventName) : value.eventName,
|
|
1111
1111
|
filters: convertFiltersToFormula(value.filters),
|
|
1112
1112
|
eventTimeFormula: "",
|
|
1113
1113
|
columnFormula: "",
|
|
@@ -1169,11 +1169,11 @@ var prepareConversionParams = function (value) {
|
|
|
1169
1169
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1170
1170
|
startEventNameFormula: value.startEventNameFormula,
|
|
1171
1171
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1172
|
-
startEventName: value.startEventName,
|
|
1172
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1173
1173
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1174
1174
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1175
1175
|
endEventNameFormula: value.endEventNameFormula,
|
|
1176
|
-
endEventName: value.endEventName,
|
|
1176
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1177
1177
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1178
1178
|
};
|
|
1179
1179
|
};
|
|
@@ -1207,12 +1207,12 @@ var prepareDurationParams = function (value) {
|
|
|
1207
1207
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1208
1208
|
startEventNameFormula: value.startEventNameFormula,
|
|
1209
1209
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1210
|
-
startEventName: value.startEventName,
|
|
1210
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1211
1211
|
startEventAggregationName: getAggregationNameByAppearances(value.startEventAppearances),
|
|
1212
1212
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1213
1213
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1214
1214
|
endEventNameFormula: value.endEventNameFormula,
|
|
1215
|
-
endEventName: value.endEventName,
|
|
1215
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1216
1216
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1217
1217
|
endEventAggregationName: getAggregationNameByAppearances(value.endEventAppearances),
|
|
1218
1218
|
};
|