@milaboratories/milaboratories.monetization-test.model 1.0.23 → 1.0.24
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 +7 -0
- package/dist/bundle.js +5 -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.24 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 [1m4.
|
|
10
|
+
[32mcreated [1mdist, dist[22m in [1m4.7s[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 [1m4.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.24 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
package/dist/bundle.js
CHANGED
|
@@ -5635,10 +5635,12 @@
|
|
|
5635
5635
|
break;
|
|
5636
5636
|
case RT_JSON_PARTITIONED:
|
|
5637
5637
|
case RT_BINARY_PARTITIONED:
|
|
5638
|
+
case RT_PARQUET_PARTITIONED:
|
|
5638
5639
|
keyLength = meta['partitionKeyLength'];
|
|
5639
5640
|
break;
|
|
5640
5641
|
case RT_BINARY_SUPER_PARTITIONED:
|
|
5641
5642
|
case RT_JSON_SUPER_PARTITIONED:
|
|
5643
|
+
case RT_PARQUET_SUPER_PARTITIONED:
|
|
5642
5644
|
keyLength = meta['superPartitionKeyLength'] + meta['partitionKeyLength'];
|
|
5643
5645
|
break;
|
|
5644
5646
|
}
|
|
@@ -5646,6 +5648,7 @@
|
|
|
5646
5648
|
case RT_RESOURCE_MAP:
|
|
5647
5649
|
case RT_JSON_PARTITIONED:
|
|
5648
5650
|
case RT_BINARY_PARTITIONED:
|
|
5651
|
+
case RT_PARQUET_PARTITIONED:
|
|
5649
5652
|
for (let keyStr of acc.listInputFields()) {
|
|
5650
5653
|
if (rt === RT_BINARY_PARTITIONED) {
|
|
5651
5654
|
keyStr = removeIndexSuffix(keyStr).baseKey;
|
|
@@ -5657,6 +5660,7 @@
|
|
|
5657
5660
|
case RT_RESOURCE_MAP_PARTITIONED:
|
|
5658
5661
|
case RT_BINARY_SUPER_PARTITIONED:
|
|
5659
5662
|
case RT_JSON_SUPER_PARTITIONED:
|
|
5663
|
+
case RT_PARQUET_SUPER_PARTITIONED:
|
|
5660
5664
|
for (const supKeyStr of acc.listInputFields()) {
|
|
5661
5665
|
const keyPrefix = [...JSON.parse(supKeyStr)];
|
|
5662
5666
|
const value = acc.resolve({ field: supKeyStr, assertFieldType: 'Input' });
|
|
@@ -6856,7 +6860,7 @@
|
|
|
6856
6860
|
}
|
|
6857
6861
|
}
|
|
6858
6862
|
|
|
6859
|
-
var version = "1.44.
|
|
6863
|
+
var version = "1.44.14";
|
|
6860
6864
|
|
|
6861
6865
|
const PlatformaSDKVersion = version;
|
|
6862
6866
|
|