@uniformdev/cli 20.53.1 → 20.53.2-alpha.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 +4 -1
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -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.53.
|
|
3
|
+
"version": "20.53.2-alpha.0+9f6b2ac29f",
|
|
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.53.
|
|
32
|
-
"@uniformdev/canvas": "20.53.
|
|
33
|
-
"@uniformdev/context": "20.53.
|
|
34
|
-
"@uniformdev/files": "20.53.
|
|
35
|
-
"@uniformdev/project-map": "20.53.
|
|
36
|
-
"@uniformdev/redirect": "20.53.
|
|
37
|
-
"@uniformdev/richtext": "20.53.
|
|
31
|
+
"@uniformdev/assets": "20.53.2-alpha.0+9f6b2ac29f",
|
|
32
|
+
"@uniformdev/canvas": "20.53.2-alpha.0+9f6b2ac29f",
|
|
33
|
+
"@uniformdev/context": "20.53.2-alpha.0+9f6b2ac29f",
|
|
34
|
+
"@uniformdev/files": "20.53.2-alpha.0+9f6b2ac29f",
|
|
35
|
+
"@uniformdev/project-map": "20.53.2-alpha.0+9f6b2ac29f",
|
|
36
|
+
"@uniformdev/redirect": "20.53.2-alpha.0+9f6b2ac29f",
|
|
37
|
+
"@uniformdev/richtext": "20.53.2-alpha.0+9f6b2ac29f",
|
|
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": "9f6b2ac29f8ee91c8fe96e927eba23e4ed0dfee9"
|
|
85
85
|
}
|