@zenstackhq/sdk 3.5.5 → 3.6.0
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/ast.cjs +8 -24
- package/dist/ast.d.cts +1 -1
- package/dist/ast.d.mts +1 -0
- package/dist/ast.mjs +2 -0
- package/dist/chunk-CfYAbeIz.mjs +13 -0
- package/dist/index.cjs +1104 -1679
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +155 -163
- package/dist/index.d.mts +203 -0
- package/dist/index.mjs +1148 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +14 -12
- package/dist/ast.cjs.map +0 -1
- package/dist/ast.d.ts +0 -1
- package/dist/ast.js +0 -3
- package/dist/ast.js.map +0 -1
- package/dist/index.d.ts +0 -211
- package/dist/index.js +0 -1731
- package/dist/index.js.map +0 -1
package/dist/ast.cjs
CHANGED
|
@@ -1,25 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
-
}
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
-
|
|
17
|
-
// src/ast.ts
|
|
18
|
-
var ast_exports = {};
|
|
19
|
-
module.exports = __toCommonJS(ast_exports);
|
|
20
|
-
__reExport(ast_exports, require("@zenstackhq/language/ast"), module.exports);
|
|
21
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
22
|
-
0 && (module.exports = {
|
|
23
|
-
...require("@zenstackhq/language/ast")
|
|
1
|
+
var _zenstackhq_language_ast = require("@zenstackhq/language/ast");
|
|
2
|
+
Object.keys(_zenstackhq_language_ast).forEach(function(k) {
|
|
3
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
4
|
+
enumerable: true,
|
|
5
|
+
get: function() {
|
|
6
|
+
return _zenstackhq_language_ast[k];
|
|
7
|
+
}
|
|
8
|
+
});
|
|
24
9
|
});
|
|
25
|
-
//# sourceMappingURL=ast.cjs.map
|
package/dist/ast.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@zenstackhq/language/ast";
|
package/dist/ast.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@zenstackhq/language/ast";
|
package/dist/ast.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __exportAll = (all, no_symbols) => {
|
|
4
|
+
let target = {};
|
|
5
|
+
for (var name in all) __defProp(target, name, {
|
|
6
|
+
get: all[name],
|
|
7
|
+
enumerable: true
|
|
8
|
+
});
|
|
9
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
10
|
+
return target;
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { __exportAll as t };
|