@almadar/core 5.3.2 → 5.4.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.
@@ -4223,6 +4223,21 @@ z.string().refine(
4223
4223
  },
4224
4224
  { message: "Invalid binding format. Must be @name or @name.path.to.field" }
4225
4225
  );
4226
+
4227
+ // src/types/binding.ts
4228
+ var BINDING_ROOTS = [
4229
+ "entity",
4230
+ "payload",
4231
+ "state",
4232
+ "config",
4233
+ "user",
4234
+ "trait",
4235
+ "item",
4236
+ "now",
4237
+ "computed",
4238
+ "other"
4239
+ ];
4240
+ new Set(BINDING_ROOTS.filter((r) => r !== "other"));
4226
4241
  z.object({
4227
4242
  createFlow: z.enum(["modal", "page", "inline", "none"]),
4228
4243
  editFlow: z.enum(["modal", "page", "inline", "none"]),