| 37 | ) |
| 38 | |
| 39 | type Record struct { |
| 40 | collection *Collection |
| 41 | originalData map[string]any |
| 42 | customVisibility *store.Store[string, bool] |
| 43 | data *store.Store[string, any] |
| 44 | expand *store.Store[string, any] |
| 45 | |
| 46 | BaseModel |
| 47 | |
| 48 | exportCustomData bool |
| 49 | ignoreEmailVisibility bool |
| 50 | ignoreUnchangedFields bool |
| 51 | } |
| 52 | |
| 53 | const systemHookIdRecord = "__pbRecordSystemHook__" |
| 54 |
nothing calls this directly
no outgoing calls
no test coverage detected