@medialane/sdk 0.5.4 → 0.5.6
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/README.md +29 -0
- package/dist/index.cjs +11 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -5
- package/dist/index.d.ts +15 -5
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -542,6 +542,12 @@ interface ApiCounterOffersQuery {
|
|
|
542
542
|
declare const OPEN_LICENSES: readonly ["CC0", "CC BY", "CC BY-SA", "CC BY-NC"];
|
|
543
543
|
type OpenLicense = (typeof OPEN_LICENSES)[number];
|
|
544
544
|
type RemixOfferStatus = "PENDING" | "AUTO_PENDING" | "APPROVED" | "COMPLETED" | "REJECTED" | "EXPIRED" | "SELF_MINTED";
|
|
545
|
+
interface ApiRemixOfferPrice {
|
|
546
|
+
raw: string;
|
|
547
|
+
formatted: string;
|
|
548
|
+
currency: string;
|
|
549
|
+
decimals: number;
|
|
550
|
+
}
|
|
545
551
|
interface ApiRemixOffer {
|
|
546
552
|
id: string;
|
|
547
553
|
status: RemixOfferStatus;
|
|
@@ -550,10 +556,8 @@ interface ApiRemixOffer {
|
|
|
550
556
|
creatorAddress: string;
|
|
551
557
|
requesterAddress: string | null;
|
|
552
558
|
message?: string | null;
|
|
553
|
-
/** Visible only to creator and requester */
|
|
554
|
-
|
|
555
|
-
/** Visible only to creator and requester */
|
|
556
|
-
proposedCurrency?: string;
|
|
559
|
+
/** Visible only to creator and requester — includes formatted price */
|
|
560
|
+
price?: ApiRemixOfferPrice;
|
|
557
561
|
licenseType: string;
|
|
558
562
|
commercial: boolean;
|
|
559
563
|
derivatives: boolean;
|
|
@@ -678,6 +682,7 @@ interface ApiCollectionProfile {
|
|
|
678
682
|
twitterUrl: string | null;
|
|
679
683
|
discordUrl: string | null;
|
|
680
684
|
telegramUrl: string | null;
|
|
685
|
+
hasGatedContent: boolean;
|
|
681
686
|
updatedBy: string | null;
|
|
682
687
|
updatedAt: string;
|
|
683
688
|
}
|
|
@@ -882,6 +887,11 @@ declare class ApiClient {
|
|
|
882
887
|
* Creator rejects a remix offer. Requires Clerk JWT.
|
|
883
888
|
*/
|
|
884
889
|
rejectRemixOffer(id: string, clerkToken: string): Promise<ApiResponse<ApiRemixOffer>>;
|
|
890
|
+
/**
|
|
891
|
+
* Requester extends the expiry of a pending remix offer by 1–30 days.
|
|
892
|
+
* Requires Clerk JWT.
|
|
893
|
+
*/
|
|
894
|
+
extendRemixOffer(id: string, days: number, clerkToken: string): Promise<ApiResponse<ApiRemixOffer>>;
|
|
885
895
|
}
|
|
886
896
|
|
|
887
897
|
declare class MedialaneClient {
|
|
@@ -1329,4 +1339,4 @@ declare function buildFulfillmentTypedData(message: Record<string, unknown>, cha
|
|
|
1329
1339
|
*/
|
|
1330
1340
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId): TypedData;
|
|
1331
1341
|
|
|
1332
|
-
export { type ActivityType, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, ApiClient, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, COLLECTION_CONTRACT_MAINNET, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreateRemixOfferParams, type CreateWebhookParams, DEFAULT_RPC_URLS, type FulfillOrderIntentParams, type FulfillOrderParams, type Fulfillment, IPMarketplaceABI, type IPType, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, MARKETPLACE_CONTRACT_MAINNET, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintParams, type Network, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderParameters, type OrderStatus, type RemixOfferStatus, type ResolvedConfig, type RetryOptions, SUPPORTED_NETWORKS, SUPPORTED_TOKENS, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, type WebhookEventType, type WebhookStatus, buildCancellationTypedData, buildFulfillmentTypedData, buildOrderTypedData, formatAmount, getListableTokens, getTokenByAddress, getTokenBySymbol, normalizeAddress, parseAmount, resolveConfig, shortenAddress, stringifyBigInts, u256ToBigInt };
|
|
1342
|
+
export { type ActivityType, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, ApiClient, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, COLLECTION_CONTRACT_MAINNET, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreateRemixOfferParams, type CreateWebhookParams, DEFAULT_RPC_URLS, type FulfillOrderIntentParams, type FulfillOrderParams, type Fulfillment, IPMarketplaceABI, type IPType, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, MARKETPLACE_CONTRACT_MAINNET, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintParams, type Network, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderParameters, type OrderStatus, type RemixOfferStatus, type ResolvedConfig, type RetryOptions, SUPPORTED_NETWORKS, SUPPORTED_TOKENS, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, type WebhookEventType, type WebhookStatus, buildCancellationTypedData, buildFulfillmentTypedData, buildOrderTypedData, formatAmount, getListableTokens, getTokenByAddress, getTokenBySymbol, normalizeAddress, parseAmount, resolveConfig, shortenAddress, stringifyBigInts, u256ToBigInt };
|
package/dist/index.d.ts
CHANGED
|
@@ -542,6 +542,12 @@ interface ApiCounterOffersQuery {
|
|
|
542
542
|
declare const OPEN_LICENSES: readonly ["CC0", "CC BY", "CC BY-SA", "CC BY-NC"];
|
|
543
543
|
type OpenLicense = (typeof OPEN_LICENSES)[number];
|
|
544
544
|
type RemixOfferStatus = "PENDING" | "AUTO_PENDING" | "APPROVED" | "COMPLETED" | "REJECTED" | "EXPIRED" | "SELF_MINTED";
|
|
545
|
+
interface ApiRemixOfferPrice {
|
|
546
|
+
raw: string;
|
|
547
|
+
formatted: string;
|
|
548
|
+
currency: string;
|
|
549
|
+
decimals: number;
|
|
550
|
+
}
|
|
545
551
|
interface ApiRemixOffer {
|
|
546
552
|
id: string;
|
|
547
553
|
status: RemixOfferStatus;
|
|
@@ -550,10 +556,8 @@ interface ApiRemixOffer {
|
|
|
550
556
|
creatorAddress: string;
|
|
551
557
|
requesterAddress: string | null;
|
|
552
558
|
message?: string | null;
|
|
553
|
-
/** Visible only to creator and requester */
|
|
554
|
-
|
|
555
|
-
/** Visible only to creator and requester */
|
|
556
|
-
proposedCurrency?: string;
|
|
559
|
+
/** Visible only to creator and requester — includes formatted price */
|
|
560
|
+
price?: ApiRemixOfferPrice;
|
|
557
561
|
licenseType: string;
|
|
558
562
|
commercial: boolean;
|
|
559
563
|
derivatives: boolean;
|
|
@@ -678,6 +682,7 @@ interface ApiCollectionProfile {
|
|
|
678
682
|
twitterUrl: string | null;
|
|
679
683
|
discordUrl: string | null;
|
|
680
684
|
telegramUrl: string | null;
|
|
685
|
+
hasGatedContent: boolean;
|
|
681
686
|
updatedBy: string | null;
|
|
682
687
|
updatedAt: string;
|
|
683
688
|
}
|
|
@@ -882,6 +887,11 @@ declare class ApiClient {
|
|
|
882
887
|
* Creator rejects a remix offer. Requires Clerk JWT.
|
|
883
888
|
*/
|
|
884
889
|
rejectRemixOffer(id: string, clerkToken: string): Promise<ApiResponse<ApiRemixOffer>>;
|
|
890
|
+
/**
|
|
891
|
+
* Requester extends the expiry of a pending remix offer by 1–30 days.
|
|
892
|
+
* Requires Clerk JWT.
|
|
893
|
+
*/
|
|
894
|
+
extendRemixOffer(id: string, days: number, clerkToken: string): Promise<ApiResponse<ApiRemixOffer>>;
|
|
885
895
|
}
|
|
886
896
|
|
|
887
897
|
declare class MedialaneClient {
|
|
@@ -1329,4 +1339,4 @@ declare function buildFulfillmentTypedData(message: Record<string, unknown>, cha
|
|
|
1329
1339
|
*/
|
|
1330
1340
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId): TypedData;
|
|
1331
1341
|
|
|
1332
|
-
export { type ActivityType, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, ApiClient, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, COLLECTION_CONTRACT_MAINNET, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreateRemixOfferParams, type CreateWebhookParams, DEFAULT_RPC_URLS, type FulfillOrderIntentParams, type FulfillOrderParams, type Fulfillment, IPMarketplaceABI, type IPType, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, MARKETPLACE_CONTRACT_MAINNET, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintParams, type Network, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderParameters, type OrderStatus, type RemixOfferStatus, type ResolvedConfig, type RetryOptions, SUPPORTED_NETWORKS, SUPPORTED_TOKENS, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, type WebhookEventType, type WebhookStatus, buildCancellationTypedData, buildFulfillmentTypedData, buildOrderTypedData, formatAmount, getListableTokens, getTokenByAddress, getTokenBySymbol, normalizeAddress, parseAmount, resolveConfig, shortenAddress, stringifyBigInts, u256ToBigInt };
|
|
1342
|
+
export { type ActivityType, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, ApiClient, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, COLLECTION_CONTRACT_MAINNET, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreateRemixOfferParams, type CreateWebhookParams, DEFAULT_RPC_URLS, type FulfillOrderIntentParams, type FulfillOrderParams, type Fulfillment, IPMarketplaceABI, type IPType, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, MARKETPLACE_CONTRACT_MAINNET, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintParams, type Network, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderParameters, type OrderStatus, type RemixOfferStatus, type ResolvedConfig, type RetryOptions, SUPPORTED_NETWORKS, SUPPORTED_TOKENS, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, type WebhookEventType, type WebhookStatus, buildCancellationTypedData, buildFulfillmentTypedData, buildOrderTypedData, formatAmount, getListableTokens, getTokenByAddress, getTokenBySymbol, normalizeAddress, parseAmount, resolveConfig, shortenAddress, stringifyBigInts, u256ToBigInt };
|
package/dist/index.js
CHANGED
|
@@ -1427,6 +1427,17 @@ var ApiClient = class {
|
|
|
1427
1427
|
headers: { "Authorization": `Bearer ${clerkToken}` }
|
|
1428
1428
|
});
|
|
1429
1429
|
}
|
|
1430
|
+
/**
|
|
1431
|
+
* Requester extends the expiry of a pending remix offer by 1–30 days.
|
|
1432
|
+
* Requires Clerk JWT.
|
|
1433
|
+
*/
|
|
1434
|
+
extendRemixOffer(id, days, clerkToken) {
|
|
1435
|
+
return this.request(`/v1/remix-offers/${id}/extend`, {
|
|
1436
|
+
method: "POST",
|
|
1437
|
+
body: JSON.stringify({ days }),
|
|
1438
|
+
headers: { "Authorization": `Bearer ${clerkToken}` }
|
|
1439
|
+
});
|
|
1440
|
+
}
|
|
1430
1441
|
};
|
|
1431
1442
|
|
|
1432
1443
|
// src/client.ts
|