@cms-lab/core 1.2.3 → 1.2.4

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/index.d.ts CHANGED
@@ -73,6 +73,7 @@ type StrapiCmsProviderConfig = {
73
73
  type DirectusCollectionConfig = {
74
74
  type: string;
75
75
  collection: string;
76
+ routable?: boolean;
76
77
  } & CmsFieldMappingConfig;
77
78
  type DirectusCmsProviderConfig = {
78
79
  provider: "directus";
package/dist/index.js CHANGED
@@ -84,6 +84,7 @@ var directusConfigSchema = z.object({
84
84
  z.object({
85
85
  type: z.string().min(1),
86
86
  collection: z.string().min(1),
87
+ routable: z.boolean().optional(),
87
88
  ...cmsFieldMappingShape
88
89
  }).strict()
89
90
  ).min(1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cms-lab/core",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "type": "module",
5
5
  "description": "Core config, scan, diagnostics, and checks for cms-lab.",
6
6
  "license": "MIT",