From 04238ae4bb93d0fff1a5bb06deb173202c50cc1c Mon Sep 17 00:00:00 2001 From: capt-nemo429 Date: Fri, 7 Oct 2022 13:03:51 -0300 Subject: [PATCH] ts-types: version bump to v0.4.0 --- packages/ts-types/package-lock.json | 4 ++-- packages/ts-types/package.json | 2 +- packages/ts-types/src/index.ts | 9 ++++++++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/packages/ts-types/package-lock.json b/packages/ts-types/package-lock.json index fcb9111..efa0768 100644 --- a/packages/ts-types/package-lock.json +++ b/packages/ts-types/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ergo-graphql/types", - "version": "0.3.7", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ergo-graphql/types", - "version": "0.3.7", + "version": "0.4.0", "license": "MIT", "devDependencies": { "@graphql-codegen/cli": "^2.11.3", diff --git a/packages/ts-types/package.json b/packages/ts-types/package.json index 06216d1..8a1b858 100644 --- a/packages/ts-types/package.json +++ b/packages/ts-types/package.json @@ -1,6 +1,6 @@ { "name": "@ergo-graphql/types", - "version": "0.3.7", + "version": "0.4.0", "description": "A type package for ergo-graphql server", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/packages/ts-types/src/index.ts b/packages/ts-types/src/index.ts index 1f03e49..2d36bea 100644 --- a/packages/ts-types/src/index.ts +++ b/packages/ts-types/src/index.ts @@ -263,9 +263,11 @@ export type MempoolInputsArgs = { export type MempoolTransactionsArgs = { address?: InputMaybe; + addresses?: InputMaybe>; skip?: InputMaybe; take?: InputMaybe; transactionId?: InputMaybe; + transactionIds?: InputMaybe>; }; export type Mutation = { @@ -302,7 +304,6 @@ export type Query = { export type QueryAddressesArgs = { addresses: Array; - atHeight?: InputMaybe; }; @@ -327,9 +328,12 @@ export type QueryBlocksArgs = { export type QueryBoxesArgs = { address?: InputMaybe; + addresses?: InputMaybe>; boxId?: InputMaybe; + boxIds?: InputMaybe>; ergoTree?: InputMaybe; ergoTreeTemplateHash?: InputMaybe; + ergoTrees?: InputMaybe>; headerId?: InputMaybe; maxHeight?: InputMaybe; minHeight?: InputMaybe; @@ -366,11 +370,13 @@ export type QueryTokensArgs = { skip?: InputMaybe; take?: InputMaybe; tokenId?: InputMaybe; + tokenIds?: InputMaybe>; }; export type QueryTransactionsArgs = { address?: InputMaybe; + addresses?: InputMaybe>; headerId?: InputMaybe; inclusionHeight?: InputMaybe; maxHeight?: InputMaybe; @@ -378,6 +384,7 @@ export type QueryTransactionsArgs = { skip?: InputMaybe; take?: InputMaybe; transactionId?: InputMaybe; + transactionIds?: InputMaybe>; }; export type Registers = {