( schema: S )
| 249 | * @category sensitive |
| 250 | */ |
| 251 | export const Sensitive = <S extends Schema.Schema.All | Schema.PropertySignature.All>( |
| 252 | schema: S |
| 253 | ): Sensitive<S> => |
| 254 | Field({ |
| 255 | select: schema, |
| 256 | insert: schema, |
| 257 | update: schema |
| 258 | }) |
| 259 | |
| 260 | /** |
| 261 | * Convert a field to one that is optional for all variants. |
nothing calls this directly
no test coverage detected
searching dependent graphs…