@opendatalabs/vana-sdk 3.6.1 → 3.6.3

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.
@@ -33849,7 +33849,8 @@ function createEscrowGatewayClient(baseUrl) {
33849
33849
  asset,
33850
33850
  amount,
33851
33851
  paymentNonce,
33852
- signature
33852
+ signature,
33853
+ accessRecord
33853
33854
  }) {
33854
33855
  const res = await fetch(`${base}/v1/escrow/pay`, {
33855
33856
  method: "POST",
@@ -33863,7 +33864,8 @@ function createEscrowGatewayClient(baseUrl) {
33863
33864
  opId,
33864
33865
  asset,
33865
33866
  amount,
33866
- paymentNonce
33867
+ paymentNonce,
33868
+ ...accessRecord ? { accessRecord } : {}
33867
33869
  })
33868
33870
  });
33869
33871
  await throwOnError(res, "POST /v1/escrow/pay");