@twin.org/nft-models 0.0.1-next.30 → 0.0.1-next.31
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/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/nft-models - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.31](https://github.com/twinfoundation/nft/compare/nft-models-v0.0.1-next.30...nft-models-v0.0.1-next.31) (2025-06-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
|
|
9
|
+
|
|
3
10
|
## [0.0.1-next.30](https://github.com/twinfoundation/nft/compare/nft-models-v0.0.1-next.29...nft-models-v0.0.1-next.30) (2025-05-22)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -66,7 +66,7 @@ The id of the created NFT in urn format.
|
|
|
66
66
|
|
|
67
67
|
### resolve()
|
|
68
68
|
|
|
69
|
-
> **resolve**\<`T`, `U`\>(`id`, `controllerIdentity?`): `Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata
|
|
69
|
+
> **resolve**\<`T`, `U`\>(`id`, `controllerIdentity?`): `Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata?`: `T`; `metadata?`: `U`; \}\>
|
|
70
70
|
|
|
71
71
|
Resolve an NFT.
|
|
72
72
|
|
|
@@ -96,7 +96,7 @@ The identity to perform the nft operation on.
|
|
|
96
96
|
|
|
97
97
|
#### Returns
|
|
98
98
|
|
|
99
|
-
`Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata
|
|
99
|
+
`Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata?`: `T`; `metadata?`: `U`; \}\>
|
|
100
100
|
|
|
101
101
|
The data for the NFT.
|
|
102
102
|
|
|
@@ -60,7 +60,7 @@ The id of the created NFT in urn format.
|
|
|
60
60
|
|
|
61
61
|
### resolve()
|
|
62
62
|
|
|
63
|
-
> **resolve**\<`T`, `U`\>(`id`): `Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata
|
|
63
|
+
> **resolve**\<`T`, `U`\>(`id`): `Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata?`: `T`; `metadata?`: `U`; \}\>
|
|
64
64
|
|
|
65
65
|
Resolve an NFT.
|
|
66
66
|
|
|
@@ -84,7 +84,7 @@ The id of the NFT to resolve.
|
|
|
84
84
|
|
|
85
85
|
#### Returns
|
|
86
86
|
|
|
87
|
-
`Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata
|
|
87
|
+
`Promise`\<\{ `issuer`: `string`; `owner`: `string`; `tag`: `string`; `immutableMetadata?`: `T`; `metadata?`: `U`; \}\>
|
|
88
88
|
|
|
89
89
|
The data for the NFT.
|
|
90
90
|
|