@armory-sh/base 0.2.35 → 0.2.36

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.
@@ -100,7 +100,8 @@ export interface X402Response {
100
100
  x402Version: X402Version;
101
101
  error?: string;
102
102
  accepts?: PaymentRequirements[];
103
- payer?: Address;
103
+ resource?: ResourceInfo;
104
+ extensions?: Record<string, unknown>;
104
105
  }
105
106
  /**
106
107
  * Type guards
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@armory-sh/base",
3
- "version": "0.2.35",
3
+ "version": "0.2.36",
4
4
  "license": "MIT",
5
5
  "author": "Sawyer Cutler <sawyer@dirtroad.dev>",
6
6
  "keywords": [
package/src/types/x402.ts CHANGED
@@ -125,7 +125,8 @@ export interface X402Response {
125
125
  x402Version: X402Version;
126
126
  error?: string;
127
127
  accepts?: PaymentRequirements[];
128
- payer?: Address;
128
+ resource?: ResourceInfo;
129
+ extensions?: Record<string, unknown>;
129
130
  }
130
131
 
131
132
  /**