@milaboratories/milaboratories.monetization-test.model 1.0.31 → 1.0.32
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 +12 -8
- 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,14 +1,14 @@
|
|
|
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.32 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 [1m5.3s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
|
-
[32mcreated [1mdist[22m in [
|
|
13
|
+
[32mcreated [1mdist[22m in [1m6s[22m[39m
|
|
14
14
|
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.32 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
|
@@ -5002,7 +5002,7 @@
|
|
|
5002
5002
|
? undefined
|
|
5003
5003
|
: {
|
|
5004
5004
|
...pObj,
|
|
5005
|
-
data: cb(pObj.data),
|
|
5005
|
+
data: cb(typeof pObj.data === 'function' ? pObj.data() : pObj.data),
|
|
5006
5006
|
};
|
|
5007
5007
|
}
|
|
5008
5008
|
function extractAllColumns(entry) {
|
|
@@ -6051,15 +6051,19 @@
|
|
|
6051
6051
|
const isValues = (d) => Array.isArray(d);
|
|
6052
6052
|
const isAccessor = (d) => d instanceof TreeNodeAccessor;
|
|
6053
6053
|
let ready = true;
|
|
6054
|
-
|
|
6055
|
-
|
|
6054
|
+
const data = typeof c.data === 'function' ? c.data() : c.data;
|
|
6055
|
+
if (data == null) {
|
|
6056
|
+
return false;
|
|
6057
|
+
}
|
|
6058
|
+
else if (isAccessor(data)) {
|
|
6059
|
+
ready &&= data.getIsReadyOrError();
|
|
6056
6060
|
}
|
|
6057
|
-
else if (isDataInfo(
|
|
6058
|
-
visitDataInfo(
|
|
6061
|
+
else if (isDataInfo(data)) {
|
|
6062
|
+
visitDataInfo(data, (v) => ready &&= v.getIsReadyOrError());
|
|
6059
6063
|
}
|
|
6060
|
-
else if (!isValues(
|
|
6064
|
+
else if (!isValues(data)) {
|
|
6061
6065
|
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
6062
|
-
throw Error(`unsupported column data type: ${
|
|
6066
|
+
throw Error(`unsupported column data type: ${data}`);
|
|
6063
6067
|
}
|
|
6064
6068
|
return ready;
|
|
6065
6069
|
}
|
|
@@ -6914,7 +6918,7 @@
|
|
|
6914
6918
|
}
|
|
6915
6919
|
}
|
|
6916
6920
|
|
|
6917
|
-
var version = "1.45.
|
|
6921
|
+
var version = "1.45.45";
|
|
6918
6922
|
|
|
6919
6923
|
const PlatformaSDKVersion = version;
|
|
6920
6924
|
|