@retropak/types 1.0.0-draft11 → 1.0.0-draft12

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.
@@ -20,9 +20,9 @@ export type Feature = "analog_stick" | "arcade_stick" | "balance_board" | "bongo
20
20
  */
21
21
  export type CompilationTitle = string;
22
22
  /**
23
- * The format/medium type of the file.
23
+ * The format/medium type of the file. Note: Files with media types 'bluray', 'cdrom', 'disk_image', 'dvd', 'flash_image', 'gd_rom', 'hdd_image', 'laserdisc', 'optical_disk', and 'umd' MUST use STORE mode (uncompressed) in the ZIP archive to enable efficient random access. Other media types MAY use DEFLATE compression.
24
24
  */
25
- export type MediaType = "archive" | "bluray" | "cartridge" | "cdrom" | "download" | "dvd" | "floppy" | "gd_rom" | "hdd_image" | "laserdisc" | "memory_card" | "tape" | "umd";
25
+ export type MediaType = "archive" | "bluray" | "cartridge" | "cdrom" | "disk_image" | "download" | "dvd" | "flash_image" | "floppy" | "gd_rom" | "hdd_image" | "laserdisc" | "memory_card" | "optical_disk" | "tape" | "umd";
26
26
  /**
27
27
  * Region encoding.
28
28
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retropak/types",
3
- "version": "1.0.0-draft11",
3
+ "version": "1.0.0-draft12",
4
4
  "description": "TypeScript type definitions for Retropak manifests",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/generated.ts CHANGED
@@ -177,20 +177,23 @@ export type Feature =
177
177
  */
178
178
  export type CompilationTitle = string;
179
179
  /**
180
- * The format/medium type of the file.
180
+ * The format/medium type of the file. Note: Files with media types 'bluray', 'cdrom', 'disk_image', 'dvd', 'flash_image', 'gd_rom', 'hdd_image', 'laserdisc', 'optical_disk', and 'umd' MUST use STORE mode (uncompressed) in the ZIP archive to enable efficient random access. Other media types MAY use DEFLATE compression.
181
181
  */
182
182
  export type MediaType =
183
183
  | "archive"
184
184
  | "bluray"
185
185
  | "cartridge"
186
186
  | "cdrom"
187
+ | "disk_image"
187
188
  | "download"
188
189
  | "dvd"
190
+ | "flash_image"
189
191
  | "floppy"
190
192
  | "gd_rom"
191
193
  | "hdd_image"
192
194
  | "laserdisc"
193
195
  | "memory_card"
196
+ | "optical_disk"
194
197
  | "tape"
195
198
  | "umd";
196
199
  /**