@uniformdev/cli 20.53.2-alpha.0 → 20.54.1-alpha.1

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -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.53.1",
1110
+ version: "20.54.0",
1111
1111
  description: "Uniform command line interface tool",
1112
1112
  license: "SEE LICENSE IN LICENSE.txt",
1113
1113
  main: "./cli.js",
@@ -7098,10 +7098,7 @@ function createLabelsEngineDataSource({
7098
7098
  client
7099
7099
  }) {
7100
7100
  async function* getObjects() {
7101
- const labels = paginateAsync(
7102
- async (offset, limit2) => (await client.getLabels({ offset, limit: limit2 })).labels,
7103
- { pageSize: 100 }
7104
- );
7101
+ const labels = (await client.getLabels()).labels;
7105
7102
  for await (const label of labels) {
7106
7103
  const result = {
7107
7104
  id: label.label.publicId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/cli",
3
- "version": "20.53.2-alpha.0+9f6b2ac29f",
3
+ "version": "20.54.1-alpha.1+028680cba4",
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.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",
31
+ "@uniformdev/assets": "20.54.1-alpha.1+028680cba4",
32
+ "@uniformdev/canvas": "20.54.1-alpha.1+028680cba4",
33
+ "@uniformdev/context": "20.54.1-alpha.1+028680cba4",
34
+ "@uniformdev/files": "20.54.1-alpha.1+028680cba4",
35
+ "@uniformdev/project-map": "20.54.1-alpha.1+028680cba4",
36
+ "@uniformdev/redirect": "20.54.1-alpha.1+028680cba4",
37
+ "@uniformdev/richtext": "20.54.1-alpha.1+028680cba4",
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": "9f6b2ac29f8ee91c8fe96e927eba23e4ed0dfee9"
84
+ "gitHead": "028680cba478a17da934cdb2ddebb777e2553455"
85
85
  }