@platforma-sdk/model 1.31.17 → 1.32.1
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/render/api.d.ts +3 -0
- package/dist/render/api.d.ts.map +1 -1
- package/dist/render/internal.d.ts +3 -0
- package/dist/render/internal.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/render/api.ts +12 -0
- package/src/render/internal.ts +10 -0
package/dist/index.mjs
CHANGED
|
@@ -1451,8 +1451,17 @@ class te {
|
|
|
1451
1451
|
getCurrentUnstableMarker() {
|
|
1452
1452
|
return this.ctx.getCurrentUnstableMarker();
|
|
1453
1453
|
}
|
|
1454
|
+
logInfo(e) {
|
|
1455
|
+
this.ctx.logInfo(e);
|
|
1456
|
+
}
|
|
1457
|
+
logWarn(e) {
|
|
1458
|
+
this.ctx.logWarn(e);
|
|
1459
|
+
}
|
|
1460
|
+
logError(e) {
|
|
1461
|
+
this.ctx.logError(e);
|
|
1462
|
+
}
|
|
1454
1463
|
}
|
|
1455
|
-
const Y = "1.
|
|
1464
|
+
const Y = "1.32.1";
|
|
1456
1465
|
function Kt(t) {
|
|
1457
1466
|
return t.__renderLambda === !0;
|
|
1458
1467
|
}
|