decap-cms-core 3.11.0 → 3.13.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.
@@ -290,6 +290,7 @@ export interface CmsCollectionFile {
290
290
  description?: string;
291
291
  preview_path?: string;
292
292
  preview_path_date_field?: string;
293
+ preview_path_preserve_slashes?: boolean;
293
294
  i18n?: boolean | CmsI18nConfig;
294
295
  media_folder?: string;
295
296
  public_folder?: string;
@@ -327,6 +328,7 @@ export interface CmsCollection {
327
328
  slug?: string;
328
329
  preview_path?: string;
329
330
  preview_path_date_field?: string;
331
+ preview_path_preserve_slashes?: boolean;
330
332
  create?: boolean;
331
333
  delete?: boolean;
332
334
  editor?: {
@@ -377,6 +379,7 @@ export interface CmsBackend {
377
379
  auth_endpoint?: string;
378
380
  cms_label_prefix?: string;
379
381
  squash_merges?: boolean;
382
+ signoff_commits?: boolean;
380
383
  proxy_url?: string;
381
384
  commit_messages?: {
382
385
  create?: string;
@@ -633,6 +636,7 @@ type CollectionObject = {
633
636
  public_folder?: string;
634
637
  preview_path?: string;
635
638
  preview_path_date_field?: string;
639
+ preview_path_preserve_slashes?: boolean;
636
640
  summary?: string;
637
641
  filter?: FilterRule;
638
642
  type: 'file_based_collection' | 'folder_based_collection';