(category: string)
| 441 | |
| 442 | /** Convert a Connect-style category string to the SDK category string. */ |
| 443 | export function toSdkCategory(category: string): `${ItemCategory}` { |
| 444 | return CONNECT_TO_SDK_CATEGORY[category] ?? 'Login' |
| 445 | } |
| 446 | |
| 447 | /** Convert a Connect-style field type string to the SDK field type string. */ |
| 448 | export function toSdkFieldType(type: string): `${ItemFieldType}` { |