@dcl/playground-assets 7.7.2-12876822878.commit-75bba39 → 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 CHANGED
@@ -7219,7 +7219,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
7219
7219
  * @public
7220
7220
  */
7221
7221
  export declare type Transport = {
7222
- send(message: Uint8Array): Promise<void>;
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
- send(message: Uint8Array): Promise<void>;
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;
@@ -7186,7 +7186,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
7186
7186
  * @public
7187
7187
  */
7188
7188
  export declare type Transport = {
7189
- send(message: Uint8Array): Promise<void>;
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;