📢 We are pleased to announce the release of 3.0.3 of the @servicenow/sdk is available for download on npm!
This is a minor patch release that fixes a bug in the SDK
Fixes
- Table columns that defined
dynamic_value_definitions.calculated_valuefields withstringvalues were creating invalid xml. This did not affect using module imports on thecalculated_valuefield.
Example:
StringColumn({
label: "Label Name",
dynamic_value_definitions: {
type: "calculated_value",
calculated_value: `javascript:global.getNextObjNumberPadded();`,
},
}),