@netlify/build 18.17.4 → 18.17.5

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": "@netlify/build",
3
- "version": "18.17.4",
3
+ "version": "18.17.5",
4
4
  "description": "Netlify build module",
5
5
  "main": "src/core/main.js",
6
6
  "types": "types/index.d.ts",
@@ -7,13 +7,13 @@ type HttpStatusCode = number
7
7
 
8
8
  interface Redirect {
9
9
  from: string
10
- to: string
10
+ to?: string
11
11
  status?: HttpStatusCode
12
- force: boolean
12
+ force?: boolean
13
13
  signed?: string
14
- query: Partial<Record<string, string>>
15
- headers: Partial<Record<string, string>>
16
- conditions: Record<'language' | 'role' | 'country', readonly string[]>
14
+ query?: Partial<Record<string, string>>
15
+ headers?: Partial<Record<string, string>>
16
+ conditions?: Record<'language' | 'role' | 'country', readonly string[]>
17
17
  }
18
18
 
19
19
  interface Header {