From 04f66cf478d23dca3f8a07f54b1453ec0f2f841e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 6 Mar 2024 16:21:13 +0000 Subject: [PATCH] chore(release): 3.3.0 ## [3.3.0](https://github.com/NibiruChain/ts-sdk/compare/v3.2.0...v3.3.0) (2024-03-06) ### Features * deepPartial ([#329](https://github.com/NibiruChain/ts-sdk/issues/329)) ([89f2504](https://github.com/NibiruChain/ts-sdk/commit/89f2504c089ca8ed48dbc2c88bfddba91a3702c2)) * marketing mutation + query ([#331](https://github.com/NibiruChain/ts-sdk/issues/331)) ([61c7fe8](https://github.com/NibiruChain/ts-sdk/commit/61c7fe898b2c23f87b4191cd57e87de16229d02a)) ### Bug Fixes * fix barrel ([599041f](https://github.com/NibiruChain/ts-sdk/commit/599041f2b319405feb9a4f4a6e9683b2f8634557)) * merge ([4e1144d](https://github.com/NibiruChain/ts-sdk/commit/4e1144daac0a609f9332732450eb91ae40e9253d)) ### Documentation * **gql:** add JSDoc comment for DeepPartial ([26176e3](https://github.com/NibiruChain/ts-sdk/commit/26176e383ffb2a34192802bc846dfa68f9d78656)) [skip ci] --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/gql/query/index.ts | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c79dc3..589c1e14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [3.3.0](https://github.com/NibiruChain/ts-sdk/compare/v3.2.0...v3.3.0) (2024-03-06) + +### Features + +- deepPartial ([#329](https://github.com/NibiruChain/ts-sdk/issues/329)) ([89f2504](https://github.com/NibiruChain/ts-sdk/commit/89f2504c089ca8ed48dbc2c88bfddba91a3702c2)) +- marketing mutation + query ([#331](https://github.com/NibiruChain/ts-sdk/issues/331)) ([61c7fe8](https://github.com/NibiruChain/ts-sdk/commit/61c7fe898b2c23f87b4191cd57e87de16229d02a)) + +### Bug Fixes + +- fix barrel ([599041f](https://github.com/NibiruChain/ts-sdk/commit/599041f2b319405feb9a4f4a6e9683b2f8634557)) +- merge ([4e1144d](https://github.com/NibiruChain/ts-sdk/commit/4e1144daac0a609f9332732450eb91ae40e9253d)) + +### Documentation + +- **gql:** add JSDoc comment for DeepPartial ([26176e3](https://github.com/NibiruChain/ts-sdk/commit/26176e383ffb2a34192802bc846dfa68f9d78656)) + ## [3.2.0](https://github.com/NibiruChain/ts-sdk/compare/v3.1.1...v3.2.0) (2024-03-05) ### Features diff --git a/package.json b/package.json index 278fcbfc..54c3217e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nibiruchain/nibijs", "description": "The TypeScript SDK for the Nibiru blockchain.", - "version": "3.2.0", + "version": "3.3.0", "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"