@medialane/sdk 0.2.6 → 0.2.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/dist/index.d.cts CHANGED
@@ -433,6 +433,8 @@ interface CreateCollectionIntentParams {
433
433
  symbol: string;
434
434
  /** Optional description stored server-side and surfaced on the collection page. */
435
435
  description?: string;
436
+ /** Optional IPFS image URI (ipfs://...) for the collection cover image. */
437
+ image?: string;
436
438
  /** Base URI for token metadata. Defaults to empty string if not provided. */
437
439
  baseUri?: string;
438
440
  /** Optional: override the default collection contract address */
package/dist/index.d.ts CHANGED
@@ -433,6 +433,8 @@ interface CreateCollectionIntentParams {
433
433
  symbol: string;
434
434
  /** Optional description stored server-side and surfaced on the collection page. */
435
435
  description?: string;
436
+ /** Optional IPFS image URI (ipfs://...) for the collection cover image. */
437
+ image?: string;
436
438
  /** Base URI for token metadata. Defaults to empty string if not provided. */
437
439
  baseUri?: string;
438
440
  /** Optional: override the default collection contract address */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medialane/sdk",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
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",