Skip to content

Commit

Permalink
update typing
Browse files Browse the repository at this point in the history
  • Loading branch information
rnegron committed Nov 20, 2024
1 parent 79d3b18 commit 33d907c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/core/types/zapier.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,18 @@ export type FieldChoices =
| (string | FieldChoiceWithLabel)[];

/**
* Allows for additional metadata to be stored on the field. Only
* string, numeric or boolean values are allowed
* Allows for additional metadata to be stored on the field.
*
* [Docs: FieldMetaSchema](https://github.com/zapier/zapier-platform/blob/main/packages/schema/docs/build/schema.md#FieldMetaSchema)
*/
export interface FieldMeta {
/**
* Only string, integer or boolean values are allowed.
*
* This interface was referenced by `FieldMetaSchema`'s JSON-Schema
* definition
* via the `patternProperty` "[^\s]+".
*/
[k: string]: string | number | boolean;
}

Expand Down

0 comments on commit 33d907c

Please sign in to comment.