@milaboratories/milaboratories.monetization-test.model 1.0.12 → 1.0.14
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/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/bundle.js +11 -1
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @milaboratories/milaboratories.monetization-test.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.monetization-test.model@1.0.14 build /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
|
|
4
4
|
> ts-builder build --target block-model && block-tools build-model
|
|
5
5
|
|
|
6
6
|
Building block-model project...
|
|
7
7
|
↳ rollup -c /configs/rollup.block-model.config.js
|
|
8
8
|
[36m
|
|
9
9
|
[1m./src/index.ts[22m → [1mdist, dist[22m...[39m
|
|
10
|
-
[32mcreated [1mdist, dist[22m in [
|
|
10
|
+
[32mcreated [1mdist, dist[22m in [1m2.6s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
13
|
[1m[33m(!) Circular dependency[39m[22m
|
|
14
14
|
../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
|
|
15
|
-
[32mcreated [1mdist[22m in [
|
|
15
|
+
[32mcreated [1mdist[22m in [1m2.2s[22m[39m
|
|
16
16
|
Build completed successfully
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @milaboratories/milaboratories.monetization-test.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.monetization-test.model@1.0.14 type-check /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
|
|
4
4
|
> ts-builder types --target block-model
|
|
5
5
|
|
|
6
6
|
↳ tsc --noEmit --project ./tsconfig.json
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @milaboratories/milaboratories.monetization-test.model
|
|
2
2
|
|
|
3
|
+
## 1.0.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @platforma-sdk/model@1.43.2
|
|
8
|
+
|
|
9
|
+
## 1.0.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [d60cc17]
|
|
14
|
+
- @platforma-sdk/model@1.43.0
|
|
15
|
+
|
|
3
16
|
## 1.0.12
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/bundle.js
CHANGED
|
@@ -4663,6 +4663,13 @@
|
|
|
4663
4663
|
newId: entry.newId,
|
|
4664
4664
|
axisFilters: entry.axisFilters,
|
|
4665
4665
|
};
|
|
4666
|
+
case 'artificialColumn':
|
|
4667
|
+
return {
|
|
4668
|
+
type: 'artificialColumn',
|
|
4669
|
+
column: cb(entry.column),
|
|
4670
|
+
newId: entry.newId,
|
|
4671
|
+
axesIndices: entry.axesIndices,
|
|
4672
|
+
};
|
|
4666
4673
|
case 'inlineColumn':
|
|
4667
4674
|
return entry;
|
|
4668
4675
|
case 'inner':
|
|
@@ -4945,6 +4952,9 @@
|
|
|
4945
4952
|
case 'slicedColumn':
|
|
4946
4953
|
columns.set(entry.column.id, entry.column);
|
|
4947
4954
|
return;
|
|
4955
|
+
case 'artificialColumn':
|
|
4956
|
+
columns.set(entry.column.id, entry.column);
|
|
4957
|
+
return;
|
|
4948
4958
|
case 'inlineColumn':
|
|
4949
4959
|
return;
|
|
4950
4960
|
case 'full':
|
|
@@ -6762,7 +6772,7 @@
|
|
|
6762
6772
|
}
|
|
6763
6773
|
}
|
|
6764
6774
|
|
|
6765
|
-
var version = "1.
|
|
6775
|
+
var version = "1.43.2";
|
|
6766
6776
|
|
|
6767
6777
|
const PlatformaSDKVersion = version;
|
|
6768
6778
|
|