@medialane/sdk 0.7.2 → 0.7.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 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -568,10 +568,14 @@ interface MakeOfferIntentParams {
|
|
|
568
568
|
interface FulfillOrderIntentParams {
|
|
569
569
|
fulfiller: string;
|
|
570
570
|
orderHash: string;
|
|
571
|
+
/** Caller hint — "ERC1155" forces 1155 routing even if the order isn't in the DB yet */
|
|
572
|
+
tokenStandard?: string;
|
|
571
573
|
}
|
|
572
574
|
interface CancelOrderIntentParams {
|
|
573
575
|
offerer: string;
|
|
574
576
|
orderHash: string;
|
|
577
|
+
/** Caller hint — "ERC1155" forces 1155 routing even if the order isn't in the DB yet */
|
|
578
|
+
tokenStandard?: string;
|
|
575
579
|
}
|
|
576
580
|
interface CreateMintIntentParams {
|
|
577
581
|
/** Collection owner wallet address — must be the collection owner on-chain */
|
|
@@ -771,8 +775,6 @@ interface ApiCreatorProfile {
|
|
|
771
775
|
bio: string | null;
|
|
772
776
|
avatarImage: string | null;
|
|
773
777
|
bannerImage: string | null;
|
|
774
|
-
/** First collection image for creators without avatarImage/bannerImage. Populated by the API, null otherwise. */
|
|
775
|
-
collectionImage: string | null;
|
|
776
778
|
websiteUrl: string | null;
|
|
777
779
|
twitterUrl: string | null;
|
|
778
780
|
discordUrl: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -568,10 +568,14 @@ interface MakeOfferIntentParams {
|
|
|
568
568
|
interface FulfillOrderIntentParams {
|
|
569
569
|
fulfiller: string;
|
|
570
570
|
orderHash: string;
|
|
571
|
+
/** Caller hint — "ERC1155" forces 1155 routing even if the order isn't in the DB yet */
|
|
572
|
+
tokenStandard?: string;
|
|
571
573
|
}
|
|
572
574
|
interface CancelOrderIntentParams {
|
|
573
575
|
offerer: string;
|
|
574
576
|
orderHash: string;
|
|
577
|
+
/** Caller hint — "ERC1155" forces 1155 routing even if the order isn't in the DB yet */
|
|
578
|
+
tokenStandard?: string;
|
|
575
579
|
}
|
|
576
580
|
interface CreateMintIntentParams {
|
|
577
581
|
/** Collection owner wallet address — must be the collection owner on-chain */
|
|
@@ -771,8 +775,6 @@ interface ApiCreatorProfile {
|
|
|
771
775
|
bio: string | null;
|
|
772
776
|
avatarImage: string | null;
|
|
773
777
|
bannerImage: string | null;
|
|
774
|
-
/** First collection image for creators without avatarImage/bannerImage. Populated by the API, null otherwise. */
|
|
775
|
-
collectionImage: string | null;
|
|
776
778
|
websiteUrl: string | null;
|
|
777
779
|
twitterUrl: string | null;
|
|
778
780
|
discordUrl: string | null;
|