@uniformdev/cli 20.54.1-alpha.1 → 20.55.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.
- package/dist/index.mjs +5 -2
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -1107,7 +1107,7 @@ import { PostHog } from "posthog-node";
|
|
|
1107
1107
|
// package.json
|
|
1108
1108
|
var package_default = {
|
|
1109
1109
|
name: "@uniformdev/cli",
|
|
1110
|
-
version: "20.
|
|
1110
|
+
version: "20.55.0",
|
|
1111
1111
|
description: "Uniform command line interface tool",
|
|
1112
1112
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
1113
1113
|
main: "./cli.js",
|
|
@@ -7098,7 +7098,10 @@ function createLabelsEngineDataSource({
|
|
|
7098
7098
|
client
|
|
7099
7099
|
}) {
|
|
7100
7100
|
async function* getObjects() {
|
|
7101
|
-
const labels = (
|
|
7101
|
+
const labels = paginateAsync(
|
|
7102
|
+
async (offset, limit2) => (await client.getLabels({ offset, limit: limit2 })).labels,
|
|
7103
|
+
{ pageSize: 100 }
|
|
7104
|
+
);
|
|
7102
7105
|
for await (const label of labels) {
|
|
7103
7106
|
const result = {
|
|
7104
7107
|
id: label.label.publicId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.55.0",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@inquirer/prompts": "^7.10.1",
|
|
30
30
|
"@thi.ng/mime": "^2.2.23",
|
|
31
|
-
"@uniformdev/assets": "20.
|
|
32
|
-
"@uniformdev/canvas": "20.
|
|
33
|
-
"@uniformdev/context": "20.
|
|
34
|
-
"@uniformdev/files": "20.
|
|
35
|
-
"@uniformdev/project-map": "20.
|
|
36
|
-
"@uniformdev/redirect": "20.
|
|
37
|
-
"@uniformdev/richtext": "20.
|
|
31
|
+
"@uniformdev/assets": "20.55.0",
|
|
32
|
+
"@uniformdev/canvas": "20.55.0",
|
|
33
|
+
"@uniformdev/context": "20.55.0",
|
|
34
|
+
"@uniformdev/files": "20.55.0",
|
|
35
|
+
"@uniformdev/project-map": "20.55.0",
|
|
36
|
+
"@uniformdev/redirect": "20.55.0",
|
|
37
|
+
"@uniformdev/richtext": "20.55.0",
|
|
38
38
|
"call-bind": "^1.0.2",
|
|
39
39
|
"colorette": "2.0.20",
|
|
40
40
|
"cosmiconfig": "9.0.0",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "ef21541bd262e454318a30372f90d22a06183b82"
|
|
85
85
|
}
|