@rebasepro/common 0.16.1-canary.ge71347e → 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/dist/collections/default-collections.d.ts +1 -1
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -1
- package/dist/util/pg-column-to-property.d.ts +1 -1
- package/package.json +4 -4
- package/src/collections/default-collections.ts +1 -1
- package/src/util/internal-tables.ts +1 -0
- package/src/util/pg-column-to-property.ts +1 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* override by defining their own collection with `slug: "users"`.
|
|
7
7
|
*
|
|
8
8
|
* Schema only — no `admin` block. This package is on the backend's dependency path,
|
|
9
|
-
* where that field does not exist: `@rebasepro/
|
|
9
|
+
* where that field does not exist: `@rebasepro/cms-types` adds it by declaration
|
|
10
10
|
* merging, and a BaaS install never installs that. The scaffolded
|
|
11
11
|
* `config/collections/users.ts` carries the presentation for projects that want this
|
|
12
12
|
* collection in their panel, which is also where it is editable.
|
package/dist/index.es.js
CHANGED
|
@@ -2869,6 +2869,7 @@ var REBASE_INTERNAL_TABLES = [
|
|
|
2869
2869
|
"idempotency_keys",
|
|
2870
2870
|
"entity_history",
|
|
2871
2871
|
"branches",
|
|
2872
|
+
"metric_samples",
|
|
2872
2873
|
"channel_messages",
|
|
2873
2874
|
"channel_cursors",
|
|
2874
2875
|
"channel_presence",
|
|
@@ -3256,7 +3257,7 @@ var CollectionRegistry = class {
|
|
|
3256
3257
|
* override by defining their own collection with `slug: "users"`.
|
|
3257
3258
|
*
|
|
3258
3259
|
* Schema only — no `admin` block. This package is on the backend's dependency path,
|
|
3259
|
-
* where that field does not exist: `@rebasepro/
|
|
3260
|
+
* where that field does not exist: `@rebasepro/cms-types` adds it by declaration
|
|
3260
3261
|
* merging, and a BaaS install never installs that. The scaffolded
|
|
3261
3262
|
* `config/collections/users.ts` carries the presentation for projects that want this
|
|
3262
3263
|
* collection in their panel, which is also where it is editable.
|