copilotkit 2.1.0 → 2.1.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/index.js +180 -109
- package/package.json +1 -1
- package/src/commands/init.d.ts.map +1 -1
- package/src/config.d.ts.map +1 -1
- package/src/services/project-scaffold.d.ts.map +1 -1
- package/src/services/telemetry/event-properties.d.ts +29 -3
- package/src/services/telemetry/event-properties.d.ts.map +1 -1
- package/src/types.d.ts.map +1 -1
package/index.js
CHANGED
|
@@ -254,12 +254,18 @@ function resolveInitTemplate(options) {
|
|
|
254
254
|
return THREADS_TEMPLATE;
|
|
255
255
|
}
|
|
256
256
|
if (options.framework === null) {
|
|
257
|
-
throw
|
|
258
|
-
|
|
257
|
+
throw tagError(
|
|
258
|
+
new Error(
|
|
259
|
+
"Framework selection is required for non-Intelligence templates."
|
|
260
|
+
),
|
|
261
|
+
TELEMETRY_ERROR_CODES.INVALID_FRAMEWORK
|
|
259
262
|
);
|
|
260
263
|
}
|
|
261
264
|
if (!isAgentFramework(options.framework)) {
|
|
262
|
-
throw
|
|
265
|
+
throw tagError(
|
|
266
|
+
new Error(formatInvalidFrameworkError(options.framework)),
|
|
267
|
+
TELEMETRY_ERROR_CODES.INVALID_FRAMEWORK
|
|
268
|
+
);
|
|
263
269
|
}
|
|
264
270
|
return FRAMEWORK_TEMPLATES[options.framework];
|
|
265
271
|
}
|
|
@@ -269,6 +275,7 @@ var init_types = __esm({
|
|
|
269
275
|
"use strict";
|
|
270
276
|
init_agentcore_config();
|
|
271
277
|
init_showcase_config();
|
|
278
|
+
init_event_properties();
|
|
272
279
|
AGENT_FRAMEWORKS = [
|
|
273
280
|
"langgraph-py",
|
|
274
281
|
"langgraph-js",
|
|
@@ -564,6 +571,117 @@ var init_types = __esm({
|
|
|
564
571
|
}
|
|
565
572
|
});
|
|
566
573
|
|
|
574
|
+
// apps/cli/src/services/telemetry/event-properties.ts
|
|
575
|
+
import { createHash } from "node:crypto";
|
|
576
|
+
function tagError(err, code) {
|
|
577
|
+
err.code = code;
|
|
578
|
+
return err;
|
|
579
|
+
}
|
|
580
|
+
function detectCi(env4) {
|
|
581
|
+
return CI_INDICATOR_VARS.some((name) => {
|
|
582
|
+
const value = env4[name];
|
|
583
|
+
return typeof value === "string" && value.length > 0 && value !== "false";
|
|
584
|
+
});
|
|
585
|
+
}
|
|
586
|
+
function hashEmail(email3) {
|
|
587
|
+
return createHash("sha256").update(email3).digest("hex").slice(0, 16);
|
|
588
|
+
}
|
|
589
|
+
function buildBaseProperties(deps) {
|
|
590
|
+
const base = {
|
|
591
|
+
installation_id: deps.installationId,
|
|
592
|
+
session_id: deps.sessionId,
|
|
593
|
+
cli_version: deps.buildInfo.version,
|
|
594
|
+
cli_build_number: deps.buildInfo.buildNumber,
|
|
595
|
+
cli_commit_sha: deps.buildInfo.commitSha,
|
|
596
|
+
node_version: deps.nodeVersion,
|
|
597
|
+
platform: String(deps.platform),
|
|
598
|
+
arch: deps.arch,
|
|
599
|
+
is_ci: detectCi(deps.env),
|
|
600
|
+
is_authenticated: deps.auth !== null
|
|
601
|
+
};
|
|
602
|
+
if (deps.auth) {
|
|
603
|
+
base.clerk_user_id = deps.auth.userId;
|
|
604
|
+
base.email_hash = hashEmail(deps.auth.email);
|
|
605
|
+
}
|
|
606
|
+
return base;
|
|
607
|
+
}
|
|
608
|
+
function subcommandForInit(flags) {
|
|
609
|
+
if (flags.framework !== void 0) {
|
|
610
|
+
return isAgentFramework(flags.framework) ? flags.framework : "invalid";
|
|
611
|
+
}
|
|
612
|
+
if (flags.intelligence === true) {
|
|
613
|
+
return "intelligence";
|
|
614
|
+
}
|
|
615
|
+
return "interactive";
|
|
616
|
+
}
|
|
617
|
+
function classifyError(err) {
|
|
618
|
+
if (!(err instanceof Error)) {
|
|
619
|
+
return "unknown";
|
|
620
|
+
}
|
|
621
|
+
if (err.name === "AbortError") {
|
|
622
|
+
return "timeout";
|
|
623
|
+
}
|
|
624
|
+
const status = err.status;
|
|
625
|
+
if (err.name === "ApiClientError" && typeof status === "number") {
|
|
626
|
+
if (status === 401 || status === 403)
|
|
627
|
+
return "auth";
|
|
628
|
+
if (status === 408)
|
|
629
|
+
return "timeout";
|
|
630
|
+
if (status === 429)
|
|
631
|
+
return "network";
|
|
632
|
+
if (status >= 500)
|
|
633
|
+
return "network";
|
|
634
|
+
if (status >= 400)
|
|
635
|
+
return "validation";
|
|
636
|
+
}
|
|
637
|
+
const code = err.code;
|
|
638
|
+
if (typeof code === "string") {
|
|
639
|
+
if (code === "TEMPLATE_FETCH_FAILED")
|
|
640
|
+
return "template_fetch";
|
|
641
|
+
if (code === "GIT_FAILED")
|
|
642
|
+
return "git";
|
|
643
|
+
if (code === "PREREQUISITE_MISSING")
|
|
644
|
+
return "prerequisite_missing";
|
|
645
|
+
if (code === "INVALID_FRAMEWORK")
|
|
646
|
+
return "validation";
|
|
647
|
+
if (code === "AUTH_FAILED")
|
|
648
|
+
return "auth";
|
|
649
|
+
if (code === "USER_ABORTED")
|
|
650
|
+
return "user_aborted";
|
|
651
|
+
if (code === "ENOENT" || code === "EACCES" || code === "EPERM") {
|
|
652
|
+
return "filesystem";
|
|
653
|
+
}
|
|
654
|
+
if (code === "ECONNREFUSED" || code === "ENOTFOUND" || code === "ETIMEDOUT") {
|
|
655
|
+
return "network";
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
return "unknown";
|
|
659
|
+
}
|
|
660
|
+
var TELEMETRY_ERROR_CODES, CI_INDICATOR_VARS;
|
|
661
|
+
var init_event_properties = __esm({
|
|
662
|
+
"apps/cli/src/services/telemetry/event-properties.ts"() {
|
|
663
|
+
"use strict";
|
|
664
|
+
init_types();
|
|
665
|
+
TELEMETRY_ERROR_CODES = {
|
|
666
|
+
TEMPLATE_FETCH_FAILED: "TEMPLATE_FETCH_FAILED",
|
|
667
|
+
GIT_FAILED: "GIT_FAILED",
|
|
668
|
+
PREREQUISITE_MISSING: "PREREQUISITE_MISSING",
|
|
669
|
+
INVALID_FRAMEWORK: "INVALID_FRAMEWORK",
|
|
670
|
+
AUTH_FAILED: "AUTH_FAILED",
|
|
671
|
+
USER_ABORTED: "USER_ABORTED"
|
|
672
|
+
};
|
|
673
|
+
CI_INDICATOR_VARS = [
|
|
674
|
+
"CI",
|
|
675
|
+
"GITHUB_ACTIONS",
|
|
676
|
+
"BUILDKITE",
|
|
677
|
+
"CIRCLECI",
|
|
678
|
+
"GITLAB_CI",
|
|
679
|
+
"JENKINS_URL",
|
|
680
|
+
"TF_BUILD"
|
|
681
|
+
];
|
|
682
|
+
}
|
|
683
|
+
});
|
|
684
|
+
|
|
567
685
|
// apps/cli/src/config.ts
|
|
568
686
|
var config_exports = {};
|
|
569
687
|
__export(config_exports, {
|
|
@@ -587,17 +705,17 @@ function setOpsFrontendUrl(url2) {
|
|
|
587
705
|
opsFrontendUrlOverride = url2;
|
|
588
706
|
}
|
|
589
707
|
function getTelemetryEndpointUrl() {
|
|
590
|
-
const override = process.env["COPILOTKIT_TELEMETRY_ENDPOINT"];
|
|
591
|
-
if (override
|
|
708
|
+
const override = process.env["COPILOTKIT_TELEMETRY_ENDPOINT"]?.trim();
|
|
709
|
+
if (override) {
|
|
592
710
|
return override;
|
|
593
711
|
}
|
|
594
|
-
return true ? "https://telemetry.copilotkit.ai" : "https://telemetry.copilotkit.ai";
|
|
712
|
+
return true ? "https://telemetry.copilotkit.ai/ingest" : "https://telemetry.copilotkit.ai/ingest";
|
|
595
713
|
}
|
|
596
714
|
function getBuildInfo() {
|
|
597
715
|
return {
|
|
598
|
-
version: true ? "2.1.
|
|
599
|
-
buildNumber: true ? "
|
|
600
|
-
commitSha: true ? "
|
|
716
|
+
version: true ? "2.1.2" : "dev",
|
|
717
|
+
buildNumber: true ? "26361986170" : "dev",
|
|
718
|
+
commitSha: true ? "9122441792373c7ad5581fb458beb54d16839058" : "dev"
|
|
601
719
|
};
|
|
602
720
|
}
|
|
603
721
|
var opsApiUrlOverride, opsFrontendUrlOverride;
|
|
@@ -73946,7 +74064,10 @@ async function scaffoldProject(options) {
|
|
|
73946
74064
|
if (fs13.existsSync(projectDir)) {
|
|
73947
74065
|
const entries = fs13.readdirSync(projectDir);
|
|
73948
74066
|
if (entries.length > 0) {
|
|
73949
|
-
throw
|
|
74067
|
+
throw tagError(
|
|
74068
|
+
new Error(`${projectDir} already exists and is not empty`),
|
|
74069
|
+
TELEMETRY_ERROR_CODES.PREREQUISITE_MISSING
|
|
74070
|
+
);
|
|
73950
74071
|
}
|
|
73951
74072
|
}
|
|
73952
74073
|
const source = typeof template === "string" ? parseGitHubUrl(template) : {
|
|
@@ -73962,29 +74083,39 @@ async function cloneTemplate(source, destinationPath) {
|
|
|
73962
74083
|
const tempDir = fs13.mkdtempSync(path9.join(os6.tmpdir(), "copilotkit-clone-"));
|
|
73963
74084
|
const isWholeRepo = subdirectoryPath === "";
|
|
73964
74085
|
try {
|
|
73965
|
-
|
|
73966
|
-
|
|
73967
|
-
cwd: tempDir,
|
|
73968
|
-
|
|
73969
|
-
|
|
74086
|
+
runGit(
|
|
74087
|
+
"git init",
|
|
74088
|
+
{ cwd: tempDir, stdio: "pipe" },
|
|
74089
|
+
TELEMETRY_ERROR_CODES.GIT_FAILED
|
|
74090
|
+
);
|
|
74091
|
+
runGit(
|
|
74092
|
+
`git remote add origin https://github.com/${owner}/${repo}.git`,
|
|
74093
|
+
{ cwd: tempDir, stdio: "pipe" },
|
|
74094
|
+
TELEMETRY_ERROR_CODES.GIT_FAILED
|
|
74095
|
+
);
|
|
73970
74096
|
if (!isWholeRepo) {
|
|
73971
|
-
|
|
73972
|
-
|
|
73973
|
-
stdio: "pipe"
|
|
73974
|
-
|
|
74097
|
+
runGit(
|
|
74098
|
+
"git config core.sparseCheckout true",
|
|
74099
|
+
{ cwd: tempDir, stdio: "pipe" },
|
|
74100
|
+
TELEMETRY_ERROR_CODES.GIT_FAILED
|
|
74101
|
+
);
|
|
73975
74102
|
fs13.writeFileSync(
|
|
73976
74103
|
path9.join(tempDir, ".git/info/sparse-checkout"),
|
|
73977
74104
|
subdirectoryPath
|
|
73978
74105
|
);
|
|
73979
74106
|
}
|
|
73980
|
-
|
|
73981
|
-
|
|
73982
|
-
stdio: "pipe"
|
|
73983
|
-
|
|
74107
|
+
runGit(
|
|
74108
|
+
`git pull origin ${branch} --depth=1`,
|
|
74109
|
+
{ cwd: tempDir, stdio: "pipe" },
|
|
74110
|
+
TELEMETRY_ERROR_CODES.TEMPLATE_FETCH_FAILED
|
|
74111
|
+
);
|
|
73984
74112
|
const sourcePath = isWholeRepo ? tempDir : path9.join(tempDir, subdirectoryPath);
|
|
73985
74113
|
if (!isWholeRepo && !fs13.existsSync(sourcePath)) {
|
|
73986
|
-
throw
|
|
73987
|
-
|
|
74114
|
+
throw tagError(
|
|
74115
|
+
new Error(
|
|
74116
|
+
`Template directory '${subdirectoryPath}' not found in the repository.`
|
|
74117
|
+
),
|
|
74118
|
+
TELEMETRY_ERROR_CODES.TEMPLATE_FETCH_FAILED
|
|
73988
74119
|
);
|
|
73989
74120
|
}
|
|
73990
74121
|
fs13.mkdirSync(destinationPath, { recursive: true });
|
|
@@ -74014,6 +74145,14 @@ async function copyDirectory(source, destination, excludeGit = false) {
|
|
|
74014
74145
|
}
|
|
74015
74146
|
}
|
|
74016
74147
|
}
|
|
74148
|
+
function runGit(cmd, opts, code) {
|
|
74149
|
+
try {
|
|
74150
|
+
execSync(cmd, opts);
|
|
74151
|
+
} catch (cause) {
|
|
74152
|
+
const wrapped = cause instanceof Error ? cause : new Error(`git command failed: ${cmd}`);
|
|
74153
|
+
throw tagError(wrapped, code);
|
|
74154
|
+
}
|
|
74155
|
+
}
|
|
74017
74156
|
function parseGitHubUrl(githubUrl) {
|
|
74018
74157
|
const url2 = new URL(githubUrl);
|
|
74019
74158
|
if (url2.hostname !== "github.com") {
|
|
@@ -74089,6 +74228,7 @@ async function commitInitial(projectDir) {
|
|
|
74089
74228
|
var init_project_scaffold = __esm({
|
|
74090
74229
|
"apps/cli/src/services/project-scaffold.ts"() {
|
|
74091
74230
|
"use strict";
|
|
74231
|
+
init_event_properties();
|
|
74092
74232
|
}
|
|
74093
74233
|
});
|
|
74094
74234
|
|
|
@@ -74840,11 +74980,17 @@ async function ensureCliToken2(dependencies, onTerminalSessionInvalidation) {
|
|
|
74840
74980
|
session = await dependencies.verifyAndRefresh();
|
|
74841
74981
|
}
|
|
74842
74982
|
if (!session) {
|
|
74843
|
-
throw
|
|
74983
|
+
throw tagError(
|
|
74984
|
+
new Error("Authentication failed. Please run: copilotkit login"),
|
|
74985
|
+
TELEMETRY_ERROR_CODES.AUTH_FAILED
|
|
74986
|
+
);
|
|
74844
74987
|
}
|
|
74845
74988
|
const cliToken = dependencies.getCliToken();
|
|
74846
74989
|
if (!cliToken) {
|
|
74847
|
-
throw
|
|
74990
|
+
throw tagError(
|
|
74991
|
+
new Error("No CLI token found after authentication."),
|
|
74992
|
+
TELEMETRY_ERROR_CODES.AUTH_FAILED
|
|
74993
|
+
);
|
|
74848
74994
|
}
|
|
74849
74995
|
return cliToken;
|
|
74850
74996
|
}
|
|
@@ -75073,7 +75219,10 @@ async function runInit(flags) {
|
|
|
75073
75219
|
const frameworkFlagRaw = flags.framework?.trim() ?? null;
|
|
75074
75220
|
const frameworkFlag = frameworkFlagRaw === null ? null : resolveFrameworkAlias(frameworkFlagRaw);
|
|
75075
75221
|
if (frameworkFlag !== null && !isAgentFramework(frameworkFlag)) {
|
|
75076
|
-
throw
|
|
75222
|
+
throw tagError(
|
|
75223
|
+
new Error(formatInvalidFrameworkError(frameworkFlagRaw ?? "")),
|
|
75224
|
+
TELEMETRY_ERROR_CODES.INVALID_FRAMEWORK
|
|
75225
|
+
);
|
|
75077
75226
|
}
|
|
75078
75227
|
const initialFramework = frameworkFlag;
|
|
75079
75228
|
const { waitUntilExit } = render_default(
|
|
@@ -75100,6 +75249,7 @@ var init_init = __esm({
|
|
|
75100
75249
|
init_api_client();
|
|
75101
75250
|
init_project_scaffold();
|
|
75102
75251
|
init_config_service();
|
|
75252
|
+
init_event_properties();
|
|
75103
75253
|
await init_banner();
|
|
75104
75254
|
await init_browser_login();
|
|
75105
75255
|
await init_cli_tip();
|
|
@@ -89917,96 +90067,17 @@ var init_kite = __esm({
|
|
|
89917
90067
|
});
|
|
89918
90068
|
|
|
89919
90069
|
// apps/cli/src/index.ts
|
|
90070
|
+
init_event_properties();
|
|
89920
90071
|
import { parseArgs } from "node:util";
|
|
89921
90072
|
import { realpathSync } from "node:fs";
|
|
89922
90073
|
import path11 from "node:path";
|
|
89923
90074
|
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
89924
90075
|
|
|
89925
|
-
// apps/cli/src/services/telemetry/event-properties.ts
|
|
89926
|
-
init_types();
|
|
89927
|
-
import { createHash } from "node:crypto";
|
|
89928
|
-
var CI_INDICATOR_VARS = [
|
|
89929
|
-
"CI",
|
|
89930
|
-
"GITHUB_ACTIONS",
|
|
89931
|
-
"BUILDKITE",
|
|
89932
|
-
"CIRCLECI",
|
|
89933
|
-
"GITLAB_CI",
|
|
89934
|
-
"JENKINS_URL",
|
|
89935
|
-
"TF_BUILD"
|
|
89936
|
-
];
|
|
89937
|
-
function detectCi(env4) {
|
|
89938
|
-
return CI_INDICATOR_VARS.some((name) => {
|
|
89939
|
-
const value = env4[name];
|
|
89940
|
-
return typeof value === "string" && value.length > 0 && value !== "false";
|
|
89941
|
-
});
|
|
89942
|
-
}
|
|
89943
|
-
function hashEmail(email3) {
|
|
89944
|
-
return createHash("sha256").update(email3).digest("hex").slice(0, 16);
|
|
89945
|
-
}
|
|
89946
|
-
function buildBaseProperties(deps) {
|
|
89947
|
-
const base = {
|
|
89948
|
-
installation_id: deps.installationId,
|
|
89949
|
-
session_id: deps.sessionId,
|
|
89950
|
-
cli_version: deps.buildInfo.version,
|
|
89951
|
-
cli_build_number: deps.buildInfo.buildNumber,
|
|
89952
|
-
cli_commit_sha: deps.buildInfo.commitSha,
|
|
89953
|
-
node_version: deps.nodeVersion,
|
|
89954
|
-
platform: String(deps.platform),
|
|
89955
|
-
arch: deps.arch,
|
|
89956
|
-
is_ci: detectCi(deps.env),
|
|
89957
|
-
is_authenticated: deps.auth !== null
|
|
89958
|
-
};
|
|
89959
|
-
if (deps.auth) {
|
|
89960
|
-
base.clerk_user_id = deps.auth.userId;
|
|
89961
|
-
base.email_hash = hashEmail(deps.auth.email);
|
|
89962
|
-
}
|
|
89963
|
-
return base;
|
|
89964
|
-
}
|
|
89965
|
-
function subcommandForInit(flags) {
|
|
89966
|
-
if (flags.framework !== void 0) {
|
|
89967
|
-
return isAgentFramework(flags.framework) ? flags.framework : "invalid";
|
|
89968
|
-
}
|
|
89969
|
-
if (flags.intelligence === true) {
|
|
89970
|
-
return "intelligence";
|
|
89971
|
-
}
|
|
89972
|
-
return "interactive";
|
|
89973
|
-
}
|
|
89974
|
-
function classifyError(err) {
|
|
89975
|
-
if (!(err instanceof Error)) {
|
|
89976
|
-
return "unknown";
|
|
89977
|
-
}
|
|
89978
|
-
if (err.name === "AbortError") {
|
|
89979
|
-
return "timeout";
|
|
89980
|
-
}
|
|
89981
|
-
const status = err.status;
|
|
89982
|
-
if (err.name === "ApiClientError" && typeof status === "number") {
|
|
89983
|
-
if (status === 401 || status === 403)
|
|
89984
|
-
return "auth";
|
|
89985
|
-
if (status === 408)
|
|
89986
|
-
return "timeout";
|
|
89987
|
-
if (status === 429)
|
|
89988
|
-
return "network";
|
|
89989
|
-
if (status >= 500)
|
|
89990
|
-
return "network";
|
|
89991
|
-
if (status >= 400)
|
|
89992
|
-
return "validation";
|
|
89993
|
-
}
|
|
89994
|
-
const code = err.code;
|
|
89995
|
-
if (typeof code === "string") {
|
|
89996
|
-
if (code === "ENOENT" || code === "EACCES" || code === "EPERM") {
|
|
89997
|
-
return "filesystem";
|
|
89998
|
-
}
|
|
89999
|
-
if (code === "ECONNREFUSED" || code === "ENOTFOUND" || code === "ETIMEDOUT") {
|
|
90000
|
-
return "network";
|
|
90001
|
-
}
|
|
90002
|
-
}
|
|
90003
|
-
return "unknown";
|
|
90004
|
-
}
|
|
90005
|
-
|
|
90006
90076
|
// apps/cli/src/services/telemetry/index.ts
|
|
90007
90077
|
init_config();
|
|
90008
90078
|
init_config_service();
|
|
90009
90079
|
init_cli_logs();
|
|
90080
|
+
init_event_properties();
|
|
90010
90081
|
import { randomUUID as randomUUID2 } from "node:crypto";
|
|
90011
90082
|
|
|
90012
90083
|
// apps/cli/src/services/telemetry/installation-id.ts
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../../../apps/cli/src/commands/init.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgC,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAMxE,OAAO,KAAK,EAEV,WAAW,EACX,sBAAsB,EACvB,MAAM,aAAa,CAAC;AAOrB,OAAO,EAEL,KAAK,EAEL,gBAAgB,EACjB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EACL,eAAe,EAIf,cAAc,EACf,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../../../apps/cli/src/commands/init.tsx"],"names":[],"mappings":"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"}
|
package/src/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../apps/cli/src/config.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAcH,kDAAkD;AAClD,wBAAgB,YAAY,IAAI,MAAM,CAErC;AAED,2CAA2C;AAC3C,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAE9C;AAED,8EAA8E;AAC9E,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AAED,gDAAgD;AAChD,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAEnD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,uBAAuB,IAAI,MAAM,CAQhD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,YAAY,IAAI;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../apps/cli/src/config.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAcH,kDAAkD;AAClD,wBAAgB,YAAY,IAAI,MAAM,CAErC;AAED,2CAA2C;AAC3C,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAE9C;AAED,8EAA8E;AAC9E,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AAED,gDAAgD;AAChD,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAEnD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,uBAAuB,IAAI,MAAM,CAQhD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,YAAY,IAAI;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB,CAUA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project-scaffold.d.ts","sourceRoot":"","sources":["../../../../../apps/cli/src/services/project-scaffold.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"project-scaffold.d.ts","sourceRoot":"","sources":["../../../../../apps/cli/src/services/project-scaffold.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAOlD;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,iEAAiE;IACjE,UAAU,EAAE,MAAM,CAAC;IACnB,2EAA2E;IAC3E,QAAQ,EAAE,MAAM,GAAG,cAAc,CAAC;CACnC;AAED;;;;;GAKG;AACH,wBAAsB,eAAe,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CAwB7E;AAoLD;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAU1D;AAED;;;;;;;;;GASG;AACH,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,GACjB,IAAI,CAsBN;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAkB5D;AAED;;;;GAIG;AACH,wBAAsB,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAMrE"}
|
|
@@ -1,9 +1,35 @@
|
|
|
1
1
|
/** Bounded enum of `command` values emitted on telemetry events. */
|
|
2
|
-
export type TelemetryCommand =
|
|
2
|
+
export type TelemetryCommand = 'init' | 'login' | 'logout' | 'license' | 'whoami' | 'docs' | 'help' | 'version' | 'unknown';
|
|
3
3
|
/** Bounded enum of `outcome` values emitted on telemetry events. */
|
|
4
|
-
export type TelemetryOutcome =
|
|
4
|
+
export type TelemetryOutcome = 'started' | 'succeeded' | 'failed';
|
|
5
5
|
/** Bounded enum of `error_code` values emitted on failed events. */
|
|
6
|
-
export type TelemetryErrorCode =
|
|
6
|
+
export type TelemetryErrorCode = 'validation' | 'auth' | 'network' | 'timeout' | 'prerequisite_missing' | 'template_fetch' | 'git' | 'filesystem' | 'user_aborted' | 'unknown';
|
|
7
|
+
/**
|
|
8
|
+
* Stable string discriminators set on `Error.code` so {@link classifyError}
|
|
9
|
+
* can map a thrown error to a {@link TelemetryErrorCode} bucket. Keep throw
|
|
10
|
+
* sites and the classifier referencing the same constants — typo'd literals
|
|
11
|
+
* silently degrade to `"unknown"`.
|
|
12
|
+
*/
|
|
13
|
+
export declare const TELEMETRY_ERROR_CODES: {
|
|
14
|
+
readonly TEMPLATE_FETCH_FAILED: "TEMPLATE_FETCH_FAILED";
|
|
15
|
+
readonly GIT_FAILED: "GIT_FAILED";
|
|
16
|
+
readonly PREREQUISITE_MISSING: "PREREQUISITE_MISSING";
|
|
17
|
+
readonly INVALID_FRAMEWORK: "INVALID_FRAMEWORK";
|
|
18
|
+
readonly AUTH_FAILED: "AUTH_FAILED";
|
|
19
|
+
readonly USER_ABORTED: "USER_ABORTED";
|
|
20
|
+
};
|
|
21
|
+
/** Union of valid {@link TELEMETRY_ERROR_CODES} values. */
|
|
22
|
+
export type TelemetryErrorTag = (typeof TELEMETRY_ERROR_CODES)[keyof typeof TELEMETRY_ERROR_CODES];
|
|
23
|
+
/**
|
|
24
|
+
* Attaches a stable {@link TelemetryErrorTag} to an Error's `code` field so
|
|
25
|
+
* {@link classifyError} can bucket the failure. Returns the same instance for
|
|
26
|
+
* inline use in `throw` statements.
|
|
27
|
+
*
|
|
28
|
+
* @param err - The error to tag.
|
|
29
|
+
* @param code - The discriminator to set.
|
|
30
|
+
* @returns The same error instance, with `.code` assigned.
|
|
31
|
+
*/
|
|
32
|
+
export declare function tagError<E extends Error>(err: E, code: TelemetryErrorTag): E;
|
|
7
33
|
/**
|
|
8
34
|
* Minimal session payload read from the auth store when building base
|
|
9
35
|
* properties. Decouples this module from the full {@link StoredAuth} shape.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-properties.d.ts","sourceRoot":"","sources":["../../../../../../apps/cli/src/services/telemetry/event-properties.ts"],"names":[],"mappings":"AAGA,oEAAoE;AACpE,MAAM,MAAM,gBAAgB,GACxB,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,MAAM,GACN,MAAM,GACN,SAAS,GACT,SAAS,CAAC;AAEd,oEAAoE;AACpE,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;AAElE,oEAAoE;AACpE,MAAM,MAAM,kBAAkB,GAC1B,YAAY,GACZ,MAAM,GACN,SAAS,GACT,SAAS,GACT,sBAAsB,GACtB,gBAAgB,GAChB,KAAK,GACL,YAAY,GACZ,cAAc,GACd,SAAS,CAAC;AAEd;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,+DAA+D;AAC/D,MAAM,WAAW,QAAQ;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,kBAAkB,CAAC;IAC9B,IAAI,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnC,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC;IACnC,IAAI,EAAE,MAAM,CAAC;CACd;AAED,mDAAmD;AACnD,MAAM,WAAW,cAAc;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;IACf,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAaD;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC,UAAU,GAAG,OAAO,CAKxD;AAED;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAE/C;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,QAAQ,GAAG,cAAc,CAoBlE;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,mBAAmB,GAAG,MAAM,CAQpE;AAED;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,GAAG,EAAE,OAAO,GAAG,kBAAkB,
|
|
1
|
+
{"version":3,"file":"event-properties.d.ts","sourceRoot":"","sources":["../../../../../../apps/cli/src/services/telemetry/event-properties.ts"],"names":[],"mappings":"AAGA,oEAAoE;AACpE,MAAM,MAAM,gBAAgB,GACxB,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,MAAM,GACN,MAAM,GACN,SAAS,GACT,SAAS,CAAC;AAEd,oEAAoE;AACpE,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;AAElE,oEAAoE;AACpE,MAAM,MAAM,kBAAkB,GAC1B,YAAY,GACZ,MAAM,GACN,SAAS,GACT,SAAS,GACT,sBAAsB,GACtB,gBAAgB,GAChB,KAAK,GACL,YAAY,GACZ,cAAc,GACd,SAAS,CAAC;AAEd;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;;;;;CAOxB,CAAC;AAEX,2DAA2D;AAC3D,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,OAAO,qBAAqB,CAAC,CAAC;AAErE;;;;;;;;GAQG;AACH,wBAAgB,QAAQ,CAAC,CAAC,SAAS,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,iBAAiB,GAAG,CAAC,CAG5E;AAED;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,+DAA+D;AAC/D,MAAM,WAAW,QAAQ;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,kBAAkB,CAAC;IAC9B,IAAI,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnC,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC;IACnC,IAAI,EAAE,MAAM,CAAC;CACd;AAED,mDAAmD;AACnD,MAAM,WAAW,cAAc;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;IACf,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAaD;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC,UAAU,GAAG,OAAO,CAKxD;AAED;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAE/C;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,QAAQ,GAAG,cAAc,CAoBlE;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,mBAAmB,GAAG,MAAM,CAQpE;AAED;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,GAAG,EAAE,OAAO,GAAG,kBAAkB,CAuC9D"}
|
package/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../apps/cli/src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../apps/cli/src/types.ts"],"names":[],"mappings":"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"}
|