├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── generated ├── guards.cjs.js ├── guards.esm.js ├── index.d.ts ├── index.esm.js ├── index.js ├── schema.graphql ├── schema.ts └── types.json ├── package.json ├── preview.jpg ├── seed.ts ├── src ├── client.ts ├── generated │ ├── schema.graphql │ └── types.d.ts ├── graphql │ ├── AmountInterface.ts │ ├── CurrencyInterface.ts │ ├── CurrencyScalar.ts │ ├── DateTimeScalar.ts │ ├── MetadataInterface.ts │ ├── NodeInterface.ts │ ├── PaginationInput.ts │ ├── Query.ts │ ├── balance-transactions │ │ ├── BalanceTransaction.ts │ │ └── queries │ │ │ ├── balanceTransaction.ts │ │ │ └── balanceTransactions.ts │ ├── balance │ │ ├── Balance.ts │ │ └── queries │ │ │ └── balance.ts │ ├── bank-accounts │ │ ├── BankAccount.ts │ │ └── extends │ │ │ └── CustomerBankAccounts.ts │ ├── cards │ │ ├── CARD_FUNDING_TYPE.ts │ │ ├── Card.ts │ │ └── extends │ │ │ └── CustomerCards.ts │ ├── charges │ │ ├── Charge.ts │ │ └── queries │ │ │ ├── charge.ts │ │ │ └── charges.ts │ ├── customers │ │ ├── Customer.ts │ │ └── queries │ │ │ ├── customer.ts │ │ │ └── customers.ts │ ├── plans │ │ ├── Plan.ts │ │ ├── Tier.ts │ │ ├── TransformUsage.ts │ │ ├── extends │ │ │ └── ProductPlans.ts │ │ └── queries │ │ │ ├── plan.ts │ │ │ └── plans.ts │ └── products │ │ ├── Good.ts │ │ ├── PackageDimensions.ts │ │ ├── ProductInterface.ts │ │ ├── Service.ts │ │ └── queries │ │ ├── product.ts │ │ └── products.ts ├── index.ts ├── schema.ts ├── server.ts ├── stripe.ts ├── typeDefs.ts └── utils │ └── currencies.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | STRIPE_SECRET_KEY="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/README.md -------------------------------------------------------------------------------- /generated/guards.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/guards.cjs.js -------------------------------------------------------------------------------- /generated/guards.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/guards.esm.js -------------------------------------------------------------------------------- /generated/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/index.d.ts -------------------------------------------------------------------------------- /generated/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/index.esm.js -------------------------------------------------------------------------------- /generated/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/index.js -------------------------------------------------------------------------------- /generated/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/schema.graphql -------------------------------------------------------------------------------- /generated/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/schema.ts -------------------------------------------------------------------------------- /generated/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/generated/types.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/package.json -------------------------------------------------------------------------------- /preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/preview.jpg -------------------------------------------------------------------------------- /seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/seed.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/generated/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/generated/schema.graphql -------------------------------------------------------------------------------- /src/generated/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/generated/types.d.ts -------------------------------------------------------------------------------- /src/graphql/AmountInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/AmountInterface.ts -------------------------------------------------------------------------------- /src/graphql/CurrencyInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/CurrencyInterface.ts -------------------------------------------------------------------------------- /src/graphql/CurrencyScalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/CurrencyScalar.ts -------------------------------------------------------------------------------- /src/graphql/DateTimeScalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/DateTimeScalar.ts -------------------------------------------------------------------------------- /src/graphql/MetadataInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/MetadataInterface.ts -------------------------------------------------------------------------------- /src/graphql/NodeInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/NodeInterface.ts -------------------------------------------------------------------------------- /src/graphql/PaginationInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/PaginationInput.ts -------------------------------------------------------------------------------- /src/graphql/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/Query.ts -------------------------------------------------------------------------------- /src/graphql/balance-transactions/BalanceTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/balance-transactions/BalanceTransaction.ts -------------------------------------------------------------------------------- /src/graphql/balance-transactions/queries/balanceTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/balance-transactions/queries/balanceTransaction.ts -------------------------------------------------------------------------------- /src/graphql/balance-transactions/queries/balanceTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/balance-transactions/queries/balanceTransactions.ts -------------------------------------------------------------------------------- /src/graphql/balance/Balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/balance/Balance.ts -------------------------------------------------------------------------------- /src/graphql/balance/queries/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/balance/queries/balance.ts -------------------------------------------------------------------------------- /src/graphql/bank-accounts/BankAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/bank-accounts/BankAccount.ts -------------------------------------------------------------------------------- /src/graphql/bank-accounts/extends/CustomerBankAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/bank-accounts/extends/CustomerBankAccounts.ts -------------------------------------------------------------------------------- /src/graphql/cards/CARD_FUNDING_TYPE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/cards/CARD_FUNDING_TYPE.ts -------------------------------------------------------------------------------- /src/graphql/cards/Card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/cards/Card.ts -------------------------------------------------------------------------------- /src/graphql/cards/extends/CustomerCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/cards/extends/CustomerCards.ts -------------------------------------------------------------------------------- /src/graphql/charges/Charge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/charges/Charge.ts -------------------------------------------------------------------------------- /src/graphql/charges/queries/charge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/charges/queries/charge.ts -------------------------------------------------------------------------------- /src/graphql/charges/queries/charges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/charges/queries/charges.ts -------------------------------------------------------------------------------- /src/graphql/customers/Customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/customers/Customer.ts -------------------------------------------------------------------------------- /src/graphql/customers/queries/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/customers/queries/customer.ts -------------------------------------------------------------------------------- /src/graphql/customers/queries/customers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/customers/queries/customers.ts -------------------------------------------------------------------------------- /src/graphql/plans/Plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/Plan.ts -------------------------------------------------------------------------------- /src/graphql/plans/Tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/Tier.ts -------------------------------------------------------------------------------- /src/graphql/plans/TransformUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/TransformUsage.ts -------------------------------------------------------------------------------- /src/graphql/plans/extends/ProductPlans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/extends/ProductPlans.ts -------------------------------------------------------------------------------- /src/graphql/plans/queries/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/queries/plan.ts -------------------------------------------------------------------------------- /src/graphql/plans/queries/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/plans/queries/plans.ts -------------------------------------------------------------------------------- /src/graphql/products/Good.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/Good.ts -------------------------------------------------------------------------------- /src/graphql/products/PackageDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/PackageDimensions.ts -------------------------------------------------------------------------------- /src/graphql/products/ProductInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/ProductInterface.ts -------------------------------------------------------------------------------- /src/graphql/products/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/Service.ts -------------------------------------------------------------------------------- /src/graphql/products/queries/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/queries/product.ts -------------------------------------------------------------------------------- /src/graphql/products/queries/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/graphql/products/queries/products.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/schema.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/stripe.ts -------------------------------------------------------------------------------- /src/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/typeDefs.ts -------------------------------------------------------------------------------- /src/utils/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/src/utils/currencies.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/stripe-graphql/HEAD/yarn.lock --------------------------------------------------------------------------------