@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 CHANGED
@@ -419,7 +419,10 @@ interface CreateCollectionIntentParams {
419
419
  owner: string;
420
420
  name: string;
421
421
  symbol: string;
422
- baseUri: string;
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
- baseUri: string;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medialane/sdk",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Framework-agnostic TypeScript SDK for Medialane.io — the IP marketplace on Starknet",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",