@medialane/sdk 0.5.1 → 0.5.3
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.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -586,6 +586,8 @@ interface CreateRemixOfferParams {
|
|
|
586
586
|
proposedPrice?: string;
|
|
587
587
|
proposedCurrency?: string;
|
|
588
588
|
message?: string;
|
|
589
|
+
/** Offer validity in days (server default applies if omitted) */
|
|
590
|
+
expiresInDays?: number;
|
|
589
591
|
}
|
|
590
592
|
interface AutoRemixOfferParams {
|
|
591
593
|
originalContract: string;
|
|
@@ -597,6 +599,8 @@ interface ConfirmSelfRemixParams {
|
|
|
597
599
|
originalTokenId: string;
|
|
598
600
|
remixContract: string;
|
|
599
601
|
remixTokenId: string;
|
|
602
|
+
/** On-chain transaction hash of the mint tx */
|
|
603
|
+
txHash?: string;
|
|
600
604
|
licenseType: string;
|
|
601
605
|
commercial: boolean;
|
|
602
606
|
derivatives: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -586,6 +586,8 @@ interface CreateRemixOfferParams {
|
|
|
586
586
|
proposedPrice?: string;
|
|
587
587
|
proposedCurrency?: string;
|
|
588
588
|
message?: string;
|
|
589
|
+
/** Offer validity in days (server default applies if omitted) */
|
|
590
|
+
expiresInDays?: number;
|
|
589
591
|
}
|
|
590
592
|
interface AutoRemixOfferParams {
|
|
591
593
|
originalContract: string;
|
|
@@ -597,6 +599,8 @@ interface ConfirmSelfRemixParams {
|
|
|
597
599
|
originalTokenId: string;
|
|
598
600
|
remixContract: string;
|
|
599
601
|
remixTokenId: string;
|
|
602
|
+
/** On-chain transaction hash of the mint tx */
|
|
603
|
+
txHash?: string;
|
|
600
604
|
licenseType: string;
|
|
601
605
|
commercial: boolean;
|
|
602
606
|
derivatives: boolean;
|