Skip to content

Commit

Permalink
Merge pull request #405 from kontist/recurly-invoices-resolver
Browse files Browse the repository at this point in the history
generate the model interface
  • Loading branch information
EslaM-M authored Aug 18, 2023
2 parents 2b0504a + 0066943 commit 2e8c8d4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/graphql/schema.flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2917,6 +2917,13 @@ export type RecurlyAccount = {|
recurlyAccountId: $ElementType<Scalars, 'String'>,
|};

export type RecurlyInvoice = {|
__typename?: 'RecurlyInvoice',
id: $ElementType<Scalars, 'ID'>,
recurlyCreatedAt?: ?$ElementType<Scalars, 'DateTime'>,
url: $ElementType<Scalars, 'String'>,
|};

export type ReferralDetails = {|
__typename?: 'ReferralDetails',
/** Amount in euros granted to user and their referee */
Expand Down Expand Up @@ -3948,6 +3955,7 @@ export type User = {|
receiptMatchingIntroDismissedAt?: ?$ElementType<Scalars, 'DateTime'>,
/** The user's associated Recurly Account */
recurlyAccount?: ?RecurlyAccount,
recurlyInvoices: Array<RecurlyInvoice>,
/** Referral details for user */
referral: ReferralDetails,
/** The user's referral code to use for promotional purposes */
Expand Down
8 changes: 8 additions & 0 deletions lib/graphql/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2773,6 +2773,13 @@ export type RecurlyAccount = {
recurlyAccountId: Scalars['String'];
};

export type RecurlyInvoice = {
__typename?: 'RecurlyInvoice';
id: Scalars['ID'];
recurlyCreatedAt?: Maybe<Scalars['DateTime']>;
url: Scalars['String'];
};

export type ReferralDetails = {
__typename?: 'ReferralDetails';
/** Amount in euros granted to user and their referee */
Expand Down Expand Up @@ -3731,6 +3738,7 @@ export type User = {
receiptMatchingIntroDismissedAt?: Maybe<Scalars['DateTime']>;
/** The user's associated Recurly Account */
recurlyAccount?: Maybe<RecurlyAccount>;
recurlyInvoices: Array<RecurlyInvoice>;
/** Referral details for user */
referral: ReferralDetails;
/**
Expand Down

0 comments on commit 2e8c8d4

Please sign in to comment.