fix: ๐Ÿ› max int error

This commit is contained in:
apotdevin 2021-01-19 22:38:45 +01:00
parent 83dc6a1102
commit d10b2120b5
No known key found for this signature in database
GPG key ID: 4403F1DFBE779457
3 changed files with 5 additions and 5 deletions

View file

@ -39,7 +39,7 @@ export const transactionTypes = gql`
safe_fee: Int!
safe_tokens: Int
secret: String!
tokens: Int!
tokens: String!
type: String!
date: String!
}
@ -61,7 +61,7 @@ export const transactionTypes = gql`
received_mtokens: String!
request: String
secret: String!
tokens: Int!
tokens: String!
type: String!
date: String!
}

View file

@ -953,7 +953,7 @@ Object {
"received_mtokens": "string",
"request": "string",
"secret": "string",
"tokens": 1000,
"tokens": "1000",
"type": "invoice",
},
],

View file

@ -862,7 +862,7 @@ export type PaymentType = {
safe_fee: Scalars['Int'];
safe_tokens?: Maybe<Scalars['Int']>;
secret: Scalars['String'];
tokens: Scalars['Int'];
tokens: Scalars['String'];
type: Scalars['String'];
date: Scalars['String'];
};
@ -885,7 +885,7 @@ export type InvoiceType = {
received_mtokens: Scalars['String'];
request?: Maybe<Scalars['String']>;
secret: Scalars['String'];
tokens: Scalars['Int'];
tokens: Scalars['String'];
type: Scalars['String'];
date: Scalars['String'];
};