Skip to content

Commit

Permalink
ts-types: version bump to v0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
capt-nemo429 committed Sep 12, 2022
1 parent 68b0862 commit dd586fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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.6",
"version": "0.3.7",
"description": "A type package for ergo-graphql server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions packages/ts-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ export type MempoolAddressesArgs = {
export type MempoolBoxesArgs = {
address?: InputMaybe<Scalars['String']>;
boxId?: InputMaybe<Scalars['String']>;
ergoTree?: InputMaybe<Scalars['String']>;
ergoTreeTemplateHash?: InputMaybe<Scalars['String']>;
skip?: InputMaybe<Scalars['Int']>;
take?: InputMaybe<Scalars['Int']>;
Expand Down Expand Up @@ -317,6 +318,8 @@ export type QueryBlockHeadersArgs = {
export type QueryBlocksArgs = {
headerId?: InputMaybe<Scalars['String']>;
height?: InputMaybe<Scalars['Int']>;
maxHeight?: InputMaybe<Scalars['Int']>;
minHeight?: InputMaybe<Scalars['Int']>;
skip?: InputMaybe<Scalars['Int']>;
take?: InputMaybe<Scalars['Int']>;
};
Expand All @@ -328,6 +331,8 @@ export type QueryBoxesArgs = {
ergoTree?: InputMaybe<Scalars['String']>;
ergoTreeTemplateHash?: InputMaybe<Scalars['String']>;
headerId?: InputMaybe<Scalars['String']>;
maxHeight?: InputMaybe<Scalars['Int']>;
minHeight?: InputMaybe<Scalars['Int']>;
registers?: InputMaybe<Registers>;
skip?: InputMaybe<Scalars['Int']>;
spent?: InputMaybe<Scalars['Boolean']>;
Expand Down

0 comments on commit dd586fb

Please sign in to comment.