@opendatalabs/vana-sdk 3.6.1 → 3.6.2

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.
@@ -34008,7 +34008,8 @@ function createEscrowGatewayClient(baseUrl) {
34008
34008
  asset,
34009
34009
  amount,
34010
34010
  paymentNonce,
34011
- signature
34011
+ signature,
34012
+ accessRecord
34012
34013
  }) {
34013
34014
  const res = await fetch(`${base}/v1/escrow/pay`, {
34014
34015
  method: "POST",
@@ -34022,7 +34023,8 @@ function createEscrowGatewayClient(baseUrl) {
34022
34023
  opId,
34023
34024
  asset,
34024
34025
  amount,
34025
- paymentNonce
34026
+ paymentNonce,
34027
+ ...accessRecord ? { accessRecord } : {}
34026
34028
  })
34027
34029
  });
34028
34030
  await throwOnError(res, "POST /v1/escrow/pay");