@settlemint/dalp-sdk 3.0.7-main.29069237704 → 3.0.7-main.29156804535
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/{chunk-xm8h1dzh.js → chunk-ekpzw2h7.js} +14 -1
- package/dist/contract.d.ts +1 -1
- package/dist/generated/dalp-client.generated.d.ts +1514 -0
- package/dist/generated/dalp-client.generated.d.ts.map +1 -0
- package/dist/index.js +108668 -80420
- package/dist/plugins/index.js +1 -1
- package/dist/serializers.d.ts +5 -5
- package/dist/types.d.ts +9 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +10 -5
|
@@ -29,5 +29,18 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
29
29
|
return to;
|
|
30
30
|
};
|
|
31
31
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
32
|
+
var __returnValue = (v) => v;
|
|
33
|
+
function __exportSetter(name, newValue) {
|
|
34
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
35
|
+
}
|
|
36
|
+
var __export = (target, all) => {
|
|
37
|
+
for (var name in all)
|
|
38
|
+
__defProp(target, name, {
|
|
39
|
+
get: all[name],
|
|
40
|
+
enumerable: true,
|
|
41
|
+
configurable: true,
|
|
42
|
+
set: __exportSetter.bind(all, name)
|
|
43
|
+
});
|
|
44
|
+
};
|
|
32
45
|
|
|
33
|
-
export { __toESM, __commonJS };
|
|
46
|
+
export { __toESM, __commonJS, __export };
|
package/dist/contract.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Re-exports the DALP v2 contract.
|
|
3
3
|
*
|
|
4
4
|
* At build time, `bun build` bundles the contract definition (including all
|
|
5
|
-
*
|
|
5
|
+
* Effect schemas from workspace packages) into the SDK's `dist/` output.
|
|
6
6
|
* Consumers never need to install workspace-only packages.
|
|
7
7
|
*
|
|
8
8
|
* The SDK uses this contract with OpenAPILink to call the REST endpoint
|