gondi 0.18.5 → 0.18.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/index.mjs +124 -36
- package/dist/index.mjs.map +4 -4
- package/dist/src/api/index.d.ts +19 -1
- package/dist/src/api/sdk.d.ts +3 -0
- package/dist/src/generated/graphql/index.d.ts +175 -9
- package/dist/src/gondi.d.ts +65 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# Breaking Changes 0.18.6
|
|
2
|
+
|
|
3
|
+
### Important
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
This document outlines the breaking changes introduced in our codebase for version 0.18.6. Please review these changes carefully to ensure a smooth migration.
|
|
8
|
+
|
|
9
|
+
## Table of Contents
|
|
10
|
+
|
|
11
|
+
- [Make Order](#replace-makeorder-with-makesellandrepayorder) makeOrder was renamed to makeSellAndRepayOrder
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Replace makeOrder with makeSellAndRepayOrder
|
|
16
|
+
|
|
17
|
+
**Description:**
|
|
18
|
+
|
|
19
|
+
`makeOrder` was renamed to `makeSellAndRepayOrder`. `makeOrder` now creates a single-nft-order instead of a sell-and-repay order.
|
|
20
|
+
|
|
1
21
|
# Breaking Changes 0.16.1
|
|
2
22
|
|
|
3
23
|
### Important
|