@medialane/sdk 0.16.0 → 0.17.0
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 +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4996,8 +4996,9 @@ declare const IPNftABI: readonly [{
|
|
|
4996
4996
|
}];
|
|
4997
4997
|
}];
|
|
4998
4998
|
|
|
4999
|
-
/** Lookup. Returns undefined for
|
|
5000
|
-
*
|
|
4999
|
+
/** Lookup. Returns undefined for unregistered service IDs — callers should
|
|
5000
|
+
* treat that as a data error, since every Collection.service value is
|
|
5001
|
+
* expected to map to a registered ServiceDefinition. */
|
|
5001
5002
|
declare function getService(id: string | null | undefined): ServiceDefinition | undefined;
|
|
5002
5003
|
/** All registered services (e.g. the launchpad grid). */
|
|
5003
5004
|
declare function listServices(): ServiceDefinition[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4996,8 +4996,9 @@ declare const IPNftABI: readonly [{
|
|
|
4996
4996
|
}];
|
|
4997
4997
|
}];
|
|
4998
4998
|
|
|
4999
|
-
/** Lookup. Returns undefined for
|
|
5000
|
-
*
|
|
4999
|
+
/** Lookup. Returns undefined for unregistered service IDs — callers should
|
|
5000
|
+
* treat that as a data error, since every Collection.service value is
|
|
5001
|
+
* expected to map to a registered ServiceDefinition. */
|
|
5001
5002
|
declare function getService(id: string | null | undefined): ServiceDefinition | undefined;
|
|
5002
5003
|
/** All registered services (e.g. the launchpad grid). */
|
|
5003
5004
|
declare function listServices(): ServiceDefinition[];
|
package/dist/index.js
CHANGED
|
@@ -6379,6 +6379,24 @@ var SERVICES = {
|
|
|
6379
6379
|
},
|
|
6380
6380
|
uiVariant: "edition",
|
|
6381
6381
|
capabilities: ["list", "buy", "make_offer", "cancel"]
|
|
6382
|
+
},
|
|
6383
|
+
"external-erc721": {
|
|
6384
|
+
id: "external-erc721",
|
|
6385
|
+
displayName: "External ERC-721",
|
|
6386
|
+
description: "ERC-721 contract not deployed via a Medialane service.",
|
|
6387
|
+
standard: "ERC721",
|
|
6388
|
+
provenance: "EXTERNAL",
|
|
6389
|
+
uiVariant: "standard",
|
|
6390
|
+
capabilities: ["list", "buy", "make_offer", "cancel", "transfer"]
|
|
6391
|
+
},
|
|
6392
|
+
"external-erc1155": {
|
|
6393
|
+
id: "external-erc1155",
|
|
6394
|
+
displayName: "External ERC-1155",
|
|
6395
|
+
description: "ERC-1155 contract not deployed via a Medialane service.",
|
|
6396
|
+
standard: "ERC1155",
|
|
6397
|
+
provenance: "EXTERNAL",
|
|
6398
|
+
uiVariant: "edition",
|
|
6399
|
+
capabilities: ["list", "buy", "make_offer", "cancel", "transfer"]
|
|
6382
6400
|
}
|
|
6383
6401
|
};
|
|
6384
6402
|
function getService(id) {
|