List every supported DocumentTypeCode in registration order. Stable across patch releases; new codes are appended (never inserted mid-list) so it is safe to drive UI dropdowns from this list directly.
DocumentTypeCode
Read-only array of all registered document type codes.
listSupportedCodes().length; // 142 as of v2.1listSupportedCodes().filter(c => c.startsWith("MX_")); // Mexico-only codes Copy
listSupportedCodes().length; // 142 as of v2.1listSupportedCodes().filter(c => c.startsWith("MX_")); // Mexico-only codes
List every supported
DocumentTypeCodein registration order. Stable across patch releases; new codes are appended (never inserted mid-list) so it is safe to drive UI dropdowns from this list directly.