@rebasepro/cli 0.16.1-canary.gef08a6e → 0.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebasepro/cli",
3
- "version": "0.16.1-canary.gef08a6e",
3
+ "version": "0.17.0",
4
4
  "description": "Developer tools for Rebase projects",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",
@@ -32,12 +32,12 @@
32
32
  "inquirer": "14.0.2",
33
33
  "jiti": "^2.7.0",
34
34
  "pg": "^8.22.0",
35
+ "@rebasepro/client": "0.17.0",
35
36
  "@rebasepro/agent-skills": "0.16.0",
36
- "@rebasepro/client": "0.16.1-canary.gef08a6e",
37
- "@rebasepro/server": "0.16.1-canary.gef08a6e",
38
- "@rebasepro/codegen": "0.16.1-canary.gef08a6e",
39
- "@rebasepro/types": "0.16.1-canary.gef08a6e",
40
- "@rebasepro/server-postgres": "0.16.1-canary.gef08a6e"
37
+ "@rebasepro/codegen": "0.17.0",
38
+ "@rebasepro/server": "0.17.0",
39
+ "@rebasepro/server-postgres": "0.17.0",
40
+ "@rebasepro/types": "0.17.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "^26.1.2",
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "{{PROJECT_NAME}}-config": "*",
11
- "@rebasepro/admin-types": "workspace:*",
11
+ "@rebasepro/cms-types": "workspace:*",
12
12
  "@rebasepro/server": "workspace:*",
13
13
  "@rebasepro/server-postgres": "workspace:*",
14
14
  "@rebasepro/types": "workspace:*",
@@ -1,6 +1,6 @@
1
- /// <reference types="@rebasepro/admin-types" />
1
+ /// <reference types="@rebasepro/cms-types" />
2
2
 
3
- // One line, once per project. `@rebasepro/admin-types` declares the `admin` block on
3
+ // One line, once per project. `@rebasepro/cms-types` declares the `admin` block on
4
4
  // `CollectionConfig` and on every property type by declaration merging, and an
5
5
  // augmentation applies to the whole *program* — so this reference is what makes
6
6
  // `admin: { … }` legal in every collection file here.
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
 
3
3
  const authorsCollection = defineCollection({
4
4
  name: "Authors",
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
  import authorsCollection from "./authors.js";
3
3
  import tagsCollection from "./tags.js";
4
4
 
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
 
3
3
  const categoriesCollection = defineCollection({
4
4
  name: "Categories",
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
 
3
3
  const ordersCollection = defineCollection({
4
4
  name: "Orders",
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
  import categoriesCollection from "./categories.js";
3
3
 
4
4
  const productsCollection = defineCollection({
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
 
3
3
  const tagsCollection = defineCollection({
4
4
  name: "Tags",
@@ -1,4 +1,4 @@
1
- import { defineCollection } from "@rebasepro/admin-types";
1
+ import { defineCollection } from "@rebasepro/cms-types";
2
2
 
3
3
  const usersCollection = defineCollection({
4
4
  name: "Users",
@@ -12,7 +12,7 @@
12
12
  "clean": "rm -rf dist"
13
13
  },
14
14
  "dependencies": {
15
- "@rebasepro/admin-types": "workspace:*",
15
+ "@rebasepro/cms-types": "workspace:*",
16
16
  "@rebasepro/types": "workspace:*"
17
17
  },
18
18
  "devDependencies": {
@@ -7,7 +7,7 @@
7
7
  "@rebasepro/app": "workspace:*",
8
8
  "@rebasepro/plugin-ai": "workspace:*",
9
9
  "@rebasepro/client": "workspace:*",
10
- "@rebasepro/admin": "workspace:*",
10
+ "@rebasepro/cms": "workspace:*",
11
11
  "@rebasepro/studio": "workspace:*",
12
12
  "@rebasepro/types": "workspace:*",
13
13
  "@rebasepro/ui": "workspace:*",
@@ -5,7 +5,7 @@ import "@fontsource-variable/inter";
5
5
  import "@fontsource-variable/instrument-sans";
6
6
 
7
7
  import { Rebase, RebaseAuth, useRebaseAuthController } from "@rebasepro/app";
8
- import { RebaseAdmin, RebaseShell } from "@rebasepro/admin";
8
+ import { RebaseCMS, RebaseShell } from "@rebasepro/cms";
9
9
  import { ErrorBoundary } from "@rebasepro/ui";
10
10
  import { RebaseStudio } from "@rebasepro/studio";
11
11
  import { createRebaseClient } from "@rebasepro/client";
@@ -35,7 +35,7 @@ export function App() {
35
35
  authController={authController}
36
36
  >
37
37
  <RebaseAuth />
38
- <RebaseAdmin
38
+ <RebaseCMS
39
39
  collections={collections}
40
40
  />
41
41
  <RebaseStudio/>