@aave/graphql 1.0.0-next.28 → 1.0.0-next.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -470,7 +470,7 @@ type introspection_types = {
470
470
  'SwapWithTransactionInput': { kind: 'INPUT_OBJECT'; name: 'SwapWithTransactionInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'isSenderSmartContractWallet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
471
471
  'SwappableTokenInput': { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; defaultValue: null }]; };
472
472
  'SwappableTokensRequest': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; ofType: null; }; defaultValue: null }]; };
473
- 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
473
+ 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
474
474
  'TimeWindow': { name: 'TimeWindow'; enumValues: 'LAST_DAY' | 'LAST_WEEK' | 'LAST_MONTH' | 'LAST_SIX_MONTHS' | 'LAST_YEAR' | 'ALL'; };
475
475
  'Token': { kind: 'UNION'; name: 'Token'; fields: {}; possibleTypes: 'Erc20Token' | 'NativeToken'; };
476
476
  'TokenAmount': { kind: 'UNION'; name: 'TokenAmount'; fields: {}; possibleTypes: 'Erc20Amount' | 'NativeAmount'; };
@@ -87365,6 +87365,11 @@ declare const SwappableTokensQuery: gql_tada.TadaDocumentNode<{
87365
87365
  }, {
87366
87366
  request: {
87367
87367
  query?: {
87368
+ tokens: {
87369
+ chainId: _aave_types.ChainId;
87370
+ address: _aave_types.EvmAddress;
87371
+ }[];
87372
+ } | {
87368
87373
  chainIds: _aave_types.ChainId[];
87369
87374
  } | {
87370
87375
  from: {
@@ -166451,6 +166456,11 @@ declare const UserBalancesQuery: gql_tada.TadaDocumentNode<{
166451
166456
  };
166452
166457
  } | {
166453
166458
  swappable: {
166459
+ tokens: {
166460
+ chainId: _aave_types.ChainId;
166461
+ address: _aave_types.EvmAddress;
166462
+ }[];
166463
+ } | {
166454
166464
  chainIds: _aave_types.ChainId[];
166455
166465
  } | {
166456
166466
  from: {
package/dist/index.d.ts CHANGED
@@ -470,7 +470,7 @@ type introspection_types = {
470
470
  'SwapWithTransactionInput': { kind: 'INPUT_OBJECT'; name: 'SwapWithTransactionInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'isSenderSmartContractWallet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
471
471
  'SwappableTokenInput': { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; defaultValue: null }]; };
472
472
  'SwappableTokensRequest': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; ofType: null; }; defaultValue: null }]; };
473
- 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
473
+ 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
474
474
  'TimeWindow': { name: 'TimeWindow'; enumValues: 'LAST_DAY' | 'LAST_WEEK' | 'LAST_MONTH' | 'LAST_SIX_MONTHS' | 'LAST_YEAR' | 'ALL'; };
475
475
  'Token': { kind: 'UNION'; name: 'Token'; fields: {}; possibleTypes: 'Erc20Token' | 'NativeToken'; };
476
476
  'TokenAmount': { kind: 'UNION'; name: 'TokenAmount'; fields: {}; possibleTypes: 'Erc20Amount' | 'NativeAmount'; };
@@ -87365,6 +87365,11 @@ declare const SwappableTokensQuery: gql_tada.TadaDocumentNode<{
87365
87365
  }, {
87366
87366
  request: {
87367
87367
  query?: {
87368
+ tokens: {
87369
+ chainId: _aave_types.ChainId;
87370
+ address: _aave_types.EvmAddress;
87371
+ }[];
87372
+ } | {
87368
87373
  chainIds: _aave_types.ChainId[];
87369
87374
  } | {
87370
87375
  from: {
@@ -166451,6 +166456,11 @@ declare const UserBalancesQuery: gql_tada.TadaDocumentNode<{
166451
166456
  };
166452
166457
  } | {
166453
166458
  swappable: {
166459
+ tokens: {
166460
+ chainId: _aave_types.ChainId;
166461
+ address: _aave_types.EvmAddress;
166462
+ }[];
166463
+ } | {
166454
166464
  chainIds: _aave_types.ChainId[];
166455
166465
  } | {
166456
166466
  from: {
package/dist/testing.d.ts CHANGED
@@ -387,7 +387,7 @@ type introspection_types = {
387
387
  'SwapWithTransactionInput': { kind: 'INPUT_OBJECT'; name: 'SwapWithTransactionInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'isSenderSmartContractWallet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
388
388
  'SwappableTokenInput': { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; defaultValue: null }]; };
389
389
  'SwappableTokensRequest': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; ofType: null; }; defaultValue: null }]; };
390
- 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
390
+ 'SwappableTokensRequestQuery': { kind: 'INPUT_OBJECT'; name: 'SwappableTokensRequestQuery'; isOneOf: true; inputFields: [{ name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'INPUT_OBJECT'; name: 'SwappableTokenInput'; ofType: null; }; defaultValue: null }]; };
391
391
  'TimeWindow': { name: 'TimeWindow'; enumValues: 'LAST_DAY' | 'LAST_WEEK' | 'LAST_MONTH' | 'LAST_SIX_MONTHS' | 'LAST_YEAR' | 'ALL'; };
392
392
  'Token': { kind: 'UNION'; name: 'Token'; fields: {}; possibleTypes: 'Erc20Token' | 'NativeToken'; };
393
393
  'TokenAmount': { kind: 'UNION'; name: 'TokenAmount'; fields: {}; possibleTypes: 'Erc20Amount' | 'NativeAmount'; };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aave/graphql",
3
- "version": "1.0.0-next.28",
3
+ "version": "1.0.0-next.29",
4
4
  "description": "GraphQL bindings for the Aave API",
5
5
  "repository": {
6
6
  "directory": "packages/graphql",