From 3d9cc0547f7ac45c85cc46d02ed0de5e7d3b2ea7 Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Sun, 4 Jul 2021 13:01:40 +0300 Subject: [PATCH] forgot to add fields --- package.json | 2 +- src/lib/fields.ts | 2 +- src/types.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d4aaac0..cf3fe98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "0.4.7", + "version": "0.4.8", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/lib/fields.ts b/src/lib/fields.ts index b026313..3cec6bb 100644 --- a/src/lib/fields.ts +++ b/src/lib/fields.ts @@ -1,7 +1,7 @@ import * as T from "../types"; export const dictionaryEntryTextFields: T.DictionaryEntryTextField[] = [ - "p", "f", "e", "c", "infap", "infaf", "infbp", "infbf", "app", "apf", "ppp", "ppf", "psp", "psf", "ssp", "ssf", "prp", "prf", "pprtp", "pprtf", "tppp", "tppf", + "p", "f", "e", "c", "infap", "infaf", "infbp", "infbf", "app", "apf", "ppp", "ppf", "psp", "psf", "ssp", "ssf", "prp", "prf", "pprtp", "pprtf", "tppp", "tppf", "ec", ]; export const dictionaryEntryBooleanFields: T.DictionaryEntryBooleanField[] = [ "noInf", "shortIntrans", "noOo", "sepOo", "diacExcept", diff --git a/src/types.ts b/src/types.ts index 3176798..afdb276 100644 --- a/src/types.ts +++ b/src/types.ts @@ -111,7 +111,7 @@ export type DictionaryEntry = { ec?: string; } -export type DictionaryEntryTextField = "p" | "f" | "e" | "c" | "infap" | "infaf" | "infbp" | "infbf" | "app" | "apf" | "ppp" | "ppf" | "psp" | "psf" | "ssp" | "ssf" | "prp" | "prf" | "pprtp" | "pprtf" | "tppp" | "tppf"; +export type DictionaryEntryTextField = "p" | "f" | "e" | "c" | "infap" | "infaf" | "infbp" | "infbf" | "app" | "apf" | "ppp" | "ppf" | "psp" | "psf" | "ssp" | "ssf" | "prp" | "prf" | "pprtp" | "pprtf" | "tppp" | "tppf" | "ec"; export type DictionaryEntryBooleanField = "noInf" | "shortIntrans" | "noOo" | "sepOo" | "diacExcept"; export type DictionaryEntryNumberField = "ts" | "i" | "l" | "separationAtP" | "separationAtF"; export type DictionaryEntryField = DictionaryEntryTextField | DictionaryEntryBooleanField | DictionaryEntryNumberField;