@4players/odin-common 8.0.4 → 8.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4players/odin-common",
3
- "version": "8.0.4",
3
+ "version": "8.1.0",
4
4
  "description": "A collection of commonly used type definitions and utility functions across ODIN web projects",
5
5
  "author": "Josho Bleicker <josho.bleicker@4players.io> (https://www.4players.io)",
6
6
  "homepage": "https://www.4players.io",
@@ -17,18 +17,14 @@
17
17
  "type": "module",
18
18
  "exports": {
19
19
  ".": {
20
- "import": "./mod.mjs",
21
- "main": "./mod.js",
22
- "module": "./mod.mjs",
23
20
  "types": "./mod.d.ts",
24
- "default": "./mod.mjs"
21
+ "import": "./esm/mod.js",
22
+ "require": "./cjs/mod.js"
25
23
  },
26
24
  "./zod": {
27
- "import": "./zod/mod.mjs",
28
- "main": "./zod/mod.js",
29
- "module": "./zod/mod.mjs",
30
25
  "types": "./zod/mod.d.ts",
31
- "default": "./zod/mod.mjs"
26
+ "module": "./esm/zod/mod.js",
27
+ "main": "./cjs/zod/mod.js"
32
28
  }
33
29
  },
34
30
  "typesVersions": {
package/plugin/api.d.ts CHANGED
@@ -84,6 +84,7 @@ export declare namespace Backend {
84
84
  readonly customType?: string;
85
85
  }
86
86
  interface CreateVideoPlaybackParameters {
87
+ id: string;
87
88
  readonly uid: UID;
88
89
  readonly customType?: string;
89
90
  }
File without changes
File without changes
File without changes
File without changes