Skip to content

Commit

Permalink
ts-types: version bump to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
capt-nemo429 committed Oct 7, 2022
1 parent b332617 commit 04238ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/ts-types/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/ts-types/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
9 changes: 8 additions & 1 deletion packages/ts-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,11 @@ export type MempoolInputsArgs = {

export type MempoolTransactionsArgs = {
address?: InputMaybe<Scalars['String']>;
addresses?: InputMaybe<Array<Scalars['String']>>;
skip?: InputMaybe<Scalars['Int']>;
take?: InputMaybe<Scalars['Int']>;
transactionId?: InputMaybe<Scalars['String']>;
transactionIds?: InputMaybe<Array<Scalars['String']>>;
};

export type Mutation = {
Expand Down Expand Up @@ -302,7 +304,6 @@ export type Query = {

export type QueryAddressesArgs = {
addresses: Array<Scalars['String']>;
atHeight?: InputMaybe<Scalars['Int']>;
};


Expand All @@ -327,9 +328,12 @@ export type QueryBlocksArgs = {

export type QueryBoxesArgs = {
address?: InputMaybe<Scalars['String']>;
addresses?: InputMaybe<Array<Scalars['String']>>;
boxId?: InputMaybe<Scalars['String']>;
boxIds?: InputMaybe<Array<Scalars['String']>>;
ergoTree?: InputMaybe<Scalars['String']>;
ergoTreeTemplateHash?: InputMaybe<Scalars['String']>;
ergoTrees?: InputMaybe<Array<Scalars['String']>>;
headerId?: InputMaybe<Scalars['String']>;
maxHeight?: InputMaybe<Scalars['Int']>;
minHeight?: InputMaybe<Scalars['Int']>;
Expand Down Expand Up @@ -366,18 +370,21 @@ export type QueryTokensArgs = {
skip?: InputMaybe<Scalars['Int']>;
take?: InputMaybe<Scalars['Int']>;
tokenId?: InputMaybe<Scalars['String']>;
tokenIds?: InputMaybe<Array<Scalars['String']>>;
};


export type QueryTransactionsArgs = {
address?: InputMaybe<Scalars['String']>;
addresses?: InputMaybe<Array<Scalars['String']>>;
headerId?: InputMaybe<Scalars['String']>;
inclusionHeight?: InputMaybe<Scalars['Int']>;
maxHeight?: InputMaybe<Scalars['Int']>;
minHeight?: InputMaybe<Scalars['Int']>;
skip?: InputMaybe<Scalars['Int']>;
take?: InputMaybe<Scalars['Int']>;
transactionId?: InputMaybe<Scalars['String']>;
transactionIds?: InputMaybe<Array<Scalars['String']>>;
};

export type Registers = {
Expand Down

0 comments on commit 04238ae

Please sign in to comment.