@dcl/playground-assets 7.1.3-4479913205.commit-bfd9912 → 7.1.4-4491682599.commit-ac44614

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
- "version": "7.1.3-4479913205.commit-bfd9912",
3
+ "version": "7.1.4-4491682599.commit-ac44614",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",
@@ -30,5 +30,5 @@
30
30
  "displayName": "SDK",
31
31
  "tsconfig": "./tsconfig.json"
32
32
  },
33
- "commit": "bfd9912fdae18508a527302eff308932f35e5549"
33
+ "commit": "ac4461417cacdf02ecfe5b34987c0e55b41639fa"
34
34
  }
@@ -1177,6 +1177,10 @@ export declare type CompositeProvider = {
1177
1177
  getCompositeOrNull: (id: string) => Composite | null;
1178
1178
  };
1179
1179
 
1180
+ export declare function compositeToBinary(composite: Composite): Uint8Array;
1181
+
1182
+ export declare function compositeToJson(composite: Composite): any;
1183
+
1180
1184
  /**
1181
1185
  * A conflict resolution message is the response to an outdated or invalid state
1182
1186
  * in the CRDT.
@@ -11259,6 +11259,99 @@
11259
11259
  "endIndex": 4
11260
11260
  }
11261
11261
  },
11262
+ {
11263
+ "kind": "Function",
11264
+ "canonicalReference": "@dcl/playground-assets!compositeToBinary:function(1)",
11265
+ "docComment": "",
11266
+ "excerptTokens": [
11267
+ {
11268
+ "kind": "Content",
11269
+ "text": "export declare function compositeToBinary(composite: "
11270
+ },
11271
+ {
11272
+ "kind": "Reference",
11273
+ "text": "Composite",
11274
+ "canonicalReference": "@dcl/playground-assets!Composite:interface"
11275
+ },
11276
+ {
11277
+ "kind": "Content",
11278
+ "text": "): "
11279
+ },
11280
+ {
11281
+ "kind": "Reference",
11282
+ "text": "Uint8Array",
11283
+ "canonicalReference": "!Uint8Array:interface"
11284
+ },
11285
+ {
11286
+ "kind": "Content",
11287
+ "text": ";"
11288
+ }
11289
+ ],
11290
+ "fileUrlPath": "../ecs/dist/composite/serialization.d.ts",
11291
+ "returnTypeTokenRange": {
11292
+ "startIndex": 3,
11293
+ "endIndex": 4
11294
+ },
11295
+ "releaseTag": "Public",
11296
+ "overloadIndex": 1,
11297
+ "parameters": [
11298
+ {
11299
+ "parameterName": "composite",
11300
+ "parameterTypeTokenRange": {
11301
+ "startIndex": 1,
11302
+ "endIndex": 2
11303
+ },
11304
+ "isOptional": false
11305
+ }
11306
+ ],
11307
+ "name": "compositeToBinary"
11308
+ },
11309
+ {
11310
+ "kind": "Function",
11311
+ "canonicalReference": "@dcl/playground-assets!compositeToJson:function(1)",
11312
+ "docComment": "",
11313
+ "excerptTokens": [
11314
+ {
11315
+ "kind": "Content",
11316
+ "text": "export declare function compositeToJson(composite: "
11317
+ },
11318
+ {
11319
+ "kind": "Reference",
11320
+ "text": "Composite",
11321
+ "canonicalReference": "@dcl/playground-assets!Composite:interface"
11322
+ },
11323
+ {
11324
+ "kind": "Content",
11325
+ "text": "): "
11326
+ },
11327
+ {
11328
+ "kind": "Content",
11329
+ "text": "any"
11330
+ },
11331
+ {
11332
+ "kind": "Content",
11333
+ "text": ";"
11334
+ }
11335
+ ],
11336
+ "fileUrlPath": "../ecs/dist/composite/serialization.d.ts",
11337
+ "returnTypeTokenRange": {
11338
+ "startIndex": 3,
11339
+ "endIndex": 4
11340
+ },
11341
+ "releaseTag": "Public",
11342
+ "overloadIndex": 1,
11343
+ "parameters": [
11344
+ {
11345
+ "parameterName": "composite",
11346
+ "parameterTypeTokenRange": {
11347
+ "startIndex": 1,
11348
+ "endIndex": 2
11349
+ },
11350
+ "isOptional": false
11351
+ }
11352
+ ],
11353
+ "name": "compositeToJson"
11354
+ },
11262
11355
  {
11263
11356
  "kind": "TypeAlias",
11264
11357
  "canonicalReference": "@dcl/playground-assets!ConflictResolutionMessage:type",
@@ -532,6 +532,16 @@ export type CompositeProvider = {
532
532
  getCompositeOrNull: (id: string) => Composite | null;
533
533
  };
534
534
 
535
+ // Warning: (ae-missing-release-tag) "compositeToBinary" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
536
+ //
537
+ // @public (undocumented)
538
+ export function compositeToBinary(composite: Composite): Uint8Array;
539
+
540
+ // Warning: (ae-missing-release-tag) "compositeToJson" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
541
+ //
542
+ // @public (undocumented)
543
+ export function compositeToJson(composite: Composite): any;
544
+
535
545
  // @public
536
546
  export type ConflictResolutionMessage = PutComponentMessageBody | DeleteComponentMessageBody;
537
547
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
- "version": "7.1.3-4479913205.commit-bfd9912",
3
+ "version": "7.1.4-4491682599.commit-ac44614",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "author": "Decentraland",
18
18
  "license": "Apache-2.0",
19
19
  "dependencies": {
20
- "@dcl/sdk": "7.1.3-4479913205.commit-bfd9912"
20
+ "@dcl/sdk": "7.1.4-4491682599.commit-ac44614"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@microsoft/api-extractor": "^7.33.8"
@@ -27,5 +27,5 @@
27
27
  "dist",
28
28
  "etc"
29
29
  ],
30
- "commit": "bfd9912fdae18508a527302eff308932f35e5549"
30
+ "commit": "ac4461417cacdf02ecfe5b34987c0e55b41639fa"
31
31
  }