pinata 0.1.6 → 0.1.8

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 CHANGED
@@ -52,7 +52,7 @@ async function main() {
52
52
  await main();
53
53
  ```
54
54
 
55
- This will return an object like the following
55
+ This will return an object like the following:
56
56
 
57
57
  ```typescript
58
58
  {
package/dist/index.d.mts CHANGED
@@ -2,6 +2,7 @@ type PinataConfig = {
2
2
  pinataJwt: string;
3
3
  pinataGateway?: string;
4
4
  pinataGatewayKey?: string;
5
+ customHeaders?: Record<string, string>;
5
6
  };
6
7
  type AuthTestResponse = {
7
8
  message: string;
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ type PinataConfig = {
2
2
  pinataJwt: string;
3
3
  pinataGateway?: string;
4
4
  pinataGatewayKey?: string;
5
+ customHeaders?: Record<string, string>;
5
6
  };
6
7
  type AuthTestResponse = {
7
8
  message: string;