@uniformdev/cli 20.63.0 → 20.63.1-alpha.18
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.
|
@@ -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"];
|
|
@@ -1046,7 +1046,7 @@ async function chooseTeam(user, prompt, telemetry) {
|
|
|
1046
1046
|
// src/auth/user-info.ts
|
|
1047
1047
|
import { ProjectClient } from "@uniformdev/canvas";
|
|
1048
1048
|
import { gql, request } from "graphql-request";
|
|
1049
|
-
import * as z2 from "zod
|
|
1049
|
+
import * as z2 from "zod";
|
|
1050
1050
|
var identityQuery = gql`
|
|
1051
1051
|
query GetUserIdentity($subject: String!) {
|
|
1052
1052
|
info: identities_by_pk(subject: $subject) {
|
|
@@ -7158,14 +7158,6 @@ var EntryPatternModule = {
|
|
|
7158
7158
|
// src/commands/canvas/commands/label.ts
|
|
7159
7159
|
import yargs15 from "yargs";
|
|
7160
7160
|
|
|
7161
|
-
// src/commands/canvas/commands/label/_util.ts
|
|
7162
|
-
import { LabelClient } from "@uniformdev/canvas";
|
|
7163
|
-
var selectLabelIdentifier = (label) => label.label.publicId;
|
|
7164
|
-
var selectLabelDisplayName = (label) => `${label.label.displayName} (pid: ${label.label.publicId})`;
|
|
7165
|
-
function getLabelClient(options) {
|
|
7166
|
-
return new LabelClient({ ...options, bypassCache: true, limitPolicy: cliLimitPolicy });
|
|
7167
|
-
}
|
|
7168
|
-
|
|
7169
7161
|
// src/commands/canvas/labelsEngineDataSource.ts
|
|
7170
7162
|
function normalizeLabelForSync(label) {
|
|
7171
7163
|
const { projectId: _projectId, ...labelWithoutProjectId } = label;
|
|
@@ -7201,6 +7193,14 @@ function createLabelsEngineDataSource({
|
|
|
7201
7193
|
};
|
|
7202
7194
|
}
|
|
7203
7195
|
|
|
7196
|
+
// src/commands/canvas/commands/label/_util.ts
|
|
7197
|
+
import { LabelClient } from "@uniformdev/canvas";
|
|
7198
|
+
var selectLabelIdentifier = (label) => label.label.publicId;
|
|
7199
|
+
var selectLabelDisplayName = (label) => `${label.label.displayName} (pid: ${label.label.publicId})`;
|
|
7200
|
+
function getLabelClient(options) {
|
|
7201
|
+
return new LabelClient({ ...options, bypassCache: true, limitPolicy: cliLimitPolicy });
|
|
7202
|
+
}
|
|
7203
|
+
|
|
7204
7204
|
// src/commands/canvas/commands/label/pull.ts
|
|
7205
7205
|
var LabelPullModule = {
|
|
7206
7206
|
command: "pull <directory>",
|
|
@@ -12578,7 +12578,7 @@ import yargs40 from "yargs";
|
|
|
12578
12578
|
import { ApiClient as ApiClient4 } from "@uniformdev/context/api";
|
|
12579
12579
|
import PQueue3 from "p-queue";
|
|
12580
12580
|
import { Svix } from "svix";
|
|
12581
|
-
import * as z3 from "zod
|
|
12581
|
+
import * as z3 from "zod";
|
|
12582
12582
|
var WEBHOOKS_DASHBOARD_BASE_PATH = "/api/v1/svix-dashboard";
|
|
12583
12583
|
var WebhooksClient = class extends ApiClient4 {
|
|
12584
12584
|
constructor(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.63.
|
|
3
|
+
"version": "20.63.1-alpha.18+1b83158795",
|
|
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.63.
|
|
31
|
-
"@uniformdev/canvas": "20.63.
|
|
32
|
-
"@uniformdev/context": "20.63.
|
|
33
|
-
"@uniformdev/files": "20.63.
|
|
34
|
-
"@uniformdev/project-map": "20.63.
|
|
35
|
-
"@uniformdev/redirect": "20.63.
|
|
36
|
-
"@uniformdev/richtext": "20.63.
|
|
30
|
+
"@uniformdev/assets": "20.63.1-alpha.18+1b83158795",
|
|
31
|
+
"@uniformdev/canvas": "20.63.1-alpha.18+1b83158795",
|
|
32
|
+
"@uniformdev/context": "20.63.1-alpha.18+1b83158795",
|
|
33
|
+
"@uniformdev/files": "20.63.1-alpha.18+1b83158795",
|
|
34
|
+
"@uniformdev/project-map": "20.63.1-alpha.18+1b83158795",
|
|
35
|
+
"@uniformdev/redirect": "20.63.1-alpha.18+1b83158795",
|
|
36
|
+
"@uniformdev/richtext": "20.63.1-alpha.18+1b83158795",
|
|
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": "1b83158795e07165d1500b0c859c49c1e613eeda"
|
|
84
84
|
}
|