(data: Record<string, unknown>)
| 359 | } |
| 360 | |
| 361 | function transformModelData(data: Record<string, unknown>): Record<string, unknown> { |
| 362 | const out = transformPlainObject(data); |
| 363 | if (isPlainObject(out['overrides'])) { |
| 364 | out['overrides'] = transformPlainObject(out['overrides']); |
| 365 | } |
| 366 | return out; |
| 367 | } |
| 368 | |
| 369 | function transformPermissionData(data: Record<string, unknown>): Record<string, unknown> { |
| 370 | const raw = transformPlainObject(data); |
nothing calls this directly
no test coverage detected