Skip to content

Commit

Permalink
🐛 fixed card schema type
Browse files Browse the repository at this point in the history
  • Loading branch information
Matnabru committed Aug 16, 2023
1 parent ec4de8c commit 0f1933b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/integrations/gei-stripe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gei-stripe",
"version": "0.4.3",
"version": "0.4.4",
"description": "Automatically generated by graphql-editor-cli",
"main": "lib/index.js",
"scripts": {
Expand Down
7 changes: 5 additions & 2 deletions packages/integrations/gei-stripe/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@





type Query{
products(
filter: ProductFilter
Expand Down Expand Up @@ -438,7 +441,6 @@ type Card {
fingerprint: String!
funding: String!
last4: String!
created: Timestamp!
networks: CardNetworks!
three_d_secure_usage: CardThreeDSecureUsage!
}
Expand Down Expand Up @@ -673,7 +675,8 @@ type ProductsPage{
endingBefore: ID
}


schema{
query: Query,
mutation: Mutation
query: Query
}
1 change: 0 additions & 1 deletion packages/integrations/gei-stripe/src/zeus/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ export const ReturnTypes: Record<string,any> = {
fingerprint:"String",
funding:"String",
last4:"String",
created:"Timestamp",
networks:"CardNetworks",
three_d_secure_usage:"CardThreeDSecureUsage"
},
Expand Down
4 changes: 0 additions & 4 deletions packages/integrations/gei-stripe/src/zeus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,6 @@ createPayoutForConnectedAccount?: [{ payload: ValueTypes["createPayoutForConnect
fingerprint?:boolean | `@${string}`,
funding?:boolean | `@${string}`,
last4?:boolean | `@${string}`,
created?:boolean | `@${string}`,
networks?:ValueTypes["CardNetworks"],
three_d_secure_usage?:ValueTypes["CardThreeDSecureUsage"],
__typename?: boolean | `@${string}`
Expand Down Expand Up @@ -1521,7 +1520,6 @@ createPayoutForConnectedAccount?: [{ payload: ResolverInputTypes["createPayoutFo
fingerprint?:boolean | `@${string}`,
funding?:boolean | `@${string}`,
last4?:boolean | `@${string}`,
created?:boolean | `@${string}`,
networks?:ResolverInputTypes["CardNetworks"],
three_d_secure_usage?:ResolverInputTypes["CardThreeDSecureUsage"],
__typename?: boolean | `@${string}`
Expand Down Expand Up @@ -1937,7 +1935,6 @@ export type ModelTypes = {
fingerprint: string,
funding: string,
last4: string,
created: ModelTypes["Timestamp"],
networks: ModelTypes["CardNetworks"],
three_d_secure_usage: ModelTypes["CardThreeDSecureUsage"]
};
Expand Down Expand Up @@ -2352,7 +2349,6 @@ export type GraphQLTypes = {
fingerprint: string,
funding: string,
last4: string,
created: GraphQLTypes["Timestamp"],
networks: GraphQLTypes["CardNetworks"],
three_d_secure_usage: GraphQLTypes["CardThreeDSecureUsage"]
};
Expand Down

0 comments on commit 0f1933b

Please sign in to comment.