@firecms/core 3.0.0-canary.242 → 3.0.0-canary.244

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.
@@ -577,6 +577,11 @@ export interface EntityCustomViewParams<M extends Record<string, any> = any> {
577
577
  * Use the form context to access the form state and methods
578
578
  */
579
579
  formContext: FormContext;
580
+
581
+ /**
582
+ * If this is a subcollection, this is the path of the parent collections
583
+ */
584
+ parentCollectionIds?: string[];
580
585
  }
581
586
 
582
587
  export type InferCollectionType<S extends EntityCollection> = S extends EntityCollection<infer M> ? M : never;