pinata 2.5.0 → 2.5.2
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/{gateway-tools-l9hk7kz4.d.mts → gateway-tools-C0QGU-4p.d.mts} +12 -1
- package/dist/{gateway-tools-l9hk7kz4.d.ts → gateway-tools-C0QGU-4p.d.ts} +12 -1
- package/dist/index.d.mts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +48 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +48 -30
- package/dist/index.mjs.map +1 -1
- package/dist/react/index.d.mts +2 -2
- package/dist/react/index.d.ts +2 -2
- package/package.json +3 -2
package/dist/react/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { i as UploadResponse, h as UploadOptions } from '../gateway-tools-
|
|
2
|
-
export {
|
|
1
|
+
import { i as UploadResponse, h as UploadOptions } from '../gateway-tools-C0QGU-4p.mjs';
|
|
2
|
+
export { t as AuthenticationError, N as NetworkError, s as PinataError, u as ValidationError, w as convert } from '../gateway-tools-C0QGU-4p.mjs';
|
|
3
3
|
|
|
4
4
|
type UploadResult = UploadResponse | string;
|
|
5
5
|
interface ReactUploadOptions extends UploadOptions {
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { i as UploadResponse, h as UploadOptions } from '../gateway-tools-
|
|
2
|
-
export {
|
|
1
|
+
import { i as UploadResponse, h as UploadOptions } from '../gateway-tools-C0QGU-4p.js';
|
|
2
|
+
export { t as AuthenticationError, N as NetworkError, s as PinataError, u as ValidationError, w as convert } from '../gateway-tools-C0QGU-4p.js';
|
|
3
3
|
|
|
4
4
|
type UploadResult = UploadResponse | string;
|
|
5
5
|
interface ReactUploadOptions extends UploadOptions {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pinata",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"description": "The official Pinata SDK",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsup",
|
|
25
25
|
"format": "pnpm dlx @biomejs/biome format --write src tests package.json",
|
|
26
|
-
"test": "jest --
|
|
26
|
+
"test": "jest --verbose --coverage tests",
|
|
27
|
+
"test:watch": "jest --watchAll --verbose --coverage tests"
|
|
27
28
|
},
|
|
28
29
|
"repository": {
|
|
29
30
|
"type": "git",
|