@milaboratories/milaboratories.monetization-test.model 1.0.34 → 1.0.35
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-lint.log +5 -0
- package/.turbo/turbo-type-check.log +2 -2
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/eslint.config.mjs +7 -0
- package/package.json +8 -5
- package/src/index.ts +12 -11
- package/tsconfig.json +4 -11
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.35 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.7s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
|
-
[32mcreated [1mdist[22m in [1m4.
|
|
13
|
+
[32mcreated [1mdist[22m in [1m4.5s[22m[39m
|
|
14
14
|
Build completed successfully
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
|
+
|
|
3
|
+
> @milaboratories/milaboratories.monetization-test.model@1.0.35 lint /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
|
|
4
|
+
> eslint .
|
|
5
|
+
|
|
@@ -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.35 type-check /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
|
|
4
4
|
> ts-builder types --target block-model
|
|
5
5
|
|
|
6
|
-
↳ tsc --noEmit --project ./tsconfig.json
|
|
6
|
+
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
package/CHANGELOG.md
CHANGED
package/dist/bundle.js
CHANGED
|
@@ -7610,7 +7610,7 @@
|
|
|
7610
7610
|
const model = BlockModel.create()
|
|
7611
7611
|
.withArgs({
|
|
7612
7612
|
// a fake product key so our mnz client response with a fake response without changing prod db.
|
|
7613
|
-
productKey:
|
|
7613
|
+
productKey: 'PRODUCT:XTOKAYPLQDZWSPPUTFNHPAJQQZKKSPTCDOORHFJIOYICTRDA',
|
|
7614
7614
|
inputHandles: [],
|
|
7615
7615
|
shouldAddRunPerFile: false,
|
|
7616
7616
|
__mnzDate: new Date().toISOString(), // It's OK
|
|
@@ -7623,7 +7623,7 @@
|
|
|
7623
7623
|
.output('tokens', (ctx) => ctx.outputs?.resolve('token')?.listInputFields().map((field) => {
|
|
7624
7624
|
return {
|
|
7625
7625
|
name: field,
|
|
7626
|
-
value: ctx.outputs?.resolve('token', field)?.getDataAsString()
|
|
7626
|
+
value: ctx.outputs?.resolve('token', field)?.getDataAsString(),
|
|
7627
7627
|
};
|
|
7628
7628
|
}))
|
|
7629
7629
|
.output('progresses', (ctx) => {
|