@secondlayer/cli 0.3.7 → 0.3.8
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/cli.js +5 -2
- package/dist/cli.js.map +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -15887,6 +15887,9 @@ function clarityTypeToTS(type) {
|
|
|
15887
15887
|
return "string";
|
|
15888
15888
|
default: {
|
|
15889
15889
|
const typeStr = type;
|
|
15890
|
+
if (typeStr === "none") {
|
|
15891
|
+
return "null";
|
|
15892
|
+
}
|
|
15890
15893
|
if (typeStr.includes("string") || typeStr.includes("ascii") || typeStr.includes("utf8")) {
|
|
15891
15894
|
return "string";
|
|
15892
15895
|
}
|
|
@@ -28234,7 +28237,7 @@ var {
|
|
|
28234
28237
|
// package.json
|
|
28235
28238
|
var package_default = {
|
|
28236
28239
|
name: "@secondlayer/cli",
|
|
28237
|
-
version: "0.3.
|
|
28240
|
+
version: "0.3.8",
|
|
28238
28241
|
description: "CLI for generating type-safe contract interfaces for the Stacks blockchain",
|
|
28239
28242
|
type: "module",
|
|
28240
28243
|
bin: {
|
|
@@ -28310,5 +28313,5 @@ program.command("init").description("Initialize a new stacks.config.ts file").ac
|
|
|
28310
28313
|
});
|
|
28311
28314
|
program.parse();
|
|
28312
28315
|
|
|
28313
|
-
//# debugId=
|
|
28316
|
+
//# debugId=7DA8ED9A30BA795D64756E2164756E21
|
|
28314
28317
|
//# sourceMappingURL=cli.js.map
|