From cae2d1560dca5498747672e794dc67bd875e4107 Mon Sep 17 00:00:00 2001 From: Cameron Gilbert Date: Mon, 18 Mar 2024 16:01:49 -0400 Subject: [PATCH 1/2] chore: develop -> main (#341) * refactor: adding contract type to user * fix: tests * test: fix * feat: trigger latest build (#340) --------- Co-authored-by: elshenak Co-authored-by: Calico Nino <54007257+CalicoNino@users.noreply.github.com> --- scripts/build.sh | 6 +++++- src/gql/query/index.ts | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 2e5eff49..014725d5 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -7,11 +7,15 @@ if [ -d "./nibiru/" ]; then cd nibiru git checkout main cd .. -else +elif [ -d "../nibiru/" ]; then cd ../nibiru git checkout main git pull cd ../ts-sdk +else + cd .. + git clone git@github.com:NibiruChain/nibiru.git + cd ts-sdk fi yarn gql-generate & yarn proto-gen diff --git a/src/gql/query/index.ts b/src/gql/query/index.ts index fd5d833e..c1fe4cb9 100644 --- a/src/gql/query/index.ts +++ b/src/gql/query/index.ts @@ -9,8 +9,8 @@ export * from "./featureFlags" export * from "./governance" export * from "./ibc" export * from "./inflation" -export * from "./markPriceCandles" export * from "./marketing" +export * from "./markPriceCandles" export * from "./oracle" export * from "./perp" export * from "./redelegations" @@ -18,8 +18,8 @@ export * from "./spotLpPositions" export * from "./spotPoolCreated" export * from "./spotPoolExited" export * from "./spotPoolJoined" -export * from "./spotPoolSwap" export * from "./spotPools" +export * from "./spotPoolSwap" export * from "./stats" export * from "./unbondings" export * from "./users" From 4f7096e95ec0cc7afa8528b50f71da204b310a86 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 18 Mar 2024 20:03:59 +0000 Subject: [PATCH 2/2] chore(release): 3.3.4 ### [3.3.4](https://github.com/NibiruChain/ts-sdk/compare/v3.3.3...v3.3.4) (2024-03-18) ### Miscellaneous Chores * develop -> main ([#341](https://github.com/NibiruChain/ts-sdk/issues/341)) ([cae2d15](https://github.com/NibiruChain/ts-sdk/commit/cae2d1560dca5498747672e794dc67bd875e4107)), closes [#340](https://github.com/NibiruChain/ts-sdk/issues/340) [skip ci] --- CHANGELOG.md | 6 ++++++ package.json | 2 +- src/gql/query/index.ts | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5099cf6..d712ac11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### [3.3.4](https://github.com/NibiruChain/ts-sdk/compare/v3.3.3...v3.3.4) (2024-03-18) + +### Miscellaneous Chores + +- develop -> main ([#341](https://github.com/NibiruChain/ts-sdk/issues/341)) ([cae2d15](https://github.com/NibiruChain/ts-sdk/commit/cae2d1560dca5498747672e794dc67bd875e4107)), closes [#340](https://github.com/NibiruChain/ts-sdk/issues/340) + ### [3.3.3](https://github.com/NibiruChain/ts-sdk/compare/v3.3.2...v3.3.3) (2024-03-12) ### Miscellaneous Chores diff --git a/package.json b/package.json index 2517489b..fb019433 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nibiruchain/nibijs", "description": "The TypeScript SDK for the Nibiru blockchain.", - "version": "3.3.3", + "version": "3.3.4", "license": "MIT", "repository": { "type": "git", diff --git a/src/gql/query/index.ts b/src/gql/query/index.ts index c1fe4cb9..fd5d833e 100644 --- a/src/gql/query/index.ts +++ b/src/gql/query/index.ts @@ -9,8 +9,8 @@ export * from "./featureFlags" export * from "./governance" export * from "./ibc" export * from "./inflation" -export * from "./marketing" export * from "./markPriceCandles" +export * from "./marketing" export * from "./oracle" export * from "./perp" export * from "./redelegations" @@ -18,8 +18,8 @@ export * from "./spotLpPositions" export * from "./spotPoolCreated" export * from "./spotPoolExited" export * from "./spotPoolJoined" -export * from "./spotPools" export * from "./spotPoolSwap" +export * from "./spotPools" export * from "./stats" export * from "./unbondings" export * from "./users"