@infomaximum/widget-sdk 5.29.0-2506.3 → 5.29.0-2506.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
|
+
## [5.29.0-2506.4](https://github.com/Infomaximum/widget-sdk/compare/v5.29.0-2506.3...v5.29.0-2506.4) (2025-10-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* исправлено отсутствие экранирования спец символов в процессных метриках ([73420ce](https://github.com/Infomaximum/widget-sdk/commit/73420cea46b18b8f3f9337516dc7cabd1bac4d90))
|
|
11
|
+
|
|
5
12
|
## [5.29.0-2506.3](https://github.com/Infomaximum/widget-sdk/compare/v5.29.0-2506.0...v5.29.0-2506.3) (2025-07-31)
|
|
6
13
|
|
|
7
14
|
## [5.29.0-2506.0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.1-2506.0...v5.29.0-2506.0) (2025-07-31)
|
package/dist/index.esm.js
CHANGED
|
@@ -889,7 +889,7 @@ var prepareDimensionAggregationParams = function (value) {
|
|
|
889
889
|
var commonParams = {
|
|
890
890
|
eventNameFormula: value.eventNameFormula,
|
|
891
891
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
892
|
-
eventName: value.eventName,
|
|
892
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
893
893
|
objectFilters: "1",
|
|
894
894
|
filters: convertFiltersToFormula(value.filters),
|
|
895
895
|
eventTimeFormula: "",
|
|
@@ -943,7 +943,7 @@ var prepareTimeParams = function (value) {
|
|
|
943
943
|
eventNameFormula: value.eventNameFormula,
|
|
944
944
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
945
945
|
filters: convertFiltersToFormula(value.filters),
|
|
946
|
-
eventName: value.eventName,
|
|
946
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
947
947
|
};
|
|
948
948
|
};
|
|
949
949
|
|
|
@@ -1048,7 +1048,7 @@ var prepareMeasureAggregationParams = function (value) {
|
|
|
1048
1048
|
outerAggregation: value.outerAggregation,
|
|
1049
1049
|
eventNameFormula: value.eventNameFormula,
|
|
1050
1050
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1051
|
-
eventName: value.eventName,
|
|
1051
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
1052
1052
|
objectFilters: "1",
|
|
1053
1053
|
filters: convertFiltersToFormula(value.filters),
|
|
1054
1054
|
eventTimeFormula: "",
|
|
@@ -1112,11 +1112,11 @@ var prepareConversionParams = function (value) {
|
|
|
1112
1112
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1113
1113
|
startEventNameFormula: value.startEventNameFormula,
|
|
1114
1114
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1115
|
-
startEventName: value.startEventName,
|
|
1115
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1116
1116
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1117
1117
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1118
1118
|
endEventNameFormula: value.endEventNameFormula,
|
|
1119
|
-
endEventName: value.endEventName,
|
|
1119
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1120
1120
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1121
1121
|
};
|
|
1122
1122
|
};
|
|
@@ -1151,12 +1151,12 @@ var prepareDurationParams = function (value) {
|
|
|
1151
1151
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1152
1152
|
startEventNameFormula: value.startEventNameFormula,
|
|
1153
1153
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1154
|
-
startEventName: value.startEventName,
|
|
1154
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1155
1155
|
startEventAggregationName: getAggregationNameByAppearances(value.startEventAppearances),
|
|
1156
1156
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1157
1157
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1158
1158
|
endEventNameFormula: value.endEventNameFormula,
|
|
1159
|
-
endEventName: value.endEventName,
|
|
1159
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1160
1160
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1161
1161
|
endEventAggregationName: getAggregationNameByAppearances(value.endEventAppearances),
|
|
1162
1162
|
};
|
package/dist/index.js
CHANGED
|
@@ -890,7 +890,7 @@ var prepareDimensionAggregationParams = function (value) {
|
|
|
890
890
|
var commonParams = {
|
|
891
891
|
eventNameFormula: value.eventNameFormula,
|
|
892
892
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
893
|
-
eventName: value.eventName,
|
|
893
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
894
894
|
objectFilters: "1",
|
|
895
895
|
filters: convertFiltersToFormula(value.filters),
|
|
896
896
|
eventTimeFormula: "",
|
|
@@ -944,7 +944,7 @@ var prepareTimeParams = function (value) {
|
|
|
944
944
|
eventNameFormula: value.eventNameFormula,
|
|
945
945
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
946
946
|
filters: convertFiltersToFormula(value.filters),
|
|
947
|
-
eventName: value.eventName,
|
|
947
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
948
948
|
};
|
|
949
949
|
};
|
|
950
950
|
|
|
@@ -1049,7 +1049,7 @@ var prepareMeasureAggregationParams = function (value) {
|
|
|
1049
1049
|
outerAggregation: value.outerAggregation,
|
|
1050
1050
|
eventNameFormula: value.eventNameFormula,
|
|
1051
1051
|
caseCaseIdFormula: value.caseCaseIdFormula,
|
|
1052
|
-
eventName: value.eventName,
|
|
1052
|
+
eventName: escapeSingularQuotes(value.eventName),
|
|
1053
1053
|
objectFilters: "1",
|
|
1054
1054
|
filters: convertFiltersToFormula(value.filters),
|
|
1055
1055
|
eventTimeFormula: "",
|
|
@@ -1113,11 +1113,11 @@ var prepareConversionParams = function (value) {
|
|
|
1113
1113
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1114
1114
|
startEventNameFormula: value.startEventNameFormula,
|
|
1115
1115
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1116
|
-
startEventName: value.startEventName,
|
|
1116
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1117
1117
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1118
1118
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1119
1119
|
endEventNameFormula: value.endEventNameFormula,
|
|
1120
|
-
endEventName: value.endEventName,
|
|
1120
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1121
1121
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1122
1122
|
};
|
|
1123
1123
|
};
|
|
@@ -1152,12 +1152,12 @@ var prepareDurationParams = function (value) {
|
|
|
1152
1152
|
startEventTimeFormula: value.startEventTimeFormula,
|
|
1153
1153
|
startEventNameFormula: value.startEventNameFormula,
|
|
1154
1154
|
startEventFilters: convertFiltersToFormula(value.startEventFilters),
|
|
1155
|
-
startEventName: value.startEventName,
|
|
1155
|
+
startEventName: escapeSingularQuotes(value.startEventName),
|
|
1156
1156
|
startEventAggregationName: getAggregationNameByAppearances(value.startEventAppearances),
|
|
1157
1157
|
endEventTimeFormula: value.endEventTimeFormula,
|
|
1158
1158
|
endCaseCaseIdFormula: value.endCaseCaseIdFormula,
|
|
1159
1159
|
endEventNameFormula: value.endEventNameFormula,
|
|
1160
|
-
endEventName: value.endEventName,
|
|
1160
|
+
endEventName: escapeSingularQuotes(value.endEventName),
|
|
1161
1161
|
endEventFilters: convertFiltersToFormula(value.endEventFilters),
|
|
1162
1162
|
endEventAggregationName: getAggregationNameByAppearances(value.endEventAppearances),
|
|
1163
1163
|
};
|