@spawnco/sdk-types 0.0.42 → 0.0.43

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/index.d.mts CHANGED
@@ -11,7 +11,7 @@ interface MagicCdnMediaToken {
11
11
  interface MagicCdnApi {
12
12
  getMediaToken(): Promise<MagicCdnMediaToken>;
13
13
  }
14
- type ClipFormat = 'gif' | 'webm';
14
+ type ClipFormat = 'gif' | 'webm' | 'mp4';
15
15
  type ClipKind = 'world' | (string & {});
16
16
  type ClipStatus = 'ready' | 'processing' | 'hidden';
17
17
  interface ClipDescriptor {
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ interface MagicCdnMediaToken {
11
11
  interface MagicCdnApi {
12
12
  getMediaToken(): Promise<MagicCdnMediaToken>;
13
13
  }
14
- type ClipFormat = 'gif' | 'webm';
14
+ type ClipFormat = 'gif' | 'webm' | 'mp4';
15
15
  type ClipKind = 'world' | (string & {});
16
16
  type ClipStatus = 'ready' | 'processing' | 'hidden';
17
17
  interface ClipDescriptor {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spawnco/sdk-types",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "TypeScript type definitions for Spawn SDK",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/v1.ts CHANGED
@@ -14,7 +14,7 @@ interface MagicCdnApi {
14
14
  getMediaToken(): Promise<MagicCdnMediaToken>;
15
15
  }
16
16
 
17
- export type ClipFormat = 'gif' | 'webm';
17
+ export type ClipFormat = 'gif' | 'webm' | 'mp4';
18
18
  export type ClipKind = 'world' | (string & {});
19
19
  export type ClipStatus = 'ready' | 'processing' | 'hidden';
20
20