@seedprotocol/feed 0.4.8 → 0.4.11
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.ts.map +1 -1
- package/dist/index.js +93 -90
- package/dist/index.js.map +1 -1
- package/dist/utils/arweaveUrl.d.ts +7 -0
- package/dist/utils/arweaveUrl.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Builds an Arweave URL for a transaction ID (without the /raw segment).
|
|
3
|
+
* Returns URLs like https://arweave.net/{transactionId} instead of
|
|
4
|
+
* https://arweave.net/raw/{transactionId}.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getArweaveUrlForTransaction(transactionId: string): string;
|
|
7
|
+
//# sourceMappingURL=arweaveUrl.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arweaveUrl.d.ts","sourceRoot":"","sources":["../../src/utils/arweaveUrl.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,wBAAgB,2BAA2B,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAEzE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seedprotocol/feed",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "Feed generation (RSS, Atom, JSON) for Seed Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepublishOnly": "bun run build && node ../../scripts/sync-versions.js && npm pkg set dependencies.@seedprotocol/sdk=$(node -e \"console.log(require('../../packages/sdk/package.json').version)\")"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@seedprotocol/sdk": "0.4.
|
|
28
|
+
"@seedprotocol/sdk": "0.4.11",
|
|
29
29
|
"express": "^5.2.1",
|
|
30
30
|
"feedsmith": "^2.9.0",
|
|
31
31
|
"graphql-request": "^7.3.5",
|