@pylonsync/sdk 0.3.296 → 0.3.297

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -7
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.296",
6
+ "version": "0.3.297",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "types": "./dist/index.d.ts",
package/src/index.ts CHANGED
@@ -837,13 +837,7 @@ export function entitiesToManifest(
837
837
  // backing slot so both APIs serialize identically — apps
838
838
  // using the procedural `field` exports get the same
839
839
  // ManifestField shape as fluent apps.
840
- const extra = fb._def as FieldDefinition & {
841
- default?:
842
- | { kind: "value"; value: unknown }
843
- | { kind: "now" }
844
- | { kind: "owner" };
845
- enumValues?: readonly string[];
846
- };
840
+ const extra = fb._def;
847
841
  if (extra.default) {
848
842
  f.default =
849
843
  extra.default.kind === "now"