@infomaximum/widget-sdk 7.0.0-32 → 7.0.0-33
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.d.ts +2 -2
- package/dist/index.esm.js +1 -0
- package/dist/index.js +1 -0
- 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
|
+
## [7.0.0-33](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-32...v7.0.0-33) (2026-08-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **BI-15638:** add apiVersion 20 for dimension aggregation format migration ([d084ba8](https://github.com/Infomaximum/widget-sdk/commit/d084ba80df4b4f35ef1d2ecea08ad24063af6fd8))
|
|
11
|
+
|
|
5
12
|
## [7.0.0-32](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-31...v7.0.0-32) (2026-08-10)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -28371,13 +28371,13 @@ declare const availableFormatsBySimpleType: {
|
|
|
28371
28371
|
type TVersion = `${number}`;
|
|
28372
28372
|
type TMigrationStruct = Record<string, any>;
|
|
28373
28373
|
/** Массив версий в строгом порядке, по которому последовательно выполняется миграция */
|
|
28374
|
-
declare const apiVersions: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "10.1", "10.2", "10.3", "11", "12", "13", "13.1", "14", "15", "15.1", "15.2", "16", "16.1", "16.2", "17", "18", "19"];
|
|
28374
|
+
declare const apiVersions: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "10.1", "10.2", "10.3", "11", "12", "13", "13.1", "14", "15", "15.1", "15.2", "16", "16.1", "16.2", "17", "18", "19", "20"];
|
|
28375
28375
|
type TApiVersion = (typeof apiVersions)[number];
|
|
28376
28376
|
/**
|
|
28377
28377
|
* Актуальная версия settings, с которой работает система.
|
|
28378
28378
|
* Используется единая версия для settings виджетов и показателей.
|
|
28379
28379
|
*/
|
|
28380
|
-
declare const apiVersion: "17" | "1" | "19" | "3" | "2" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "10.1" | "10.2" | "11" | "10.3" | "12" | "13" | "14" | "15" | "13.1" | "16" | "18" | "15.1" | "15.2" | "16.1" | "16.2";
|
|
28380
|
+
declare const apiVersion: "17" | "1" | "19" | "3" | "2" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "10.1" | "10.2" | "11" | "10.3" | "12" | "13" | "14" | "15" | "13.1" | "16" | "18" | "15.1" | "15.2" | "20" | "16.1" | "16.2";
|
|
28381
28381
|
interface IWidgetStruct<Settings extends IBaseWidgetSettings = IBaseWidgetSettings> {
|
|
28382
28382
|
key: string;
|
|
28383
28383
|
apiVersion: TApiVersion;
|
package/dist/index.esm.js
CHANGED
package/dist/index.js
CHANGED