@famgia/omnify-atlas 2.0.22 → 2.0.24
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.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -142,7 +142,9 @@ function propertyToSnapshot(property) {
|
|
|
142
142
|
// Laravel-specific properties
|
|
143
143
|
hidden: prop.hidden,
|
|
144
144
|
fillable: prop.fillable,
|
|
145
|
-
fields: prop.fields
|
|
145
|
+
fields: prop.fields,
|
|
146
|
+
// FK type override (for referencing external package schemas with different PK type)
|
|
147
|
+
idType: prop.idType
|
|
146
148
|
};
|
|
147
149
|
}
|
|
148
150
|
function schemaToSnapshot(schema, hash, modifiedAt) {
|