@meistrari/tela-sdk-js 2.9.0 → 2.9.2
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.cjs +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -23,7 +23,7 @@ const changeCase__namespace = /*#__PURE__*/_interopNamespaceCompat(changeCase);
|
|
|
23
23
|
const z__default = /*#__PURE__*/_interopDefaultCompat(z);
|
|
24
24
|
const Emittery__default = /*#__PURE__*/_interopDefaultCompat(Emittery);
|
|
25
25
|
|
|
26
|
-
const version = "2.9.
|
|
26
|
+
const version = "2.9.2";
|
|
27
27
|
|
|
28
28
|
var __defProp$a = Object.defineProperty;
|
|
29
29
|
var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -3144,6 +3144,7 @@ class Batch {
|
|
|
3144
3144
|
*/
|
|
3145
3145
|
execute() {
|
|
3146
3146
|
const jsonLines = this._items.map((item) => ({
|
|
3147
|
+
tags: this._params?.tags,
|
|
3147
3148
|
...this.canvasIdentifier,
|
|
3148
3149
|
...item
|
|
3149
3150
|
})).map((item) => transformObjectFromCamelCaseToSnakeCase(item)).map((item) => JSON.stringify(item));
|
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { minimatch } from 'minimatch';
|
|
|
3
3
|
import z, { z as z$1, ZodError } from 'zod';
|
|
4
4
|
import Emittery from 'emittery';
|
|
5
5
|
|
|
6
|
-
const version = "2.9.
|
|
6
|
+
const version = "2.9.2";
|
|
7
7
|
|
|
8
8
|
var __defProp$a = Object.defineProperty;
|
|
9
9
|
var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -3124,6 +3124,7 @@ class Batch {
|
|
|
3124
3124
|
*/
|
|
3125
3125
|
execute() {
|
|
3126
3126
|
const jsonLines = this._items.map((item) => ({
|
|
3127
|
+
tags: this._params?.tags,
|
|
3127
3128
|
...this.canvasIdentifier,
|
|
3128
3129
|
...item
|
|
3129
3130
|
})).map((item) => transformObjectFromCamelCaseToSnakeCase(item)).map((item) => JSON.stringify(item));
|