The autogenerated FieldType TS type doesn't seem to be comprehensive of all potential values:
|
export type FieldType = |
|
| "Color" |
|
| "DateTime" |
|
| "Email" |
|
| "ExtFileRef" |
|
| "Image" |
|
| "Link" |
|
| "MultiImage" |
|
| "MultiReference" |
|
| "Number" |
|
| "Phone" |
|
| "PlainText" |
|
| "Reference" |
|
| "RichText" |
|
| "Switch" |
|
| "Video"; |
These are types that I've received from the API that aren't included in the type definitions:
- SkuSettings
- TextOption
- Option
- MembershipPlan
- MultiExternalFile
- Price
- SkuValues
Is there a publicly available list of all potential values that's more reliable than this autogenerated file (api/types/FieldType.ts)?
The autogenerated
FieldTypeTS type doesn't seem to be comprehensive of all potential values:js-webflow-api/src/api/types/FieldType.ts
Lines 8 to 23 in b40a6a1
These are types that I've received from the API that aren't included in the type definitions:
Is there a publicly available list of all potential values that's more reliable than this autogenerated file (api/types/FieldType.ts)?