File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ import { ZBaseOutputFilters } from "./shared";
44export const ZAndroidOutput = z . strictObject (
55 ZBaseOutputFilters . extend ( {
66 format : z . literal ( "android" ) ,
7- framework : z . undefined ( ) . optional ( ) ,
87 } ) . shape
98) ;
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ import { ZBaseOutputFilters } from "./shared";
44export const ZIOSStringsOutput = z . strictObject (
55 ZBaseOutputFilters . extend ( {
66 format : z . literal ( "ios-strings" ) ,
7- framework : z . undefined ( ) . optional ( ) ,
87 } ) . shape
98) ;
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ import { ZBaseOutputFilters } from "./shared";
44export const ZIOSStringsDictOutput = z . strictObject (
55 ZBaseOutputFilters . extend ( {
66 format : z . literal ( "ios-stringsdict" ) ,
7- framework : z . undefined ( ) . optional ( ) ,
87 } ) . shape
98) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { ZBaseOutputFilters } from "./shared";
44const ZBaseJSONOutput = z . strictObject (
55 ZBaseOutputFilters . extend ( {
66 format : z . literal ( "json" ) ,
7- framework : z . undefined ( ) . optional ( ) ,
87 } ) . shape
98) ;
109
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ import { ZBaseOutputFilters } from "./shared";
44export const ZJSONICUOutput = z . strictObject (
55 ZBaseOutputFilters . extend ( {
66 format : z . literal ( "json_icu" ) ,
7- framework : z . undefined ( ) . optional ( ) ,
87 } ) . shape
98) ;
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { ZTextStatus } from "../http/types";
66 * They are all optional by default unless otherwise specified in the output config.
77 */
88export const ZBaseOutputFilters = z . object ( {
9+ framework : z . undefined ( ) . optional ( ) ,
910 projects : z . array ( z . object ( { id : z . string ( ) } ) ) . optional ( ) ,
1011 components : z
1112 . object ( {
You can’t perform that action at this time.
0 commit comments