@uniformdev/cli 19.46.1-alpha.8 → 19.47.1-alpha.3

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 +4 -2
  2. package/package.json +7 -7
package/dist/index.mjs CHANGED
@@ -2638,7 +2638,7 @@ function createEntryEngineDataSource({
2638
2638
  client
2639
2639
  }) {
2640
2640
  async function* getObjects() {
2641
- const { entries } = await client.getEntries({ offset: 0, limit: 1e3 });
2641
+ const { entries } = await client.getEntries({ offset: 0, limit: 1e3, skipDataResolution: true });
2642
2642
  for await (const e of entries) {
2643
2643
  const result = {
2644
2644
  id: selectEntryIdentifier(e),
@@ -2655,6 +2655,8 @@ function createEntryEngineDataSource({
2655
2655
  await client.deleteEntry({ entryId: providerId });
2656
2656
  },
2657
2657
  writeObject: async ({ object }) => {
2658
+ delete object.entry._name;
2659
+ delete object.entry._slug;
2658
2660
  await client.upsertEntry(object);
2659
2661
  }
2660
2662
  };
@@ -4714,7 +4716,7 @@ import { PostHog } from "posthog-node";
4714
4716
  // package.json
4715
4717
  var package_default = {
4716
4718
  name: "@uniformdev/cli",
4717
- version: "19.46.0",
4719
+ version: "19.47.0",
4718
4720
  description: "Uniform command line interface tool",
4719
4721
  license: "SEE LICENSE IN LICENSE.txt",
4720
4722
  main: "./cli.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/cli",
3
- "version": "19.46.1-alpha.8+a2d89f62e",
3
+ "version": "19.47.1-alpha.3+70a8d8101",
4
4
  "description": "Uniform command line interface tool",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./cli.js",
@@ -17,11 +17,11 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@thi.ng/mime": "^2.2.23",
20
- "@uniformdev/canvas": "19.46.1-alpha.8+a2d89f62e",
21
- "@uniformdev/context": "19.46.1-alpha.8+a2d89f62e",
22
- "@uniformdev/files": "19.46.1-alpha.8+a2d89f62e",
23
- "@uniformdev/project-map": "19.46.1-alpha.8+a2d89f62e",
24
- "@uniformdev/redirect": "19.46.1-alpha.8+a2d89f62e",
20
+ "@uniformdev/canvas": "19.47.1-alpha.3+70a8d8101",
21
+ "@uniformdev/context": "19.47.1-alpha.3+70a8d8101",
22
+ "@uniformdev/files": "19.47.1-alpha.3+70a8d8101",
23
+ "@uniformdev/project-map": "19.47.1-alpha.3+70a8d8101",
24
+ "@uniformdev/redirect": "19.47.1-alpha.3+70a8d8101",
25
25
  "colorette": "2.0.20",
26
26
  "cosmiconfig": "8.2.0",
27
27
  "cosmiconfig-typescript-loader": "5.0.0",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "a2d89f62ed00cf0c7eaa8d557ad6a9f218215213"
69
+ "gitHead": "70a8d8101b37be3b7445ea577023160ad86ab284"
70
70
  }