@vgip/meta-ui 2.3.7 → 2.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -664,7 +664,9 @@ const metaNormalizer = (meta, integration, resourceType) => {
664
664
  }
665
665
  }
666
666
  if (f.type === 'select') {
667
- f.acceptNew = true; // (VIST-1202) allow new values for select fields, as SF can have record types with different picklist values, which are not listed in meta
667
+ // (VIST-1202) allow new values for select fields, as SF can have record types with different picklist values, which are not listed in meta
668
+ // f.acceptNew = true; // boolean is the right spec, but backend does not support yet
669
+ f.acceptNew = {}; // https://vonage.slack.com/archives/GG42CU6FR/p1770325041897019?thread_ts=1770313356.417099&cid=GG42CU6FR
668
670
  }
669
671
  break;
670
672
  }