@blinkk/root-cms 1.4.3 → 1.4.4

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/app.js CHANGED
@@ -7,7 +7,7 @@ import { render as renderToString } from "preact-render-to-string";
7
7
  // package.json
8
8
  var package_default = {
9
9
  name: "@blinkk/root-cms",
10
- version: "1.4.3",
10
+ version: "1.4.4",
11
11
  author: "s@blinkk.com",
12
12
  license: "MIT",
13
13
  engines: {
@@ -138,7 +138,7 @@ var package_default = {
138
138
  vitest: "0.34.6"
139
139
  },
140
140
  peerDependencies: {
141
- "@blinkk/root": "1.4.3",
141
+ "@blinkk/root": "1.4.4",
142
142
  "firebase-admin": ">=11",
143
143
  "firebase-functions": ">=4",
144
144
  preact: ">=10",
package/dist/client.js CHANGED
@@ -374,7 +374,7 @@ var RootCMSClient = class {
374
374
  source: this.normalizeString(source)
375
375
  };
376
376
  if (tags) {
377
- data.tags = tags;
377
+ data.tags = FieldValue.arrayUnion(...tags);
378
378
  }
379
379
  batch.set(translationRef, data, { merge: true });
380
380
  batchCount += 1;
package/dist/core.js CHANGED
@@ -380,7 +380,7 @@ var RootCMSClient = class {
380
380
  source: this.normalizeString(source)
381
381
  };
382
382
  if (tags) {
383
- data.tags = tags;
383
+ data.tags = FieldValue.arrayUnion(...tags);
384
384
  }
385
385
  batch.set(translationRef, data, { merge: true });
386
386
  batchCount += 1;
package/dist/functions.js CHANGED
@@ -379,7 +379,7 @@ var RootCMSClient = class {
379
379
  source: this.normalizeString(source)
380
380
  };
381
381
  if (tags) {
382
- data.tags = tags;
382
+ data.tags = FieldValue.arrayUnion(...tags);
383
383
  }
384
384
  batch.set(translationRef, data, { merge: true });
385
385
  batchCount += 1;
package/dist/plugin.js CHANGED
@@ -821,7 +821,7 @@ var RootCMSClient = class {
821
821
  source: this.normalizeString(source)
822
822
  };
823
823
  if (tags) {
824
- data.tags = tags;
824
+ data.tags = FieldValue.arrayUnion(...tags);
825
825
  }
826
826
  batch.set(translationRef, data, { merge: true });
827
827
  batchCount += 1;