@medialane/sdk 0.2.1 → 0.2.2
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/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -419,7 +419,10 @@ interface CreateCollectionIntentParams {
|
|
|
419
419
|
owner: string;
|
|
420
420
|
name: string;
|
|
421
421
|
symbol: string;
|
|
422
|
-
|
|
422
|
+
/** Optional description stored server-side and surfaced on the collection page. */
|
|
423
|
+
description?: string;
|
|
424
|
+
/** Base URI for token metadata. Defaults to empty string if not provided. */
|
|
425
|
+
baseUri?: string;
|
|
423
426
|
/** Optional: override the default collection contract address */
|
|
424
427
|
collectionContract?: string;
|
|
425
428
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -419,7 +419,10 @@ interface CreateCollectionIntentParams {
|
|
|
419
419
|
owner: string;
|
|
420
420
|
name: string;
|
|
421
421
|
symbol: string;
|
|
422
|
-
|
|
422
|
+
/** Optional description stored server-side and surfaced on the collection page. */
|
|
423
|
+
description?: string;
|
|
424
|
+
/** Base URI for token metadata. Defaults to empty string if not provided. */
|
|
425
|
+
baseUri?: string;
|
|
423
426
|
/** Optional: override the default collection contract address */
|
|
424
427
|
collectionContract?: string;
|
|
425
428
|
}
|