@twintag/twintag-core 0.2.275 → 0.2.276

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.
@@ -206,7 +206,7 @@ class IndexedDbService {
206
206
  /**
207
207
  * The SDK version.
208
208
  */
209
- const VERSION = '0.2.275';
209
+ const VERSION = '0.2.276';
210
210
 
211
211
  class TwintagErrorValue {
212
212
  }
@@ -1340,8 +1340,8 @@ class View {
1340
1340
  *
1341
1341
  * @hidden
1342
1342
  */
1343
- async seal() {
1344
- const url = this.fileURL('seal');
1343
+ async seal(includeMetadata = false) {
1344
+ const url = this.fileURL('seal') + "?includemetadata=" + includeMetadata;
1345
1345
  const client = await this._base.client();
1346
1346
  const [, err] = await client.put(url, {});
1347
1347
  if (err) {
@@ -2,4 +2,4 @@
2
2
  /**
3
3
  * The library version.
4
4
  */
5
- export const VERSION = '0.2.275';
5
+ export const VERSION = '0.2.276';
@@ -223,7 +223,7 @@ class IndexedDbService {
223
223
  /**
224
224
  * The SDK version.
225
225
  */
226
- const VERSION = '0.2.275';
226
+ const VERSION = '0.2.276';
227
227
 
228
228
  class TwintagErrorValue {
229
229
  }
@@ -1357,8 +1357,8 @@ class View {
1357
1357
  *
1358
1358
  * @hidden
1359
1359
  */
1360
- async seal() {
1361
- const url = this.fileURL('seal');
1360
+ async seal(includeMetadata = false) {
1361
+ const url = this.fileURL('seal') + "?includemetadata=" + includeMetadata;
1362
1362
  const client = await this._base.client();
1363
1363
  const [, err] = await client.put(url, {});
1364
1364
  if (err) {
@@ -202,7 +202,7 @@ class IndexedDbService {
202
202
  /**
203
203
  * The SDK version.
204
204
  */
205
- const VERSION = '0.2.275';
205
+ const VERSION = '0.2.276';
206
206
 
207
207
  class TwintagErrorValue {
208
208
  }
@@ -1336,8 +1336,8 @@ class View {
1336
1336
  *
1337
1337
  * @hidden
1338
1338
  */
1339
- async seal() {
1340
- const url = this.fileURL('seal');
1339
+ async seal(includeMetadata = false) {
1340
+ const url = this.fileURL('seal') + "?includemetadata=" + includeMetadata;
1341
1341
  const client = await this._base.client();
1342
1342
  const [, err] = await client.put(url, {});
1343
1343
  if (err) {