@uniformdev/cli 20.61.2-alpha.4 → 20.63.1-alpha.12
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.
|
@@ -22,7 +22,7 @@ import { fetch as undiciFetch, ProxyAgent } from "undici";
|
|
|
22
22
|
// package.json
|
|
23
23
|
var package_default = {
|
|
24
24
|
name: "@uniformdev/cli",
|
|
25
|
-
version: "20.
|
|
25
|
+
version: "20.63.0",
|
|
26
26
|
description: "Uniform command line interface tool",
|
|
27
27
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
28
28
|
main: "./cli.js",
|
|
@@ -60,11 +60,11 @@ var package_default = {
|
|
|
60
60
|
colorette: "2.0.20",
|
|
61
61
|
cosmiconfig: "9.0.0",
|
|
62
62
|
"cosmiconfig-typescript-loader": "5.0.0",
|
|
63
|
-
diff: "^
|
|
63
|
+
diff: "^8.0.3",
|
|
64
64
|
dotenv: "^16.4.7",
|
|
65
65
|
esbuild: "0.25.0",
|
|
66
66
|
execa: "5.1.1",
|
|
67
|
-
"file-type": "^
|
|
67
|
+
"file-type": "^21.3.2",
|
|
68
68
|
"fs-jetpack": "5.1.0",
|
|
69
69
|
graphql: "16.9.0",
|
|
70
70
|
"graphql-request": "6.1.0",
|
|
@@ -82,12 +82,12 @@ var package_default = {
|
|
|
82
82
|
"registry-url": "^6.0.0",
|
|
83
83
|
slugify: "1.6.6",
|
|
84
84
|
svix: "^1.71.0",
|
|
85
|
-
undici: "^7.
|
|
85
|
+
undici: "^7.24.0",
|
|
86
86
|
yargs: "^17.6.2",
|
|
87
|
-
zod: "3.
|
|
87
|
+
zod: "4.3.6"
|
|
88
88
|
},
|
|
89
89
|
devDependencies: {
|
|
90
|
-
"@types/diff": "
|
|
90
|
+
"@types/diff": "^8.0.0",
|
|
91
91
|
"@types/js-yaml": "4.0.9",
|
|
92
92
|
"@types/jsonwebtoken": "9.0.5",
|
|
93
93
|
"@types/node": "24.3.1",
|
package/dist/defaultConfig.mjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
withFormatOptions,
|
|
19
19
|
withProjectOptions,
|
|
20
20
|
withTeamOptions
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-BFI4F2WF.mjs";
|
|
22
22
|
|
|
23
23
|
// src/index.ts
|
|
24
24
|
import * as dotenv from "dotenv";
|
|
@@ -74,7 +74,7 @@ async function getBearerToken(baseUrl) {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
// src/client.ts
|
|
77
|
-
import * as z from "zod
|
|
77
|
+
import * as z from "zod";
|
|
78
78
|
|
|
79
79
|
// src/auth/api-key.ts
|
|
80
80
|
var READ_PERMISSIONS = ["PROJECT", "UPM_PUB", "OPT_PUB", "OPT_READ", "UPM_READ"];
|
|
@@ -1083,7 +1083,7 @@ async function chooseTeam(user, prompt, telemetry) {
|
|
|
1083
1083
|
// src/auth/user-info.ts
|
|
1084
1084
|
import { ProjectClient } from "@uniformdev/canvas";
|
|
1085
1085
|
import { gql, request } from "graphql-request";
|
|
1086
|
-
import * as z2 from "zod
|
|
1086
|
+
import * as z2 from "zod";
|
|
1087
1087
|
var identityQuery = gql`
|
|
1088
1088
|
query GetUserIdentity($subject: String!) {
|
|
1089
1089
|
info: identities_by_pk(subject: $subject) {
|
|
@@ -7195,14 +7195,6 @@ var EntryPatternModule = {
|
|
|
7195
7195
|
// src/commands/canvas/commands/label.ts
|
|
7196
7196
|
import yargs15 from "yargs";
|
|
7197
7197
|
|
|
7198
|
-
// src/commands/canvas/commands/label/_util.ts
|
|
7199
|
-
import { LabelClient } from "@uniformdev/canvas";
|
|
7200
|
-
var selectLabelIdentifier = (label) => label.label.publicId;
|
|
7201
|
-
var selectLabelDisplayName = (label) => `${label.label.displayName} (pid: ${label.label.publicId})`;
|
|
7202
|
-
function getLabelClient(options) {
|
|
7203
|
-
return new LabelClient({ ...options, bypassCache: true, limitPolicy: cliLimitPolicy });
|
|
7204
|
-
}
|
|
7205
|
-
|
|
7206
7198
|
// src/commands/canvas/labelsEngineDataSource.ts
|
|
7207
7199
|
function normalizeLabelForSync(label) {
|
|
7208
7200
|
const { projectId: _projectId, ...labelWithoutProjectId } = label;
|
|
@@ -7238,6 +7230,14 @@ function createLabelsEngineDataSource({
|
|
|
7238
7230
|
};
|
|
7239
7231
|
}
|
|
7240
7232
|
|
|
7233
|
+
// src/commands/canvas/commands/label/_util.ts
|
|
7234
|
+
import { LabelClient } from "@uniformdev/canvas";
|
|
7235
|
+
var selectLabelIdentifier = (label) => label.label.publicId;
|
|
7236
|
+
var selectLabelDisplayName = (label) => `${label.label.displayName} (pid: ${label.label.publicId})`;
|
|
7237
|
+
function getLabelClient(options) {
|
|
7238
|
+
return new LabelClient({ ...options, bypassCache: true, limitPolicy: cliLimitPolicy });
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7241
7241
|
// src/commands/canvas/commands/label/pull.ts
|
|
7242
7242
|
var LabelPullModule = {
|
|
7243
7243
|
command: "pull <directory>",
|
|
@@ -12635,7 +12635,7 @@ import yargs40 from "yargs";
|
|
|
12635
12635
|
import { ApiClient as ApiClient4 } from "@uniformdev/context/api";
|
|
12636
12636
|
import PQueue3 from "p-queue";
|
|
12637
12637
|
import { Svix } from "svix";
|
|
12638
|
-
import * as z3 from "zod
|
|
12638
|
+
import * as z3 from "zod";
|
|
12639
12639
|
var WEBHOOKS_DASHBOARD_BASE_PATH = "/api/v1/svix-dashboard";
|
|
12640
12640
|
var WebhooksClient = class extends ApiClient4 {
|
|
12641
12641
|
constructor(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.63.1-alpha.12+914935b899",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@inquirer/prompts": "^7.10.1",
|
|
29
29
|
"@thi.ng/mime": "^2.2.23",
|
|
30
|
-
"@uniformdev/assets": "20.
|
|
31
|
-
"@uniformdev/canvas": "20.
|
|
32
|
-
"@uniformdev/context": "20.
|
|
33
|
-
"@uniformdev/files": "20.
|
|
34
|
-
"@uniformdev/project-map": "20.
|
|
35
|
-
"@uniformdev/redirect": "20.
|
|
36
|
-
"@uniformdev/richtext": "20.
|
|
30
|
+
"@uniformdev/assets": "20.63.1-alpha.12+914935b899",
|
|
31
|
+
"@uniformdev/canvas": "20.63.1-alpha.12+914935b899",
|
|
32
|
+
"@uniformdev/context": "20.63.1-alpha.12+914935b899",
|
|
33
|
+
"@uniformdev/files": "20.63.1-alpha.12+914935b899",
|
|
34
|
+
"@uniformdev/project-map": "20.63.1-alpha.12+914935b899",
|
|
35
|
+
"@uniformdev/redirect": "20.63.1-alpha.12+914935b899",
|
|
36
|
+
"@uniformdev/richtext": "20.63.1-alpha.12+914935b899",
|
|
37
37
|
"call-bind": "^1.0.2",
|
|
38
38
|
"colorette": "2.0.20",
|
|
39
39
|
"cosmiconfig": "9.0.0",
|
|
40
40
|
"cosmiconfig-typescript-loader": "5.0.0",
|
|
41
|
-
"diff": "^
|
|
41
|
+
"diff": "^8.0.3",
|
|
42
42
|
"dotenv": "^16.4.7",
|
|
43
43
|
"esbuild": "0.25.0",
|
|
44
44
|
"execa": "5.1.1",
|
|
45
|
-
"file-type": "^
|
|
45
|
+
"file-type": "^21.3.2",
|
|
46
46
|
"fs-jetpack": "5.1.0",
|
|
47
47
|
"graphql": "16.9.0",
|
|
48
48
|
"graphql-request": "6.1.0",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"registry-url": "^6.0.0",
|
|
61
61
|
"slugify": "1.6.6",
|
|
62
62
|
"svix": "^1.71.0",
|
|
63
|
-
"undici": "^7.
|
|
63
|
+
"undici": "^7.24.0",
|
|
64
64
|
"yargs": "^17.6.2",
|
|
65
|
-
"zod": "3.
|
|
65
|
+
"zod": "4.3.6"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@types/diff": "
|
|
68
|
+
"@types/diff": "^8.0.0",
|
|
69
69
|
"@types/js-yaml": "4.0.9",
|
|
70
70
|
"@types/jsonwebtoken": "9.0.5",
|
|
71
71
|
"@types/node": "24.3.1",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"publishConfig": {
|
|
81
81
|
"access": "public"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "914935b89907018dde56a2c49b72e6899d9fb0e2"
|
|
84
84
|
}
|