Now enforcing curly brackets on all if statements. Includes auto-fixer. ```ts // ❌ Bad if (foo) foo++; // ✅ Good if (foo) { foo++; } ``` Note: this did not lint the `drizzle` package or any `db-*` packages. This will be done in the future.
Fixes https://github.com/payloadcms/payload/issues/7698 Now exporting `FetchAPIFileUploadOptions` from payload, as that type is now used in `config.upload`.