We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34a0337 commit 8fa9750Copy full SHA for 8fa9750
lib/plugin/src/root-schema.ts
@@ -1,6 +1,11 @@
1
import * as z from 'zod'
2
3
export const RootSchema = z.object({
4
- allowNativeFetch: z.boolean().default(false)
+ allowNativeFetch: z.boolean().default(false),
5
+ // TODO:IM:20251112 require this option in a future major version
6
+ systemCode: z
7
+ .string()
8
+ .optional()
9
+ .describe('Biz Ops system code or the package name prefixed with "npm:" otherwise')
10
})
11
export type RootOptions = z.infer<typeof RootSchema>
0 commit comments