@hypercerts-org/marketplace-sdk 0.3.18 → 0.3.19
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.
package/dist/index.cjs.js
CHANGED
@@ -7967,7 +7967,7 @@ class HypercertExchangeClient {
|
|
7967
7967
|
return result.map((res, index) => {
|
7968
7968
|
const order = orders[index];
|
7969
7969
|
const valid = res.every((code) => ACCEPTED_ERROR_CODES.includes(code));
|
7970
|
-
return { id: order.id, valid, validatorCodes: res };
|
7970
|
+
return { id: order.id, valid, validatorCodes: res, order };
|
7971
7971
|
});
|
7972
7972
|
}
|
7973
7973
|
/**
|
package/dist/index.esm.js
CHANGED
@@ -7965,7 +7965,7 @@ class HypercertExchangeClient {
|
|
7965
7965
|
return result.map((res, index) => {
|
7966
7966
|
const order = orders[index];
|
7967
7967
|
const valid = res.every((code) => ACCEPTED_ERROR_CODES.includes(code));
|
7968
|
-
return { id: order.id, valid, validatorCodes: res };
|
7968
|
+
return { id: order.id, valid, validatorCodes: res, order };
|
7969
7969
|
});
|
7970
7970
|
}
|
7971
7971
|
/**
|