@xanots/sdk 0.0.1 → 0.0.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.
- package/dist/.build-fingerprint +1 -0
- package/dist/bin.js +4 -4
- package/dist/{chunk-3DUAGYGP.js → chunk-55VHDNW5.js} +2 -2
- package/dist/{chunk-EMCAWMHC.js → chunk-5L4X5LS6.js} +16 -2
- package/dist/{chunk-LH6Z6KFV.js → chunk-5XZ744TS.js} +1 -1
- package/dist/{chunk-MZUI3JNX.js → chunk-F6JCFRKO.js} +2 -2
- package/dist/{chunk-RVB7ITKN.js → chunk-LU7TRWMC.js} +2 -2
- package/dist/{chunk-TRU5OHQ5.js → chunk-MUDLJG2O.js} +32 -20
- package/dist/{chunk-WKP4D5MO.js → chunk-ODNMVJ6H.js} +2 -2
- package/dist/{chunk-26CNBZE2.js → chunk-P3TTMWUP.js} +13 -4
- package/dist/{chunk-YDZYMZBE.js → chunk-TQUO2OXY.js} +4 -4
- package/dist/{chunk-FJ6ZS5KB.js → chunk-U3G2UW65.js} +177 -60
- package/dist/{chunk-YGPIY3WT.js → chunk-UVLVQWWF.js} +13 -13
- package/dist/{chunk-33ND6LKO.js → chunk-XLD4BUTF.js} +2 -2
- package/dist/{chunk-NOO35BQ2.js → chunk-ZPEY5WE4.js} +2 -2
- package/dist/cli.js +4 -4
- package/dist/{codegen-command-OOKK6AZK.js → codegen-command-RY2GWDLX.js} +11 -11
- package/dist/codegen.js +2 -2
- package/dist/{deploy-command-4EQ7XX5G.js → deploy-command-DSISLUW5.js} +8 -8
- package/dist/{env-target-IFJ5QDHC.js → env-target-7C2GKBCY.js} +2 -2
- package/dist/{ephemeral-command-3X3I4ULC.js → ephemeral-command-5K573ZSG.js} +2 -2
- package/dist/index.d.ts +106 -84
- package/dist/index.js +6 -6
- package/dist/{init-command-R6H7ZXW5.js → init-command-4AWL6CLW.js} +6 -6
- package/dist/internal.d.ts +2 -2
- package/dist/internal.js +28 -10
- package/dist/{live-diff-Y3AKETHE.js → live-diff-RXSJCVJ7.js} +2 -2
- package/dist/{lock-commands-XTR2YKLY.js → lock-commands-7Q5LNZKL.js} +5 -5
- package/dist/{loop-OM3P2Z6O.js → loop-SAWAOUFO.js} +2 -2
- package/dist/node.d.ts +2 -2
- package/dist/node.js +7 -7
- package/dist/{release-command-VV5UVZKL.js → release-command-QXLRJMY7.js} +10 -10
- package/dist/{store-BQ97nKIF.d.ts → store-g45zwB33.d.ts} +91 -75
- package/dist/{test-command-TSPBQHBM.js → test-command-BOLIU57E.js} +2 -2
- package/dist/{validate-command-4ERHJSCO.js → validate-command-SYCFEYZN.js} +7 -7
- package/dist/{workspace-command-OF23DPNI.js → workspace-command-TOB2AJ6X.js} +11 -11
- package/llms/statements-calls.md +4 -4
- package/llms/statements-catalog.md +20 -20
- package/llms/statements-data.md +1 -1
- package/llms-full.txt +26 -26
- package/llms.txt +1 -1
- package/manifest.json +57 -84
- package/package.json +4 -1
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
Xano,
|
|
21
21
|
assertSeedIds,
|
|
22
22
|
coerceSeedRowValues
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-55VHDNW5.js";
|
|
24
24
|
import {
|
|
25
25
|
getCommand,
|
|
26
26
|
getSubcommand,
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
pathSegment,
|
|
39
39
|
serializeBundle,
|
|
40
40
|
tableColumns
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-5L4X5LS6.js";
|
|
42
42
|
import {
|
|
43
43
|
readLockFile,
|
|
44
44
|
writeLockFile
|
|
@@ -790,7 +790,7 @@ async function run(argv) {
|
|
|
790
790
|
return;
|
|
791
791
|
}
|
|
792
792
|
if (command === "init") {
|
|
793
|
-
const { runInitCommand } = await import("./init-command-
|
|
793
|
+
const { runInitCommand } = await import("./init-command-4AWL6CLW.js");
|
|
794
794
|
return runInitCommand(args);
|
|
795
795
|
}
|
|
796
796
|
if (command === "completion") {
|
|
@@ -805,7 +805,7 @@ async function run(argv) {
|
|
|
805
805
|
return runCompletionCommand(shell);
|
|
806
806
|
}
|
|
807
807
|
if (command === "lock") {
|
|
808
|
-
const { runLockCommand } = await import("./lock-commands-
|
|
808
|
+
const { runLockCommand } = await import("./lock-commands-7Q5LNZKL.js");
|
|
809
809
|
return runLockCommand(args);
|
|
810
810
|
}
|
|
811
811
|
if (command === "login") {
|
|
@@ -817,15 +817,15 @@ async function run(argv) {
|
|
|
817
817
|
return runLogoutCommand(args);
|
|
818
818
|
}
|
|
819
819
|
if (command === "deploy") {
|
|
820
|
-
const { runDeployCommand } = await import("./deploy-command-
|
|
820
|
+
const { runDeployCommand } = await import("./deploy-command-DSISLUW5.js");
|
|
821
821
|
return runDeployCommand(args);
|
|
822
822
|
}
|
|
823
823
|
if (command === "ephemeral") {
|
|
824
|
-
const { runEphemeralCommand } = await import("./ephemeral-command-
|
|
824
|
+
const { runEphemeralCommand } = await import("./ephemeral-command-5K573ZSG.js");
|
|
825
825
|
return runEphemeralCommand(args);
|
|
826
826
|
}
|
|
827
827
|
if (command === "release") {
|
|
828
|
-
const { runReleaseCommand } = await import("./release-command-
|
|
828
|
+
const { runReleaseCommand } = await import("./release-command-QXLRJMY7.js");
|
|
829
829
|
return runReleaseCommand(args);
|
|
830
830
|
}
|
|
831
831
|
if (command === "sandbox") {
|
|
@@ -841,21 +841,21 @@ async function run(argv) {
|
|
|
841
841
|
return runSandboxExportCommand(args);
|
|
842
842
|
}
|
|
843
843
|
if (args.subcommand === "codegen") {
|
|
844
|
-
const { runCodegenCommand } = await import("./codegen-command-
|
|
844
|
+
const { runCodegenCommand } = await import("./codegen-command-RY2GWDLX.js");
|
|
845
845
|
return runCodegenCommand(args, { kind: "sandbox" });
|
|
846
846
|
}
|
|
847
847
|
throw unknownSubcommand("sandbox", args.subcommand);
|
|
848
848
|
}
|
|
849
849
|
if (command === "test") {
|
|
850
|
-
const { runTestCommand } = await import("./test-command-
|
|
850
|
+
const { runTestCommand } = await import("./test-command-BOLIU57E.js");
|
|
851
851
|
return runTestCommand(args);
|
|
852
852
|
}
|
|
853
853
|
if (command === "workspace") {
|
|
854
|
-
const { runWorkspaceCommand } = await import("./workspace-command-
|
|
854
|
+
const { runWorkspaceCommand } = await import("./workspace-command-TOB2AJ6X.js");
|
|
855
855
|
return runWorkspaceCommand(args);
|
|
856
856
|
}
|
|
857
857
|
if (command === "codegen") {
|
|
858
|
-
const { runCodegenCommand } = await import("./codegen-command-
|
|
858
|
+
const { runCodegenCommand } = await import("./codegen-command-RY2GWDLX.js");
|
|
859
859
|
return runCodegenCommand(args, { kind: "file" });
|
|
860
860
|
}
|
|
861
861
|
if (command === "profile") {
|
|
@@ -883,7 +883,7 @@ async function run(argv) {
|
|
|
883
883
|
throw unknownCommand("push");
|
|
884
884
|
}
|
|
885
885
|
if (command === "validate") {
|
|
886
|
-
const { runValidateCommand } = await import("./validate-command-
|
|
886
|
+
const { runValidateCommand } = await import("./validate-command-SYCFEYZN.js");
|
|
887
887
|
return runValidateCommand(args);
|
|
888
888
|
}
|
|
889
889
|
if (command !== "compile" && command !== "export" && command !== "paths" && command !== "routes") {
|
|
@@ -1143,4 +1143,4 @@ export {
|
|
|
1143
1143
|
exportBundleJson,
|
|
1144
1144
|
compileBundle
|
|
1145
1145
|
};
|
|
1146
|
-
//# sourceMappingURL=chunk-
|
|
1146
|
+
//# sourceMappingURL=chunk-UVLVQWWF.js.map
|
|
@@ -66,7 +66,7 @@ async function resolveMetaTarget(auth, opts, deps = {}) {
|
|
|
66
66
|
case "sandbox":
|
|
67
67
|
return resolveSandbox(auth);
|
|
68
68
|
case "ephemeral": {
|
|
69
|
-
const resolveLive = deps.resolveLive ?? (await import("./ephemeral-command-
|
|
69
|
+
const resolveLive = deps.resolveLive ?? (await import("./ephemeral-command-5K573ZSG.js")).resolveLive;
|
|
70
70
|
return resolveEphemeral(auth, opts.name, { ...deps, resolveLive });
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -75,4 +75,4 @@ async function resolveMetaTarget(auth, opts, deps = {}) {
|
|
|
75
75
|
export {
|
|
76
76
|
resolveMetaTarget
|
|
77
77
|
};
|
|
78
|
-
//# sourceMappingURL=chunk-
|
|
78
|
+
//# sourceMappingURL=chunk-XLD4BUTF.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
compileBundle
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UVLVQWWF.js";
|
|
4
4
|
import {
|
|
5
5
|
missingArgument
|
|
6
6
|
} from "./chunk-IZW6MK3U.js";
|
|
@@ -34,4 +34,4 @@ export {
|
|
|
34
34
|
assertBundleInput,
|
|
35
35
|
loadBundleText
|
|
36
36
|
};
|
|
37
|
-
//# sourceMappingURL=chunk-
|
|
37
|
+
//# sourceMappingURL=chunk-ZPEY5WE4.js.map
|
package/dist/cli.js
CHANGED
|
@@ -8,14 +8,14 @@ import {
|
|
|
8
8
|
resolveHelpRequest,
|
|
9
9
|
resolveLockPath,
|
|
10
10
|
run
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-UVLVQWWF.js";
|
|
12
12
|
import "./chunk-IZW6MK3U.js";
|
|
13
13
|
import "./chunk-EZG76F7R.js";
|
|
14
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-55VHDNW5.js";
|
|
15
15
|
import "./chunk-YYRDLFSJ.js";
|
|
16
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-5L4X5LS6.js";
|
|
17
17
|
import "./chunk-WHOJWOSV.js";
|
|
18
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-5XZ744TS.js";
|
|
19
19
|
import "./chunk-HJPTWBLH.js";
|
|
20
20
|
import "./chunk-GNPVYOPB.js";
|
|
21
21
|
import "./chunk-4HT3BNZ7.js";
|
|
@@ -4,29 +4,29 @@ import {
|
|
|
4
4
|
isMissingDependencyError,
|
|
5
5
|
runCodegenCommand,
|
|
6
6
|
verifyCrashEntry
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-MUDLJG2O.js";
|
|
8
|
+
import "./chunk-P3TTMWUP.js";
|
|
9
9
|
import "./chunk-QTNO2WD6.js";
|
|
10
10
|
import "./chunk-ZUTSMMAG.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-ODNMVJ6H.js";
|
|
12
12
|
import "./chunk-VKFQJEMW.js";
|
|
13
13
|
import "./chunk-47WDWMBJ.js";
|
|
14
14
|
import "./chunk-X4DVXBFY.js";
|
|
15
15
|
import "./chunk-3IGNIP6R.js";
|
|
16
16
|
import "./chunk-C56BC2FY.js";
|
|
17
17
|
import "./chunk-7REDODS2.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-F6JCFRKO.js";
|
|
19
|
+
import "./chunk-LU7TRWMC.js";
|
|
20
20
|
import "./chunk-4BXJGVZ3.js";
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
21
|
+
import "./chunk-U3G2UW65.js";
|
|
22
|
+
import "./chunk-UVLVQWWF.js";
|
|
23
23
|
import "./chunk-IZW6MK3U.js";
|
|
24
24
|
import "./chunk-EZG76F7R.js";
|
|
25
|
-
import "./chunk-
|
|
25
|
+
import "./chunk-55VHDNW5.js";
|
|
26
26
|
import "./chunk-YYRDLFSJ.js";
|
|
27
|
-
import "./chunk-
|
|
27
|
+
import "./chunk-5L4X5LS6.js";
|
|
28
28
|
import "./chunk-WHOJWOSV.js";
|
|
29
|
-
import "./chunk-
|
|
29
|
+
import "./chunk-5XZ744TS.js";
|
|
30
30
|
import "./chunk-HJPTWBLH.js";
|
|
31
31
|
import "./chunk-GNPVYOPB.js";
|
|
32
32
|
import "./chunk-4HT3BNZ7.js";
|
|
@@ -37,4 +37,4 @@ export {
|
|
|
37
37
|
runCodegenCommand,
|
|
38
38
|
verifyCrashEntry
|
|
39
39
|
};
|
|
40
|
-
//# sourceMappingURL=codegen-command-
|
|
40
|
+
//# sourceMappingURL=codegen-command-RY2GWDLX.js.map
|
package/dist/codegen.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
assertBundleInput,
|
|
3
3
|
loadBundleText
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ZPEY5WE4.js";
|
|
5
5
|
import {
|
|
6
6
|
importWorkspaceArchive
|
|
7
7
|
} from "./chunk-5WGEURVI.js";
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
getAccessToken
|
|
43
43
|
} from "./chunk-C56BC2FY.js";
|
|
44
44
|
import "./chunk-7REDODS2.js";
|
|
45
|
-
import "./chunk-
|
|
45
|
+
import "./chunk-UVLVQWWF.js";
|
|
46
46
|
import {
|
|
47
47
|
assertWritableDest
|
|
48
48
|
} from "./chunk-IZW6MK3U.js";
|
|
@@ -60,11 +60,11 @@ import {
|
|
|
60
60
|
warn,
|
|
61
61
|
withSpinner
|
|
62
62
|
} from "./chunk-EZG76F7R.js";
|
|
63
|
-
import "./chunk-
|
|
63
|
+
import "./chunk-55VHDNW5.js";
|
|
64
64
|
import "./chunk-YYRDLFSJ.js";
|
|
65
|
-
import "./chunk-
|
|
65
|
+
import "./chunk-5L4X5LS6.js";
|
|
66
66
|
import "./chunk-WHOJWOSV.js";
|
|
67
|
-
import "./chunk-
|
|
67
|
+
import "./chunk-5XZ744TS.js";
|
|
68
68
|
import "./chunk-HJPTWBLH.js";
|
|
69
69
|
import "./chunk-GNPVYOPB.js";
|
|
70
70
|
import "./chunk-4HT3BNZ7.js";
|
|
@@ -158,7 +158,7 @@ async function runDeployedTests(auth, dest, summary, args) {
|
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
async function runTestsOrThrow(auth, dest, summary, args) {
|
|
161
|
-
const { runSuite, EXIT_TESTS_FAILED } = await import("./test-command-
|
|
161
|
+
const { runSuite, EXIT_TESTS_FAILED } = await import("./test-command-BOLIU57E.js");
|
|
162
162
|
let target;
|
|
163
163
|
if (dest === "ephemeral") {
|
|
164
164
|
if (summary.url === void 0) {
|
|
@@ -168,7 +168,7 @@ async function runTestsOrThrow(auth, dest, summary, args) {
|
|
|
168
168
|
const name = summary.ephemeral?.name;
|
|
169
169
|
target = { base: summary.url, workspaceId: 1, label: name ? `ephemeral ${name}` : "the ephemeral", env: name };
|
|
170
170
|
} else {
|
|
171
|
-
const { resolveMetaTarget } = await import("./env-target-
|
|
171
|
+
const { resolveMetaTarget } = await import("./env-target-7C2GKBCY.js");
|
|
172
172
|
target = await resolveMetaTarget(auth, { dest: "sandbox" });
|
|
173
173
|
}
|
|
174
174
|
const outcomes = await runSuite(auth, target, {
|
|
@@ -448,4 +448,4 @@ export {
|
|
|
448
448
|
runDeployedTests,
|
|
449
449
|
verifyMicroservices
|
|
450
450
|
};
|
|
451
|
-
//# sourceMappingURL=deploy-command-
|
|
451
|
+
//# sourceMappingURL=deploy-command-DSISLUW5.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
resolveMetaTarget
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XLD4BUTF.js";
|
|
4
4
|
import "./chunk-DGSF2Q5H.js";
|
|
5
5
|
import "./chunk-7DKX2SPN.js";
|
|
6
6
|
import "./chunk-NDZFBZHC.js";
|
|
@@ -13,4 +13,4 @@ import "./chunk-GNPVYOPB.js";
|
|
|
13
13
|
export {
|
|
14
14
|
resolveMetaTarget
|
|
15
15
|
};
|
|
16
|
-
//# sourceMappingURL=env-target-
|
|
16
|
+
//# sourceMappingURL=env-target-7C2GKBCY.js.map
|
|
@@ -90,7 +90,7 @@ async function runEphemeralCommand(args) {
|
|
|
90
90
|
case "impersonate":
|
|
91
91
|
return runImpersonate(args);
|
|
92
92
|
case "codegen": {
|
|
93
|
-
const { runCodegenCommand } = await import("./codegen-command-
|
|
93
|
+
const { runCodegenCommand } = await import("./codegen-command-RY2GWDLX.js");
|
|
94
94
|
return runCodegenCommand(args, { kind: "ephemeral" });
|
|
95
95
|
}
|
|
96
96
|
default:
|
|
@@ -239,4 +239,4 @@ export {
|
|
|
239
239
|
resolveLive,
|
|
240
240
|
runEphemeralCommand
|
|
241
241
|
};
|
|
242
|
-
//# sourceMappingURL=ephemeral-command-
|
|
242
|
+
//# sourceMappingURL=ephemeral-command-5K573ZSG.js.map
|