@envpilot/cli 1.15.1 → 1.16.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.
|
@@ -7,7 +7,7 @@ function initSentry() {
|
|
|
7
7
|
Sentry.init({
|
|
8
8
|
dsn,
|
|
9
9
|
environment: "cli",
|
|
10
|
-
release: true ? "1.
|
|
10
|
+
release: true ? "1.16.0" : "0.0.0",
|
|
11
11
|
// All EnvPilot surfaces report to one Sentry project; the surface tag
|
|
12
12
|
// is how dashboards tell web / cli / extension events apart.
|
|
13
13
|
initialScope: { tags: { surface: "cli" } },
|
|
@@ -466,7 +466,7 @@ function isInteractiveTerminal() {
|
|
|
466
466
|
async function openTUI() {
|
|
467
467
|
const [{ render }, { CLIApp }, { PressAnyKey }] = await Promise.all([
|
|
468
468
|
import("ink"),
|
|
469
|
-
import("./app-
|
|
469
|
+
import("./app-HQ5P6QE6.js"),
|
|
470
470
|
import("./press-any-key-64XFP4O2.js")
|
|
471
471
|
]);
|
|
472
472
|
while (true) {
|
|
@@ -1022,31 +1022,31 @@ async function getConvexClient() {
|
|
|
1022
1022
|
var fnRef = makeFunctionReference;
|
|
1023
1023
|
var refs = {
|
|
1024
1024
|
listOrganizations: fnRef(
|
|
1025
|
-
"organizations:listForUser"
|
|
1025
|
+
"features/organizations/queries:listForUser"
|
|
1026
1026
|
),
|
|
1027
1027
|
getMembership: fnRef(
|
|
1028
|
-
"organizations:getMembership"
|
|
1028
|
+
"features/organizations/queries:getMembership"
|
|
1029
1029
|
),
|
|
1030
|
-
listProjectsWithStats: fnRef("projects:listWithStats"),
|
|
1030
|
+
listProjectsWithStats: fnRef("features/projects/queries:listWithStats"),
|
|
1031
1031
|
getProject: fnRef(
|
|
1032
|
-
"projects:getById"
|
|
1032
|
+
"features/projects/queries:getById"
|
|
1033
1033
|
),
|
|
1034
|
-
getProjectMembership: fnRef("
|
|
1035
|
-
listVariablesWithAccess: fnRef("variables:listWithAccess"),
|
|
1036
|
-
listVariableRequests: fnRef("
|
|
1037
|
-
getResolvedFeatures: fnRef("featureRegistry:getResolvedFeatures"),
|
|
1038
|
-
getResolvedFeaturesBatch: fnRef("featureRegistry:getResolvedFeaturesBatch"),
|
|
1039
|
-
getOrganizationUsage: fnRef("tierLimits:getOrganizationUsage"),
|
|
1034
|
+
getProjectMembership: fnRef("features/projects/members:getProjectMembership"),
|
|
1035
|
+
listVariablesWithAccess: fnRef("features/variables/queries:listWithAccess"),
|
|
1036
|
+
listVariableRequests: fnRef("features/variables/requests/queries:listForProject"),
|
|
1037
|
+
getResolvedFeatures: fnRef("features/featureRegistry/queries:getResolvedFeatures"),
|
|
1038
|
+
getResolvedFeaturesBatch: fnRef("features/featureRegistry/queries:getResolvedFeaturesBatch"),
|
|
1039
|
+
getOrganizationUsage: fnRef("features/billing/tierLimits:getOrganizationUsage"),
|
|
1040
1040
|
isEnforcementEnabled: fnRef(
|
|
1041
|
-
"tierLimits:isEnforcementEnabled"
|
|
1041
|
+
"features/billing/tierLimits:isEnforcementEnabled"
|
|
1042
1042
|
),
|
|
1043
|
-
deviceSessionRecord: fnRef("deviceSessions:record"),
|
|
1043
|
+
deviceSessionRecord: fnRef("features/users/deviceSessions:record"),
|
|
1044
1044
|
deviceSessionRevoke: fnRef(
|
|
1045
|
-
"deviceSessions:revoke"
|
|
1045
|
+
"features/users/deviceSessions:revoke"
|
|
1046
1046
|
),
|
|
1047
|
-
pullValues: fnRef("
|
|
1048
|
-
pushBulk: fnRef("
|
|
1049
|
-
createVariableRequest: fnRef("
|
|
1047
|
+
pullValues: fnRef("features/variables/values:pullValues"),
|
|
1048
|
+
pushBulk: fnRef("features/variables/values:pushBulk"),
|
|
1049
|
+
createVariableRequest: fnRef("features/variables/requests/actions:createWithValue")
|
|
1050
1050
|
};
|
|
1051
1051
|
async function convexQuery(ref, ...args) {
|
|
1052
1052
|
const client = await getConvexClient();
|
package/dist/index.js
CHANGED
|
@@ -7,13 +7,13 @@ import {
|
|
|
7
7
|
initSentry,
|
|
8
8
|
isInteractiveTerminal,
|
|
9
9
|
openTUI
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-YBF26DSR.js";
|
|
11
11
|
|
|
12
12
|
// src/lib/program.ts
|
|
13
13
|
import { Command } from "commander";
|
|
14
14
|
|
|
15
15
|
// src/lib/cli-version.ts
|
|
16
|
-
var CLI_VERSION = true ? "1.
|
|
16
|
+
var CLI_VERSION = true ? "1.16.0" : "0.0.0";
|
|
17
17
|
|
|
18
18
|
// src/lib/version-check.ts
|
|
19
19
|
import chalk from "chalk";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@envpilot/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Envpilot CLI — sync and manage environment variables from the terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"vitest": "^3.0.4"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
52
|
+
"node": ">=22.0.0"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"env",
|