Hi All,
I recently performed an update on Power Apps CLI to get the latest version using "pac install latest". This brings me to the current version: Microsoft.PowerApps.CLI.1.3.1
With an existing working component, when I tried to run the script build again this time, post the update using either of the following commands "npm run build / npm run-script build", I've started getting the following error:
[pcf-1014] [Error] Manifest validation error: instance.manifest.control[0].type-group[0].type[1] is not one of enum values: Whole.None,TwoOptions,DateAndTime.DateOnly,DateAndTime.DateAndTime,Decimal,Enum,FP,Multiple,Currency,OptionSet,SingleLine.Email,SingleLine.Text,SingleLine.TextArea,SingleLine.URL,SingleLine.Ticker,SingleLine.Phone,Object
My Control Manifest file looks like this (unchanged from a working earlier version):
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="OptionsetHighlighter" constructor="SignatureHighlighterOptionset" version="0.0.1" display-name-key="SignatureHighlighterOptionset" description-key="SignatureHighlighterOptionset description" control-type="standard">
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
<property name="sampleProperty" display-name-key="Property_Display_Key" description-key="Property_Desc_Key" of-type="SingleLine.Text" usage="bound" required="true" />
<resources>
<code path="index.ts" order="1"/>
</resources>
</control>
</manifest>
Not sure what has been changed. Any help is appreciated.