@uniformdev/cli 18.33.1-alpha.7 → 18.34.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.
Files changed (2) hide show
  1. package/dist/index.mjs +7 -7
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -952,12 +952,12 @@ var CompositionGetModule = {
952
952
  default: false,
953
953
  describe: "Include individual component UIDs"
954
954
  },
955
- resolveData: {
955
+ unstableResolveData: {
956
956
  type: "boolean",
957
957
  default: false,
958
958
  describe: "Resolve all data resources used by the composition"
959
959
  },
960
- diagnostics: {
960
+ unstableDiagnostics: {
961
961
  type: "boolean",
962
962
  default: false,
963
963
  describe: "Include diagnostics information when resolving data"
@@ -979,8 +979,8 @@ var CompositionGetModule = {
979
979
  project: projectId,
980
980
  resolvePatterns,
981
981
  componentIDs,
982
- resolveData,
983
- diagnostics
982
+ unstableResolveData,
983
+ unstableDiagnostics
984
984
  }) => {
985
985
  const fetch3 = nodeFetchProxy(proxy);
986
986
  const client = new UncachedCanvasClient7({ apiKey, edgeApiHost, apiHost, fetch: fetch3, projectId });
@@ -990,8 +990,8 @@ var CompositionGetModule = {
990
990
  state: convertCompositionState(state),
991
991
  skipPatternResolution: !resolvePatterns,
992
992
  withComponentIDs: componentIDs,
993
- skipDataResolution: !resolveData,
994
- diagnostics
993
+ unstable_resolveData: unstableResolveData,
994
+ unstable_diagnostics: unstableDiagnostics
995
995
  })
996
996
  );
997
997
  emitWithFormat(res, format, filename);
@@ -3225,7 +3225,7 @@ import { PostHog } from "posthog-node";
3225
3225
  // package.json
3226
3226
  var package_default = {
3227
3227
  name: "@uniformdev/cli",
3228
- version: "18.33.0",
3228
+ version: "18.34.0",
3229
3229
  description: "Uniform command line interface tool",
3230
3230
  license: "SEE LICENSE IN LICENSE.txt",
3231
3231
  main: "./cli.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/cli",
3
- "version": "18.33.1-alpha.7+7127237a1",
3
+ "version": "18.34.0",
4
4
  "description": "Uniform command line interface tool",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./cli.js",
@@ -16,9 +16,9 @@
16
16
  "format": "prettier --write \"src/**/*.{js,ts,tsx}\""
17
17
  },
18
18
  "dependencies": {
19
- "@uniformdev/canvas": "18.33.1-alpha.7+7127237a1",
20
- "@uniformdev/context": "18.33.1-alpha.7+7127237a1",
21
- "@uniformdev/project-map": "18.33.1-alpha.7+7127237a1",
19
+ "@uniformdev/canvas": "18.34.0",
20
+ "@uniformdev/context": "18.34.0",
21
+ "@uniformdev/project-map": "18.34.0",
22
22
  "chalk": "^5.2.0",
23
23
  "diff": "^5.0.0",
24
24
  "dotenv": "^16.0.3",
@@ -59,5 +59,5 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "7127237a1e099d2a11fa8c06d49cb01cf16c0852"
62
+ "gitHead": "563ab31aa4308102c988bea321028e73efe836d0"
63
63
  }