@@ -837,7 +837,7 @@ type ZEUS_UNIONS = never
837837export type ValueTypes = {
838838 [ "Query" ] : AliasType < {
839839products ?: [ { filter ?: ValueTypes [ "ProductFilter" ] | undefined | null | Variable < any , string > } , ValueTypes [ "ProductsPage" ] ] ,
840- subscriptions ?: [ { filter : ValueTypes [ "SubscriptionFilter" ] | Variable < any , string > } , ValueTypes [ "Subscription" ] ] ,
840+ subscriptions ?: [ { filter ? : ValueTypes [ "SubscriptionFilter" ] | undefined | null | Variable < any , string > } , ValueTypes [ "Subscription" ] ] ,
841841paymentIntents ?: [ { filter : ValueTypes [ "PaymentIntentFilter" ] | Variable < any , string > } , ValueTypes [ "PaymentIntent" ] ] ,
842842invoices ?: [ { filter : ValueTypes [ "InvoiceFilter" ] | Variable < any , string > } , ValueTypes [ "Invoice" ] ] ,
843843customer ?: [ { customerId : string | Variable < any , string > } , ValueTypes [ "Customer" ] ] ,
@@ -980,7 +980,15 @@ createPayoutForConnectedAccount?: [{ payload: ValueTypes["createPayoutForConnect
980980} ;
981981 [ "BankAccountHolderType" ] :BankAccountHolderType ;
982982 [ "SubscriptionFilter" ] : {
983- customerId : string | Variable < any , string >
983+ id ?: string | undefined | null | Variable < any , string > ,
984+ cancel_at_period_end ?: boolean | undefined | null | Variable < any , string > ,
985+ current_period_end ?: ValueTypes [ "TimestampFilter" ] | undefined | null | Variable < any , string > ,
986+ current_period_start ?: ValueTypes [ "TimestampFilter" ] | undefined | null | Variable < any , string > ,
987+ customer ?: string | undefined | null | Variable < any , string > ,
988+ description ?: string | undefined | null | Variable < any , string > ,
989+ items ?: Array < string > | undefined | null | Variable < any , string > ,
990+ quantity ?: number | undefined | null | Variable < any , string > ,
991+ status ?: ValueTypes [ "SubStatus" ] | undefined | null | Variable < any , string >
984992} ;
985993 [ "Subscription" ] : AliasType < {
986994 id ?:boolean | `@${string } `,
@@ -1257,7 +1265,7 @@ createPayoutForConnectedAccount?: [{ payload: ValueTypes["createPayoutForConnect
12571265export type ResolverInputTypes = {
12581266 [ "Query" ] : AliasType < {
12591267products ?: [ { filter ?: ResolverInputTypes [ "ProductFilter" ] | undefined | null } , ResolverInputTypes [ "ProductsPage" ] ] ,
1260- subscriptions ?: [ { filter : ResolverInputTypes [ "SubscriptionFilter" ] } , ResolverInputTypes [ "Subscription" ] ] ,
1268+ subscriptions ?: [ { filter ? : ResolverInputTypes [ "SubscriptionFilter" ] | undefined | null } , ResolverInputTypes [ "Subscription" ] ] ,
12611269paymentIntents ?: [ { filter : ResolverInputTypes [ "PaymentIntentFilter" ] } , ResolverInputTypes [ "PaymentIntent" ] ] ,
12621270invoices ?: [ { filter : ResolverInputTypes [ "InvoiceFilter" ] } , ResolverInputTypes [ "Invoice" ] ] ,
12631271customer ?: [ { customerId : string } , ResolverInputTypes [ "Customer" ] ] ,
@@ -1400,7 +1408,15 @@ createPayoutForConnectedAccount?: [{ payload: ResolverInputTypes["createPayoutFo
14001408} ;
14011409 [ "BankAccountHolderType" ] :BankAccountHolderType ;
14021410 [ "SubscriptionFilter" ] : {
1403- customerId : string
1411+ id ?: string | undefined | null ,
1412+ cancel_at_period_end ?: boolean | undefined | null ,
1413+ current_period_end ?: ResolverInputTypes [ "TimestampFilter" ] | undefined | null ,
1414+ current_period_start ?: ResolverInputTypes [ "TimestampFilter" ] | undefined | null ,
1415+ customer ?: string | undefined | null ,
1416+ description ?: string | undefined | null ,
1417+ items ?: Array < string > | undefined | null ,
1418+ quantity ?: number | undefined | null ,
1419+ status ?: ResolverInputTypes [ "SubStatus" ] | undefined | null
14041420} ;
14051421 [ "Subscription" ] : AliasType < {
14061422 id ?:boolean | `@${string } `,
@@ -1821,7 +1837,15 @@ export type ModelTypes = {
18211837} ;
18221838 [ "BankAccountHolderType" ] :BankAccountHolderType ;
18231839 [ "SubscriptionFilter" ] : {
1824- customerId : string
1840+ id ?: string | undefined ,
1841+ cancel_at_period_end ?: boolean | undefined ,
1842+ current_period_end ?: ModelTypes [ "TimestampFilter" ] | undefined ,
1843+ current_period_start ?: ModelTypes [ "TimestampFilter" ] | undefined ,
1844+ customer ?: string | undefined ,
1845+ description ?: string | undefined ,
1846+ items ?: Array < string > | undefined ,
1847+ quantity ?: number | undefined ,
1848+ status ?: ModelTypes [ "SubStatus" ] | undefined
18251849} ;
18261850 [ "Subscription" ] : {
18271851 id : string ,
@@ -2228,7 +2252,15 @@ export type GraphQLTypes = {
22282252} ;
22292253 [ "BankAccountHolderType" ] : BankAccountHolderType ;
22302254 [ "SubscriptionFilter" ] : {
2231- customerId : string
2255+ id ?: string | undefined ,
2256+ cancel_at_period_end ?: boolean | undefined ,
2257+ current_period_end ?: GraphQLTypes [ "TimestampFilter" ] | undefined ,
2258+ current_period_start ?: GraphQLTypes [ "TimestampFilter" ] | undefined ,
2259+ customer ?: string | undefined ,
2260+ description ?: string | undefined ,
2261+ items ?: Array < string > | undefined ,
2262+ quantity ?: number | undefined ,
2263+ status ?: GraphQLTypes [ "SubStatus" ] | undefined
22322264} ;
22332265 [ "Subscription" ] : {
22342266 __typename : "Subscription" ,
0 commit comments