@armory-sh/base 0.2.35-alpha.25.98 → 0.2.35

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