@dcl/playground-assets 7.7.1 → 7.7.2-12951019665.commit-c8695cd
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/alpha.d.ts +5 -1
- package/dist/beta.d.ts +5 -1
- package/dist/index.bundled.d.ts +5 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +3 -3
- package/dist/playground/sdk/apis.d.ts +8 -0
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +5 -1
- package/etc/playground-assets.api.json +11 -2
- package/etc/playground-assets.api.md +1 -1
- package/package.json +4 -4
package/dist/alpha.d.ts
CHANGED
@@ -7219,7 +7219,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
|
|
7219
7219
|
* @public
|
7220
7220
|
*/
|
7221
7221
|
export declare type Transport = {
|
7222
|
-
|
7222
|
+
/**
|
7223
|
+
* For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
|
7224
|
+
* For Renderer & Other transports we send a single Uint8Array
|
7225
|
+
*/
|
7226
|
+
send(message: Uint8Array | Uint8Array[]): Promise<void>;
|
7223
7227
|
onmessage?(message: Uint8Array): void;
|
7224
7228
|
filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
|
7225
7229
|
type?: string;
|
package/dist/beta.d.ts
CHANGED
@@ -7186,7 +7186,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
|
|
7186
7186
|
* @public
|
7187
7187
|
*/
|
7188
7188
|
export declare type Transport = {
|
7189
|
-
|
7189
|
+
/**
|
7190
|
+
* For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
|
7191
|
+
* For Renderer & Other transports we send a single Uint8Array
|
7192
|
+
*/
|
7193
|
+
send(message: Uint8Array | Uint8Array[]): Promise<void>;
|
7190
7194
|
onmessage?(message: Uint8Array): void;
|
7191
7195
|
filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
|
7192
7196
|
type?: string;
|
package/dist/index.bundled.d.ts
CHANGED
@@ -7186,7 +7186,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
|
|
7186
7186
|
* @public
|
7187
7187
|
*/
|
7188
7188
|
export declare type Transport = {
|
7189
|
-
|
7189
|
+
/**
|
7190
|
+
* For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
|
7191
|
+
* For Renderer & Other transports we send a single Uint8Array
|
7192
|
+
*/
|
7193
|
+
send(message: Uint8Array | Uint8Array[]): Promise<void>;
|
7190
7194
|
onmessage?(message: Uint8Array): void;
|
7191
7195
|
filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
|
7192
7196
|
type?: string;
|