chore: dont use env var for type generation, regen types

This commit is contained in:
Matthew Russell 2022-08-23 15:45:27 -07:00
parent d29e815337
commit 08aa87f3dd
No known key found for this signature in database
GPG Key ID: EF695622F2C5E3D8
5 changed files with 5 additions and 6 deletions

View File

@ -94,7 +94,7 @@ export interface AssetsQuery_assetsConnection {
export interface AssetsQuery { export interface AssetsQuery {
/** /**
* The list of all assets in use in the vega network or the specified asset if id is provided * The list of all assets in use in the Vega network or the specified asset if ID is provided
*/ */
assetsConnection: AssetsQuery_assetsConnection; assetsConnection: AssetsQuery_assetsConnection;
} }

View File

@ -197,7 +197,7 @@ export interface WithdrawPage {
*/ */
party: WithdrawPage_party | null; party: WithdrawPage_party | null;
/** /**
* The list of all assets in use in the vega network or the specified asset if id is provided * The list of all assets in use in the Vega network or the specified asset if ID is provided
*/ */
assetsConnection: WithdrawPage_assetsConnection; assetsConnection: WithdrawPage_assetsConnection;
} }

View File

@ -60,7 +60,7 @@ export interface DepositPage_assetsConnection {
export interface DepositPage { export interface DepositPage {
/** /**
* The list of all assets in use in the vega network or the specified asset if id is provided * The list of all assets in use in the Vega network or the specified asset if ID is provided
*/ */
assetsConnection: DepositPage_assetsConnection; assetsConnection: DepositPage_assetsConnection;
} }

View File

@ -122,7 +122,7 @@ export interface WithdrawPageQuery {
*/ */
party: WithdrawPageQuery_party | null; party: WithdrawPageQuery_party | null;
/** /**
* The list of all assets in use in the vega network or the specified asset if id is provided * The list of all assets in use in the Vega network or the specified asset if ID is provided
*/ */
assetsConnection: WithdrawPageQuery_assetsConnection; assetsConnection: WithdrawPageQuery_assetsConnection;
} }

View File

@ -2,8 +2,7 @@ module.exports = {
client: { client: {
service: { service: {
name: 'vega', name: 'vega',
url: url: 'https://api.n09.testnet.vega.xyz/graphql',
process.env.NX_VEGA_URL || 'https://api.n11.testnet.vega.xyz/graphql',
}, },
includes: ['../../{apps,libs}/**/*.{ts,tsx,js,jsx,graphql}'], includes: ['../../{apps,libs}/**/*.{ts,tsx,js,jsx,graphql}'],
excludes: ['**/generic-data-provider.ts'], excludes: ['**/generic-data-provider.ts'],