Patch release for @servicenow/sdk
Version: 4.6.1
Fixes:
- Fix transform generating invalid Fluent for ACL, ScriptInclude, and Test
- Fix when ScriptInclude has access=package_private and caller_access=2
- Fix when ACL has local_or_existing = empty string
- Fix when Test missing second argument in some situations
- Fix ServiceCatalog not setting correct default values for no_search and ui_type
- Fix transform for calculated and reference field qualifiers on Table columns
- Fix
activenot being set on sys_dictionary outputs by default
New:
- Add new field
augmentsforTable. Use this when adding new columns to existing tables that do not belong to this app
import { Table, StringColumn } from '@servicenow/sdk/core'
export const incident = Table({
augments: 'incident',
schema: {
x_acme_escalation_reason: StringColumn({
label: 'Escalation Reason',
maxLength: 500,
}),
},
})