We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bce94e commit a4c1672Copy full SHA for a4c1672
src/m365/entra/commands/app/app-add.ts
@@ -39,7 +39,7 @@ const options = globalOptionsZod
39
grantAdminConsent: z.boolean().optional(),
40
allowPublicClientFlows: z.boolean().optional()
41
})
42
- .and(z.unknown());
+ .passthrough();
43
44
declare type Options = z.infer<typeof options> & AppCreationOptions;
45
src/m365/entra/commands/app/app-set.ts
@@ -28,7 +28,7 @@ const options = globalOptionsZod
28
certificateDisplayName: z.string().optional(),
29
30
31
32
33
declare type Options = z.infer<typeof options>;
34
0 commit comments