@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 +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
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
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
|
// =============================================================================
|