From 8788569e74985bd80b6fa8633e065180ebe60816 Mon Sep 17 00:00:00 2001 From: kaioken Date: Tue, 3 Dec 2024 16:15:08 -0400 Subject: [PATCH] refact: allow custom field visibility --- package.json | 2 +- src/types/custom-fields.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4f8427bb..cccbc13d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.22.5", + "version": "0.22.6", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/types/custom-fields.ts b/src/types/custom-fields.ts index d1bbc3c4..8ba37d65 100644 --- a/src/types/custom-fields.ts +++ b/src/types/custom-fields.ts @@ -25,6 +25,7 @@ export interface DeletedCustomField { export interface CustomFieldInput { name: string; data: any; + public?: boolean; } export interface CustomFieldData {