@arbiwallet/contracts 1.0.239 → 1.0.240

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.
@@ -292,6 +292,7 @@ export interface CreateExchangePaymentResponse {
292
292
 
293
293
  export interface HandlePaymentWebhookRequest {
294
294
  jsonPayload: string;
295
+ xApiKey: string;
295
296
  }
296
297
 
297
298
  export interface HandlePaymentWebhookResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arbiwallet/contracts",
3
3
  "descriptions": "Generate and manage smart contracts for ArbiWallet",
4
- "version": "1.0.239",
4
+ "version": "1.0.240",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -319,6 +319,7 @@ message CreateExchangePaymentResponse {
319
319
 
320
320
  message HandlePaymentWebhookRequest {
321
321
  string json_payload = 1;
322
+ string x_api_key = 2;
322
323
  }
323
324
 
324
325
  message HandlePaymentWebhookResponse {