@shipstatic/types 0.3.0 → 0.3.2

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.ts CHANGED
@@ -256,6 +256,8 @@ export interface ConfigResponse {
256
256
  maxFilesCount: number;
257
257
  /** Maximum total deployment size in bytes */
258
258
  maxTotalSize: number;
259
+ /** Allowed MIME type categories for file validation */
260
+ allowedMimeTypes: string[];
259
261
  }
260
262
  /**
261
263
  * Generic success response wrapper
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -407,6 +407,8 @@ export interface ConfigResponse {
407
407
  maxFilesCount: number;
408
408
  /** Maximum total deployment size in bytes */
409
409
  maxTotalSize: number;
410
+ /** Allowed MIME type categories for file validation */
411
+ allowedMimeTypes: string[];
410
412
  }
411
413
 
412
414
  // =============================================================================